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.19.255.50
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 /
Simple /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractCache.php
6.41
KB
-rw-r--r--
2021-02-05 18:32
ApcuCache.php
961
B
-rw-r--r--
2021-02-05 18:32
ArrayCache.php
5.26
KB
-rw-r--r--
2021-02-05 18:32
ChainCache.php
6.92
KB
-rw-r--r--
2021-02-05 18:32
DoctrineCache.php
1.08
KB
-rw-r--r--
2021-02-05 18:32
FilesystemCache.php
1.31
KB
-rw-r--r--
2021-02-05 18:32
MemcachedCache.php
1.11
KB
-rw-r--r--
2021-02-05 18:32
NullCache.php
1.91
KB
-rw-r--r--
2021-02-05 18:32
PdoCache.php
2.59
KB
-rw-r--r--
2021-02-05 18:32
PhpArrayCache.php
7.69
KB
-rw-r--r--
2021-02-05 18:32
PhpFilesCache.php
1.72
KB
-rw-r--r--
2021-02-05 18:32
Psr6Cache.php
579
B
-rw-r--r--
2021-02-05 18:32
RedisCache.php
1.15
KB
-rw-r--r--
2021-02-05 18:32
TraceableCache.php
6.28
KB
-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\Simple; use Symfony\Component\Cache\Adapter\RedisAdapter; use Symfony\Component\Cache\Marshaller\MarshallerInterface; use Symfony\Component\Cache\Traits\RedisTrait; use Symfony\Contracts\Cache\CacheInterface; @trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.3, use "%s" and type-hint for "%s" instead.', RedisCache::class, RedisAdapter::class, CacheInterface::class), \E_USER_DEPRECATED); /** * @deprecated since Symfony 4.3, use RedisAdapter and type-hint for CacheInterface instead. */ class RedisCache extends AbstractCache { use RedisTrait; /** * @param \Redis|\RedisArray|\RedisCluster|\Predis\ClientInterface $redisClient */ public function __construct($redisClient, string $namespace = '', int $defaultLifetime = 0, MarshallerInterface $marshaller = null) { $this->init($redisClient, $namespace, $defaultLifetime, $marshaller); } }