示例#1
0
文件: Cart.php 项目: voku/cart
 /**
  * Check if the cart has a specific item
  *
  * @param  string $itemIdentifier The unique item identifier
  *
  * @return boolean                 Yes or no?
  */
 public function has($itemIdentifier)
 {
     return $this->store->has($itemIdentifier);
 }