XmlImportReaderInterface.php 356 Bytes
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?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();
}