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/old-licenses/lgpl-2.1.txt LGPL
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Element;
|
|
|
|
/**
|
|
* Page break element
|
|
*/
|
|
class PageBreak extends AbstractElement
|
|
{
|
|
/**
|
|
* Create new page break
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|