Passed
Pull Request — master (#572)
by Alexander
03:00 queued 01:26
created

UserLoggedInMessage   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 34
rs 10
c 0
b 0
f 0
wmc 6

6 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A getData() 0 5 1
A getMetadata() 0 3 1
A getHandlerName() 0 3 1
A setId() 0 3 1
A getId() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Infrastructure\Queue;
6
7
use Yiisoft\Yii\Queue\Message\MessageInterface;
0 ignored issues
show
Bug introduced by
The type Yiisoft\Yii\Queue\Message\MessageInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
8
9
final class UserLoggedInMessage implements MessageInterface
10
{
11
    private ?string $id = null;
12
13
    public function __construct(private string $userId, private int $time)
14
    {
15
    }
16
17
    public function setId(?string $id): void
18
    {
19
        $this->id = $id;
20
    }
21
22
    public function getId(): ?string
23
    {
24
        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
    public function getMetadata(): array
41
    {
42
        return [];
43
    }
44
}
45