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