commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / vendor / dompdf / dompdf / src / FrameReflower / NullFrameReflower.php
1 <?php
2 /**
3 * @package dompdf
4 * @link http://dompdf.github.com/
5 * @author Benj Carson <benjcarson@digitaljunkies.ca>
6 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7 */
8
9 namespace Dompdf\FrameReflower;
10
11 use Dompdf\Frame;
12 use Dompdf\FrameDecorator\Block as BlockFrameDecorator;
13
14 /**
15 * Dummy reflower
16 *
17 * @package dompdf
18 */
19 class NullFrameReflower extends AbstractFrameReflower
20 {
21
22 function __construct(Frame $frame)
23 {
24 parent::__construct($frame);
25 }
26
27 function reflow(BlockFrameDecorator $block = null)
28 {
29 return;
30 }
31
32 }