Exemple #1
0
 /**
  * Get the working directory of the cache.
  *
  * @return string 
  * @static 
  */
 public static function getDirectory()
 {
     return \Illuminate\Cache\FileStore::getDirectory();
 }
Exemple #2
0
 /**
  * Get the cache key prefix.
  *
  * @return string 
  * @static 
  */
 public static function getPrefix()
 {
     return \Illuminate\Cache\FileStore::getPrefix();
 }
 /**
  * Create new taggedFileCache instance.
  */
 function __construct()
 {
     $file = App::make('Illuminate\\Filesystem\\Filesystem');
     parent::__construct($file, storage_path('cache'));
 }