24 lines
393 B
PHP
Raw Normal View History

<?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
*/
namespace PhpOffice\PhpWord\Reader\Word2007;
/**
* Footnotes reader
*/
class Footnotes extends Notes
{
/**
* Note type = footnotes
*
* @var string
*/
protected $type = 'footnotes';
}