Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
PropertyDefinitionList | |
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\Maker\BoundedContext\Lists; |
3 | |
4 | use Apie\Core\Lists\ItemSet; |
5 | use Apie\Maker\BoundedContext\Dtos\PropertyDefinition; |
6 | |
7 | final class PropertyDefinitionList extends ItemSet |
8 | { |
9 | public function offsetGet(mixed $offset): PropertyDefinition |
10 | { |
11 | return parent::offsetGet($offset); |
12 | } |
13 | } |