Skip to content

[HttpKernel] use more precise links in httpkernel doc #17980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/http_kernel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http-kernel-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 <http-kernel-creating-listener>`.

.. seealso::

Expand Down Expand Up @@ -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
Expand Down