Conditions | 2 |
Paths | 2 |
Total Lines | 19 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
40 | 19 | public function render(Response &$response, Request $request, $parameters = array()) |
|
41 | { |
||
42 | 19 | if ($response->getType() == 'text/html') { |
|
43 | 17 | $html = sprintf(" |
|
44 | <!DOCTYPE html> |
||
45 | <html> |
||
46 | <head> |
||
47 | <title>%s</title> |
||
48 | </head> |
||
49 | |||
50 | <body> |
||
51 | %s |
||
52 | </body> |
||
53 | |||
54 | 17 | </html>", $response->getTitle(), $response->getBody()); |
|
55 | |||
56 | 17 | $response->setBody($html); |
|
57 | } |
||
58 | 19 | } |
|
59 | } |
||
60 |