Completed
Push — master ( 9b55ae...5cadf5 )
by Marcel
07:50 queued 06:35
created
src/Tools/Generator.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         ]);
70 70
 
71 71
         $parsedRoute = [
72
-            'id' => md5($this->getUri($route).':'.implode($this->getMethods($route))),
72
+            'id' => md5($this->getUri($route) . ':' . implode($this->getMethods($route))),
73 73
             'groupName' => $routeGroupName,
74 74
             'groupDescription' => $routeGroupDescription,
75 75
             'title' => $docBlock['short'],
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             'cleanQueryParameters' => $this->cleanParams($queryParameters),
84 84
             'authenticated' => $this->getAuthStatusFromDocBlock($docBlock['tags']),
85 85
             'response' => $content,
86
-            'showresponse' => ! empty($content),
86
+            'showresponse' => !empty($content),
87 87
         ];
88 88
         $parsedRoute['headers'] = $rulesToApply['headers'] ?? [];
89 89
 
@@ -129,10 +129,10 @@  discard block
 block discarded – undo
129 129
     protected function getBodyParametersFromDocBlock(array $tags)
130 130
     {
131 131
         $parameters = collect($tags)
132
-            ->filter(function ($tag) {
132
+            ->filter(function($tag) {
133 133
                 return $tag instanceof Tag && $tag->getName() === 'bodyParam';
134 134
             })
135
-            ->mapWithKeys(function ($tag) {
135
+            ->mapWithKeys(function($tag) {
136 136
                 preg_match('/(.+?)\s+(.+?)\s+(required\s+)?(.*)/', $tag->getContent(), $content);
137 137
                 if (empty($content)) {
138 138
                     // this means only name and type were supplied
@@ -204,10 +204,10 @@  discard block
 block discarded – undo
204 204
     protected function getQueryParametersFromDocBlock(array $tags)
205 205
     {
206 206
         $parameters = collect($tags)
207
-            ->filter(function ($tag) {
207
+            ->filter(function($tag) {
208 208
                 return $tag instanceof Tag && $tag->getName() === 'queryParam';
209 209
             })
210
-            ->mapWithKeys(function ($tag) {
210
+            ->mapWithKeys(function($tag) {
211 211
                 preg_match('/(.+?)\s+(required\s+)?(.*)/', $tag->getContent(), $content);
212 212
                 if (empty($content)) {
213 213
                     // this means only name was supplied
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
     protected function getAuthStatusFromDocBlock(array $tags)
246 246
     {
247 247
         $authTag = collect($tags)
248
-            ->first(function ($tag) {
248
+            ->first(function($tag) {
249 249
                 return $tag instanceof Tag && strtolower($tag->getName()) === 'authenticated';
250 250
             });
251 251
 
@@ -328,25 +328,25 @@  discard block
 block discarded – undo
328 328
             $faker->seed($this->config->get('faker_seed'));
329 329
         }
330 330
         $fakeFactories = [
331
-            'integer' => function () use ($faker) {
331
+            'integer' => function() use ($faker) {
332 332
                 return $faker->numberBetween(1, 20);
333 333
             },
334
-            'number' => function () use ($faker) {
334
+            'number' => function() use ($faker) {
335 335
                 return $faker->randomFloat();
336 336
             },
337
-            'float' => function () use ($faker) {
337
+            'float' => function() use ($faker) {
338 338
                 return $faker->randomFloat();
339 339
             },
340
-            'boolean' => function () use ($faker) {
340
+            'boolean' => function() use ($faker) {
341 341
                 return $faker->boolean();
342 342
             },
343
-            'string' => function () use ($faker) {
343
+            'string' => function() use ($faker) {
344 344
                 return $faker->word;
345 345
             },
346
-            'array' => function () {
346
+            'array' => function() {
347 347
                 return [];
348 348
             },
349
-            'object' => function () {
349
+            'object' => function() {
350 350
                 return new \stdClass;
351 351
             },
352 352
         ];
Please login to merge, or discard this patch.
src/Tools/ResponseStrategies/ResponseFileStrategy.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         // Avoid "holes" in the keys of the filtered array, by using array_values on the filtered array
36 36
         $responseFileTags = array_values(
37
-            array_filter($tags, function ($tag) {
37
+            array_filter($tags, function($tag) {
38 38
                 return $tag instanceof Tag && strtolower($tag->getName()) === 'responsefile';
39 39
             })
40 40
         );
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
             return;
44 44
         }
45 45
 
46
-        return array_map(function (Tag $responseFileTag) {
46
+        return array_map(function(Tag $responseFileTag) {
47 47
             preg_match('/^(\d{3})?\s?([\S]*[\s]*?)(\{.*\})?$/', $responseFileTag->getContent(), $result);
48 48
             $status = $result[1] ?: 200;
49 49
             $content = $result[2] ? file_get_contents(storage_path(trim($result[2])), true) : '{}';
50
-            $json = ! empty($result[3]) ? str_replace("'", '"', $result[3]) : '{}';
50
+            $json = !empty($result[3]) ? str_replace("'", '"', $result[3]) : '{}';
51 51
             $merged = array_merge(json_decode($content, true), json_decode($json, true));
52 52
 
53 53
             return new JsonResponse($merged, (int) $status);
Please login to merge, or discard this patch.