| Conditions | 3 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function __invoke(CheckLanguageDetectionEvent $event): void |
||
| 15 | { |
||
| 16 | if ($this->siteConfigurationService->getConfiguration($event->getSite())->isAllowAllPaths()) { |
||
| 17 | return; |
||
| 18 | } |
||
| 19 | |||
| 20 | if ($event->getRequest()->getUri()->getPath() !== '/') { |
||
| 21 | $event->disableLanguageDetection(); |
||
| 22 | } |
||
| 25 |