/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Foundation/CachesConfiguration.php
27 строк
520 B
Mior Muhammad Zaki
[7.0] Split configuration & routes can be cached from Application contract. (#29790)
01 сен 2019, 12:43
01 сен 2019, 12:43
6b5738a
Код
Авторство
О чём код?
<?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(); }