OwlCyberSecurity - MANAGER
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. } }