Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function render(): string |
||
30 | { |
||
31 | return <<<HTML |
||
32 | <!DOCTYPE html> |
||
33 | <html lang="en"> |
||
34 | <head> |
||
35 | <meta charset="UTF-8" /> |
||
36 | <meta http-equiv="refresh" content="0;url='$this->destination'" /> |
||
37 | |||
38 | <title>Redirecting to $this->destination</title> |
||
39 | </head> |
||
40 | <body> |
||
41 | Redirecting to <a href="$this->destination">$this->destination</a>. |
||
42 | </body> |
||
54 |