Passed
Pull Request — master (#84)
by Frank
17:17 queued 07:16
created

DummyEventHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handleEventStub() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace EventSauce\EventSourcing\LibraryConsumptionTests\EventHandling;
6
7
use EventSauce\EventSourcing\EventHandlingMessageConsumer;
8
use EventSauce\EventSourcing\EventStub;
9
use EventSauce\EventSourcing\Message;
10
11
class DummyEventHandler extends EventHandlingMessageConsumer
12
{
13
    public EventStub $event;
14
    public Message $message;
15
16
    protected function handleEventStub(EventStub $event, Message $message): void
17
    {
18
        $this->event = $event;
19
        $this->message = $message;
20
    }
21
}
22