File "EventArgs.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/event-manager/lib/Doctrine/Common/EventArgs.php
File size: 350 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\Common;
if (!defined('ABSPATH')) exit;
class EventArgs
{
 private static $_emptyEventArgsInstance;
 public static function getEmptyInstance()
 {
 if (!self::$_emptyEventArgsInstance) {
 self::$_emptyEventArgsInstance = new EventArgs();
 }
 return self::$_emptyEventArgsInstance;
 }
}