17 lines
230 B
PHP
17 lines
230 B
PHP
<?php
|
|
|
|
namespace Server\Abstracts\Utility;
|
|
|
|
use Annotation\Inject;
|
|
use Kiri\Events\EventDispatch;
|
|
|
|
trait EventDispatchHelper
|
|
{
|
|
|
|
/** @var EventDispatch */
|
|
#[Inject(EventDispatch::class)]
|
|
public EventDispatch $eventDispatch;
|
|
|
|
|
|
}
|