Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function toArray($request) |
||
10 | { |
||
11 | $data = [ |
||
12 | 'id' => $this->id, |
||
|
|||
13 | 'galaxy_id' => $this->galaxy_id, |
||
14 | 'map_id' => $this->map_id, |
||
15 | 'name' => $this->name, |
||
16 | 'display_name' => $this->display_name, |
||
17 | ]; |
||
18 | |||
19 | if (!empty($this->updated_at)) { |
||
20 | $data['update_at'] = $this->updated_at->format('Y-m-d H:i:s'); |
||
21 | } |
||
22 | |||
23 | return $data; |
||
24 | } |
||
25 | } |