Files
kiri-core/Console/ICommand.php
T
2020-10-29 18:17:25 +08:00

15 lines
150 B
PHP

<?php
declare(strict_types=1);
namespace Console;
use Snowflake\Abstracts\Input;
interface ICommand
{
public function onHandler(Input $dtl);
}