ok
Direktori : /proc/thread-self/root/home2/selectio/public_html/subamangala/admin/pdf/src/Frame/ |
Current File : //proc/thread-self/root/home2/selectio/public_html/subamangala/admin/pdf/src/Frame/FrameList.php |
<?php namespace Dompdf\Frame; use Dompdf\Frame; use IteratorAggregate; /** * Linked-list IteratorAggregate * * @access private * @package dompdf */ class FrameList implements IteratorAggregate { /** * @var Frame */ protected $_frame; /** * @param Frame $frame */ function __construct($frame) { $this->_frame = $frame; } /** * @return FrameListIterator */ function getIterator() { return new FrameListIterator($this->_frame); } }