Skip to content

Commit da3ecc7

Browse files
committed
🚿
1 parent 57a6958 commit da3ecc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Message.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class Message implements MessageInterface{
2727

2828
protected StreamInterface $body;
29-
/** @var array<string, string|string[]> */
29+
/** @var array<string, array{name: string, value: string[]}> */
3030
protected array $headers = [];
3131
protected string $version = '1.1';
3232

src/ServerRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ServerRequest extends Request implements ServerRequestInterface{
3535
/**
3636
* ServerRequest constructor.
3737
*
38-
* @param array<string, string>|nul $serverParams
38+
* @param array<string, string>|null $serverParams
3939
*/
4040
public function __construct(string $method, UriInterface|string $uri, array|null $serverParams = null){
4141
parent::__construct($method, $uri);

0 commit comments

Comments
 (0)