Searched refs:getMethod (Results 1 – 18 of 18) sorted by relevance
2 ReflectionClass::getMethod() - error cases15 var_dump($rc->getMethod());20 var_dump($rc->getMethod("f", "f"));25 var_dump($rc->getMethod(null));30 var_dump($rc->getMethod(1));35 var_dump($rc->getMethod(1.5));40 var_dump($rc->getMethod(true));45 var_dump($rc->getMethod(array(1,2,3)));50 var_dump($rc->getMethod(new C));60 Warning: ReflectionClass::getMethod() expects exactly 1 parameter, 0 given in %s on line 9[all …]
2 Reflection Bug #30209 (ReflectionClass::getMethod() lowercases attribute)16 $method = $class->getMethod($this->name);
18 var_dump($h = $reflection->getMethod('__invoke')); // true22 var_dump($h = $reflection->getMethod('__invoke')); // true26 var_dump($h = $reflection->getMethod('__invoke')); // true
22 var_dump($r->getMethod('bla')->isConstructor());23 var_dump($r->getMethod('bla')->isAbstract());
2 ReflectionClass::getMethod()35 var_dump($rc->getMethod("f"));37 var_dump($rc->getMethod("s")); 39 var_dump($rc->getMethod("F")); 42 var_dump($rc->getMethod("doesntExist"));
11 $method = $class->getMethod('bar');
12 $method = $clazz->getMethod('x');
10 $reflection_method = $reflection_class->getMethod('__invoke');
16 $method = $clazz->getMethod('x');
16 $m=$a->getMethod("a");
37 'UMLClass::getMethod',
9 $rm = $ro->getMethod('__invoke');
118 Method [ <internal:Reflection> public method getMethod ] {
27 function getMethod() {return $this->method;}34 $method = $x->getMethod();
8 $objRfMethod = $objRfClass->getMethod('__soapCall');
18 $params = $reflectionClass->getMethod('b')->getParameters();
3424 ZEND_METHOD(reflection_class, getMethod) in ZEND_METHOD() argument5293 ZEND_ME(reflection_class, getMethod, arginfo_reflection_class_getMethod, 0)
7023 - Fixed bug #30209 (ReflectionClass::getMethod() lowercases attribute).7118 - Fixed ReflectionClass::getMethod() and ReflectionClass::getProperty() to
Completed in 60 milliseconds