FluxBB\Web\Controller::execute PHP Метод

execute() защищенный Метод

Let the FluxBB server execute the given action and return its response data.
protected execute ( string $action, array $parameters = [] ) : array
$action string
$parameters array
Результат array
    protected function execute($action, array $parameters = [])
    {
        $parameters += $this->input;
        return $this->server->dispatch(new ServerRequest($action, $parameters))->getData();
    }