-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.settings.php
More file actions
113 lines (110 loc) · 5.14 KB
/
.settings.php
File metadata and controls
113 lines (110 loc) · 5.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
use Mindbox\Loyalty\Operations\GetCustomerBalanceHistory;
return [
'services' => [
'value' => [
'mindboxLoyalty.registerCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\RegisterCustomer()
],
'mindboxLoyalty.checkCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CheckCustomer()
],
'mindboxLoyalty.getCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\GetCustomer()
],
'mindboxLoyalty.authorizeCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\AuthorizeCustomer()
],
'mindboxLoyalty.editCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\EditCustomer()
],
'mindboxLoyalty.syncCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SyncCustomer()
],
'mindboxLoyalty.checkMobilePhoneCode' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CheckMobilePhoneCode()
],
'mindboxLoyalty.confirmMobilePhone' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ConfirmMobilePhone()
],
'mindboxLoyalty.sendMobilePhoneCode' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SendMobilePhoneCode()
],
'mindboxLoyalty.sendMobilePhoneCodeToEdit' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SendMobilePhoneCodeToEdit()
],
'mindboxLoyalty.confirmEmail' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ConfirmEmail()
],
'mindboxLoyalty.feedGenerator' => [
'constructor' => fn() => new \Mindbox\Loyalty\Feed\YmlFeedMindbox()
],
'mindboxLoyalty.feedCatalogRepository' => [
'constructor' => fn() => new \Mindbox\Loyalty\Feed\CatalogRepository()
],
'mindboxLoyalty.subscribeCustomer' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SubscribeCustomer()
],
'mindboxLoyalty.calculateAuthorizedCart' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CalculateAuthorizedCart()
],
'mindboxLoyalty.calculateCartAdmin' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CalculateCartAdmin()
],
'mindboxLoyalty.calculateUnauthorizedCart' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CalculateUnauthorizedCart()
],
'mindboxLoyalty.createAuthorizedOrder' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CreateAuthorizedOrder()
],
'mindboxLoyalty.createOrderAdmin' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CreateOrderAdmin()
],
'mindboxLoyalty.createUnauthorizedOrder' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\CreateUnauthorizedOrder()
],
'mindboxLoyalty.changeStatus' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ChangeStatus()
],
'mindboxLoyalty.changeStatusAdmin' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ChangeStatusAdmin()
],
'mindboxLoyalty.saveOfflineOrder' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SaveOfflineOrder()
],
'mindboxLoyalty.editCart' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\EditCart()
],
'mindboxLoyalty.clearCart' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ClearCart()
],
'mindboxLoyalty.clearFavourite' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\ClearFavourite()
],
'mindboxLoyalty.editFavourite' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\EditFavourite()
],
'mindboxLoyalty.setFavourite' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\SetFavourite()
],
'mindboxLoyalty.getCustomerPoints' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\GetCustomerPoints()
],
'mindboxLoyalty.getCustomerBalanceHistory' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\GetCustomerBalanceHistory()
],
'mindboxLoyalty.getCustomerLoyaltyLevel' => [
'constructor' => fn() => new \Mindbox\Loyalty\Operations\GetCustomerLoyaltyLevel()
],
],
'readonly' => true,
],
'controllers' => [
'value' => [
'namespaces' => [
'\\Mindbox\\Loyalty\\Controllers' => 'calculate',
],
],
'readonly' => true,
],
];