diff --git a/src/Illuminate/Contracts/Foundation/Application.php b/src/Illuminate/Contracts/Foundation/Application.php index 051b95324a62..9247759cd40e 100644 --- a/src/Illuminate/Contracts/Foundation/Application.php +++ b/src/Illuminate/Contracts/Foundation/Application.php @@ -83,4 +83,18 @@ public function booting($callback); * @return void */ public function booted($callback); + + /** + * Get the path to the cached "compiled.php" file. + * + * @return string + */ + public function getCachedCompilePath(); + + /** + * Get the path to the cached services.json file. + * + * @return string + */ + public function getCachedServicesPath(); }