8000 removing need for annotation route import change by weaverryan · Pull Request #8726 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

removing need for annotation route import chan 8000 ge #8726

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

Merged
merged 1 commit into from
Nov 23, 2017
Merged
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
8000
Diff view
13 changes: 2 additions & 11 deletions page_creation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,22 +93,13 @@ Annotation Routes
-----------------

Instead of defining your route in YAML, Symfony also allows you to use *annotation*
routes. First, install the annotations package:
routes. To do this, install the annotations package:

.. code-block:: terminal

$ composer require annotations

Then, in ``config/routes.yaml``, remove the route you just created and uncomment
the annotation route import at the bottom:

.. code-block:: yaml

controllers:
resource: ../src/Controller/
type: annotation

After this one-time setup, you can now add your route directly *above* the controller:
You can now add your route directly *above* the controller:

.. code-block:: diff

Expand Down
0