X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/dompdf/dompdf/src/Frame
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
dompdf
/
dompdf
/
src
/
Frame
/
📁
..
📄
Factory.php
(8.88 KB)
📄
FrameList.php
(524 B)
📄
FrameListIterator.php
(1.46 KB)
📄
FrameTree.php
(8.49 KB)
📄
FrameTreeIterator.php
(1.51 KB)
📄
FrameTreeList.php
(556 B)
Editing: 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); } }
Upload File
Create Folder