Files
wingedit.pl/wp-content/plugins/wp-all-import/libraries/XmlImportReaderInterface.php
2024-11-04 20:48:19 +01:00

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();
}