From 9320163d95828fd591a4b5129424f6eb34c36339 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 26 Oct 2021 13:38:30 +0200 Subject: [PATCH] Fix some line numbers in a code example --- migration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migration.rst b/migration.rst index 0c298af44a9..71c55ba240d 100644 --- a/migration.rst +++ b/migration.rst @@ -289,7 +289,7 @@ could look something like this:: There are 2 major deviations from the original file: -Line 15 +Line 18 First of all, ``$kernel`` is made globally available. This allows you to use Symfony features inside your existing application and gives access to services configured in our Symfony application. This helps you prepare your @@ -297,7 +297,7 @@ Line 15 it over. For instance, by replacing outdated or redundant libraries with Symfony components. -Line 38 - 47 +Line 41 - 50 Instead of sending the Symfony response directly, a ``LegacyBridge`` is called to decide whether the legacy application should be booted and used to create the response instead.