Search\Controller\Component\PrgComponent::startup PHP Метод

startup() публичный Метод

Checks if the current request has posted data and redirects the users to the same action after converting the post data into GET params
public startup ( ) : Response | null
Результат Cake\Network\Response | null
    public function startup()
    {
        if (!$this->_actionCheck()) {
            return null;
        }
        return $this->conversion();
    }