AfterPayDependencyProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A provideDependencies() 0 5 1
1
<?php
2
3
/**
4
 * MIT License
5
 * For full license information, please view the LICENSE file that was distributed with this source code.
6
 */
7
8
namespace SprykerEco\Yves\AfterPay;
9
10
use Spryker\Yves\Kernel\AbstractBundleDependencyProvider;
11
use Spryker\Yves\Kernel\Container;
12
13
/**
14
 * @method \SprykerEco\Yves\AfterPay\AfterPayConfig getConfig()
15
 */
16
class AfterPayDependencyProvider extends AbstractBundleDependencyProvider
17
{
18
    /**
19
     * @param \Spryker\Yves\Kernel\Container $container
20
     *
21
     * @return \Spryker\Yves\Kernel\Container
22
     */
23
    public function provideDependencies(Container $container): Container
24
    {
25
        $container = parent::provideDependencies($container);
26
27
        return $container;
28
    }
29
}
30