| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function __construct( |
||
| 19 | CellFactory $cellFactory, |
||
| 20 | GridMetadata $gridMetadata, |
||
| 21 | \Iterator $collection, |
||
| 22 | GridContext $context |
||
| 23 | ) { |
||
| 24 | $this->cellFactory = $cellFactory; |
||
| 25 | $this->gridMetadata = $gridMetadata; |
||
| 26 | $this->collection = $collection; |
||
| 27 | $this->context = $context; |
||
| 28 | } |
||
| 29 | |||
| 49 |