Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| OrderLineList | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| offsetGet | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | namespace Apie\Fixtures\Lists; |
| 3 | |
| 4 | use Apie\Core\Lists\ItemList; |
| 5 | use Apie\Fixtures\Entities\OrderLine; |
| 6 | |
| 7 | class OrderLineList extends ItemList |
| 8 | { |
| 9 | public function offsetGet($offset): OrderLine |
| 10 | { |
| 11 | return parent::offsetGet($offset); |
| 12 | } |
| 13 | } |