From 545020646d2357f5f64c64ed429cc45b2500dd9f Mon Sep 17 00:00:00 2001 From: Romain Gautier Date: Sat, 29 Jul 2017 12:06:53 +0200 Subject: [PATCH] fix resources path --- symfony/framework-bundle/3.3/config/services.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symfony/framework-bundle/3.3/config/services.yaml b/symfony/framework-bundle/3.3/config/services.yaml index 0f0ed422..4c0344da 100644 --- a/symfony/framework-bundle/3.3/config/services.yaml +++ b/symfony/framework-bundle/3.3/config/services.yaml @@ -16,14 +16,14 @@ services: # 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/*' + resource: '../src/*' # you can exclude directories or files # but if a service is unused, it's removed anyway - exclude: '../../src/{Entity,Repository,Tests}' + 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' + resource: '../src/Controller' public: true tags: ['controller.service_arguments']