minor #43 Add comments (GuilhemN)

This PR was merged into the master branch.

Discussion
----------

Add comments

Related to https://github.com/symfony/recipes/pull/42 and https://github.com/symfony/symfony-standard/pull/1064

Commits
-------

52c22bd Add comments
This commit is contained in:
Fabien Potencier
2017-05-01 16:33:01 -07:00
@@ -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}'