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