22/**
33 * Slim Framework (https://slimframework.com)
44 *
5- * @link https://github.com/slimphp/Slim-Http
6- * @copyright Copyright (c) 2011-2018 Josh Lockhart
7- * @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE (MIT License)
5+ * @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE.md (MIT License)
86 */
7+
8+ declare (strict_types=1 );
9+
910namespace Slim \Http \Factory ;
1011
1112use Psr \Http \Message \ServerRequestFactoryInterface ;
1213use Psr \Http \Message \ServerRequestInterface ;
14+ use Psr \Http \Message \UriInterface ;
1315use Slim \Http \ServerRequest ;
1416
15- /**
16- * Class DecoratedServerRequestFactory
17- * @package Slim\Http\Factory
18- */
1917class DecoratedServerRequestFactory implements ServerRequestFactoryInterface
2018{
2119 /**
@@ -24,7 +22,6 @@ class DecoratedServerRequestFactory implements ServerRequestFactoryInterface
2422 private $ serverRequestFactory ;
2523
2624 /**
27- * DecoratedServerRequestFactory constructor.
2825 * @param ServerRequestFactoryInterface $serverRequestFactory
2926 */
3027 public function __construct (ServerRequestFactoryInterface $ serverRequestFactory )
@@ -34,7 +31,7 @@ public function __construct(ServerRequestFactoryInterface $serverRequestFactory)
3431
3532 /**
3633 * @param string $method
37- * @param \Psr\Http\Message\ UriInterface|string $uri
34+ * @param UriInterface|string $uri
3835 * @param array $serverParams
3936 * @return ServerRequest
4037 */
0 commit comments