Application.php
1 month ago
CachesConfiguration.php
2 years ago
CachesRoutes.php
2 years ago
ExceptionRenderer.php
1 month ago
MaintenanceMode.php
1 month ago
CachesConfiguration.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Foundation; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface CachesConfiguration |
| 7 | { |
| 8 | /** |
| 9 | * Determine if the application configuration is cached. |
| 10 | * |
| 11 | * @return bool |
| 12 | */ |
| 13 | public function configurationIsCached(); |
| 14 | /** |
| 15 | * Get the path to the configuration cache file. |
| 16 | * |
| 17 | * @return string |
| 18 | */ |
| 19 | public function getCachedConfigPath(); |
| 20 | /** |
| 21 | * Get the path to the cached services.php file. |
| 22 | * |
| 23 | * @return string |
| 24 | */ |
| 25 | public function getCachedServicesPath(); |
| 26 | } |
| 27 |