From b7c362bc6a71986401e945e03e1b1d5f92c43042 Mon Sep 17 00:00:00 2001 From: Matthieu Lempereur Date: Tue, 28 Feb 2023 09:39:57 +0100 Subject: [PATCH] use more precise link httpkernel --- components/http_kernel.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/http_kernel.rst b/components/http_kernel.rst index 3cc8059f5e6..21207bf1b1c 100644 --- a/components/http_kernel.rst +++ b/components/http_kernel.rst @@ -131,10 +131,10 @@ listeners to the events discussed below:: // trigger the kernel.terminate event $kernel->terminate($request, $response); -See ":ref:`http-kernel-working-example`" for a more concrete implementation. +See ":ref:`A full working example `" for a more concrete implementation. For general information on adding listeners to the events below, see -:ref:`http-kernel-creating-listener`. +:ref:`Creating an Event Listener `. .. seealso:: @@ -229,7 +229,7 @@ This implementation is explained more in the sidebar below:: interface ControllerResolverInterface { - public function getController(Request $request); + public function getController(Request $request): callable|false; } Internally, the ``HttpKernel::handle()`` method first calls