Your IP : 216.73.216.95


Current Path : /var/www/html/newsite/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Cache/
Upload File :
Current File : /var/www/html/newsite/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Cache/NullCache.php

<?php
namespace MailPoetVendor\Twig\Cache;
if (!defined('ABSPATH')) exit;
final class NullCache implements CacheInterface
{
 public function generateKey(string $name, string $className) : string
 {
 return '';
 }
 public function write(string $key, string $content) : void
 {
 }
 public function load(string $key) : void
 {
 }
 public function getTimestamp(string $key) : int
 {
 return 0;
 }
}