Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 4 | public function toArray($request) |
|
16 | { |
||
17 | return [ |
||
18 | 4 | 'type' => 'thread', |
|
19 | 4 | 'id' => (string) $this->id, |
|
|
|||
20 | 'attributes' => [ |
||
21 | 4 | 'subject' => $this->subject, |
|
22 | 4 | 'messages' => MessageResource::collection($this->messages), |
|
23 | 4 | 'participants' => ParticipantResource::collection($this->participants), |
|
24 | 4 | 'created_at' => $this->created_at, |
|
25 | 4 | 'updated_at' => $this->updated_at, |
|
26 | ], |
||
30 |