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.144.132.48
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Adapter
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
DataCollector
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
DependencyInjection
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Exception
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Marshaller
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Simple
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Traits
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
CHANGELOG.md
3.46
KB
-rw-r--r--
2021-02-05 18:32
CacheItem.php
5.75
KB
-rw-r--r--
2021-02-05 18:32
DoctrineProvider.php
2.17
KB
-rw-r--r--
2021-02-05 18:32
LICENSE
1.04
KB
-rw-r--r--
2021-02-05 18:32
LockRegistry.php
6.45
KB
-rw-r--r--
2021-02-05 18:32
PruneableInterface.php
485
B
-rw-r--r--
2021-02-05 18:32
Psr16Cache.php
8.16
KB
-rw-r--r--
2021-02-05 18:32
README.md
922
B
-rw-r--r--
2021-02-05 18:32
ResettableInterface.php
418
B
-rw-r--r--
2021-02-05 18:32
composer.json
1.65
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; use Doctrine\Common\Cache\CacheProvider; use Psr\Cache\CacheItemPoolInterface; use Symfony\Contracts\Service\ResetInterface; /** * @author Nicolas Grekas <p@tchwork.com> */ class DoctrineProvider extends CacheProvider implements PruneableInterface, ResettableInterface { private $pool; public function __construct(CacheItemPoolInterface $pool) { $this->pool = $pool; } /** * {@inheritdoc} */ public function prune() { return $this->pool instanceof PruneableInterface && $this->pool->prune(); } /** * {@inheritdoc} */ public function reset() { if ($this->pool instanceof ResetInterface) { $this->pool->reset(); } $this->setNamespace($this->getNamespace()); } /** * {@inheritdoc} */ protected function doFetch($id) { $item = $this->pool->getItem(rawurlencode($id)); return $item->isHit() ? $item->get() : false; } /** * {@inheritdoc} * * @return bool */ protected function doContains($id) { return $this->pool->hasItem(rawurlencode($id)); } /** * {@inheritdoc} * * @return bool */ protected function doSave($id, $data, $lifeTime = 0) { $item = $this->pool->getItem(rawurlencode($id)); if (0 < $lifeTime) { $item->expiresAfter($lifeTime); } return $this->pool->save($item->set($data)); } /** * {@inheritdoc} * * @return bool */ protected function doDelete($id) { return $this->pool->deleteItem(rawurlencode($id)); } /** * {@inheritdoc} * * @return bool */ protected function doFlush() { return $this->pool->clear(); } /** * {@inheritdoc} * * @return array|null */ protected function doGetStats() { return null; } }