Completed
Push — master ( bc69cb...e24ad8 )
by Ron
02:35
created

GalaxyResource   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A toArray() 0 7 1
1
<?php
2
3
namespace App\Http\Resources;
4
5
use Illuminate\Http\Resources\Json\JsonResource;
6
7
class GalaxyResource extends JsonResource
8
{
9
    /**
10
     * @param \Illuminate\Http\Request $request
11
     * @return array
12
     */
13
    public function toArray($request)
14
    {
15
        return [
16
            'galaxy_id' => $this->id,
0 ignored issues
show
Bug Best Practice introduced by
The property id does not exist on App\Http\Resources\GalaxyResource. Since you implemented __get, consider adding a @property annotation.
Loading history...
17
            'galaxy_type_id' => $this->galaxy_type_id,
0 ignored issues
show
Bug Best Practice introduced by
The property galaxy_type_id does not exist on App\Http\Resources\GalaxyResource. Since you implemented __get, consider adding a @property annotation.
Loading history...
18
            'name' => $this->display_name,
0 ignored issues
show
Bug Best Practice introduced by
The property display_name does not exist on App\Http\Resources\GalaxyResource. Since you implemented __get, consider adding a @property annotation.
Loading history...
19
            'updated_at' => $this->updated_at,
0 ignored issues
show
Bug Best Practice introduced by
The property updated_at does not exist on App\Http\Resources\GalaxyResource. Since you implemented __get, consider adding a @property annotation.
Loading history...
20
        ];
21
    }
22
}