12 lines
139 B
PHP
12 lines
139 B
PHP
|
<?php
|
||
|
|
||
|
use function DI\create;
|
||
|
use function DI\get;
|
||
|
|
||
|
use RprtCli\Commands\RprtCommand;
|
||
|
|
||
|
return [
|
||
|
RprtCommand::class => DI\create(
|
||
|
)
|
||
|
];
|