Пример #1
0
 /**
  * Remove an item from the cache.
  *
  * @param  mixed $key
  * @return bool
  */
 public function forget($key)
 {
     if (is_array($key)) {
         return $this->forgetMany($key);
     }
     return parent::forget($key);
 }