Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | string $start, |
||
22 | bool $billable, |
||
23 | string $description, |
||
24 | string $projectId, |
||
25 | string $taskId, |
||
26 | string $end, |
||
27 | array $tagIds |
||
28 | ) { |
||
29 | $this->start = $start; |
||
30 | $this->billable = $billable; |
||
31 | $this->description = $description; |
||
32 | $this->projectId = $projectId; |
||
33 | $this->taskId = $taskId; |
||
34 | $this->end = $end; |
||
35 | $this->tagIds = $tagIds; |
||
36 | } |
||
89 |