Files
kiri-core/system/Console/CommandInterface.php
T

16 lines
175 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
namespace Snowflake\Console;
/**
* Interface CommandInterface
2020-08-31 12:38:32 +08:00
* @package Snowflake\Console
2020-08-31 01:27:08 +08:00
*/
interface CommandInterface
{
public function handler(Dtl $dtl);
}