| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 27.27% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class WebFacade extends AbstractFacade |
||
| 14 | { |
||
| 15 | public function initWebRouting(): void |
||
| 16 | { |
||
| 17 | $this->getFactory()->createRouteProvider()->provideRoutings(); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $url |
||
| 22 | * |
||
| 23 | * @throws \Xervice\Web\Business\Exception\WebExeption |
||
| 24 | */ |
||
| 25 | 2 | public function executeUrl(string $url): void |
|
| 26 | { |
||
| 27 | 2 | $this->getFactory()->createExecutionProvider()->executeUrl($url); |
|
| 28 | 2 | } |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param \Symfony\Component\HttpFoundation\Request $request |
||
| 32 | * |
||
| 33 | * @throws \Xervice\Web\Business\Exception\WebExeption |
||
| 34 | */ |
||
| 35 | public function executeRequest(Request $request): void |
||
| 36 | { |
||
| 37 | $this->getFactory()->createExecutionProvider()->executeRequest($request); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @throws \Xervice\Web\Business\Exception\WebExeption |
||
| 42 | */ |
||
| 43 | public function execute(): void |
||
| 46 | } |
||
| 47 | } |