There was an error while loading. Please reload this page.
1 parent d68c860 commit 1c0534cCopy full SHA for 1c0534c
1 file changed
src/Verify/CheckAttempt.php
@@ -6,16 +6,16 @@
6
7
use DateTimeImmutable;
8
9
-readonly class CheckAttempt
+class CheckAttempt
10
{
11
public const VALID = 'VALID';
12
public const INVALID = 'INVALID';
13
14
public function __construct(
15
- public string $code,
16
- public DateTimeImmutable $dateReceived,
17
- public string $status,
18
- public ?string $ipAddress,
+ public readonly string $code,
+ public readonly DateTimeImmutable $dateReceived,
+ public readonly string $status,
+ public readonly ?string $ipAddress,
19
) {
20
}
21
0 commit comments