18 lines
191 B
PHP
18 lines
191 B
PHP
<?php
|
|
|
|
|
|
namespace Console;
|
|
|
|
use Snowflake\Abstracts\Input;
|
|
|
|
/**
|
|
* Interface CommandInterface
|
|
* @package Console
|
|
*/
|
|
interface CommandInterface
|
|
{
|
|
|
|
public function onHandler(Input $dtl);
|
|
|
|
}
|