blob: 08ebdaf7dfd5747f163561a6b17c5ed1569e9b7a [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Foundation;
4
5interface CachesConfiguration
6{
7 /**
8 * Determine if the application configuration is cached.
9 *
10 * @return bool
11 */
12 public function configurationIsCached();
13
14 /**
15 * Get the path to the configuration cache file.
16 *
17 * @return string
18 */
19 public function getCachedConfigPath();
20
21 /**
22 * Get the path to the cached services.php file.
23 *
24 * @return string
25 */
26 public function getCachedServicesPath();
27}