/** * Removes the current item from the cart * * @return void */ public function remove() { $this->store->remove($this->identifier); }
/** * Remove identifier from storage * @param $identifier * @return mixed */ public function remove($identifier) { return $this->onlineUsers->remove($identifier); }