Crud\Listener\ApiPaginationListener::implementedEvents PHP Method

implementedEvents() public method

You can override this function to add you own listener callbacks We attach at priority 10 so normal bound events can run before us
public implementedEvents ( ) : array | null
return array | null
    public function implementedEvents()
    {
        if (!$this->_checkRequestType('api')) {
            return null;
        }
        return ['Crud.beforeRender' => ['callable' => 'beforeRender', 'priority' => 75]];
    }