PhpStorm - 初始化所有方法的字段(不仅适用于__construct)

时间:2018-06-05 11:14:51

标签: phpstorm

是否可以让Initialize fields参数的__construct()选项也可用于其他方法?

我有很多类,其方法设置的数据不是__construct,写的所有类参数和$this->x = $x都很痛苦。

我不需要制作吸气剂&来自田野的塞特犬。我需要与构造函数完全相同的行为。我有方法public function methodName($x, $y, $z),我希望为课程创建参数。

之前

public function notConstructor($x, $y, $z) {

}

private $x;

private $y;

private $z;

public function notConstructor($x, $y, $z) {
    $this->x = $x;
    $this->y = $y;
    $this->z = $z;
}

0 个答案:

没有答案