Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class EventFactory implements EventFactoryInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var \Jellyfish\Uuid\UuidGeneratorInterface |
||
13 | */ |
||
14 | protected $uuidGenerator; |
||
15 | |||
16 | /** |
||
17 | * @param \Jellyfish\Uuid\UuidGeneratorInterface $uuidGenerator |
||
18 | */ |
||
19 | public function __construct(UuidGeneratorInterface $uuidGenerator) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return \Jellyfish\Event\EventInterface |
||
26 | */ |
||
27 | public function create(): EventInterface |
||
32 |