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
44HttpKernel provides the building blocks to create flexible and fast HTTP-based
55frameworks.
66
7- `` HttpKernelInterface `` is the core interface of the Symfony2 full-stack
7+ `` HttpKernelInterface `` is the core interface of the Symfony full-stack
88framework:
99
1010``` php
@@ -23,11 +23,11 @@ interface HttpKernelInterface
2323
2424It takes a `` Request `` as an input and should return a `` Response `` as an
2525output. 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
2727free.
2828
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:
3131
3232``` php
3333$routes = new RouteCollection();
@@ -54,7 +54,7 @@ $kernel = new HttpKernel($dispatcher, $resolver);
5454$kernel->handle($request)->send();
5555```
5656
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
5858components.
5959
6060Want 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