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