Format yaml file back to they way it was before

This commit is contained in:
Julie Lenaerts 2023-11-16 11:14:38 +01:00
parent 7587472785
commit 4e35bcbd93

View File

@ -1,96 +1,139 @@
services: services:
_defaults:
## Indicators
chill.calendar.export.count_calendars_linked_to_acp:
class: Chill\CalendarBundle\Export\Export\LinkedToAcp\CountCalendars
autowire: true autowire: true
autoconfigure: true autoconfigure: true
## Indicators
Chill\CalendarBundle\Export\Export\LinkedToAcp\CountCalendars:
tags: tags:
- { name: chill.export, alias: count_calendars_linked_to_acp } - { name: chill.export, alias: count_calendars_linked_to_acp }
Chill\CalendarBundle\Export\Export\LinkedToAcp\StatCalendarAvgDuration: chill.calendar.export.average_duration_calendars_linked_to_acp:
class: Chill\CalendarBundle\Export\Export\LinkedToAcp\StatCalendarAvgDuration
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export, alias: average_duration_calendars_linked_to_acp } - { name: chill.export, alias: average_duration_calendars_linked_to_acp }
Chill\CalendarBundle\Export\Export\LinkedToAcp\StatCalendarSumDuration: chill.calendar.export.sum_duration_calendars_linked_to_acp:
class: Chill\CalendarBundle\Export\Export\LinkedToAcp\StatCalendarSumDuration
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export, alias: sum_duration_calendars_linked_to_acp } - { name: chill.export, alias: sum_duration_calendars_linked_to_acp }
Chill\CalendarBundle\Export\Export\LinkedToPerson\CountCalendars: chill.calendar.export.count_calendars_linked_to_person:
class: Chill\CalendarBundle\Export\Export\LinkedToPerson\CountCalendars
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export, alias: count_calendars_linked_to_person } - { name: chill.export, alias: count_calendars_linked_to_person }
Chill\CalendarBundle\Export\Export\LinkedToPerson\StatCalendarAvgDuration: chill.calendar.export.average_duration_calendars_linked_to_person:
class: Chill\CalendarBundle\Export\Export\LinkedToPerson\StatCalendarAvgDuration
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export, alias: average_duration_calendars_linked_to_person } - { name: chill.export, alias: average_duration_calendars_linked_to_person }
Chill\CalendarBundle\Export\Export\LinkedToPerson\StatCalendarSumDuration: chill.calendar.export.sum_duration_calendars_linked_to_person:
class: Chill\CalendarBundle\Export\Export\LinkedToPerson\StatCalendarSumDuration
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export, alias: sum_duration_calendars_linked_to_person } - { name: chill.export, alias: sum_duration_calendars_linked_to_person }
## Filters ## Filters
Chill\CalendarBundle\Export\Filter\AgentFilter: chill.calendar.export.agent_filter:
class: Chill\CalendarBundle\Export\Filter\AgentFilter
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_filter, alias: agent_filter } - { name: chill.export_filter, alias: agent_filter }
chill.calendar.export.job_filter:
Chill\CalendarBundle\Export\Filter\JobFilter: class: Chill\CalendarBundle\Export\Filter\JobFilter
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_filter, alias: job_filter } - { name: chill.export_filter, alias: job_filter }
chill.calendar.export.scope_filter:
Chill\CalendarBundle\Export\Filter\ScopeFilter: class: Chill\CalendarBundle\Export\Filter\ScopeFilter
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_filter, alias: scope_filter } - { name: chill.export_filter, alias: scope_filter }
chill.calendar.export.between_dates_filter:
Chill\CalendarBundle\Export\Filter\BetweenDatesFilter: class: Chill\CalendarBundle\Export\Filter\BetweenDatesFilter
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_filter, alias: between_dates_filter } - { name: chill.export_filter, alias: between_dates_filter }
chill.calendar.export.calendar_range_filter:
Chill\CalendarBundle\Export\Filter\CalendarRangeFilter: class: Chill\CalendarBundle\Export\Filter\CalendarRangeFilter
tags: autowire: true
- { name: chill.export_filter, alias: calendar_range_filter } autoconfigure: true
## Aggregator
Chill\CalendarBundle\Export\Aggregator\AgentAggregator:
tags: tags:
- { name: chill.export_aggregator, alias: agent_aggregator } - { name: chill.export_filter, alias: calendar_range_filter }
## Aggregator
Chill\CalendarBundle\Export\Aggregator\JobAggregator: chill.calendar.export.agent_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\AgentAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: job_aggregator } - { name: chill.export_aggregator, alias: agent_aggregator }
chill.calendar.export.job_aggregator:
Chill\CalendarBundle\Export\Aggregator\ScopeAggregator: class: Chill\CalendarBundle\Export\Aggregator\JobAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: scope_aggregator } - { name: chill.export_aggregator, alias: job_aggregator }
chill.calendar.export.scope_aggregator:
Chill\CalendarBundle\Export\Aggregator\LocationTypeAggregator: class: Chill\CalendarBundle\Export\Aggregator\ScopeAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: location_type_aggregator } - { name: chill.export_aggregator, alias: scope_aggregator }
chill.calendar.export.location_type_aggregator:
Chill\CalendarBundle\Export\Aggregator\LocationAggregator: class: Chill\CalendarBundle\Export\Aggregator\LocationTypeAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: location_aggregator } - { name: chill.export_aggregator, alias: location_type_aggregator }
chill.calendar.export.location_aggregator:
Chill\CalendarBundle\Export\Aggregator\CancelReasonAggregator: class: Chill\CalendarBundle\Export\Aggregator\LocationAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: cancel_reason_aggregator } - { name: chill.export_aggregator, alias: location_aggregator }
chill.calendar.export.cancel_reason_aggregator:
Chill\CalendarBundle\Export\Aggregator\MonthYearAggregator: class: Chill\CalendarBundle\Export\Aggregator\CancelReasonAggregator
autowire: true
autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: month_aggregator } - { name: chill.export_aggregator, alias: cancel_reason_aggregator }
Chill\CalendarBundle\Export\Aggregator\UrgencyAggregator: chill.calendar.export.month_aggregator:
tags: class: Chill\CalendarBundle\Export\Aggregator\MonthYearAggregator
- { name: chill.export_aggregator, alias: urgency_aggregator } autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: month_aggregator }
chill.calendar.export.urgency_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\UrgencyAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: urgency_aggregator }