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