File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ The ``layout.php`` file is nearly identical:
630
630
The show ``show.php `` template is left as an exercise: updating it should be
631
631
really similar to updating the ``list.php `` template.
632
632
633
- When Symfony's engine (called the :term: ` Kernel ` ) boots up, it needs a map so
633
+ When Symfony's engine (called the Kernel) boots up, it needs a map so
634
634
that it knows which controllers to execute based on the request information.
635
635
A routing configuration map - ``app/config/routing.yml `` - provides this information
636
636
in a readable format:
@@ -660,7 +660,7 @@ have to touch it::
660
660
$kernel->handle(Request::createFromGlobals())->send();
661
661
662
662
The front controller's only job is to initialize Symfony's engine (called the
663
- :term: ` Kernel ` ) and pass it a ``Request `` object to handle. The Symfony core
663
+ Kernel) and pass it a ``Request `` object to handle. The Symfony core
664
664
asks the router to inspect the request. The router matches the incoming URL
665
665
to a specific route and returns information about the route, including the
666
666
controller that should be executed. The correct controller from the matched
You can’t perform that action at this time.
0 commit comments