mirror of
https://github.com/yiisoft/app.git
synced 2026-03-05 07:44:03 +01:00
10 lines
98 B
PHP
10 lines
98 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Command\Hello;
|
|
|
|
return [
|
|
'hello' => Hello::class,
|
|
];
|