| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __construct( |
||
| 30 | array $items, |
||
| 31 | SpecificationInterface $searchCriteria = null, |
||
| 32 | ComparatorInterface $sortCriteria = null, |
||
| 33 | $offset = null, |
||
| 34 | $length = null |
||
| 35 | ) { |
||
| 36 | parent::__construct( |
||
| 37 | new \ArrayIterator($items), |
||
| 38 | $searchCriteria, |
||
| 39 | $sortCriteria, |
||
| 40 | $offset, |
||
| 41 | $length |
||
| 42 | ); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |