Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 6 | public function toArray($request) |
|
18 | { |
||
19 | return [ |
||
20 | 6 | 'tip_id' => $this->tip_id, |
|
21 | 6 | 'subject' => $this->subject, |
|
22 | 6 | 'description' => Str::words($this->description, 50), |
|
23 | 6 | 'created_at' => Carbon::parse($this->created_at)->format('M d, Y'), |
|
24 | 6 | 'system_types' => $this->SystemTypes, |
|
25 | ]; |
||
28 |