@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | // Collections can either use the regular JsonResource class (via `::collection()`, |
| 77 | 77 | // or a ResourceCollection (via `new`) |
| 78 | 78 | // See https://laravel.com/docs/5.8/eloquent-resources |
| 79 | - $models = [ |
|
| 79 | + $models = [ |
|
| 80 | 80 | $modelInstance, |
| 81 | 81 | $this->instantiateApiResourceModel($model, $factoryStates) |
| 82 | 82 | ]; |
@@ -95,8 +95,8 @@ discard block |
||
| 95 | 95 | ], |
| 96 | 96 | ]; |
| 97 | 97 | } catch (\Exception $e) { |
| 98 | - echo 'Exception thrown when fetching Eloquent API resource response for ['.implode(',', |
|
| 99 | - $route->methods)."] {$route->uri}.\n"; |
|
| 98 | + echo 'Exception thrown when fetching Eloquent API resource response for [' . implode(',', |
|
| 99 | + $route->methods) . "] {$route->uri}.\n"; |
|
| 100 | 100 | if (Flags::$shouldBeVerbose) { |
| 101 | 101 | Utils::dumpException($e); |
| 102 | 102 | } else { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | private function getApiResourceTag(array $tags) { |
| 116 | 116 | $apiResourceTags = array_values( |
| 117 | 117 | array_filter($tags, |
| 118 | - function ($tag) { |
|
| 118 | + function($tag) { |
|
| 119 | 119 | return ($tag instanceof Tag) && in_array(strtolower($tag->getName()), |
| 120 | 120 | [ |
| 121 | 121 | 'apiresource', |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | private function getClassToBeTransformed(array $tags): string { |
| 150 | 150 | $modelTag = Arr::first(array_filter($tags, |
| 151 | - function ($tag) { |
|
| 151 | + function($tag) { |
|
| 152 | 152 | return ($tag instanceof Tag) && strtolower($tag->getName()) == 'apiresourcemodel'; |
| 153 | 153 | })); |
| 154 | 154 | |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | private function getApiResourceStates(array $tags) { |
| 221 | - $tag = collect($tags)->filter(function (Tag $tag) { |
|
| 221 | + $tag = collect($tags)->filter(function(Tag $tag) { |
|
| 222 | 222 | return strtolower($tag->getName()) === 'apiresourcestate'; |
| 223 | 223 | })->first(); |
| 224 | 224 | |
@@ -226,9 +226,9 @@ discard block |
||
| 226 | 226 | return []; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - return collect(explode(',', $tag->getContent()))->transform(function ($item) { |
|
| 229 | + return collect(explode(',', $tag->getContent()))->transform(function($item) { |
|
| 230 | 230 | return trim($item); |
| 231 | - })->filter(function ($item) { |
|
| 231 | + })->filter(function($item) { |
|
| 232 | 232 | return strlen($item) > 0; |
| 233 | 233 | })->toArray(); |
| 234 | 234 | } |