Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | ViewFactory $factory, |
||
19 | \Traversable $collection, |
||
20 | string $viewType, |
||
21 | array $viewOptions |
||
22 | ) { |
||
23 | $this->factory = $factory; |
||
24 | $this->collection = new \IteratorIterator($collection); |
||
25 | $this->viewType = $viewType; |
||
26 | $this->viewOptions = $viewOptions; |
||
27 | } |
||
28 | |||
58 |