hook_event_dispatcher-8.x-2.04/src/Event/EventFactoryTrait.php
src/Event/EventFactoryTrait.php
<?php
namespace Drupal\hook_event_dispatcher\Event;
/**
* Trait EventFactoryTrait.
*/
trait EventFactoryTrait {
/**
* {@inheritdoc}
*/
public static function create(&...$args): EventFactoryInterface {
return new static(...$args);
}
}
