|
@@ -31,9 +31,9 @@ |
|
|
block discarded – undo |
|
31
|
31
|
|
|
32
|
32
|
if (count($errorList) > 0) { |
|
33
|
33
|
$count = count($errorList); |
|
34
|
|
- $msg = 'Found ' . $count . ' resource(s) with status code 4xx or 5xx. <ul>'; |
|
|
34
|
+ $msg = 'Found '.$count.' resource(s) with status code 4xx or 5xx. <ul>'; |
|
35
|
35
|
foreach ($errorList as $error) { |
|
36
|
|
- $msg .= '<li>' . $error['name'] . ' (HTTP status: ' . $error['http_status'] . ')</li>'; |
|
|
36
|
+ $msg .= '<li>'.$error['name'].' (HTTP status: '.$error['http_status'].')</li>'; |
|
37
|
37
|
} |
|
38
|
38
|
$msg .= '</ul>'; |
|
39
|
39
|
return new CheckResult(CheckResult::STATUS_FAILURE, $msg, $count); |
Please login to merge, or discard this patch.