?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-import/libraries/



?? Go up: /home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-import

?? Viewing: XmlImportReaderInterface.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();
}


??

??