PHPWord/src/PhpWord/Reader/ReaderInterface.php
2014-05-04 17:55:54 +07:00

32 lines
563 B
PHP

<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
*/
namespace PhpOffice\PhpWord\Reader;
/**
* Reader interface
*/
interface ReaderInterface
{
/**
* Can the current ReaderInterface read the file?
*
* @param string $pFilename
* @return boolean
*/
public function canRead($pFilename);
/**
* Loads PhpWord from file
*
* @param string $pFilename
*/
public function load($pFilename);
}