ConfigurableBundleGuiDependencyProvider   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 59
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 6
eloc 13
dl 0
loc 59
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getConfigurableBundleTemplateSlotEditTablesProviderPlugins() 0 4 1
A getConfigurableBundleTemplateSlotEditFormExpanderPlugins() 0 4 1
A getConfigurableBundleTemplateSlotEditFormFileUploadHandlerPlugins() 0 4 1
A getConfigurableBundleTemplateSlotEditTabsExpanderPlugins() 0 4 1
A getConfigurableBundleTemplateSlotEditSubTabsProviderPlugins() 0 4 1
A getConfigurableBundleTemplateSlotEditFormDataProviderExpanderPlugins() 0 4 1
1
<?php
2
3
/**
4
 * This file is part of the Spryker Commerce OS.
5
 * For full license information, please view the LICENSE file that was distributed with this source code.
6
 */
7
8
declare(strict_types = 1);
9
10
namespace Pyz\Zed\ConfigurableBundleGui;
11
12
use Spryker\Zed\ConfigurableBundleGui\ConfigurableBundleGuiDependencyProvider as SprykerConfigurableBundleGuiDependencyProvider;
13
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductConcreteRelationConfigurableBundleTemplateSlotEditSubTabsProviderPlugin;
14
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductConcreteRelationConfigurableBundleTemplateSlotEditTablesProviderPlugin;
15
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductConcreteRelationCsvConfigurableBundleTemplateSlotEditFormFileUploadHandlerPlugin;
16
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductListManagementConfigurableBundleTemplateSlotEditFormDataProviderExpanderPlugin;
17
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductListManagementConfigurableBundleTemplateSlotEditFormExpanderPlugin;
18
use Spryker\Zed\ProductListGui\Communication\Plugin\ConfigurableBundleGui\ProductListManagementConfigurableBundleTemplateSlotEditTabsExpanderPlugin;
19
20
class ConfigurableBundleGuiDependencyProvider extends SprykerConfigurableBundleGuiDependencyProvider
21
{
22
    /**
23
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditTabsExpanderPluginInterface>
24
     */
25
    protected function getConfigurableBundleTemplateSlotEditTabsExpanderPlugins(): array
26
    {
27
        return [
28
            new ProductListManagementConfigurableBundleTemplateSlotEditTabsExpanderPlugin(),
29
        ];
30
    }
31
32
    /**
33
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditFormExpanderPluginInterface>
34
     */
35
    protected function getConfigurableBundleTemplateSlotEditFormExpanderPlugins(): array
36
    {
37
        return [
38
            new ProductListManagementConfigurableBundleTemplateSlotEditFormExpanderPlugin(),
39
        ];
40
    }
41
42
    /**
43
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditFormDataProviderExpanderPluginInterface>
44
     */
45
    protected function getConfigurableBundleTemplateSlotEditFormDataProviderExpanderPlugins(): array
46
    {
47
        return [
48
            new ProductListManagementConfigurableBundleTemplateSlotEditFormDataProviderExpanderPlugin(),
49
        ];
50
    }
51
52
    /**
53
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditFormFileUploadHandlerPluginInterface>
54
     */
55
    protected function getConfigurableBundleTemplateSlotEditFormFileUploadHandlerPlugins(): array
56
    {
57
        return [
58
            new ProductConcreteRelationCsvConfigurableBundleTemplateSlotEditFormFileUploadHandlerPlugin(),
59
        ];
60
    }
61
62
    /**
63
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditSubTabsProviderPluginInterface>
64
     */
65
    protected function getConfigurableBundleTemplateSlotEditSubTabsProviderPlugins(): array
66
    {
67
        return [
68
            new ProductConcreteRelationConfigurableBundleTemplateSlotEditSubTabsProviderPlugin(),
69
        ];
70
    }
71
72
    /**
73
     * @return array<\Spryker\Zed\ConfigurableBundleGuiExtension\Dependency\Plugin\ConfigurableBundleTemplateSlotEditTablesProviderPluginInterface>
74
     */
75
    protected function getConfigurableBundleTemplateSlotEditTablesProviderPlugins(): array
76
    {
77
        return [
78
            new ProductConcreteRelationConfigurableBundleTemplateSlotEditTablesProviderPlugin(),
79
        ];
80
    }
81
}
82