| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class ControllerFactory extends AbstractFactory |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @return \Xervice\Controller\Business\Output\OutputProcessorInterface |
||
| 23 | */ |
||
| 24 | 4 | public function createOutputProcessor(): OutputProcessorInterface |
|
| 25 | { |
||
| 26 | 4 | return new OutputProcessor(); |
|
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return \Symfony\Component\HttpFoundation\Request |
||
| 31 | */ |
||
| 32 | 4 | public function createSymfonyRequest(): Request |
|
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return \Xervice\Controller\Business\Provider\KernelBridgeInterface |
||
| 39 | */ |
||
| 40 | 5 | public function createKernelBridge(): KernelBridgeInterface |
|
| 44 | ); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return \Xervice\Kernel\KernelFacade |
||
| 49 | */ |
||
| 50 | 5 | public function getKernelFacade(): KernelFacade |
|
| 53 | } |
||
| 54 | } |