Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
30 | 6 | public function toArray($request) |
|
31 | { |
||
32 | return [ |
||
33 | 6 | 'id' => $this->id, |
|
|
|||
34 | 6 | 'name' => $this->name, |
|
35 | 6 | 'email' => $this->name, |
|
36 | 6 | 'email_verified' => $this->email_verified, |
|
37 | 6 | 'gender' => $this->gender, |
|
38 | 6 | 'provider' => $this->provider, |
|
39 | 6 | 'created_at' => $this->created_at, |
|
40 | 6 | 'updated_at' => $this->updated_at, |
|
41 | ]; |
||
54 |