Jarves\Controller\ObjectCrudController::getItemsAction PHP Method

getItemsAction() public method

public getItemsAction ( FOS\RestBundle\Request\ParamFetcher $paramFetcher ) : mixed
$paramFetcher FOS\RestBundle\Request\ParamFetcher
return mixed
    public function getItemsAction(ParamFetcher $paramFetcher)
    {
        $this->setLanguage($paramFetcher->get('lang'));
        $this->setDomain($paramFetcher->get('domain'));
        return $this->getItems($paramFetcher->get('filter') ?: null, $paramFetcher->get('limit') ?: null, $paramFetcher->get('offset') ?: null, $paramFetcher->get('q') ?: '', $paramFetcher->get('fields') ?: null, $paramFetcher->get('order') ?: null, $paramFetcher->get('withAcl') ?: null, $paramFetcher->get('primaryKeys') ?: []);
    }