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 protected instance method of parent object through "self::" to parent method';
89 echo 'MagicCall __call instance method ';
93 echo 'MagicCall __callStatic static method ';
103 Access public instance method of object OK
104 Access public instance method of parent object through parent:: OK
109 Instance return private method as callable OK
110 Instance return private static method as callable OK
111 Instance return protected static method as callable OK
112 Subclass closure over parent class protected method OK
113 Subclass closure over parent class static protected method OK
114 Access public instance method of parent object through "parent::"
117 Access public instance method of self object through "self::"
120 Access public instance method of parent object through "self::" to parent method
123 Access protected instance method of parent object through "self::" to parent method
126 MagicCall __call instance method __call,nonExistentMethod, OK
127 MagicCall __callStatic static method __callStatic,nonExistentMethod, OK