Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a4c50f975e | |||
| f7630a4c2a |
+5
-2
@@ -4,6 +4,8 @@ namespace Kiri\Events;
|
|||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
use Psr\EventDispatcher\EventDispatcherInterface;
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
||||||
use Psr\EventDispatcher\StoppableEventInterface;
|
use Psr\EventDispatcher\StoppableEventInterface;
|
||||||
|
|
||||||
@@ -18,11 +20,12 @@ class EventDispatch extends Component implements EventDispatcherInterface
|
|||||||
/**
|
/**
|
||||||
* @param object $event
|
* @param object $event
|
||||||
* @return object
|
* @return object
|
||||||
* @throws \ReflectionException
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
*/
|
*/
|
||||||
public function dispatch(object $event): object
|
public function dispatch(object $event): object
|
||||||
{
|
{
|
||||||
$lists = $this->eventProvider->getListenersForEvent($event);
|
$lists = $this->getEventProvider()->getListenersForEvent($event);
|
||||||
foreach ($lists as $listener) {
|
foreach ($lists as $listener) {
|
||||||
/** @var Struct $list */
|
/** @var Struct $list */
|
||||||
$listener($event);
|
$listener($event);
|
||||||
|
|||||||
Reference in New Issue
Block a user