Completed
Push — master ( 003b34...bd032d )
by
unknown
02:17
created
src/Rules/Html/InvalidStatusCodeRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
 
32 32
             if (count($errorList) > 0) {
33 33
                 $count = count($errorList);
34
-                $msg = 'Found ' . $count . ' resources with status code 4xx or 5xx. <ul>';
34
+                $msg = 'Found '.$count.' resources with status code 4xx or 5xx. <ul>';
35 35
                 foreach ($errorList as $error) {
36
-                    $msg .= '<li>' . $error['name'] . ' (' . $error['http_status'] . ')</li>';
36
+                    $msg .= '<li>'.$error['name'].' ('.$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.