Skip to content

Commit

Permalink
revert docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
nbayramberdiyev committed Feb 21, 2022
1 parent 5eb1d7b commit 7524cdd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Headers.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ class Headers implements HeadersInterface
{
protected array $globals;

/**
* @var Header[]
*/
protected array $headers;

/**
Expand Down
4 changes: 4 additions & 0 deletions src/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
use InvalidArgumentException;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\StreamInterface;
use Psr\Http\Message\UploadedFileInterface;
use Psr\Http\Message\UriInterface;
use Slim\Psr7\Interfaces\HeadersInterface;

Expand Down Expand Up @@ -61,6 +62,9 @@ class Request extends Message implements ServerRequestInterface
*/
protected $parsedBody;

/**
* @var UploadedFileInterface[]
*/
protected array $uploadedFiles;

/**
Expand Down

0 comments on commit 7524cdd

Please sign in to comment.