コード例 #1
0
ファイル: _ide_helper.php プロジェクト: nmkr/basic-starter
 /**
  * Get the working directory of the cache.
  *
  * @return string 
  * @static 
  */
 public static function getDirectory()
 {
     return \Illuminate\Cache\FileStore::getDirectory();
 }
コード例 #2
0
ファイル: _ide_helper.php プロジェクト: satriashp/tour
 /**
  * Get the cache key prefix.
  *
  * @return string 
  * @static 
  */
 public static function getPrefix()
 {
     return \Illuminate\Cache\FileStore::getPrefix();
 }
コード例 #3
0
ファイル: TaggedFileCache.php プロジェクト: onlystar1991/mtdb
 /**
  * Create new taggedFileCache instance.
  */
 function __construct()
 {
     $file = App::make('Illuminate\\Filesystem\\Filesystem');
     parent::__construct($file, storage_path('cache'));
 }