| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | 7 | public function transformResource() |
|
| 31 | { |
||
| 32 | return [ |
||
| 33 | 7 | 'id' => $this->id, |
|
|
|
|||
| 34 | 7 | 'name' => $this->name, |
|
| 35 | 7 | 'email' => $this->name, |
|
| 36 | 7 | 'email_verified' => $this->email_verified, |
|
| 37 | 7 | 'gender' => $this->gender, |
|
| 38 | 7 | 'provider' => $this->provider, |
|
| 39 | 7 | 'created_at' => $this->created_at, |
|
| 40 | 7 | 'updated_at' => $this->updated_at, |
|
| 49 |