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