Git忽略内联docblock

时间:2014-10-24 08:45:09

标签: php git namespaces phpstorm docblocks

使用类似工厂的模式时,PhpStorm仅在使用docblock注释时识别类。例如:

/** @var \Some\Thing $thing */
$thing = $this->factory('some/thing');
$thing->doSomething();

没有@var声明,PhpStorm不知道doSomething()\Some\Thing类的方法。如果完全取决于我,我只想添加这些docblock评论。但是,我的同事不喜欢内联docblock评论。

有没有办法:

  • 提交时忽略这些docblock(例如,通过正则表达式过滤)或
  • 教会phpstorm如何根据'some / thing'参数或
  • 查找类名
  • 使用其他方法仅将这些注释保留在我自己的工作副本中?

0 个答案:

没有答案