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 : 18.117.157.139
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
symfony /
cache /
Adapter /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractAdapter.php
8.02
KB
-rw-r--r--
2021-02-05 18:32
AbstractTagAwareAdapter.php
12.17
KB
-rw-r--r--
2021-02-05 18:32
AdapterInterface.php
1
KB
-rw-r--r--
2021-02-05 18:32
ApcuAdapter.php
643
B
-rw-r--r--
2021-02-05 18:32
ArrayAdapter.php
4.25
KB
-rw-r--r--
2021-02-05 18:32
ChainAdapter.php
8.6
KB
-rw-r--r--
2021-02-05 18:32
DoctrineAdapter.php
700
B
-rw-r--r--
2021-02-05 18:32
FilesystemAdapter.php
933
B
-rw-r--r--
2021-02-05 18:32
FilesystemTagAwareAdapter.php
7.42
KB
-rw-r--r--
2021-02-05 18:32
MemcachedAdapter.php
1.27
KB
-rw-r--r--
2021-02-05 18:32
NullAdapter.php
2.71
KB
-rw-r--r--
2021-02-05 18:32
PdoAdapter.php
2.31
KB
-rw-r--r--
2021-02-05 18:32
PhpArrayAdapter.php
9.41
KB
-rw-r--r--
2021-02-05 18:32
PhpFilesAdapter.php
1.32
KB
-rw-r--r--
2021-02-05 18:32
ProxyAdapter.php
8.21
KB
-rw-r--r--
2021-02-05 18:32
Psr16Adapter.php
1.84
KB
-rw-r--r--
2021-02-05 18:32
RedisAdapter.php
1
KB
-rw-r--r--
2021-02-05 18:32
RedisTagAwareAdapter.php
11.06
KB
-rw-r--r--
2021-02-05 18:32
SimpleCacheAdapter.php
553
B
-rw-r--r--
2021-02-05 18:32
TagAwareAdapter.php
11.35
KB
-rw-r--r--
2021-02-05 18:32
TagAwareAdapterInterface.php
785
B
-rw-r--r--
2021-02-05 18:32
TraceableAdapter.php
6.9
KB
-rw-r--r--
2021-02-05 18:32
TraceableTagAwareAdapter.php
926
B
-rw-r--r--
2021-02-05 18:32
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\Cache\Adapter; use Psr\Cache\CacheItemInterface; use Symfony\Component\Cache\CacheItem; use Symfony\Contracts\Cache\CacheInterface; /** * @author Titouan Galopin <galopintitouan@gmail.com> */ class NullAdapter implements AdapterInterface, CacheInterface { private $createCacheItem; public function __construct() { $this->createCacheItem = \Closure::bind( function ($key) { $item = new CacheItem(); $item->key = $key; $item->isHit = false; return $item; }, $this, CacheItem::class ); } /** * {@inheritdoc} */ public function get(string $key, callable $callback, float $beta = null, array &$metadata = null) { $save = true; return $callback(($this->createCacheItem)($key), $save); } /** * {@inheritdoc} */ public function getItem($key) { $f = $this->createCacheItem; return $f($key); } /** * {@inheritdoc} */ public function getItems(array $keys = []) { return $this->generateItems($keys); } /** * {@inheritdoc} * * @return bool */ public function hasItem($key) { return false; } /** * {@inheritdoc} * * @param string $prefix * * @return bool */ public function clear(/*string $prefix = ''*/) { return true; } /** * {@inheritdoc} * * @return bool */ public function deleteItem($key) { return true; } /** * {@inheritdoc} * * @return bool */ public function deleteItems(array $keys) { return true; } /** * {@inheritdoc} * * @return bool */ public function save(CacheItemInterface $item) { return false; } /** * {@inheritdoc} * * @return bool */ public function saveDeferred(CacheItemInterface $item) { return false; } /** * {@inheritdoc} * * @return bool */ public function commit() { return false; } /** * {@inheritdoc} */ public function delete(string $key): bool { return $this->deleteItem($key); } private function generateItems(array $keys) { $f = $this->createCacheItem; foreach ($keys as $key) { yield $key => $f($key); } } }