Is it possible to declare an instance of a class as a property in PHP?
Basically what I want to achieve is:
abstract class ClassA() { static $prop
you can use a singleton like implementation:
then you can reference the instance with:
ClassA::getInstance()->someClassBMethod();