EShoppingCart::saveState PHP Method

saveState() protected method

Saves the state of the object in the session.
protected saveState ( ) : void
return void
    protected function saveState()
    {
        Yii::app()->getUser()->setState($this->cartId, serialize($this->toArray()));
        $this->couponManager->check();
    }