如何让PhpStorm显示由@Method声明的方法抛出的异常(或从魔术方法docblock继承)?
假设以下示例代码:
/**
* @method bool someMethod()
*/
class MyClass
{
/**
* @throws MyClassException
*/
public function __call($method, $args)
{
if ($this->someCheck()) {
throw new MyClassException();
}
}
}
//...
try {
(new MyClass())->someMethod();
} catch (MyClassException $e) { // Reported by PHPStorm as not thrown!
// of course the exception is properly caught
}
如何让IDE检测由@method
docblock声明的方法引发的异常?我想知道这是否可行,如果不可行-我的替代方案是什么?
在这种情况下,在魔术方法中声明的@throws
似乎完全被忽略了。当然,我可以禁用检查,但这对我来说不是干净的解决方案.
解决方案
它说有一段时间是可能的(如果我没看错,可能是2018.1.x版本),但后来在2018.1.3"由于可用性问题"被回滚。
我同意这一点--不是每个人都乐于看到每个魔术方法调用都有未处理的异常警告(例如,Laravel经常使用它)--原因很简单,不是每个魔术方法都会抛出异常。
无论如何:https://youtrack.jetbrains.com/issue/WI-39284--查看此票证(星形/投票/评论)以获得有关任何进展的通知。
相关文章