Files
kiri-core/http-core/Abstracts/EventDispatchHelper.php
T
2021-10-25 18:25:14 +08:00

17 lines
220 B
PHP

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