Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | 39 | public function setData(int $authId, string $authName, int $authGroup, int $authClass, ?int $authStatus, string $displayName, string $dir): void |
|
31 | { |
||
32 | 39 | $this->authId = $authId; |
|
33 | 39 | $this->authName = $authName; |
|
34 | 39 | $this->authGroup = $authGroup; |
|
35 | 39 | $this->authClass = $authClass; |
|
36 | 39 | $this->authStatus = $authStatus; |
|
37 | 39 | $this->displayName = $displayName; |
|
38 | 39 | $this->dir = $dir; |
|
39 | 39 | } |
|
76 |