Skip to content

Commit b7c362b

Browse files
authored
use more precise link httpkernel
1 parent cfadf43 commit b7c362b

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)