Completed
Pull Request — master (#275)
by samizdam
04:34
created
src/Dispatcher.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
     /**
22 22
      * Dispatch the current route
23 23
      *
24
-     * @param ServerRequestInterface $request
24
+     * @param \Psr\Http\Message\ServerRequestInterface $request
25 25
      *
26
-     * @return ResponseInterface
26
+     * @return \Psr\Http\Message\ResponseInterface
27 27
      */
28 28
     public function dispatchRequest(ServerRequestInterface $request): ResponseInterface
29 29
     {
Please login to merge, or discard this patch.
src/Strategy/JsonStrategy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * Construct.
24 24
      *
25
-     * @param ResponseFactoryInterface $responseFactory
25
+     * @param \Psr\Http\Message\ResponseFactoryInterface $responseFactory
26 26
      */
27 27
     public function __construct(ResponseFactoryInterface $responseFactory)
28 28
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      *
90 90
      * @param HttpException $exception
91 91
      *
92
-     * @return MiddlewareInterface
92
+     * @return \Psr\Http\Server\MiddlewareInterface
93 93
      */
94 94
     protected function buildJsonResponseMiddleware(HttpException $exception): MiddlewareInterface
95 95
     {
Please login to merge, or discard this patch.