Files
kiri-core/Console/ICommand.php
T

15 lines
150 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 01:27:08 +08:00
2020-09-03 00:15:57 +08:00
namespace Console;
2020-08-31 01:27:08 +08:00
2020-09-07 18:11:36 +08:00
use Snowflake\Abstracts\Input;
2020-08-31 01:27:08 +08:00
interface ICommand
{
2020-09-07 18:11:36 +08:00
public function onHandler(Input $dtl);
2020-08-31 01:27:08 +08:00
}