| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | 4 | public function __construct( |
|
| 57 | string $hash, |
||
| 58 | array $names, |
||
| 59 | string $description, |
||
| 60 | \DateTimeImmutable $date, |
||
| 61 | string $author |
||
| 62 | ) |
||
| 63 | { |
||
| 64 | 4 | $this->hash = $hash; |
|
| 65 | 4 | $this->names = $names; |
|
| 66 | 4 | $this->description = $description; |
|
| 67 | 4 | $this->date = $date; |
|
| 68 | 4 | $this->author = $author; |
|
| 69 | 4 | } |
|
| 70 | |||
| 131 |