| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function __construct( |
||
| 29 | string $assigneeId, |
||
| 30 | string $estimate, |
||
| 31 | string $id, |
||
| 32 | string $name, |
||
| 33 | string $projectId, |
||
| 34 | TaskStatus $status |
||
| 35 | ) { |
||
| 36 | $this->assigneeId = $assigneeId; |
||
| 37 | $this->estimate = $estimate; |
||
| 38 | $this->id = $id; |
||
| 39 | $this->name = $name; |
||
| 40 | $this->projectId = $projectId; |
||
| 41 | $this->status = $status; |
||
| 42 | } |
||
| 74 |