FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
event-manager
/
src
Edit File: EventArgs.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; } }
Save
Back