ShoppingCart_Controller::clear PHP Method

clear() public method

Action: clear the cart
public clear ( $request ) : AjaxHTTPResponse | boolean
$request
return AjaxHTTPResponse | boolean
    public function clear($request)
    {
        $this->updateLocale($request);
        $this->cart->clear();
        $this->extend('updateClearResponse', $request, $response);
        return $response ? $response : self::direct();
    }