oont-contents/plugins/mailpoet/vendor-prefixed/doctrine/event-manager/src/EventArgs.php
2025-02-08 15:10:23 +01:00

15 lines
350 B
PHP

<?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;
}
}