GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#7)
by Fábio Tadeu da
02:35 queued 12s
created

FirstOutboxEntry::getSchemaVersion()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Dsantang\DomainEventsDoctrine\Tests\Unit\Outbox\Stub\OutboxEntries;
6
7
use Dsantang\DomainEvents\DomainEvent;
8
use Dsantang\DomainEventsDoctrine\Outbox\OutboxEntry;
9
use Ramsey\Uuid\Uuid;
10
use Ramsey\Uuid\UuidInterface;
11
12
final class FirstOutboxEntry implements OutboxEntry
13
{
14
    /** @var DomainEvent */
15
    private $domainEvent;
16
17
    public function __construct(DomainEvent $domainEvent)
18
    {
19
        $this->domainEvent = $domainEvent;
20
    }
21
22
    public function getAggregateId() : UuidInterface
23
    {
24
        return Uuid::fromString('d1702762-548b-11e9-8647-d663bd873d93');
25
    }
26
27
    public function getAggregateType() : string
28
    {
29
        return 'Order';
30
    }
31
32
    public function getPayloadType() : string
33
    {
34
        return 'OrderStructure';
35
    }
36
37
    public function getMessageKey() : string
38
    {
39
        return 'd663bd873d93';
40
    }
41
42
    public function getMessageRoute() : string
43
    {
44
        return 'aggregate.order';
45
    }
46
47
    public function getMessageType() : string
48
    {
49
        return $this->domainEvent->getName();
50
    }
51
52
    public function getPayload() : string
53
    {
54
        return '{\"foo\":\"bar\"}';
55
    }
56
57
    public function getSchemaVersion() : int
58
    {
59
        return 5;
60
    }
61
}
62