Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Builder
[ DIR ]
drwxr-xr-x
Definition
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Resource
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
CHANGELOG.md
4.14
KB
-rw-r--r--
composer.json
1.32
KB
-rw-r--r--
ConfigCacheFactoryInterface.php
958
B
-rw-r--r--
ConfigCacheFactory.php
1.08
KB
-rw-r--r--
ConfigCacheInterface.php
1.25
KB
-rw-r--r--
ConfigCache.php
1.5
KB
-rw-r--r--
FileLocatorInterface.php
1.03
KB
-rw-r--r--
FileLocator.php
2.48
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
README.md
596
B
-rw-r--r--
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-r--r--
ResourceCheckerConfigCache.php
5.46
KB
-rw-r--r--
ResourceCheckerInterface.php
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ConfigCacheInterface.php
<?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); }
Close