Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
34 | public function getLocationAttribute($location) |
||
35 | { |
||
36 | if (! $location) { |
||
37 | return [ |
||
38 | 'address' => [ |
||
39 | 'name' => 'not-set', |
||
40 | 'formatted' => 'not-set', |
||
41 | ], |
||
42 | 'locality' => 'not-set', |
||
43 | 'country' => 'not-set', |
||
44 | 'postal_code' => 'not-set', |
||
45 | ]; |
||
46 | } |
||
47 | |||
48 | return $location; |
||
49 | } |
||
55 |