Skip to content

Commit 0f2a245

Browse files
vjikgithub-actions[bot]
authored andcommitted
Apply PHP CS Fixer and Rector changes (CI)
1 parent 305e15e commit 0f2a245

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)