Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 100ce506ea | |||
| a4c50f975e | |||
| f7630a4c2a | |||
| bf3182660b |
+16
-2
@@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
namespace Kiri\Events;
|
namespace Kiri\Events;
|
||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Abstracts\Component;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
use Psr\EventDispatcher\EventDispatcherInterface;
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
||||||
use Psr\EventDispatcher\StoppableEventInterface;
|
use Psr\EventDispatcher\StoppableEventInterface;
|
||||||
|
|
||||||
@@ -15,10 +17,22 @@ class EventDispatch extends Component implements EventDispatcherInterface
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param EventProvider $eventProvider
|
||||||
|
* @param array $config
|
||||||
|
* @throws \Exception
|
||||||
|
*/
|
||||||
|
public function __construct(public EventProvider $eventProvider, array $config = [])
|
||||||
|
{
|
||||||
|
parent::__construct($config);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -41,4 +41,19 @@ class EventProvider implements ListenerProviderInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $event
|
||||||
|
* @param callable $handler
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function off(string $event, callable $handler)
|
||||||
|
{
|
||||||
|
$events = $this->_listeners[$event] ?? [];
|
||||||
|
|
||||||
|
$this->_listeners[$event] = array_filter($events, function ($value) use ($handler) {
|
||||||
|
return $value->listener !== $handler;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user