Aimeos\Shop\Base\View::addResponse PHP Метод

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

Adds the "response" helper to the view object
protected addResponse ( Aimeos\MW\View\Iface $view ) : Aimeos\MW\View\Iface
$view Aimeos\MW\View\Iface View object
Результат Aimeos\MW\View\Iface Modified view object
    protected function addResponse(\Aimeos\MW\View\Iface $view)
    {
        $helper = new \Aimeos\MW\View\Helper\Response\Laravel5($view);
        $view->addHelper('response', $helper);
        return $view;
    }