File "AssociationCacheEntry.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Cache;
if (!defined('ABSPATH')) exit;
class AssociationCacheEntry implements CacheEntry
{
 public $identifier;
 public $class;
 public function __construct($class, array $identifier)
 {
 $this->class = $class;
 $this->identifier = $identifier;
 }
 public static function __set_state(array $values)
 {
 return new self($values['class'], $values['identifier']);
 }
}