ShoppingCart_Controller::clear PHP Метод

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

Action: clear the cart
public clear ( $request ) : AjaxHTTPResponse | boolean
$request
Результат AjaxHTTPResponse | boolean
    public function clear($request)
    {
        $this->updateLocale($request);
        $this->cart->clear();
        $this->extend('updateClearResponse', $request, $response);
        return $response ? $response : self::direct();
    }