*/ class ReadOnlyFilesystemCache extends FilesystemCache { public function write(string $key, string $content): void { // Do nothing with the content, it's a read-only filesystem. } }