Skip to content

Commit

Permalink
🚿
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Aug 4, 2024
1 parent 57a6958 commit da3ecc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
class Message implements MessageInterface{

protected StreamInterface $body;
/** @var array<string, string|string[]> */
/** @var array<string, array{name: string, value: string[]}> */
protected array $headers = [];
protected string $version = '1.1';

Expand Down
2 changes: 1 addition & 1 deletion src/ServerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ServerRequest extends Request implements ServerRequestInterface{
/**
* ServerRequest constructor.
*
* @param array<string, string>|nul $serverParams
* @param array<string, string>|null $serverParams
*/
public function __construct(string $method, UriInterface|string $uri, array|null $serverParams = null){
parent::__construct($method, $uri);
Expand Down

0 comments on commit da3ecc7

Please sign in to comment.