| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public static function defaultHandler() |
||
| 48 | { |
||
| 49 | return <<<'EOT' |
||
| 50 | <!DOCTYPE html> |
||
| 51 | <html> |
||
| 52 | <head> |
||
| 53 | <meta charset="utf-8"> |
||
| 54 | <title>503. Site under maintenance</title> |
||
| 55 | <style>html{font-family: sans-serif;}</style> |
||
| 56 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
||
| 57 | </head> |
||
| 58 | <body> |
||
| 59 | <h1>Site under maintenance</h1> |
||
| 60 | </body> |
||
| 61 | </html> |
||
| 62 | EOT; |
||
| 63 | } |
||
| 64 | } |
||
| 65 |