Lines Matching refs:method

20 echo 'Access public instance method of object';
24 echo 'Access public instance method of parent object through parent:: ';
44 echo "Instance return private method as callable";
49 echo "Instance return private static method as callable";
54 echo 'Instance return protected static method as callable';
59 echo 'Subclass closure over parent class protected method';
64 echo 'Subclass closure over parent class static protected method';
69 echo 'Access public instance method of parent object through "parent::" ';
74 echo 'Access public instance method of self object through "self::" ';
79 echo 'Access public instance method of parent object through "self::" to parent method';
84 echo 'Access proteced instance method of parent object through "self::" to parent method';
89 echo 'MagicCall __call instance method ';
93 echo 'MagicCall __callStatic static method ';
104 Access public instance method of object OK
105 Access public instance method of parent object through parent:: OK
110 Instance return private method as callable OK
111 Instance return private static method as callable OK
112 Instance return protected static method as callable OK
113 Subclass closure over parent class protected method OK
114 Subclass closure over parent class static protected method OK
115 Access public instance method of parent object through "parent::" OK
116 Access public instance method of self object through "self::" OK
117 Access public instance method of parent object through "self::" to parent method OK
118 Access proteced instance method of parent object through "self::" to parent method OK
119 MagicCall __call instance method __call,nonExistentMethod, OK
120 MagicCall __callStatic static method __callStatic,nonExistentMethod, OK