Dusterio\AwsWorker\Controllers\LaravelController::callAction PHP Method

callAction() public method

Execute an action on the controller.
public callAction ( string $method, array $parameters ) : Response
$method string
$parameters array
return Symfony\Component\HttpFoundation\Response
    public function callAction($method, $parameters)
    {
        return call_user_func_array([$this, $method], $parameters);
    }