| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | 19 | public function setData(int $id, string $name, int $author, string $display, int $status, array $parents = []): void |
|
| 37 | { |
||
| 38 | 19 | $this->id = $id; |
|
| 39 | 19 | $this->name = $name; |
|
| 40 | 19 | $this->author = $author; |
|
| 41 | 19 | $this->displayName = $display; |
|
| 42 | 19 | $this->status = $status; |
|
| 43 | 19 | $this->parents = $parents; |
|
| 44 | 19 | } |
|
| 79 |