IYUUPlus/app/domain/CommandInterface.php

14 lines
193 B
PHP
Raw Normal View History

2021-02-23 09:01:46 +00:00
<?php
2022-10-03 03:03:11 +00:00
2021-02-23 09:01:46 +00:00
namespace app\domain;
/**
* 命令解析接口
* Interface CommandInterface
* @package app\domain
*/
interface CommandInterface
{
2022-10-03 03:03:11 +00:00
public function parse(array $param): string;
2021-09-05 06:45:46 +00:00
}