Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class DetectorController |
||
10 | { |
||
11 | public const FORMAT_JSON = 'json'; |
||
12 | public const FORMAT_HTML = 'html'; |
||
13 | public const FORMAT_PLAIN = 'plaintext'; |
||
14 | |||
15 | private const TEMPLATES_PATH = AppKernel::PROJECT_ROOT.'/templates'; |
||
16 | |||
17 | public static function detect(Request $request, string $format = 'html'): Response |
||
35 | } |
||
36 | } |