Conditions | 3 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
25 | 5 | public function __construct(string $payload, ?string $title = null, ?DateTimeInterface $timestamp = null) |
|
26 | { |
||
27 | 5 | $this->title = $title ?: bin2hex(random_bytes(7)); |
|
28 | 5 | $this->timestamp = $timestamp ?: new DateTime(); |
|
29 | 5 | $this->payload = $payload; |
|
30 | 5 | } |
|
56 |