/home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery/Generator
Edit: /home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery/Generator/Method.php (1064B)
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);
}
}