Lines Matching refs:ReflectionMethod
2 Test ReflectionMethod::setAccessible().
12 $private = new ReflectionMethod('A', 'aPrivate');
13 $privateStatic = new ReflectionMethod('A', 'aPrivateStatic');
14 $protected = new ReflectionMethod('A', 'aProtected');
15 $protectedStatic = new ReflectionMethod('A', 'aProtectedStatic');
96 string(73) "Trying to invoke private method A::aPrivate() from scope ReflectionMethod"
97 string(73) "Trying to invoke private method A::aPrivate() from scope ReflectionMethod"
98 string(79) "Trying to invoke private method A::aPrivateStatic() from scope ReflectionMethod"
99 string(79) "Trying to invoke private method A::aPrivateStatic() from scope ReflectionMethod"
100 string(77) "Trying to invoke protected method A::aProtected() from scope ReflectionMethod"
101 string(77) "Trying to invoke protected method A::aProtected() from scope ReflectionMethod"
102 string(83) "Trying to invoke protected method A::aProtectedStatic() from scope ReflectionMethod"
103 string(83) "Trying to invoke protected method A::aProtectedStatic() from scope ReflectionMethod"