Skip to content

Commit d38af44

Browse files
committed
Merge branch '5.4' into 6.2
* 5.4: use more precise link httpkernel
2 parents 4a2baf9 + 82cade6 commit d38af44

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/http_kernel.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ listeners to the events discussed below::
131131
// trigger the kernel.terminate event
132132
$kernel->terminate($request, $response);
133133

134-
See ":ref:`http-kernel-working-example`" for a more concrete implementation.
134+
See ":ref:`A full working example <http-kernel-working-example>`" for a more concrete implementation.
135135

136136
For general information on adding listeners to the events below, see
137-
:ref:`http-kernel-creating-listener`.
137+
:ref:`Creating an Event Listener <http-kernel-creating-listener>`.
138138

139139
.. seealso::
140140

@@ -229,7 +229,7 @@ This implementation is explained more in the sidebar below::
229229

230230
interface ControllerResolverInterface
231231
{
232-
public function getController(Request $request);
232+
public function getController(Request $request): callable|false;
233233
}
234234

235235
Internally, the ``HttpKernel::handle()`` method first calls

0 commit comments

Comments
 (0)