diff --git a/symfony/framework-bundle/3.3/config/packages/app.yaml b/symfony/framework-bundle/3.3/config/packages/app.yaml deleted file mode 100644 index eb9eb537..00000000 --- a/symfony/framework-bundle/3.3/config/packages/app.yaml +++ /dev/null @@ -1,25 +0,0 @@ -services: - # default configuration for services in *this* file - _defaults: - # automatically injects dependencies in your services - autowire: true - # automatically registers your services as commands, event subscribers, 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 - - # makes classes in src/ available to be used as services - # this creates a service per class whose id is the fully-qualified class name - App\: - resource: '../../src/*' - # you can exclude directories or files - # but if a service is unused, it's removed anyway - exclude: '../../src/{Entity,Repository,Tests}' - - # controllers are imported separately to make sure they're public - # and have a tag that allows actions to type-hint services - App\Controller\: - resource: '../../src/Controller' - public: true - tags: ['controller.service_arguments'] diff --git a/symfony/framework-bundle/3.3/config/services.yaml b/symfony/framework-bundle/3.3/config/services.yaml index 2a241e10..0f0ed422 100644 --- a/symfony/framework-bundle/3.3/config/services.yaml +++ b/symfony/framework-bundle/3.3/config/services.yaml @@ -3,3 +3,27 @@ parameters: services: + # default configuration for services in *this* file + _defaults: + # automatically injects dependencies in your services + autowire: true + # automatically registers your services as commands, event subscribers, 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 + + # makes classes in src/ available to be used as services + # this creates a service per class whose id is the fully-qualified class name + App\: + resource: '../../src/*' + # you can exclude directories or files + # but if a service is unused, it's removed anyway + exclude: '../../src/{Entity,Repository,Tests}' + + # controllers are imported separately to make sure they're public + # and have a tag that allows actions to type-hint services + App\Controller\: + resource: '../../src/Controller' + public: true + tags: ['controller.service_arguments']