| Total Complexity | 3 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AbstractFacade implements FacadeInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \Xervice\Core\Business\Model\Factory\FactoryInterface |
||
| 14 | */ |
||
| 15 | protected $factory; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var \Xervice\Core\Business\Model\Config\ConfigInterface |
||
| 19 | */ |
||
| 20 | protected $config; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * AbstractFacade constructor. |
||
| 24 | * |
||
| 25 | * @param \Xervice\Core\Business\Model\Factory\FactoryInterface $factory |
||
| 26 | * @param \Xervice\Core\Business\Model\Config\ConfigInterface $config |
||
| 27 | */ |
||
| 28 | 3 | public function __construct( |
|
| 34 | 3 | } |
|
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * @return \Xervice\Core\Business\Model\Factory\FactoryInterface |
||
| 39 | */ |
||
| 40 | protected function getFactory(): FactoryInterface |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return \Xervice\Core\Business\Model\Config\ConfigInterface |
||
| 47 | */ |
||
| 48 | protected function getConfig(): ConfigInterface |
||
| 51 | } |
||
| 52 | } |