Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function toArray($request) |
||
16 | { |
||
17 | return [ |
||
18 | 'type' => 'contact', |
||
19 | 'id' => (string) $this->id, |
||
|
|||
20 | 'attributes' => [ |
||
21 | 'name' => $this->name, |
||
22 | 'source' => new UserResource($this->whenLoaded('source')), |
||
23 | 'created_at' => $this->created_at, |
||
24 | 'updated_at' => $this->updated_at, |
||
25 | ], |
||
29 |