Completed
Pull Request — master (#56)
by
unknown
12:46
created
src/Validation.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -90,8 +90,6 @@
 block discarded – undo
90 90
      * Validation middleware invokable class.
91 91
      *
92 92
      * @param \Psr\Http\Message\ServerRequestInterface $request  PSR7 request
93
-     * @param \Psr\Http\Message\ResponseInterface      $response PSR7 response
94
-     * @param callable                                 $next     Next middleware
95 93
      *
96 94
      * @return \Psr\Http\Message\ResponseInterface
97 95
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         $route = $routeContext->getRoute();
109 109
         $arguments = $route->getArguments();
110 110
 
111
-        $params = array_merge((array) $arguments, (array)$params);
111
+        $params = array_merge((array) $arguments, (array) $params);
112 112
 
113 113
         $this->validate($params, $this->validators);
114 114
 
Please login to merge, or discard this patch.