16 lines
175 B
PHP
16 lines
175 B
PHP
<?php
|
|
|
|
|
|
namespace Snowflake\Console;
|
|
|
|
/**
|
|
* Interface CommandInterface
|
|
* @package Snowflake\Console
|
|
*/
|
|
interface CommandInterface
|
|
{
|
|
|
|
public function handler(Dtl $dtl);
|
|
|
|
}
|