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.148.243.252
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 Doctrine\Common\Cache\CacheProvider; use Symfony\Component\Cache\Traits\DoctrineTrait; class DoctrineAdapter extends AbstractAdapter { use DoctrineTrait; public function __construct(CacheProvider $provider, string $namespace = '', int $defaultLifetime = 0) { parent::__construct('', $defaultLifetime); $this->provider = $provider; $provider->setNamespace($namespace); } }