Пример #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);
 }