Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| CommandHashmap | |
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\FtpServer\Lists; |
| 3 | |
| 4 | use Apie\Core\Lists\ItemHashmap; |
| 5 | use Apie\FtpServer\Commands\CommandInterface; |
| 6 | |
| 7 | final class CommandHashmap extends ItemHashmap |
| 8 | { |
| 9 | protected bool $mutable = false; |
| 10 | |
| 11 | public function offsetGet(mixed $offset): CommandInterface |
| 12 | { |
| 13 | return parent::offsetGet($offset); |
| 14 | } |
| 15 | } |