EShoppingCart::saveState PHP 메소드

saveState() 보호된 메소드

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