Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function toArray($request): array |
||
21 | { |
||
22 | if (!$this->resource) { |
||
23 | return []; |
||
24 | } |
||
25 | |||
26 | /** @var Post $this */ |
||
27 | return [ |
||
28 | 'id' => $this->id, |
||
29 | 'name' => $this->name, |
||
30 | 'description' => $this->description, |
||
31 | 'slug' => $this->slug, |
||
32 | 'url' => $this->url, |
||
33 | 'image' => $this->image ? RvMedia::getImageUrl($this->image) : null, |
||
34 | 'created_at' => $this->created_at, |
||
35 | 'updated_at' => $this->updated_at, |
||
36 | ]; |
||
39 |