Files
kiri-core/http-server/Abstracts/Utility/EventDispatchHelper.php
T

17 lines
230 B
PHP
Raw Normal View History

2021-08-12 12:40:06 +08:00
<?php
2021-09-24 02:04:36 +08:00
namespace Server\Abstracts\Utility;
2021-08-12 12:40:06 +08:00
use Annotation\Inject;
use Kiri\Events\EventDispatch;
trait EventDispatchHelper
{
/** @var EventDispatch */
#[Inject(EventDispatch::class)]
public EventDispatch $eventDispatch;
}