ast
13 years ago
cache
13 years ago
XmlImportConfig.php
13 years ago
XmlImportCsvParse.php
13 years ago
XmlImportException.php
13 years ago
XmlImportParser.php
13 years ago
XmlImportReaderInterface.php
13 years ago
XmlImportStringReader.php
13 years ago
XmlImportTemplate.php
13 years ago
XmlImportTemplateCodeGenerator.php
13 years ago
XmlImportTemplateParser.php
13 years ago
XmlImportTemplateScanner.php
13 years ago
XmlImportToken.php
13 years ago
XmlImportReaderInterface.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @author Olexandr Zanichkovsky <olexandr.zanichkovsky@zophiatech.com> |
| 4 | * @package General |
| 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * Interface that allows to either peek or read symbol from class that implements it |
| 9 | */ |
| 10 | interface XmlImportReaderInterface |
| 11 | { |
| 12 | /** |
| 13 | * Peeks a symbol |
| 14 | */ |
| 15 | public function peek(); |
| 16 | |
| 17 | /** |
| 18 | * Reads a symbol |
| 19 | */ |
| 20 | public function read(); |
| 21 | } |
| 22 |