| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | 3 | public function __construct( |
|
| 52 | string $title, |
||
| 53 | string $description, |
||
| 54 | string $workItemType, |
||
| 55 | string $stepsToReproduce, |
||
| 56 | ?string $id = null |
||
| 57 | ) { |
||
| 58 | 3 | $this->id = $id; |
|
| 59 | 3 | $this->title = $title; |
|
| 60 | 3 | $this->description = $description; |
|
| 61 | 3 | $this->workItemType = $workItemType; |
|
| 62 | 3 | $this->stepsToReproduce = $stepsToReproduce; |
|
| 63 | 3 | } |
|
| 64 | } |
||
| 65 |