コード例 #1
0
ファイル: Cart.php プロジェクト: voku/cart
 /**
  * Cart destructor
  *
  * Stores cart to store (e.g. Session) if the store provides a save() method.
  */
 public function __destruct()
 {
     // Save the cart to store (e.g. Session)
     if (method_exists($this->store, 'save')) {
         $this->store->save();
     }
 }