Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
35 | public function __construct(CommitInterface $commit, string $state, ?string $targetUrl = null, ?string $description = null, ?string $context = null) |
||
36 | { |
||
37 | $this->commit = $commit; |
||
38 | $this->state = $state; |
||
39 | $this->targetUrl = $targetUrl; |
||
40 | $this->description = $description; |
||
41 | $this->context = $context; |
||
42 | } |
||
43 | |||
84 |