EventDispatcher::__construct()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace League\Event;
6
7
use Psr\EventDispatcher\ListenerProviderInterface;
8
use Psr\EventDispatcher\StoppableEventInterface;
9
10
class EventDispatcher implements EventDispatchingListenerRegistry
11
{
12
    /**
13
     * @var ListenerProviderInterface
14
     */
15
    protected $listenerProvider;
16
17
    public function __construct(ListenerProviderInterface $listenerProvider = null)
18
    {
19
        $this->listenerProvider = $listenerProvider instanceof ListenerProviderInterface
20
            ? $listenerProvider
21
            : new PrioritizedListenerRegistry();
22
    }
23
24
    public function dispatch(object $event): object
25
    {
26
        $listeners = $this->listenerProvider->getListenersForEvent($event);
27
28
        $event instanceof StoppableEventInterface
29
            ? $this->dispatchStoppableEvent($listeners, $event)
30
            : $this->dispatchUnstoppableEvent($listeners, $event);
31
32
        return $event;
33
    }
34
35
    public function dispatchGeneratedEvents(EventGenerator $generator): void
36
    {
37
        foreach ($generator->releaseEvents() as $event) {
38
            $this->dispatch($event);
39
        }
40
    }
41
42
    private function dispatchStoppableEvent(iterable $listeners, StoppableEventInterface $event): void
43
    {
44
        foreach ($listeners as $listener) {
45
            if ($event->isPropagationStopped()) {
46
                break;
47
            }
48
49
            $listener($event);
50
        }
51
    }
52
53
    private function dispatchUnstoppableEvent(iterable $listeners, object $event): void
54
    {
55
        foreach ($listeners as $listener) {
56
            $listener($event);
57
        }
58
    }
59
60 View Code Duplication
    public function subscribeTo(string $event, callable $listener, int $priority = ListenerPriority::NORMAL): void
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
61
    {
62
        if ( ! $this->listenerProvider instanceof ListenerRegistry) {
63
            throw UnableToSubscribeListener::becauseTheListenerProviderDoesNotAcceptListeners($this->listenerProvider);
64
        }
65
66
        $this->listenerProvider->subscribeTo($event, $listener, $priority);
67
    }
68
69 View Code Duplication
    public function subscribeOnceTo(string $event, callable $listener, int $priority = ListenerPriority::NORMAL): void
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
70
    {
71
        if ( ! $this->listenerProvider instanceof ListenerRegistry) {
72
            throw UnableToSubscribeListener::becauseTheListenerProviderDoesNotAcceptListeners($this->listenerProvider);
73
        }
74
75
        $this->listenerProvider->subscribeOnceTo($event, $listener, $priority);
76
    }
77
78
    public function subscribeListenersFrom(ListenerSubscriber $subscriber): void
79
    {
80
        if ( ! $this->listenerProvider instanceof ListenerRegistry) {
81
            throw UnableToSubscribeListener::becauseTheListenerProviderDoesNotAcceptListeners($this->listenerProvider);
82
        }
83
84
        $this->listenerProvider->subscribeListenersFrom($subscriber);
85
    }
86
}
87