Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function indexAction(Request $request) |
||
12 | { |
||
13 | $type = $request->get('type') ?: 'stranger'; |
||
14 | |||
15 | return new Response(<<<RESPONSE |
||
16 | <html> |
||
17 | <body> |
||
18 | <h1>Hello, {$type}</h1> |
||
19 | |||
20 | You are?: |
||
21 | <a href="?type=human">Human</a> |
||
22 | <a href="?type=orc">Orc</a> |
||
23 | <a href="?type=elf">Elf</a> |
||
24 | </body> |
||
25 | </html> |
||
26 | RESPONSE |
||
27 | ); |
||
28 | } |
||
29 | } |
||
30 |