Searched refs:methodName (Results 1 – 4 of 4) sorted by relevance
6 function getMethodName(&$methodName) {7 $methodName = Abc::METHOD_NAME;
13 public function __call($methodName, array $arguments)
1089 public string $methodName; variable in MethodName1091 public function __construct(Name $className, string $methodName) { argument1093 $this->methodName = $methodName;1101 return "ZEND_METHOD({$this->getDeclarationClassName()}, $this->methodName);\n";1105 return "arginfo_class_{$this->getDeclarationClassName()}_{$this->methodName}";1109 return $this->getDeclarationClassName() . "_{$this->methodName}";1113 return strtolower($this->methodName);1117 return "$this->className::$this->methodName";1125 return $this->methodName === "__construct";1129 return $this->methodName === "__destruct";[all …]
28 #define ZEND_ENUM_DISALLOW_MAGIC_METHOD(propertyName, methodName) \ argument31 …eturn(E_COMPILE_ERROR, "Enum %s cannot include magic method %s", ZSTR_VAL(ce->name), methodName); \
Completed in 20 milliseconds