Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 3 | final protected function __construct(string $identifier, bool $success, int $limit, int $remainingAttempts, DateTimeImmutable $resetAt) |
|
27 | { |
||
28 | 3 | $this->identifier = $identifier; |
|
29 | 3 | $this->success = $success; |
|
30 | 3 | $this->limit = $limit; |
|
31 | 3 | $this->remainingAttempts = $remainingAttempts; |
|
32 | 3 | $this->resetAt = $resetAt; |
|
33 | 3 | } |
|
34 | |||
71 |