Browse Source

Apply fixes from StyleCI

Marcel Pociot 6 years ago
parent
commit
d19f419eb3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/Mpociot/ApiDoc/Generators/AbstractGenerator.php

+ 2 - 0
src/Mpociot/ApiDoc/Generators/AbstractGenerator.php

@@ -223,6 +223,7 @@ abstract class AbstractGenerator
      * @param  array $routeMethods
      * @param  string $routeAction
      * @param  array $bindings
+     *
      * @return array
      */
     protected function getRouteRules(array $routeMethods, $routeAction, $bindings)
@@ -247,6 +248,7 @@ abstract class AbstractGenerator
 
                     if (method_exists($formRequest, 'validator')) {
                         $factory = app(ValidationFactory::class);
+
                         return call_user_func_array([$formRequest, 'validator'], [$factory])
                             ->getRules();
                     } else {