-
Notifications
You must be signed in to change notification settings - Fork 21
/
services.yaml
54 lines (41 loc) · 1.82 KB
/
services.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
services:
_defaults:
public: false
autowire: true
OxidEsales\Eshop\Core\Registry:
class: OxidEsales\Eshop\Core\Registry
OxidEsales\PayPalModule\Core\Config:
factory: [ '@OxidEsales\Eshop\Core\Registry', 'get' ]
arguments:
$className: 'OxidEsales\PayPalModule\Core\Config'
OxidEsales\PayPalModule\GraphQL\Infrastructure\Request:
factory: [ '@OxidEsales\Eshop\Core\Registry', 'get' ]
arguments:
$className: 'OxidEsales\PayPalModule\GraphQL\Infrastructure\Request'
OxidEsales\PayPalModule\GraphQL\Controller\:
resource: 'GraphQL/Controller/*'
public: true
OxidEsales\PayPalModule\GraphQL\Service\NamespaceMapper:
class: OxidEsales\PayPalModule\GraphQL\Service\NamespaceMapper
tags: [ 'graphql_namespace_mapper' ]
OxidEsales\PayPalModule\GraphQL\Subscriber\BeforePlaceOrder:
class: OxidEsales\PayPalModule\GraphQL\Subscriber\BeforePlaceOrder
tags: [ 'kernel.event_subscriber' ]
OxidEsales\PayPalModule\GraphQL\Subscriber\BeforeBasketPayments:
class: OxidEsales\PayPalModule\GraphQL\Subscriber\BeforeBasketPayments
tags: [ 'kernel.event_subscriber' ]
OxidEsales\PayPalModule\GraphQL\Service\Basket:
class: OxidEsales\PayPalModule\GraphQL\Service\Basket
public: true
OxidEsales\PayPalModule\GraphQL\Service\Payment:
class: OxidEsales\PayPalModule\GraphQL\Service\Payment
public: true
OxidEsales\PayPalModule\GraphQL\Service\BeforePlaceOrder:
class: OxidEsales\PayPalModule\GraphQL\Service\BeforePlaceOrder
public: true
OxidEsales\PayPalModule\GraphQL\Service\BasketExtendType:
class: OxidEsales\PayPalModule\GraphQL\Service\BasketExtendType
public: true
OxidEsales\PayPalModule\GraphQL\Service\PermissionProvider:
class: OxidEsales\PayPalModule\GraphQL\Service\PermissionProvider
tags: ['graphql_permission_provider']