24 lines
383 B
PHP
Raw Normal View History

<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
*/
namespace PhpOffice\PhpWord\Reader\Word2007;
/**
* Footnotes reader
*/
class Footnotes extends Notes
{
/**
* Note type = footnotes
*
* @var string
*/
protected $type = 'footnotes';
}