FluxBB\Web\Controller::execute PHP Method

execute() protected method

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