Lines Matching refs:class
5 class NewCtor {
9 class ExtendsNewCtor extends NewCtor {
12 class OldCtor {
16 class ExtendsOldCtor extends OldCtor {
20 class X {
24 class Y extends X {
27 class OldAndNewCtor {
32 class NewAndOldCtor {
36 class B {
40 class C extends B {
44 class D1 extends C {
48 class D2 extends C {
54 foreach ($classes as $class) {
55 $rc = new ReflectionObject(new $class);
58 echo "Constructor of $class: " . $rm->getName() . "\n";
60 echo "No constructor for $class\n";
67 Deprecated: Methods with the same name as their class will not be constructors in a future version …
69 Deprecated: Methods with the same name as their class will not be constructors in a future version …
71 Deprecated: Methods with the same name as their class will not be constructors in a future version …