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