コード例 #1
0
ファイル: Cart.php プロジェクト: falkbizz/cart
 /**
  * Save the cart state.
  */
 public function save()
 {
     $data = serialize($this->toArray());
     $this->store->put($this->id, $data);
 }
コード例 #2
0
ファイル: CheckoutForm.php プロジェクト: rukzuk/rukzuk
 /**
  * Store content using Storage
  */
 public function save()
 {
     $this->store->put($this->id, $this->val());
 }