Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | public function toArray($request) |
||
16 | { |
||
17 | return [ |
||
18 | 'id' => $this->resource->hashed_id, |
||
19 | 'avatar' => $this->resource->avatar, |
||
20 | 'avatarThumb' => $this->resource->avatar_thumb, |
||
21 | 'name' => $this->resource->name, |
||
22 | 'position' => $this->resource->position, |
||
23 | 'email' => $this->resource->email, |
||
24 | 'body' => $this->resource->body, |
||
25 | 'stars' => $this->resource->stars, |
||
26 | 'createdAt' => $this->resource->created_at, |
||
27 | 'createdAtForHumans' => $this->resource->created_at->diffForHumans(), |
||
28 | ]; |
||
31 |