PHPWord/src/PhpWord/Section/PageBreak.php

24 lines
365 B
PHP
Raw Normal View History

2012-05-06 18:25:40 +02:00
<?php
/**
* PHPWord
2012-05-06 18:25:40 +02:00
*
2014-03-27 23:55:06 +07:00
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
2012-05-06 18:25:40 +02:00
*/
namespace PhpOffice\PhpWord\Section;
2012-05-06 18:25:40 +02:00
/**
* Page break element
*/
class PageBreak
{
/**
* Create new page break
*/
public function __construct()
{
}
2012-05-06 18:25:40 +02:00
}