Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function getFields(): array |
||
25 | { |
||
26 | return [ |
||
27 | 'role_id' => $this->role->id(), |
||
28 | 'position_id' => $this->role->positionId(), |
||
29 | 'position_name' => $this->role->position()->data()->name(), |
||
30 | 'role_name' => $this->role->data()->roleName(), |
||
31 | 'role_email' => $this->role->data()->email(), |
||
32 | ]; |
||
63 | } |