예제 #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
 /**
  * Store content using Storage
  */
 public function save()
 {
     $this->store->put($this->id, $this->val());
 }