24 lines
396 B
PHP
24 lines
396 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\Reader\Word2007;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Endnotes reader
|
||
|
|
*/
|
||
|
|
class Endnotes extends Notes
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Note type = endnotes
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $type = 'endnotes';
|
||
|
|
}
|