| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct( |
||
| 18 | ViewFactory $viewFactory, |
||
| 19 | GridMetadata $gridMetadata, |
||
| 20 | \Traversable $collection, |
||
| 21 | array $orderings |
||
| 22 | ) { |
||
| 23 | $this->viewFactory = $viewFactory; |
||
| 24 | $this->gridMetadata = $gridMetadata; |
||
| 25 | $this->collection = $collection; |
||
| 26 | $this->orderings = $orderings; |
||
| 27 | } |
||
| 28 | |||
| 53 |