15 lines
126 B
PHP
15 lines
126 B
PHP
<?php
|
|
|
|
|
|
namespace Console;
|
|
|
|
|
|
use Snowflake\Abstracts\Input;
|
|
|
|
interface ICommand
|
|
{
|
|
|
|
public function onHandler(Input $dtl);
|
|
|
|
}
|