Skip to content

Commit 5771d90

Browse files
committed
Rename Symfony2 to Symfony
1 parent 785f49c commit 5771d90

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HttpKernel Component
44
HttpKernel provides the building blocks to create flexible and fast HTTP-based
55
frameworks.
66

7-
``HttpKernelInterface`` is the core interface of the Symfony2 full-stack
7+
``HttpKernelInterface`` is the core interface of the Symfony full-stack
88
framework:
99

1010
```php
@@ -23,11 +23,11 @@ interface HttpKernelInterface
2323

2424
It takes a ``Request`` as an input and should return a ``Response`` as an
2525
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
2727
free.
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
5858
components.
5959

6060
Want to add an HTTP reverse proxy and benefit from HTTP caching and Edge Side

0 commit comments

Comments
 (0)