-
Notifications
You must be signed in to change notification settings - Fork 2
/
strawberry_runners.services.yml
24 lines (20 loc) · 1.18 KB
/
strawberry_runners.services.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
strawberry_runner.processor_manager:
class: Drupal\strawberry_runners\Plugin\StrawberryRunnersPostProcessorPluginManager
parent: default_plugin_manager
strawberry_runner.postprocessing_save_subscriber:
class: Drupal\strawberry_runners\EventSubscriber\StrawberryRunnersEventSavePostProcessingSubscriber
tags:
- {name: event_subscriber}
arguments: [ '@string_translation', '@messenger', '@current_user', '@strawberry_runner.utility']
strawberry_runner.postprocessing_insert_subscriber:
class: Drupal\strawberry_runners\EventSubscriber\StrawberryRunnersEventInsertPostProcessingSubscriber
tags:
- {name: event_subscriber}
arguments: ['@string_translation', '@messenger', '@current_user', '@strawberry_runner.utility']
logger.channel.strawberry_runners:
parent: logger.channel_base
arguments: [ 'strawberry_runner' ]
strawberry_runner.utility:
class: Drupal\strawberry_runners\strawberryRunnerUtilityService
arguments: ['@string_translation', '@queue', '@messenger', '@logger.factory', '@config.factory', '@stream_wrapper_manager', '@file_system', '@entity_type.manager', '@strawberry_runner.processor_manager', '@current_user']