Completed
Pull Request — master (#56)
by
unknown
02:23 queued 56s
created
src/Validation.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,6 @@
 block discarded – undo
94 94
      * Validation middleware invokable class.
95 95
      *
96 96
      * @param \Psr\Http\Message\ServerRequestInterface $request  PSR7 request
97
-     * @param \Psr\Http\Server\RequestHandlerInterface      $response PSR7 response
98 97
      *
99 98
      * @return \Psr\Http\Message\ResponseInterface
100 99
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
         $queryParams = $request->getQueryParams();
111 111
 
112
-        $params = array_merge((array) $arguments, (array)$params, (array)$queryParams);
112
+        $params = array_merge((array) $arguments, (array) $params, (array) $queryParams);
113 113
 
114 114
         $this->validate($params, $this->validators);
115 115
 
Please login to merge, or discard this patch.