@@ -360,7 +360,7 @@ The third big change is that, in a new Symfony 3.3 project, your controllers are
360
360
But, you might not even notice this. First, your controllers *can * still extend
361
361
the same base ``Controller `` class or a new :ref: `AbstractController <controller-abstract-versus-controller >`.
362
362
This means you have access to all of the same shortcuts as before. Additionally,
363
- the ``@Route `` annotation and ``_controller `` syntax (e.g.``AppBundle:Default: homepage``)
363
+ the ``@Route `` annotation and ``_controller `` syntax (e.g. ``AppBundle:Default:homepage ``)
364
364
used in routing will automatically use your controller as a service (as long as its
365
365
service id matches its class name, which it *does * in this case). See :doc: `/controller/service `
366
366
for more details. You can even create :ref: `invokable controllers <controller-service-invoke >`
@@ -433,7 +433,7 @@ In this case, you've created a class that implements ``EventSubscriberInterface`
433
433
and registered it as a service. This is more than enough for the container to know
434
434
that you want this to be used as an event subscriber: more configuration is not needed.
435
435
And the tags system is its own, Symfony-specific mechanism. And of course, you can
436
- always default ``autoconfigure `` to false in ``services.yml ``, or disable it for a specific
436
+ always set ``autoconfigure `` to `` false `` in ``services.yml ``, or disable it for a specific
437
437
service.
438
438
439
439
Does this mean tags are dead? Does this work for all tags?
@@ -449,7 +449,7 @@ see what it autoconfigures.
449
449
450
450
Many autoconfigured tags have an optional priority. If you need to specify a priority
451
451
5611
(or any other optional tag attribute), no problem! Just :ref: `manually configure your service <services-manually-wire-args >`
452
- and add the tag. Your tag will take precedent over the one added by auto-configuration.
452
+ and add the tag. Your tag will take precedence over the one added by auto-configuration.
453
453
454
454
What about Performance
455
455
----------------------
0 commit comments