Skip to content

Commit 1cde9d8

Browse files
committed
minor #19167 HttpKernelInterface::handle parameter and return types (chx)
This PR was merged into the 6.3 branch. Discussion ---------- HttpKernelInterface::handle parameter and return types Commits ------- 078006b HttpKernelInterface::handle parameter and return types
2 parents 4c68799 + 078006b commit 1cde9d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

create_framework/http_kernel_httpkernelinterface.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ goal by making our framework implement ``HttpKernelInterface``::
1616
*/
1717
public function handle(
1818
Request $request,
19-
$type = self::MAIN_REQUEST,
20-
$catch = true
21-
);
19+
int $type = self::MAIN_REQUEST,
20+
bool $catch = true
21+
): Response;
2222
}
2323

2424
``HttpKernelInterface`` is probably the most important piece of code in the

0 commit comments

Comments
 (0)