Open
Description
Here is a difference that exists now for inherited methods. Unfortunately, there isn't easy way to solve this issue right now, because we need to always use our custom reflection classes to wrap original reflection instances with decorator.
abstract class ImplicitAbstractClass
{
abstract function test();
}
abstract class SimpleAbstractInheritance extends ImplicitAbstractClass
{
}
Original: Method [ <user, inherits ImplicitAbstractClass> abstract public method test ] {
@@ /in/HOSpR 8 - 8
}
Parsed: Method [ <user> abstract public method test ] {
@@ /in/HOSpR 8 - 8
}