2020-08-31 01:27:08 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
2020-09-03 00:15:57 +08:00
|
|
|
namespace Console;
|
2020-08-31 01:27:08 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface CommandInterface
|
2020-09-03 00:15:57 +08:00
|
|
|
* @package Console
|
2020-08-31 01:27:08 +08:00
|
|
|
*/
|
|
|
|
|
interface CommandInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function handler(Dtl $dtl);
|
|
|
|
|
|
|
|
|
|
}
|