Files
kiri-core/Server/Abstracts/EventDispatchHelper.php
T

17 lines
222 B
PHP
Raw Normal View History

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