mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Revert "fix: Autowire
and autoconfigure
services in chill_main
."
This reverts commit d7fbbbf92cfe5233130ed7d5c27aeb9364426436.
This commit is contained in:
parent
d7fbbbf92c
commit
d1e1f7faa4
@ -8,21 +8,28 @@ services:
|
|||||||
|
|
||||||
Chill\MainBundle\Repository\:
|
Chill\MainBundle\Repository\:
|
||||||
resource: '../Repository/'
|
resource: '../Repository/'
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
Chill\MainBundle\Repository\UserACLAwareRepositoryInterface: '@Chill\MainBundle\Repository\UserACLAwareRepository'
|
Chill\MainBundle\Repository\UserACLAwareRepositoryInterface: '@Chill\MainBundle\Repository\UserACLAwareRepository'
|
||||||
|
|
||||||
Chill\MainBundle\Serializer\Normalizer\:
|
Chill\MainBundle\Serializer\Normalizer\:
|
||||||
resource: '../Serializer/Normalizer'
|
resource: '../Serializer/Normalizer'
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
tags:
|
tags:
|
||||||
- { name: 'serializer.normalizer', priority: 64 }
|
- { name: 'serializer.normalizer', priority: 64 }
|
||||||
|
|
||||||
Chill\MainBundle\Form\Type\:
|
Chill\MainBundle\Form\Type\:
|
||||||
resource: '../Form/Type'
|
resource: '../Form/Type'
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
|
||||||
Chill\MainBundle\Doctrine\Event\:
|
Chill\MainBundle\Doctrine\Event\:
|
||||||
resource: '../Doctrine/Event/'
|
resource: '../Doctrine/Event/'
|
||||||
|
autowire: true
|
||||||
tags:
|
tags:
|
||||||
- { name: 'doctrine.event_subscriber' }
|
- { name: 'doctrine.event_subscriber' }
|
||||||
|
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill_main.tag_aware_cache:
|
chill_main.tag_aware_cache:
|
||||||
class: Symfony\Component\Cache\Adapter\TagAwareAdapter
|
class: Symfony\Component\Cache\Adapter\TagAwareAdapter
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Command\ChillImportUsersCommand:
|
Chill\MainBundle\Command\ChillImportUsersCommand:
|
||||||
|
arguments:
|
||||||
|
$em: '@Doctrine\ORM\EntityManagerInterface'
|
||||||
|
$logger: '@Psr\Log\LoggerInterface'
|
||||||
|
$passwordEncoder: '@Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface'
|
||||||
|
$validator: '@Symfony\Component\Validator\Validator\ValidatorInterface'
|
||||||
|
$userRepository: '@Chill\MainBundle\Repository\UserRepository'
|
||||||
tags:
|
tags:
|
||||||
- { name: console.command }
|
- { name: console.command }
|
||||||
|
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Controller\:
|
Chill\MainBundle\Controller\:
|
||||||
|
autowire: true
|
||||||
resource: '../../Controller'
|
resource: '../../Controller'
|
||||||
tags: ['controller.service_arguments']
|
tags: ['controller.service_arguments']
|
||||||
|
|
||||||
Chill\MainBundle\Controller\PasswordController:
|
Chill\MainBundle\Controller\PasswordController:
|
||||||
|
autowire: true
|
||||||
arguments:
|
arguments:
|
||||||
$chillLogger: '@monolog.logger.chill'
|
$chillLogger: '@monolog.logger.chill'
|
||||||
tags: ['controller.service_arguments']
|
tags: ['controller.service_arguments']
|
||||||
@ -29,6 +28,10 @@ services:
|
|||||||
$validator: '@Symfony\Component\Validator\Validator\ValidatorInterface'
|
$validator: '@Symfony\Component\Validator\Validator\ValidatorInterface'
|
||||||
tags: ['controller.service_arguments']
|
tags: ['controller.service_arguments']
|
||||||
|
|
||||||
|
Chill\MainBundle\Controller\UserController:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
Chill\MainBundle\Controller\NotificationController:
|
Chill\MainBundle\Controller\NotificationController:
|
||||||
arguments:
|
arguments:
|
||||||
$security: '@Symfony\Component\Security\Core\Security'
|
$security: '@Symfony\Component\Security\Core\Security'
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\CRUD\Routing\CRUDRoutesLoader:
|
Chill\MainBundle\CRUD\Routing\CRUDRoutesLoader:
|
||||||
arguments:
|
arguments:
|
||||||
$crudConfig: '%chill_main_crud_route_loader_config%'
|
$crudConfig: '%chill_main_crud_route_loader_config%'
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
_defaults:
|
'Chill\MainBundle\Doctrine\Migrations\VersionComparator': ~
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Doctrine\Migrations\VersionComparator: ~
|
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill.main.export_element_validator:
|
chill.main.export_element_validator:
|
||||||
class: Chill\MainBundle\Validator\Constraints\Export\ExportElementConstraintValidator
|
class: Chill\MainBundle\Validator\Constraints\Export\ExportElementConstraintValidator
|
||||||
tags:
|
tags:
|
||||||
@ -47,3 +43,4 @@ services:
|
|||||||
$exportManager: '@Chill\MainBundle\Export\ExportManager'
|
$exportManager: '@Chill\MainBundle\Export\ExportManager'
|
||||||
tags:
|
tags:
|
||||||
- { name: chill.export_formatter, alias: 'csv_pivoted_list' }
|
- { name: chill.export_formatter, alias: 'csv_pivoted_list' }
|
||||||
|
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\DataFixtures\ORM\:
|
Chill\MainBundle\DataFixtures\ORM\:
|
||||||
resource: ../../DataFixtures/ORM
|
resource: ../../DataFixtures/ORM
|
||||||
tags: [ 'doctrine.fixture.orm' ]
|
tags: [ 'doctrine.fixture.orm' ]
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill.main.form.type.translatable.string:
|
chill.main.form.type.translatable.string:
|
||||||
class: Chill\MainBundle\Form\Type\TranslatableStringFormType
|
class: Chill\MainBundle\Form\Type\TranslatableStringFormType
|
||||||
@ -42,6 +39,10 @@ services:
|
|||||||
tags:
|
tags:
|
||||||
- { name: form.type, alias: select2_chill_language }
|
- { name: form.type, alias: select2_chill_language }
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\Type\PickCenterType:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
chill.main.form.type.composed_role_scope:
|
chill.main.form.type.composed_role_scope:
|
||||||
class: Chill\MainBundle\Form\Type\ComposedRoleScopeType
|
class: Chill\MainBundle\Form\Type\ComposedRoleScopeType
|
||||||
arguments:
|
arguments:
|
||||||
@ -61,6 +62,10 @@ services:
|
|||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\ChoiceLoader\PostalCodeChoiceLoader:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
chill.main.form.type.export:
|
chill.main.form.type.export:
|
||||||
class: Chill\MainBundle\Form\Type\Export\ExportType
|
class: Chill\MainBundle\Form\Type\Export\ExportType
|
||||||
tags:
|
tags:
|
||||||
@ -91,8 +96,14 @@ services:
|
|||||||
arguments:
|
arguments:
|
||||||
- '@Chill\MainBundle\Export\ExportManager'
|
- '@Chill\MainBundle\Export\ExportManager'
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\Type\DataTransformer\CenterTransformer:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
chill.main.form.advanced_search_type:
|
chill.main.form.advanced_search_type:
|
||||||
class: Chill\MainBundle\Form\AdvancedSearchType
|
class: Chill\MainBundle\Form\AdvancedSearchType
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
arguments:
|
arguments:
|
||||||
- "@chill_main.search_provider"
|
- "@chill_main.search_provider"
|
||||||
tags:
|
tags:
|
||||||
@ -105,6 +116,10 @@ services:
|
|||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\UserType:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
Chill\MainBundle\Form\PermissionsGroupType:
|
Chill\MainBundle\Form\PermissionsGroupType:
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
@ -115,3 +130,16 @@ services:
|
|||||||
- "@security.token_storage"
|
- "@security.token_storage"
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\Type\PickAddressType:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\DataTransform\AddressToIdDataTransformer:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
Chill\MainBundle\Form\Type\LocationFormType:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill.main.logger:
|
chill.main.logger:
|
||||||
# a logger to log events from the app (deletion, remove, etc.)
|
# a logger to log events from the app (deletion, remove, etc.)
|
||||||
alias: monolog.logger.chill
|
alias: monolog.logger.chill
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Routing\MenuBuilder\:
|
Chill\MainBundle\Routing\MenuBuilder\:
|
||||||
resource: '../../Routing/MenuBuilder'
|
resource: '../../Routing/MenuBuilder'
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
Chill\MainBundle\Routing\MenuBuilder\UserMenuBuilder:
|
Chill\MainBundle\Routing\MenuBuilder\UserMenuBuilder:
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Notification\Mailer:
|
Chill\MainBundle\Notification\Mailer:
|
||||||
arguments:
|
arguments:
|
||||||
$logger: '@Psr\Log\LoggerInterface'
|
$logger: '@Psr\Log\LoggerInterface'
|
||||||
@ -12,3 +8,7 @@ services:
|
|||||||
$router: '@Symfony\Component\Routing\RouterInterface'
|
$router: '@Symfony\Component\Routing\RouterInterface'
|
||||||
$translator: '@Symfony\Component\Translation\TranslatorInterface'
|
$translator: '@Symfony\Component\Translation\TranslatorInterface'
|
||||||
$routeParameters: '%chill_main.notifications%'
|
$routeParameters: '%chill_main.notifications%'
|
||||||
|
|
||||||
|
Chill\MainBundle\Notification\NotificationRenderer:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill_main.paginator_factory:
|
chill_main.paginator_factory:
|
||||||
class: Chill\MainBundle\Pagination\PaginatorFactory
|
class: Chill\MainBundle\Pagination\PaginatorFactory
|
||||||
public: true
|
public: true
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
arguments:
|
arguments:
|
||||||
- "@request_stack"
|
- "@request_stack"
|
||||||
- "@router"
|
- "@router"
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Phonenumber\PhonenumberHelper:
|
Chill\MainBundle\Phonenumber\PhonenumberHelper:
|
||||||
arguments:
|
arguments:
|
||||||
$logger: '@Psr\Log\LoggerInterface'
|
$logger: '@Psr\Log\LoggerInterface'
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Redis\RedisConnectionFactory:
|
Chill\MainBundle\Redis\RedisConnectionFactory:
|
||||||
arguments:
|
arguments:
|
||||||
$parameters: "%chill_main.redis%"
|
$parameters: "%chill_main.redis%"
|
||||||
@ -11,3 +7,4 @@ services:
|
|||||||
|
|
||||||
Chill\MainBundle\Redis\ChillRedis:
|
Chill\MainBundle\Redis\ChillRedis:
|
||||||
factory: [ '@Chill\MainBundle\Redis\RedisConnectionFactory', 'create' ]
|
factory: [ '@Chill\MainBundle\Redis\RedisConnectionFactory', 'create' ]
|
||||||
|
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill.main.menu_composer:
|
chill.main.menu_composer:
|
||||||
class: Chill\MainBundle\Routing\MenuComposer
|
class: Chill\MainBundle\Routing\MenuComposer
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill_main.search_provider:
|
chill_main.search_provider:
|
||||||
class: Chill\MainBundle\Search\SearchProvider
|
class: Chill\MainBundle\Search\SearchProvider
|
||||||
|
|
||||||
Chill\MainBundle\Search\SearchProvider: '@chill_main.search_provider'
|
Chill\MainBundle\Search\SearchProvider: '@chill_main.search_provider'
|
||||||
|
|
||||||
|
Chill\MainBundle\Search\SearchApi:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
Chill\MainBundle\Search\Entity\:
|
Chill\MainBundle\Search\Entity\:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
resource: '../../Search/Entity'
|
resource: '../../Search/Entity'
|
||||||
|
@ -12,13 +12,38 @@ services:
|
|||||||
arguments:
|
arguments:
|
||||||
- !tagged_iterator chill_main.scope_resolver
|
- !tagged_iterator chill_main.scope_resolver
|
||||||
|
|
||||||
|
# do not autowire the directory Security/Resolver
|
||||||
|
Chill\MainBundle\Security\Resolver\DefaultCenterResolver:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
Chill\MainBundle\Security\Resolver\DefaultScopeResolver:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
# do not autowire the directory Security/Resolver
|
||||||
|
Chill\MainBundle\Security\Resolver\ResolverTwigExtension:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
# do not autowire the directory Security/Resolver
|
||||||
|
Chill\MainBundle\Security\Authorization\DefaultVoterHelperFactory:
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
# do not autowire the directory Security/Resolver
|
||||||
Chill\MainBundle\Security\Authorization\VoterHelperFactoryInterface: '@Chill\MainBundle\Security\Authorization\DefaultVoterHelperFactory'
|
Chill\MainBundle\Security\Authorization\VoterHelperFactoryInterface: '@Chill\MainBundle\Security\Authorization\DefaultVoterHelperFactory'
|
||||||
|
|
||||||
chill.main.security.authorization.helper:
|
chill.main.security.authorization.helper:
|
||||||
class: Chill\MainBundle\Security\Authorization\AuthorizationHelper
|
class: Chill\MainBundle\Security\Authorization\AuthorizationHelper
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
Chill\MainBundle\Security\Authorization\AuthorizationHelper: '@chill.main.security.authorization.helper'
|
Chill\MainBundle\Security\Authorization\AuthorizationHelper: '@chill.main.security.authorization.helper'
|
||||||
Chill\MainBundle\Security\Authorization\AuthorizationHelperInterface: '@chill.main.security.authorization.helper'
|
Chill\MainBundle\Security\Authorization\AuthorizationHelperInterface: '@chill.main.security.authorization.helper'
|
||||||
|
|
||||||
|
Chill\MainBundle\Security\ParentRoleHelper:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
chill.main.role_provider:
|
chill.main.role_provider:
|
||||||
class: Chill\MainBundle\Security\RoleProvider
|
class: Chill\MainBundle\Security\RoleProvider
|
||||||
Chill\MainBundle\Security\RoleProvider: '@chill.main.role_provider'
|
Chill\MainBundle\Security\RoleProvider: '@chill.main.role_provider'
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
# note: the autowiring for serializers and normalizers is declared
|
# note: the autowiring for serializers and normalizers is declared
|
||||||
# into ../services.yaml
|
# into ../services.yaml
|
||||||
|
|
||||||
Chill\MainBundle\Serializer\Normalizer\DoctrineExistingEntityNormalizer:
|
Chill\MainBundle\Serializer\Normalizer\DoctrineExistingEntityNormalizer:
|
||||||
|
autowire: true
|
||||||
tags:
|
tags:
|
||||||
- { name: 'serializer.normalizer', priority: 8 }
|
- { name: 'serializer.normalizer', priority: 8 }
|
||||||
|
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
# twig_intl:
|
# twig_intl:
|
||||||
# class: Twig_Extensions_Extension_Intl
|
# class: Twig_Extensions_Extension_Intl
|
||||||
# tags:
|
# tags:
|
||||||
@ -36,6 +32,8 @@ services:
|
|||||||
- { name: twig.extension }
|
- { name: twig.extension }
|
||||||
|
|
||||||
Chill\MainBundle\Templating\Entity\CommentRender:
|
Chill\MainBundle\Templating\Entity\CommentRender:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
tags:
|
tags:
|
||||||
- { name: 'chill.render_entity' }
|
- { name: 'chill.render_entity' }
|
||||||
|
|
||||||
@ -43,7 +41,17 @@ services:
|
|||||||
tags:
|
tags:
|
||||||
- { name: twig.extension }
|
- { name: twig.extension }
|
||||||
|
|
||||||
|
Chill\MainBundle\Templating\Entity\AddressRender:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
|
Chill\MainBundle\Templating\Entity\UserRender:
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
Chill\MainBundle\Templating\Listing\:
|
Chill\MainBundle\Templating\Listing\:
|
||||||
resource: './../../Templating/Listing'
|
resource: './../../Templating/Listing'
|
||||||
|
autoconfigure: true
|
||||||
|
autowire: true
|
||||||
|
|
||||||
Chill\MainBundle\Templating\Listing\FilterOrderHelperFactoryInterface: '@Chill\MainBundle\Templating\Listing\FilterOrderHelperFactory'
|
Chill\MainBundle\Templating\Listing\FilterOrderHelperFactoryInterface: '@Chill\MainBundle\Templating\Listing\FilterOrderHelperFactory'
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill_main.timeline_builder:
|
chill_main.timeline_builder:
|
||||||
class: Chill\MainBundle\Timeline\TimelineBuilder
|
class: Chill\MainBundle\Timeline\TimelineBuilder
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
chill_main.validator_user_circle_consistency:
|
chill_main.validator_user_circle_consistency:
|
||||||
class: Chill\MainBundle\Validator\Constraints\Entity\UserCircleConsistencyValidator
|
class: Chill\MainBundle\Validator\Constraints\Entity\UserCircleConsistencyValidator
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -1,6 +1,2 @@
|
|||||||
services:
|
services:
|
||||||
_defaults:
|
|
||||||
autowire: true
|
|
||||||
autoconfigure: true
|
|
||||||
|
|
||||||
Chill\MainBundle\Templating\UI\CountNotificationUser: ~
|
Chill\MainBundle\Templating\UI\CountNotificationUser: ~
|
||||||
|
Loading…
x
Reference in New Issue
Block a user