Skip to content

Commit 14c10c3

Browse files
committed
Merge remote-tracking branch 'origin/refactor' into refactor
2 parents 102224c + 0f2a245 commit 14c10c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Modern/ResponseFactory/HtmlResponseFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function __construct(
1919
) {}
2020

2121
public function createResponse(
22-
string|bool|int|float|null|Stringable $data = null,
22+
string|bool|int|float|Stringable|null $data = null,
2323
int $code = Status::OK,
2424
string $reasonPhrase = '',
2525
): ResponseInterface {

src/Modern/ResponseFactory/PlainTextResponseFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function __construct(
1919
) {}
2020

2121
public function createResponse(
22-
string|bool|int|float|null|Stringable $data = null,
22+
string|bool|int|float|Stringable|null $data = null,
2323
int $code = Status::OK,
2424
string $reasonPhrase = '',
2525
): ResponseInterface {

0 commit comments

Comments
 (0)