Total Complexity | 4 |
Total Lines | 58 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class MinuboFacade extends AbstractFacade implements MinuboFacadeInterface |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | * |
||
20 | * @api |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function exportData() |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | * |
||
34 | * @api |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function exportOrderData() |
||
39 | { |
||
40 | $this->getFactory() |
||
41 | ->createOrderDataExporter() |
||
42 | ->exportData(); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | * |
||
48 | * @api |
||
49 | * |
||
50 | * @return void |
||
51 | */ |
||
52 | public function exportCustomerData() |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | * |
||
62 | * @api |
||
63 | * |
||
64 | * @param array $data |
||
65 | * |
||
66 | * @return array |
||
67 | */ |
||
68 | public function expandOrderItemWithStateFlags(array $data): array |
||
75 |