コード例 #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);
 }