@@ -81,7 +81,7 @@ class Generator
/** @var ReflectionClass $cls */
$cls = collect($method->getParameters())
->reduce(function ($carry, $param) use ($method) {
- if (!$param->getType()) {
+ if (! $param->getType() ) {
return $carry;
}
@@ -1,4 +1,6 @@
-<?php namespace Mpociot\ApiDoc\Tests\Fixtures;
+<?php
+
+namespace Mpociot\ApiDoc\Tests\Fixtures;
use Dingo\Api\Http\FormRequest;
@@ -92,7 +92,7 @@ abstract class GeneratorTestCase extends TestCase
$this->assertArraySubset([
'direct_one' => [
'type' => 'string',
- 'description' => 'Is found directly on the method.'
+ 'description' => 'Is found directly on the method.',
],
], $bodyParameters);