| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 33 | public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true) |
||
| 34 | { |
||
| 35 | return new Response( |
||
| 36 | $this->container->get('twig')->render( |
||
| 37 | 'index.html.twig', |
||
| 38 | array( |
||
| 39 | 'request' => $request, |
||
| 40 | 'showLanguages' => $request->query->get('show-languages'), |
||
| 41 | ) |
||
| 42 | ) |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |