change namespaces, removing AMLI

This commit is contained in:
2022-02-23 11:24:24 +01:00
parent 8f597eb254
commit 35aa05fb97
35 changed files with 89 additions and 89 deletions

View File

@@ -1,3 +1,3 @@
chill_amli_budget_controllers:
resource: "@ChillAMLIBudgetBundle/Controller"
chill_budget_controllers:
resource: "@ChillBudgetBundle/Controller"
type: annotation

View File

@@ -1,2 +1,2 @@
services:
Chill\AMLI\BudgetBundle\Calculator\CalculatorManager: ~
Chill\BudgetBundle\Calculator\CalculatorManager: ~

View File

@@ -1,5 +1,5 @@
services:
Chill\AMLI\BudgetBundle\Config\ConfigRepository:
Chill\BudgetBundle\Config\ConfigRepository:
arguments:
$resources: '%chill_budget.resources%'
$charges: '%chill_budget.charges%'

View File

@@ -1,5 +1,5 @@
services:
Chill\AMLI\BudgetBundle\Controller\:
Chill\BudgetBundle\Controller\:
autowire: true
resource: '../../Controller'
tags: ['controller.service_arguments']

View File

@@ -1,14 +1,14 @@
services:
Chill\AMLI\BudgetBundle\Form\ResourceType:
Chill\BudgetBundle\Form\ResourceType:
arguments:
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
$configRepository: '@Chill\BudgetBundle\Config\ConfigRepository'
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
tags:
- { name: 'form.type' }
Chill\AMLI\BudgetBundle\Form\ChargeType:
Chill\BudgetBundle\Form\ChargeType:
arguments:
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
$configRepository: '@Chill\BudgetBundle\Config\ConfigRepository'
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
tags:
- { name: 'form.type' }

View File

@@ -1,5 +1,5 @@
services:
Chill\AMLI\BudgetBundle\Menu\UserMenuBuilder:
Chill\BudgetBundle\Menu\UserMenuBuilder:
arguments:
$authorizationChecker: '@Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface'
$translator: '@Symfony\Contracts\Translation\TranslatorInterface'

View File

@@ -1,5 +1,5 @@
services:
Chill\AMLI\BudgetBundle\Security\Authorization\BudgetElementVoter:
Chill\BudgetBundle\Security\Authorization\BudgetElementVoter:
arguments:
$authorizationHelper: '@Chill\MainBundle\Security\Authorization\AuthorizationHelper'
tags:

View File

@@ -1,7 +1,7 @@
services:
Chill\AMLI\BudgetBundle\Templating\Twig:
Chill\BudgetBundle\Templating\Twig:
arguments:
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
$configRepository: '@Chill\BudgetBundle\Config\ConfigRepository'
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
tags:
- { name: 'twig.extension' }