Is it possible in PHP, that an abstract class inherits from an abstract class?
For example,
abstract class Generic { abstract public function a(
Yes it is possible however your code would not work if you called $VeryConcreteObject->b()
$VeryConcreteObject->b()
Here is more detailed explanation.