Passed
Pull Request — master (#14)
by Oleksandr
08:06
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
namespace SprykerEco\Zed\FactFinderSdk\Business\Expander;
8
9
use SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig;
10
use SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface;
11
12
abstract class FactFinderSdkAbstractExpander implements FactFinderSdkExpanderInterface
13
{
14
    /**
15
     * @var \SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface
16
     */
17
    protected $queryContainer;
18
19
    /**
20
     * @var \SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig
21
     */
22
    protected $config;
23
24
    /**
25
     * @param \SprykerEco\Zed\FactFinderSdk\Persistence\FactFinderSdkQueryContainerInterface $queryContainer
26
     * @param \SprykerEco\Zed\FactFinderSdk\FactFinderSdkConfig $config
27
     */
28
    public function __construct(FactFinderSdkQueryContainerInterface $queryContainer, FactFinderSdkConfig $config)
29
    {
30
        $this->queryContainer = $queryContainer;
31
        $this->config = $config;
32
    }
33
}
34