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