| Total Complexity | 4 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | final class EventProjectorMap extends TypedMap |
||
| 15 | { |
||
| 16 | 3 | public function __construct(iterable $eventProjectors = []) |
|
| 17 | { |
||
| 18 | 3 | $this->init($eventProjectors, [EventProjectorInterface::class]); |
|
| 19 | 3 | } |
|
| 20 | |||
| 21 | 1 | public function findFor(DomainEventInterface $event): ProjectorMap |
|
| 30 | } |
||
| 31 | } |
||
| 32 |