芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/vendor/mockery/mockery/library/Mockery/Generator/Method.php
method = $method; } public function __call($method, $args) { return call_user_func_array(array($this->method, $method), $args); } /** * @return Parameter[] */ public function getParameters() { return array_map(function (\ReflectionParameter $parameter) { return new Parameter($parameter); }, $this->method->getParameters()); } /** * @return string|null */ public function getReturnType() { return Reflector::getReturnType($this->method); } }