2014-04-24 14:58:15 +07:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* PHPWord
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
|
|
|
* @copyright 2014 PHPWord
|
2014-05-04 21:03:28 +04:00
|
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
2014-04-24 14:58:15 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Endnote element HTML writer
|
|
|
|
|
*
|
|
|
|
|
* @since 0.10.0
|
|
|
|
|
*/
|
2014-05-04 00:57:44 +07:00
|
|
|
class Endnote extends Footnote
|
2014-04-24 14:58:15 +07:00
|
|
|
{
|
2014-05-04 00:57:44 +07:00
|
|
|
/**
|
|
|
|
|
* Note type
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $noteType = 'endnote';
|
2014-04-24 14:58:15 +07:00
|
|
|
}
|