Completed
Push — master ( 56b1e7...8e49ad )
by Andrey
17s queued 10s
created

AmazonPayFactory   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 64
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 64
rs 10
c 0
b 0
f 0
wmc 8

8 Methods

Rating   Name   Duplication   Size   Complexity  
A getQuoteClient() 0 3 1
A getGlossaryStorageClient() 0 3 1
A getShipmentClient() 0 3 1
A getCheckoutClient() 0 3 1
A getCartClient() 0 3 1
A createAmazonPayConfig() 0 3 1
A getCalculationClient() 0 3 1
A getCustomerClient() 0 3 1
1
<?php
2
3
/**
4
 * Apache OSL-2
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Yves\AmazonPay;
9
10
use Spryker\Yves\Kernel\AbstractFactory;
11
use SprykerEco\Shared\AmazonPay\AmazonPayConfig;
12
13
class AmazonPayFactory extends AbstractFactory
14
{
15
    /**
16
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToQuoteInterface
17
     */
18
    public function getQuoteClient()
19
    {
20
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_QUOTE);
21
    }
22
23
    /**
24
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToCartInterface
25
     */
26
    public function getCartClient()
27
    {
28
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_CART);
29
    }
30
31
    /**
32
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToCheckoutInterface
33
     */
34
    public function getCheckoutClient()
35
    {
36
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_CHECKOUT);
37
    }
38
39
    /**
40
     * @return \SprykerEco\Shared\AmazonPay\AmazonPayConfigInterface
41
     */
42
    public function createAmazonPayConfig()
43
    {
44
        return new AmazonPayConfig();
45
    }
46
47
    /**
48
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToShipmentInterface
49
     */
50
    public function getShipmentClient()
51
    {
52
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_SHIPMENT);
53
    }
54
55
    /**
56
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToCalculationInterface
57
     */
58
    public function getCalculationClient()
59
    {
60
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_CALCULATION);
61
    }
62
63
    /**
64
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToCustomerInterface
65
     */
66
    public function getCustomerClient()
67
    {
68
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_CUSTOMER);
69
    }
70
71
    /**
72
     * @return \SprykerEco\Yves\AmazonPay\Dependency\Client\AmazonPayToGlossaryStorageInterface
73
     */
74
    public function getGlossaryStorageClient()
75
    {
76
        return $this->getProvidedDependency(AmazonPayDependencyProvider::CLIENT_GLOSSARY_STORAGE);
77
    }
78
}
79