PhpStorm中是否有快捷方式为$model2
生成与$model1
相同的代码?
class Test{
private $model1;
public function __construct(string $model1, $model2)
{
$this->model1 = $model1;
....
}
}
答案 0 :(得分:4)
答案 1 :(得分:1)
是的,将光标放在$model2
上,然后按 Alt + 输入并选择选项Initialize fields
。
它会在你的类中创建一个私有字段(如果它还不存在),并在构造函数中指定它。
答案 2 :(得分:0)
可以通过快捷方式初始化和创建__construct方法
将光标放在要创建 __construct 方法的位置,然后按 ALT + 插入 Select constructor and choose your propertise