使用类似工厂的模式时,PhpStorm仅在使用docblock注释时识别类。例如:
/** @var \Some\Thing $thing */
$thing = $this->factory('some/thing');
$thing->doSomething();
没有@var
声明,PhpStorm不知道doSomething()
是\Some\Thing
类的方法。如果完全取决于我,我只想添加这些docblock评论。但是,我的同事不喜欢内联docblock评论。
有没有办法: