Hey.
Please consider the code below.
class A {
public function __construct() {
}
}
class B extends A {
public $a = "a";
public $b = "b";
public $c = "c";
}
How do I get the class B's public variables from within the parent class without knowing precisely what they are?