Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.0] Remove mentions of Symfony1 #5579

Merged
merged 1 commit into from
Aug 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cookbook/event_dispatcher/before_after_filters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ It is quite common in web application development to need some logic to be
executed just before or just after your controller actions acting as filters
or hooks.

In symfony1, this was achieved with the preExecute and postExecute methods.
Most major frameworks have similar methods but there is no such thing in Symfony.
The good news is that there is a much better way to interfere with the
Request -> Response process using the :doc:`EventDispatcher component </components/event_dispatcher/introduction>`.
Some web frameworks define methods like ``preExecute()`` and ``postExecute()``,
but there is no such thing in Symfony. The good news is that there is a much
better way to interfere with the Request -> Response process using the
:doc:`EventDispatcher component </components/event_dispatcher/introduction>`.

Token Validation Example
------------------------
Expand Down
1 change: 0 additions & 1 deletion cookbook/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ The Cookbook
service_container/index
session/index
psr7
symfony1
templating/index
testing/index
upgrade/index
Expand Down
4 changes: 0 additions & 4 deletions cookbook/map.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,6 @@

* :doc:`/cookbook/psr7`

* **symfony1**

* :doc:`/cookbook/symfony1`

* :doc:`/cookbook/templating/index`

* :doc:`/cookbook/templating/global_variables`
Expand Down
Loading