2014-04-27 10:44:26 +07:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* PHPWord
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
|
|
|
* @copyright 2014 PHPWord
|
2014-05-04 17:55:54 +07:00
|
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
2014-04-27 10:44:26 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Endnotes reader
|
|
|
|
|
*/
|
|
|
|
|
class Endnotes extends Notes
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Note type = endnotes
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $type = 'endnotes';
|
|
|
|
|
}
|