2014-05-04 21:03:29 +04:00

28 lines
471 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\Writer\Word2007\Element;
/**
* Endnote element writer
*
* @since 0.10.0
*/
class Endnote extends Note
{
/**
* Write element
*/
public function write()
{
$this->referenceType = 'endnoteReference';
parent::write();
}
}