招标
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
449 B

<?php
/**
* 创建项目的基础接口
* View.php
* User: ChenLong
* DateTime: 2020/3/11 15:05
*/
namespace sdModule\makeAdminBasics\makeItem;
use sdModule\makeAdminBasics\Make;
interface MakeItemInterface
{
/**
* 构造函数
* MakeItem constructor.
* @param Make $make
*/
public function __construct(Make $make);
/**
* 创建文件
* @return mixed
*/
public function make():bool;
}