@@ -7,9 +7,9 @@ The HttpKernel Component
7
7
========================
8
8
9
9
The HttpKernel component provides a structured process for converting
10
- a ``Request `` into a ``Response `` by making use of the EventDispatcher.
11
- It's flexible enough to create a full-stack framework (Symfony), a micro-framework
12
- (Silex) or an advanced CMS system (Drupal).
10
+ a ``Request `` into a ``Response `` by making use of the EventDispatcher
11
+ component. It's flexible enough to create a full-stack framework (Symfony),
12
+ a micro-framework (Silex) or an advanced CMS system (Drupal).
13
13
14
14
Installation
15
15
------------
@@ -79,10 +79,11 @@ and talks about how one specific implementation of the HttpKernel - the Symfony
79
79
Framework - works.
80
80
81
81
Initially, using the :class: `Symfony\\ Component\\ HttpKernel\\ HttpKernel `
82
- is really simple, and involves creating an :doc: `EventDispatcher </components/event_dispatcher/introduction >`
83
- and a :ref: `controller resolver <component-http-kernel-resolve-controller >`
84
- (explained below). To complete your working kernel, you'll add more event
85
- listeners to the events discussed below::
82
+ is really simple and involves creating an
83
+ :doc: `event dispatcher </components/event_dispatcher/introduction >` and a
84
+ :ref: `controller resolver <component-http-kernel-resolve-controller >` (explained
85
+ below). To complete your working kernel, you'll add more event listeners
86
+ to the events discussed below::
86
87
87
88
use Symfony\Component\HttpFoundation\Request;
88
89
use Symfony\Component\HttpKernel\HttpKernel;
0 commit comments