@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $response = $docblockResponse; |
| 68 | 68 | $showresponse = true; |
| 69 | 69 | } |
| 70 | - if (! $response) { |
|
| 70 | + if (!$response) { |
|
| 71 | 71 | $transformerResponse = $this->getTransformerResponse($routeDescription['tags']); |
| 72 | 72 | if ($transformerResponse) { |
| 73 | 73 | // we have a transformer response from the docblock ( @transformer || @transformercollection ) |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $showresponse = true; |
| 76 | 76 | } |
| 77 | 77 | } |
| 78 | - if (! $response) { |
|
| 78 | + if (!$response) { |
|
| 79 | 79 | $response = $this->getRouteResponse($route, $bindings, $headers); |
| 80 | 80 | } |
| 81 | 81 | if ($response->headers->get('Content-Type') === 'application/json') { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | return $this->getParameters([ |
| 89 | - 'id' => md5($this->getUri($route).':'.implode($this->getMethods($route))), |
|
| 89 | + 'id' => md5($this->getUri($route) . ':' . implode($this->getMethods($route))), |
|
| 90 | 90 | 'resource' => $routeGroup, |
| 91 | 91 | 'title' => $routeDescription['short'], |
| 92 | 92 | 'description' => $routeDescription['long'], |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | protected function getTransformerResponse($tags) |
| 159 | 159 | { |
| 160 | 160 | try { |
| 161 | - $transFormerTags = array_filter($tags, function ($tag) { |
|
| 162 | - if (! ($tag instanceof Tag)) { |
|
| 161 | + $transFormerTags = array_filter($tags, function($tag) { |
|
| 162 | + if (!($tag instanceof Tag)) { |
|
| 163 | 163 | return false; |
| 164 | 164 | } |
| 165 | 165 | |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | return false; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - $modelTag = array_first(array_filter($tags, function ($tag) { |
|
| 174 | - if (! ($tag instanceof Tag)) { |
|
| 173 | + $modelTag = array_first(array_filter($tags, function($tag) { |
|
| 174 | + if (!($tag instanceof Tag)) { |
|
| 175 | 175 | return false; |
| 176 | 176 | } |
| 177 | 177 | |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | })); |
| 180 | 180 | $tag = \array_first($transFormerTags); |
| 181 | 181 | $transformer = $tag->getContent(); |
| 182 | - if (! \class_exists($transformer)) { |
|
| 182 | + if (!\class_exists($transformer)) { |
|
| 183 | 183 | // if we can't find the transformer we can't generate a response |
| 184 | 184 | return; |
| 185 | 185 | } |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | if (version_compare(PHP_VERSION, '7.0.0') >= 0 && \is_null($type)) { |
| 196 | 196 | // we can only get the type with reflection for PHP 7 |
| 197 | 197 | if ($parameter->hasType() && |
| 198 | - ! $parameter->getType()->isBuiltin() && |
|
| 198 | + !$parameter->getType()->isBuiltin() && |
|
| 199 | 199 | \class_exists((string) $parameter->getType())) { |
| 200 | 200 | //we have a type |
| 201 | 201 | $type = (string) $parameter->getType(); |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | foreach ($reflectionMethod->getParameters() as $parameter) { |
| 257 | 257 | $parameterType = $parameter->getClass(); |
| 258 | - if (! is_null($parameterType) && class_exists($parameterType->name)) { |
|
| 258 | + if (!is_null($parameterType) && class_exists($parameterType->name)) { |
|
| 259 | 259 | $className = $parameterType->name; |
| 260 | 260 | |
| 261 | 261 | if (is_subclass_of($className, FormRequest::class)) { |