-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservices.yaml
More file actions
42 lines (33 loc) · 1.51 KB
/
services.yaml
File metadata and controls
42 lines (33 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
imports:
- { resource: Infrastructure/services.yaml }
services:
_defaults:
public: false
autowire: true
OxidEsales\ExamplesModule\Greeting\Settings\GreetingSettingsInterface:
class: OxidEsales\ExamplesModule\Greeting\Settings\GreetingSettings
public: true
OxidEsales\ExamplesModule\Greeting\Service\GreetingMessageServiceInterface:
class: OxidEsales\ExamplesModule\Greeting\Service\GreetingMessageService
arguments:
$shopName: '%env(OEEM_SHOP_NAME)%'
public: true
OxidEsales\ExamplesModule\Greeting\Service\Decorator\GreetingValidationDecorator:
decorates: OxidEsales\ExamplesModule\Greeting\Service\GreetingMessageServiceInterface
arguments:
$originalService: '@.inner'
OxidEsales\ExamplesModule\Greeting\Service\UserServiceInterface:
class: OxidEsales\ExamplesModule\Greeting\Service\UserService
OxidEsales\ExamplesModule\Greeting\Transput\AdminGreetingRequestInterface:
class: OxidEsales\ExamplesModule\Greeting\Transput\AdminGreetingRequest
public: true
OxidEsales\ExamplesModule\Greeting\Transput\SaveGreetingRequestInterface:
class: OxidEsales\ExamplesModule\Greeting\Transput\SaveGreetingRequest
OxidEsales\ExamplesModule\Greeting\Controller\GreetingController:
public: true
tags:
- { name: 'oxid.view_controller', controller_key: 'oeem_greeting' }
OxidEsales\ExamplesModule\Greeting\Controller\Admin\GreetingAdminController:
public: true
tags:
- { name: 'oxid.view_controller', controller_key: 'oeem_admin_greeting' }