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