Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Config /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Definition
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Exception
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Loader
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Resource
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Util
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
ConfigCache.php
1.5
KB
-rw-r--r--
2026-05-27 08:15
ConfigCacheFactory.php
1.08
KB
-rw-r--r--
2026-05-27 08:15
ConfigCacheFactoryInterface.php
958
B
-rw-r--r--
2026-05-27 08:15
ConfigCacheInterface.php
1.25
KB
-rw-r--r--
2026-05-27 08:15
FileLocator.php
2.59
KB
-rw-r--r--
2026-05-27 08:15
FileLocatorInterface.php
1.03
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerConfigCache.php
5.52
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerInterface.php
1.2
KB
-rw-r--r--
2026-05-27 08:15
autoload.php
10.04
KB
-rw-r--r--
2026-05-27 22:18
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config; use Symfony\Component\Config\Resource\ResourceInterface; /** * Interface for ConfigCache. * * @author Matthias Pigulla <mp@webfactory.de> */ interface ConfigCacheInterface { /** * Gets the cache file path. * * @return string */ public function getPath(); /** * Checks if the cache is still fresh. * * This check should take the metadata passed to the write() method into consideration. * * @return bool */ public function isFresh(); /** * Writes the given content into the cache file. Metadata will be stored * independently and can be used to check cache freshness at a later time. * * @param string $content The content to write into the cache * @param ResourceInterface[]|null $metadata An array of ResourceInterface instances * * @throws \RuntimeException When the cache file cannot be written */ public function write(string $content, ?array $metadata = null); }