From 52c22bd05d07cb90b27f6f75cfab91ce14383586 Mon Sep 17 00:00:00 2001 From: Guilhem Niot Date: Mon, 1 May 2017 19:28:19 +0200 Subject: [PATCH] Add comments --- symfony/framework-bundle/3.3/etc/packages/app.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/symfony/framework-bundle/3.3/etc/packages/app.yaml b/symfony/framework-bundle/3.3/etc/packages/app.yaml index a052e6951..9cd06d3a5 100644 --- a/symfony/framework-bundle/3.3/etc/packages/app.yaml +++ b/symfony/framework-bundle/3.3/etc/packages/app.yaml @@ -1,9 +1,16 @@ services: + # default configuration for services in *this* file _defaults: + # automatically injects dependencies in your services autowire: true + # automatically registers your services as commands, form types, etc. autoconfigure: true + # this means you cannot fetch services directly from the container via $container->get() + # if you need to do this, you can override this setting on individual services public: false + # loads services from whatever directories you want (you can add directories!) + # this creates a service per class whose id is the fully-qualified class name App\: resource: '../../src/{Command,Form,EventSubscriber,Twig,Security}'