Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
41 | public function __construct( |
||
42 | UuidInterface $id, |
||
43 | string $hashCode, |
||
44 | User $user, |
||
45 | \DateTimeImmutable $createdOn, |
||
46 | bool $passwordReset |
||
47 | ) { |
||
48 | $this->id = $id; |
||
49 | $this->hashCode = $hashCode; |
||
50 | $this->user = $user; |
||
51 | $this->createdOn = $createdOn; |
||
52 | $this->passwordReset = $passwordReset; |
||
53 | } |
||
95 |