Passed
Pull Request — master (#387)
by Aleksey
04:54
created

CartPageDependencyProvider   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 4
eloc 11
c 1
b 1
f 0
dl 0
loc 41
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getAddToCartFormWidgetParameterExpanderPlugins() 0 4 1
A getPreAddToCartPlugins() 0 5 1
A getCartItemTransformerPlugins() 0 5 1
A getMiniCartViewExpanderPlugins() 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
namespace Pyz\Yves\CartPage;
9
10
use SprykerShop\Yves\CartPage\CartPageDependencyProvider as SprykerCartPageDependencyProvider;
11
use SprykerShop\Yves\DiscountPromotionWidget\Plugin\CartPage\DiscountPromotionAddToCartFormWidgetParameterExpanderPlugin;
12
use SprykerShop\Yves\MerchantProductOfferWidget\Plugin\CartPage\MerchantProductOfferPreAddToCartPlugin;
13
use SprykerShop\Yves\MerchantProductWidget\Plugin\CartPage\MerchantProductPreAddToCartPlugin;
14
use SprykerShop\Yves\MultiCartWidget\Plugin\CartPage\MultiCartMiniCartViewExpanderPlugin;
15
use SprykerShop\Yves\ProductBundleWidget\Plugin\CartPage\ProductBundleCartItemTransformerPlugin;
16
use SprykerShop\Yves\UrlPage\Plugin\CartPage\UrlCartItemTransformerPlugin;
17
18
class CartPageDependencyProvider extends SprykerCartPageDependencyProvider
19
{
20
    /**
21
     * @return array<\SprykerShop\Yves\CartPageExtension\Dependency\Plugin\CartItemTransformerPluginInterface>
22
     */
23
    protected function getCartItemTransformerPlugins(): array
24
    {
25
        return [
26
            new ProductBundleCartItemTransformerPlugin(),
27
            new UrlCartItemTransformerPlugin(),
28
        ];
29
    }
30
31
    /**
32
     * @return array<\SprykerShop\Yves\CartPageExtension\Dependency\Plugin\AddToCartFormWidgetParameterExpanderPluginInterface>
33
     */
34
    protected function getAddToCartFormWidgetParameterExpanderPlugins(): array
35
    {
36
        return [
37
            new DiscountPromotionAddToCartFormWidgetParameterExpanderPlugin(),
38
        ];
39
    }
40
41
    /**
42
     * @return array<\SprykerShop\Yves\CartPageExtension\Dependency\Plugin\PreAddToCartPluginInterface>
43
     */
44
    protected function getPreAddToCartPlugins(): array
45
    {
46
        return [
47
            new MerchantProductPreAddToCartPlugin(),
48
            new MerchantProductOfferPreAddToCartPlugin(),
49
        ];
50
    }
51
52
    /**
53
     * @return array<\SprykerShop\Yves\CartPageExtension\Dependency\Plugin\MiniCartViewExpanderPluginInterface>
54
     */
55
    protected function getMiniCartViewExpanderPlugins(): array
56
    {
57
        return [
58
            new MultiCartMiniCartViewExpanderPlugin(),
59
        ];
60
    }
61
}
62