| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function handle(Event $event, $eventName, EventDispatcherInterface $eventDispatcher) |
||
| 28 | { |
||
| 29 | $delegates = static::getDelegatedSubscribedEvents(); |
||
| 30 | |||
| 31 | if (isset($delegates[$eventName])) { |
||
| 32 | foreach ($delegates[$eventName] as $delegate) { |
||
| 33 | $eventDispatcher->dispatch($delegate, $event); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 52 |