Closed
Description
Inherited description annotations are incorrectly reported as unused:
interface ClassInterface {
/*
* @throws \LogicException Description.
*/
public function foo()
}
class ChildClass implements ClassInterface {
public function foo(){
throw new \LogicException(); // Unused @throws LogicException
}
}