File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ HttpKernel Component
4
4
HttpKernel provides the building blocks to create flexible and fast HTTP-based
5
5
frameworks.
6
6
7
- `` HttpKernelInterface `` is the core interface of the Symfony2 full-stack
7
+ `` HttpKernelInterface `` is the core interface of the Symfony full-stack
8
8
framework:
9
9
10
10
``` php
@@ -23,11 +23,11 @@ interface HttpKernelInterface
23
23
24
24
It takes a `` Request `` as an input and should return a `` Response `` as an
25
25
output. Using this interface makes your code compatible with all frameworks
26
- using the Symfony2 components. And this will give you many cool features for
26
+ using the Symfony components. And this will give you many cool features for
27
27
free.
28
28
29
- Creating a framework based on the Symfony2 components is really easy. Here is
30
- a very simple, but fully-featured framework based on the Symfony2 components:
29
+ Creating a framework based on the Symfony components is really easy. Here is
30
+ a very simple, but fully-featured framework based on the Symfony components:
31
31
32
32
``` php
33
33
$routes = new RouteCollection();
@@ -54,7 +54,7 @@ $kernel = new HttpKernel($dispatcher, $resolver);
54
54
$kernel->handle($request)->send();
55
55
```
56
56
57
- This is all you need to create a flexible framework with the Symfony2
57
+ This is all you need to create a flexible framework with the Symfony
58
58
components.
59
59
60
60
Want to add an HTTP reverse proxy and benefit from HTTP caching and Edge Side
You can’t perform that action at this time.
0 commit comments