controller = $controller; $this->action = $action; $this->params = $params; } /** * Invoke action * {@inheritDoc} * @see \Core\Foundation\Invoker::invoke() */ public function invoke() : Response { // Create Controller $controller = "\\App\\Controllers\\{$this->controller}"; $instance = new $controller(); return call_user_func_array(array($instance, 'invokeAction'), [$this->action, $this->params]); } }