PHPWord/src/PhpWord/Writer/WriterInterface.php

24 lines
409 B
PHP
Raw Normal View History

2012-05-06 18:25:40 +02:00
<?php
/**
* PHPWord
2012-05-06 18:25:40 +02:00
*
2014-03-27 23:55:06 +07:00
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
2012-05-06 18:25:40 +02:00
*/
namespace PhpOffice\PhpWord\Writer;
/**
* Writer interface
*/
interface WriterInterface
2012-05-06 18:25:40 +02:00
{
/**
* Save PhpWord to file
*
* @param string $pFilename
*/
public function save($pFilename = null);
2012-05-06 18:25:40 +02:00
}