ArrayAccessでコード補完(PhpStormネタ)
ArrayAccess
を使うとオブジェクトを配列のように使えます。
その際、いくつかメソッドを追加するのですが、返り値を指定することができます。
こんなコード。
/**
* @param mixed $offset
* @return Hi
*/
public function offsetGet($offset) {
....
}
するとコード補完ができた。
この「e()
」が補完したいメソッド。
なお、$this
ではだめだった。
PhpStormのバージョンは2019.1を利用。
コード
一応、クラスとコード。
class Hi implements ArrayAccess
{
private $hi = '';
public function e() {
return $this->hi;
}
/**
* @param mixed $offset
* @return Hi
*/
public function offsetGet($offset) {
$this->hi .= $offset;
return $this;
}
public function offsetSet($offset, $value) {}
public function offsetUnset($offset) {}
public function offsetExists($offset) {
return false;
}
}
$hi = new Hi();
echo $hi['h']['i']->e();
Author And Source
この問題について(ArrayAccessでコード補完(PhpStormネタ)), 我々は、より多くの情報をここで見つけました https://qiita.com/asaokamei/items/9ec6d12d0c579ac6180f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .