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

FactFinderSdkAbstractExpander::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 2
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