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