Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 1 | public function setData(int $id = 0, int $time = 0, string $name = '', string $desc = '', int $counter = 0, bool $isHeader = false): self |
|
22 | { |
||
23 | 1 | $this->id = $id; |
|
24 | 1 | $this->time = $time; |
|
25 | 1 | $this->name = $name; |
|
26 | 1 | $this->desc = $desc; |
|
27 | 1 | $this->counter = $counter; |
|
28 | 1 | $this->isHeader = $isHeader; |
|
29 | 1 | return $this; |
|
30 | } |
||
62 |