VS Code在PHP类中自动生成接口方法?

时间:2019-02-26 10:59:56

标签: php methods interface visual-studio-code implements

如何从接口“自动实现” /生成方法到PHP类? 我想使用 VS Code

界面:

interface MyInterface{  public function myMethod($param); }

class:

Class MyClass implements MyInterface{
//myMethod should be auto generate by vscode
   public function myMethod($param){

}
}

VS代码中是否存在此功能?

2 个答案:

答案 0 :(得分:1)

当你用光标聚焦该行时,

你可以点击图标! icon

click icon

答案 1 :(得分:0)

VSCode不为PHP提供开箱即用的支持。据我所知,这不能通过任何现有的PHP插件(如PHP Intelephense或PHP IntelliSense)获得。 但是,PHP Intelephense会从已实现的接口中自动完成方法。