null_frame_reflower.cls.php 475 B

123456789101112131415161718192021
  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. * Dummy reflower
  10. *
  11. * @access private
  12. * @package dompdf
  13. */
  14. class Null_Frame_Reflower extends Frame_Reflower {
  15. function __construct(Frame $frame) { parent::__construct($frame); }
  16. function reflow(Block_Frame_Decorator $block = null) { return; }
  17. }