Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
phpMyAdmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Definition
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
Loader
[ DIR ]
drwxrwxrwx
Resource
[ DIR ]
drwxrwxrwx
Util
[ DIR ]
drwxrwxrwx
CHANGELOG.md
3.22
KB
-rw-rw-rw-
ConfigCache.php
1.55
KB
-rw-rw-rw-
ConfigCacheFactory.php
1.26
KB
-rw-rw-rw-
ConfigCacheFactoryInterface.ph...
961
B
-rw-rw-rw-
ConfigCacheInterface.php
1.3
KB
-rw-rw-rw-
FileLocator.php
2.46
KB
-rw-rw-rw-
FileLocatorInterface.php
1.01
KB
-rw-rw-rw-
LICENSE
1.04
KB
-rw-rw-rw-
README.md
632
B
-rw-rw-rw-
ResourceCheckerConfigCache.php
5.52
KB
-rw-rw-rw-
ResourceCheckerConfigCacheFact...
1.22
KB
-rw-rw-rw-
ResourceCheckerInterface.php
1.35
KB
-rw-rw-rw-
composer.json
1.21
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ResourceCheckerInterface.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 ResourceCheckers. * * When a ResourceCheckerConfigCache instance is checked for freshness, all its associated * metadata resources are passed to ResourceCheckers. The ResourceCheckers * can then inspect the resources and decide whether the cache can be considered * fresh or not. * * @author Matthias Pigulla <mp@webfactory.de> * @author Benjamin Klotz <bk@webfactory.de> */ interface ResourceCheckerInterface { /** * Queries the ResourceChecker whether it can validate a given * resource or not. * * @return bool True if the ResourceChecker can handle this resource type, false if not */ public function supports(ResourceInterface $metadata); /** * Validates the resource. * * @param int $timestamp The timestamp at which the cache associated with this resource was created * * @return bool True if the resource has not changed since the given timestamp, false otherwise */ public function isFresh(ResourceInterface $resource, $timestamp); }
Close