| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | 4 | public function toArray($request) |
|
| 16 | { |
||
| 17 | return [ |
||
| 18 | 4 | 'id' => $this->id, |
|
|
|
|||
| 19 | 4 | 'active' => $this->active, |
|
| 20 | 4 | 'name' => $this->name, |
|
| 21 | 4 | 'email' => $this->email, |
|
| 22 | 4 | 'email_verified_at' => $this->email_verified_at, |
|
| 23 | 4 | 'role' => $this->role, |
|
| 24 | 4 | 'created_at' => $this->created_at, |
|
| 25 | 4 | 'updated_at' => $this->updated_at, |
|
| 26 | ]; |
||
| 29 |