10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
namespace app\crud\make;
|
|
|
|
interface ToAutoMake
|
|
{
|
|
public function check($flag, $path);
|
|
|
|
public function make($flag, $path, $other);
|
|
} |