19 lines
211 B
PHP
19 lines
211 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Console;
|
|
|
|
use Kiri\Abstracts\Input;
|
|
|
|
/**
|
|
* Interface CommandInterface
|
|
* @package Console
|
|
*/
|
|
interface CommandInterface
|
|
{
|
|
|
|
public function onHandler(Input $dtl);
|
|
|
|
}
|