PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
dompdf
/
dompdf
/
src
/
FrameReflower
<?php /** * @package dompdf * @link https://github.com/dompdf/dompdf * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace Dompdf\FrameReflower; use Dompdf\Frame; use Dompdf\FrameDecorator\Block as BlockFrameDecorator; /** * Dummy reflower * * @package dompdf */ class NullFrameReflower extends AbstractFrameReflower { /** * NullFrameReflower constructor. * @param Frame $frame */ function __construct(Frame $frame) { parent::__construct($frame); } /** * @param BlockFrameDecorator|null $block */ function reflow(BlockFrameDecorator $block = null) { return; } }
[-] AbstractFrameReflower.php
[edit]
[-] Block.php
[edit]
[+]
..
[-] NullFrameReflower.php
[edit]
[-] TableRow.php
[edit]
[-] Table.php
[edit]
[-] TableCell.php
[edit]
[-] ListBullet.php
[edit]
[-] Image.php
[edit]
[-] TableRowGroup.php
[edit]
[-] Text.php
[edit]
[-] Page.php
[edit]
[-] Inline.php
[edit]