Blame view
public/vendor/illuminate/contracts/Foundation/CachesConfiguration.php
520 Bytes
86143e36f Коммит вторник |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?php namespace Illuminate\Contracts\Foundation; interface CachesConfiguration { /** * Determine if the application configuration is cached. * * @return bool */ public function configurationIsCached(); /** * Get the path to the configuration cache file. * * @return string */ public function getCachedConfigPath(); /** * Get the path to the cached services.php file. * * @return string */ public function getCachedServicesPath(); } |