| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |