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