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