22 lines
356 B
PHP
22 lines
356 B
PHP
<?php
|
|
/**
|
|
* @author Olexandr Zanichkovsky <olexandr.zanichkovsky@zophiatech.com>
|
|
* @package General
|
|
*/
|
|
|
|
/**
|
|
* Interface that allows to either peek or read symbol from class that implements it
|
|
*/
|
|
interface XmlImportReaderInterface
|
|
{
|
|
/**
|
|
* Peeks a symbol
|
|
*/
|
|
public function peek();
|
|
|
|
/**
|
|
* Reads a symbol
|
|
*/
|
|
public function read();
|
|
}
|