<?php/** * @author Olexandr Zanichkovsky <olexandr.zanichkovsky@zophiatech.com> * @package General *//** * Interface that allows to either peek or read symbol from class that implements it */interfaceXmlImportReaderInterface{/** * Peeks a symbol */publicfunctionpeek();/** * Reads a symbol */publicfunctionread();}