Hello, Sebastian This seems to be a known bug http://bugs.php.net/bug.php?id=43408 and in fact already assigned.
Fallbacks occur in static/self calls, as static/self resolve to "foo" > and it returns foo as expected. > > However, when you do a parent::demo() you actually call bar::demo(), > which is currently understood as a "fully qualified call": the caller is > not passed. > > There are plans to allow explicit parent call to pass the caller, but > this is *still under discussion*. > >