Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| StrongPasswordList | |
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\Fixtures\Lists; |
| 3 | |
| 4 | use Apie\Core\Lists\ItemList; |
| 5 | use Apie\TextValueObjects\StrongPassword; |
| 6 | |
| 7 | class StrongPasswordList extends ItemList |
| 8 | { |
| 9 | public function offsetGet($offset): StrongPassword |
| 10 | { |
| 11 | return parent::offsetGet($offset); |
| 12 | } |
| 13 | } |