File "Region.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Cache/Region.php
File size: 467 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Cache;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\ORM\Cache\Exception\CacheException;
interface Region extends MultiGetRegion
{
 public function getName();
 public function contains(CacheKey $key);
 public function get(CacheKey $key);
 public function put(CacheKey $key, CacheEntry $entry, ?Lock $lock = null);
 public function evict(CacheKey $key);
 public function evictAll();
}