Skip to content

Commit

Permalink
fix all docblocks and file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
l0gicgate committed May 5, 2019
1 parent b4705c5 commit 4cbc928
Show file tree
Hide file tree
Showing 20 changed files with 170 additions and 897 deletions.
12 changes: 4 additions & 8 deletions src/Factory/DecoratedResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@
/**
* Slim Framework (https://slimframework.com)
*
* @link https://github.com/slimphp/Slim-Http
* @copyright Copyright (c) 2011-2018 Josh Lockhart
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE (MIT License)
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE.md (MIT License)
*/

declare(strict_types=1);

namespace Slim\Http\Factory;

use Psr\Http\Message\ResponseFactoryInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\StreamFactoryInterface;
use Slim\Http\Response;

/**
* Class DecoratedResponseFactory
* @package Slim\Http\Factory
*/
class DecoratedResponseFactory implements ResponseFactoryInterface
{
/**
Expand All @@ -30,7 +27,6 @@ class DecoratedResponseFactory implements ResponseFactoryInterface
private $streamFactory;

/**
* DecoratedResponseFactory constructor.
* @param ResponseFactoryInterface $responseFactory
* @param StreamFactoryInterface $streamFactory
*/
Expand Down
15 changes: 6 additions & 9 deletions src/Factory/DecoratedServerRequestFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,18 @@
/**
* Slim Framework (https://slimframework.com)
*
* @link https://github.com/slimphp/Slim-Http
* @copyright Copyright (c) 2011-2018 Josh Lockhart
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE (MIT License)
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE.md (MIT License)
*/

declare(strict_types=1);

namespace Slim\Http\Factory;

use Psr\Http\Message\ServerRequestFactoryInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\UriInterface;
use Slim\Http\ServerRequest;

/**
* Class DecoratedServerRequestFactory
* @package Slim\Http\Factory
*/
class DecoratedServerRequestFactory implements ServerRequestFactoryInterface
{
/**
Expand All @@ -24,7 +22,6 @@ class DecoratedServerRequestFactory implements ServerRequestFactoryInterface
private $serverRequestFactory;

/**
* DecoratedServerRequestFactory constructor.
* @param ServerRequestFactoryInterface $serverRequestFactory
*/
public function __construct(ServerRequestFactoryInterface $serverRequestFactory)
Expand All @@ -34,7 +31,7 @@ public function __construct(ServerRequestFactoryInterface $serverRequestFactory)

/**
* @param string $method
* @param \Psr\Http\Message\UriInterface|string $uri
* @param UriInterface|string $uri
* @param array $serverParams
* @return ServerRequest
*/
Expand Down
12 changes: 4 additions & 8 deletions src/Factory/DecoratedUriFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
/**
* Slim Framework (https://slimframework.com)
*
* @link https://github.com/slimphp/Slim-Http
* @copyright Copyright (c) 2011-2018 Josh Lockhart
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE (MIT License)
* @license https://github.com/slimphp/Slim-Http/blob/master/LICENSE.md (MIT License)
*/

declare(strict_types=1);

namespace Slim\Http\Factory;

use Psr\Http\Message\UriFactoryInterface;
use Psr\Http\Message\UriInterface;
use Slim\Http\Uri;

/**
* Class DecoratedUriFactory
* @package Slim\Http\Factory
*/
class DecoratedUriFactory implements UriFactoryInterface
{
/**
Expand All @@ -24,7 +21,6 @@ class DecoratedUriFactory implements UriFactoryInterface
private $uriFactory;

/**
* DecoratedUriFactory constructor.
* @param UriFactoryInterface $uriFactory
*/
public function __construct(UriFactoryInterface $uriFactory)
Expand Down
Loading

0 comments on commit 4cbc928

Please sign in to comment.