Test Failed
Push — master ( d7ef17...587c82 )
by Dmitriy
02:52 queued 01:56
created

UserLoggedInMessage::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Queue;
6
7
use Yiisoft\Yii\Queue\Message\MessageInterface;
8
9
final class UserLoggedInMessage implements MessageInterface
10
{
11 1
    private ?string $id = null;
12
13
    public function __construct(private string $userId, private int $time)
14
    {
15 1
    }
16
17 1
    public function setId(?string $id): void
18
    {
19
        $this->id = $id;
20 1
    }
21
22
    public function getId(): ?string
23 1
    {
24 1
        return $this->id;
25
    }
26
27
    public function getHandlerName(): string
28
    {
29
        return LoggingAuthorizationHandler::NAME;
30
    }
31
32
    public function getData(): array
33
    {
34
        return [
35
            'user_id' => $this->userId,
36
            'time' => $this->time,
37
        ];
38
    }
39
}
40