コード例 #1
0
ファイル: ComposerScripts.php プロジェクト: SocietyCMS/Core
 /**
  * Clear the cached Laravel bootstrapping files.
  *
  * @return void
  */
 protected static function clearCompiled()
 {
     $laravel = new Application(getcwd());
     if (file_exists($compiledPath = $laravel->getCachedCompilePath())) {
         @unlink($compiledPath);
     }
     if (file_exists($servicesPath = $laravel->getCachedServicesPath())) {
         @unlink($servicesPath);
     }
 }
コード例 #2
0
ファイル: _ide_helper.php プロジェクト: satriashp/tour
 /**
  * Get the path to the cached "compiled.php" file.
  *
  * @return string 
  * @static 
  */
 public static function getCachedCompilePath()
 {
     return \Illuminate\Foundation\Application::getCachedCompilePath();
 }