我正在使用phpStorm。我有Kohana框架编写的以下代码:
throw HTTP_Exception::factory(404, 'The requested URL :uri was not found on this server.', array(':uri' => $this->request->uri()) )->request($this->request);
问题是phpStorm认为这段代码无效,并显示以下消息:the thrown object must be an instance of the exception
。我不喜欢它,因为它显示整个项目直到第一个目录都无效。
有什么办法可以解决此问题而无需更改代码?