Files
kiri-core/http-server/Abstracts/EventDispatchHelper.php
T
2021-08-24 18:24:46 +08:00

17 lines
222 B
PHP

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