mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 19:51:30 +00:00
38 lines
695 B
PHP
38 lines
695 B
PHP
<?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;
|
|
}
|
|
|
|
}
|