Пример #1
0
Файл: Item.php Проект: voku/cart
 /**
  * Removes the current item from the cart
  *
  * @return void
  */
 public function remove()
 {
     $this->store->remove($this->identifier);
 }
Пример #2
0
 /**
  * Remove identifier from storage
  * @param $identifier
  * @return mixed
  */
 public function remove($identifier)
 {
     return $this->onlineUsers->remove($identifier);
 }