如何从接口“自动实现”/生成方法到 PHP 类?我想使用VS Code为它
界面 :
Run Code Online (Sandbox Code Playgroud)interface MyInterface{ public function myMethod($param); }
班级 :
Class MyClass implements MyInterface{
//myMethod should be auto generate by vscode
public function myMethod($param){
}
}
Run Code Online (Sandbox Code Playgroud)
VS Code 中是否存在此功能?