コード例 #1
0
ファイル: Cart.php プロジェクト: amittier5/miramix
 /**
  * Check an item exist or not.
  * @param  $id
  *
  * @return boolean
  */
 public function has($id)
 {
     $this->collection->setItems($this->session->get($this->getCart(), []));
     return $this->collection->findItem($id) ? true : false;
 }