/var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/config
NameSizeModeActions
Definition/-0755rm
Exception/-0755rm
Loader/-0755rm
Resource/-0755rm
Util/-0755rm
CHANGELOG.md41600644editdlrm
composer.json13150644editdlrm
ConfigCache.php15840644editdlrm
ConfigCacheFactory.php11050644editdlrm
ConfigCacheFactoryInterface.php9770644editdlrm
ConfigCacheInterface.php13350644editdlrm
FileLocator.php25380644editdlrm
FileLocatorInterface.php10570644editdlrm
LICENSE10650644editdlrm
README.md6320644editdlrm
ResourceCheckerConfigCache.php56600644editdlrm
ResourceCheckerConfigCacheFactory.php10670644editdlrm
ResourceCheckerInterface.php13820644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/config/ConfigCacheFactoryInterface.php (977B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config; /** * Interface for a ConfigCache factory. This factory creates * an instance of ConfigCacheInterface and initializes the * cache if necessary. * * @author Matthias Pigulla */ interface ConfigCacheFactoryInterface { /** * Creates a cache instance and (re-)initializes it if necessary. * * @param string $file The absolute cache file path * @param callable $callable The callable to be executed when the cache needs to be filled (i. e. is not fresh). The cache will be passed as the only parameter to this callback * * @return ConfigCacheInterface The cache instance */ public function cache(string $file, callable $callable); }