예제 #1
0
 /**
  * Store an item in the cache indefinitely.
  *
  * @param string $key
  * @param mixed $value
  * @return void 
  * @static 
  */
 public static function forever($key, $value)
 {
     \Illuminate\Cache\FileStore::forever($key, $value);
 }