File "LifecycleEventArgs.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Event/LifecycleEventArgs.php
File size: 456 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\ORM\EntityManagerInterface;
use MailPoetVendor\Doctrine\Persistence\Event\LifecycleEventArgs as BaseLifecycleEventArgs;
class LifecycleEventArgs extends BaseLifecycleEventArgs
{
 public function getEntity()
 {
 return $this->getObject();
 }
 public function getEntityManager()
 {
 return $this->getObjectManager();
 }
}