fix folder name

This commit is contained in:
2021-03-18 13:37:13 +01:00
parent a2f6773f5a
commit eaa0ad925f
1578 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
services:
Chill\CustomFieldsBundle\Command\CreateFieldsOnGroupCommand:
arguments:
$customFieldProvider: '@chill.custom_field.provider'
$entityManager: '@doctrine.orm.default_entity_manager'
$validator: '@Symfony\Component\Validator\Validator\ValidatorInterface'
$availableLanguages: '%chill_main.available_languages%'
$customizablesEntities: '%chill_custom_fields.customizables_entities%'
tags:
- { name: console.command }

View File

@@ -0,0 +1,19 @@
services:
Chill\CustomFieldsBundle\Controller\:
resource: '../../Controller'
tags: ['controller.service_arguments']
Chill\CustomFieldsBundle\Controller\CustomFieldsGroupController:
arguments:
$customFieldProvider: '@chill.custom_field.provider'
$translator: '@Symfony\Contracts\Translation\TranslatorInterface'
tags: ['controller.service_arguments']
## TODO
## cfr. https://github.com/symfony/symfony/issues/27436#issuecomment-393576416
#
# " An exception has been thrown during the rendering of a template
# ("The "Chill\CustomFieldsBundle\Controller\CustomFieldsGroupController::getParameter()" method is missing a parameter bag
# to work properly. Did you forget to register your controller as a service subscriber? This can be fixed
# either by using autoconfiguration or by manually wiring a "parameter_bag" in the service locator passed to the controller.").
autowire: true
autoconfigure: true

View File

@@ -0,0 +1,4 @@
services:
Chill\CustomFieldsBundle\DataFixtures\ORM\:
resource: ../../DataFixtures/ORM
tags: [ 'doctrine.fixture.orm' ]