mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
fix error: arguments were missing in service definition
This commit is contained in:
parent
f9723e587f
commit
3033be78d2
@ -70,16 +70,21 @@ services:
|
|||||||
class: Chill\MainBundle\Form\Type\Export\ExportType
|
class: Chill\MainBundle\Form\Type\Export\ExportType
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
arguments:
|
||||||
|
- '@Chill\MainBundle\Export\ExportManager'
|
||||||
|
|
||||||
chill.main.form.pick_formatter_type:
|
chill.main.form.pick_formatter_type:
|
||||||
class: Chill\MainBundle\Form\Type\Export\PickFormatterType
|
class: Chill\MainBundle\Form\Type\Export\PickFormatterType
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
arguments:
|
||||||
|
- '@Chill\MainBundle\Export\ExportManager'
|
||||||
|
|
||||||
chill.main.form.pick_centers_type:
|
chill.main.form.pick_centers_type:
|
||||||
class: Chill\MainBundle\Form\Type\Export\PickCenterType
|
class: Chill\MainBundle\Form\Type\Export\PickCenterType
|
||||||
arguments:
|
arguments:
|
||||||
- "@security.token_storage"
|
- "@security.token_storage"
|
||||||
|
- '@Chill\MainBundle\Export\ExportManager'
|
||||||
- "@chill.main.security.authorization.helper"
|
- "@chill.main.security.authorization.helper"
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
@ -88,6 +93,8 @@ services:
|
|||||||
class: Chill\MainBundle\Form\Type\Export\FormatterType
|
class: Chill\MainBundle\Form\Type\Export\FormatterType
|
||||||
tags:
|
tags:
|
||||||
- { name: form.type }
|
- { name: form.type }
|
||||||
|
arguments:
|
||||||
|
- '@Chill\MainBundle\Export\ExportManager'
|
||||||
|
|
||||||
chill.main.form.date_type:
|
chill.main.form.date_type:
|
||||||
class: Chill\MainBundle\Form\Type\ChillDateType
|
class: Chill\MainBundle\Form\Type\ChillDateType
|
||||||
|
Loading…
x
Reference in New Issue
Block a user