Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 0 |
1 | <?php |
||
9 | class AbstractReader implements ReaderInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var \Xervice\Core\Business\Model\Config\ConfigInterface |
||
13 | */ |
||
14 | private $config; |
||
15 | |||
16 | /** |
||
17 | * AbstractReader constructor. |
||
18 | * |
||
19 | * @param \Xervice\Core\Business\Model\Config\ConfigInterface $config |
||
20 | */ |
||
21 | 3 | public function __construct(ConfigInterface $config) |
|
24 | 3 | } |
|
25 | |||
26 | /** |
||
27 | * @return \Xervice\Core\Business\Model\Config\ConfigInterface |
||
28 | */ |
||
29 | protected function getConfig(): ConfigInterface |
||
32 | } |
||
33 | } |