Passed
Push — feature/cc-10858/dev-categorie... ( e7443f...30661e )
by Anton
05:35
created

FactFinderSdkAbstractExpander   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
eloc 5
c 2
b 0
f 0
dl 0
loc 20
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\FactFinderSdk\Business\Expander;
9
10
use SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig;
11
use SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface;
12
13
abstract class FactFinderSdkAbstractExpander implements FactFinderSdkExpanderInterface
14
{
15
    /**
16
     * @var \SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface
17
     */
18
    protected $queryContainer;
19
20
    /**
21
     * @var \SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig
22
     */
23
    protected $config;
24
25
    /**
26
     * @param \SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface $queryContainer
27
     * @param \SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig $config
28
     */
29
    public function __construct(FactFinderSdkQueryContainerInterface $queryContainer, FactFinderSdkConfig $config)
30
    {
31
        $this->queryContainer = $queryContainer;
32
        $this->config = $config;
33
    }
34
}
35