- Create Writer abstract class - Inherit writers class from Writer - Inherit ODText\WriterPart from Word2007\WriterPart - Rename AbstractReader > Reader
18 lines
353 B
PHP
18 lines
353 B
PHP
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2014 PHPWord
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
|
|
|
/**
|
|
* ODText writer part abstract
|
|
*/
|
|
abstract class WriterPart extends \PhpOffice\PhpWord\Writer\Word2007\WriterPart
|
|
{
|
|
}
|