Files
kiri-core/http-server/Abstracts/Utility/EventDispatchHelper.php
T
as2252258@163.com b9a1178fbe 111
2021-09-24 02:04:36 +08:00

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