| Total Complexity | 5 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class CommunicationLocatorProxy extends AbstractLocatorProxy implements CommunicationLocatorProxyInterface |
||
| 13 | { |
||
| 14 | private const DIRECTORY = 'Communication'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \Xervice\Core\Business\Model\Factory\FactoryInterface |
||
| 18 | */ |
||
| 19 | private $factory; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return \Xervice\Core\Business\Model\Factory\FactoryInterface |
||
| 23 | */ |
||
| 24 | 1 | public function factory(): FactoryInterface |
|
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return \Xervice\Core\Business\Model\Facade\FacadeInterface |
||
| 41 | */ |
||
| 42 | 2 | public function facade(): FacadeInterface |
|
| 43 | { |
||
| 44 | 2 | return $this->businessLocator()->facade(); |
|
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return null|string |
||
| 49 | */ |
||
| 50 | 1 | protected function getDirectory(): ?string |
|
| 53 | } |
||
| 54 | } |