File "PostFlushEventArgs.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Event;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\Common\EventArgs;
use MailPoetVendor\Doctrine\ORM\EntityManagerInterface;
class PostFlushEventArgs extends EventArgs
{
 private $em;
 public function __construct(EntityManagerInterface $em)
 {
 $this->em = $em;
 }
 public function getEntityManager()
 {
 return $this->em;
 }
}