@@ -94,7 +94,6 @@ |
||
| 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 | */ |
@@ -109,7 +109,7 @@ |
||
| 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 | |