PHPWord/src/PhpWord/Writer/WriterInterface.php
2014-05-04 21:03:29 +04:00

24 lines
402 B
PHP

<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Writer;
/**
* Writer interface
*/
interface WriterInterface
{
/**
* Save PhpWord to file
*
* @param string $pFilename
*/
public function save($pFilename = null);
}