Passed
Pull Request — master (#84)
by Frank
09:22
created

DummyEventHandler::handleEventStub()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 2
dl 0
loc 4
rs 10
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
/**
12
 * @testAsset
13
 */
14
class DummyEventHandler extends EventHandlingMessageConsumer
15
{
16
    public EventStub $event;
17
    public Message $message;
18
19
    protected function handleEventStub(EventStub $event, Message $message): void
20
    {
21
        $this->event = $event;
22
        $this->message = $message;
23
    }
24
}
25