FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
twig
/
twig
/
src
/
Cache
Edit File: ReadOnlyFilesystemCache.php
<?php namespace MailPoetVendor\Twig\Cache; if (!defined('ABSPATH')) exit; class ReadOnlyFilesystemCache extends FilesystemCache { public function write(string $key, string $content) : void { // Do nothing with the content, it's a read-only filesystem. } }
Save
Back