Skip to content

Commit

Permalink
minor #1513 Replace references to "Symfony2" with "Symfony" (phansys)
Browse files Browse the repository at this point in the history
This PR was submitted for the 2.0 branch but it was merged into the 1.8 branch instead (closes #1513).

Discussion
----------

Replace references to "Symfony2" with "Symfony"

| Q             | A
| ------------- | ---
| Branch        | 2.0
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Replace references to "Symfony2" with "Symfony" since this bundle is compatible
with Symfony 3.

Commits
-------

0dfff35 Replace references to "Symfony2" with "Symfony"
  • Loading branch information
xabbuh committed Jun 13, 2016
2 parents b99018d + 0dfff35 commit b6fa685
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Decoder/ContainerDecoderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* Provides encoders through the Symfony2 DIC.
* Provides encoders through the Symfony DIC.
*
* @author Igor Wiedler <[email protected]>
*/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FOSRestBundle
=============

This bundle provides various tools to rapidly develop RESTful API's &
applications with Symfony2. Features include:
applications with Symfony. Features include:

- A View layer to enable output and format agnostic Controllers
- A custom route loader to generate url's following REST conventions
Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/2-the-view-layer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ an example. The serialized Task object will looks as follows:
{"task_form":{"name":"Task1", "person":{"id":1, "name":"Fabien"}}}
In a traditional Symfony2 application we simply define the property of the
In a traditional Symfony application we simply define the property of the
related class and it would perfectly assign the person to our task - in this
case based on the id:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ are explained in the next section.
type: rest
resource: Acme\HelloBundle\Controller\UsersController
This will tell Symfony2 to automatically generate proper REST routes from your
This will tell Symfony to automatically generate proper REST routes from your
``UsersController`` action names. Notice ``type: rest`` option. It's required so
that the RestBundle can find which routes are supported.

Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Bundle usage
Before you start using the bundle it is advised you run a quick look over the
six sections listed below. This bundle contains many features that are loosely
coupled so you may or may not need to use all of them. This bundle is just a
tool to help you in the job of creating a REST API with Symfony2.
tool to help you in the job of creating a REST API with Symfony.

FOSRestBundle provides several tools to assist in building REST applications:

Expand Down

0 comments on commit b6fa685

Please sign in to comment.