Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
62 | 4 | public function __construct( |
|
63 | string $hash, |
||
64 | array $names, |
||
65 | string $subject, |
||
66 | string $body, |
||
67 | \DateTimeImmutable $date, |
||
68 | string $author |
||
69 | ) |
||
70 | { |
||
71 | 4 | $this->hash = $hash; |
|
72 | 4 | $this->names = $names; |
|
73 | 4 | $this->subject = $subject; |
|
74 | 4 | $this->body = $body; |
|
75 | 4 | $this->date = $date; |
|
76 | 4 | $this->author = $author; |
|
77 | 4 | } |
|
161 |