Completed
Push — master ( ffd8fa...8034c6 )
by Nils
06:36
created
src/Extensions/SmokeReporter/Reporter/KoalamonReporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,14 +76,14 @@
 block discarded – undo
76 76
             if ($result->isFailure()) {
77 77
                 foreach ($result->getMessages() as $ruleLKey => $message) {
78 78
                     $identifier = 'smoke_' . $ruleLKey . '_' . $result->getUrl();
79
-                    $this->send($identifier, $this->system, 'smoke', $message, self::STATUS_FAILURE, (string)$result->getUrl());
79
+                    $this->send($identifier, $this->system, 'smoke', $message, self::STATUS_FAILURE, (string) $result->getUrl());
80 80
                     $failedTests[] = $ruleLKey;
81 81
                 }
82 82
             }
83 83
             foreach ($rules as $rule) {
84 84
                 if (!in_array($rule, $failedTests, true)) {
85 85
                     $identifier = 'smoke_' . $rule . '_' . $result->getUrl();
86
-                    $this->send($identifier, $this->system, 'smoke_' . $rule, '', self::STATUS_SUCCESS, (string)$result->getUrl());
86
+                    $this->send($identifier, $this->system, 'smoke_' . $rule, '', self::STATUS_SUCCESS, (string) $result->getUrl());
87 87
                 }
88 88
             }
89 89
         }
Please login to merge, or discard this patch.
src/Rules/Seo/RobotsDisallowAllRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             return;
24 24
         }
25 25
 
26
-        if(!file_exists($filename) ){
26
+        if (!file_exists($filename)) {
27 27
             return;
28 28
         }
29 29
         
Please login to merge, or discard this patch.
src/Rules/Seo/PageSpeedRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             return;
24 24
         }
25 25
 
26
-        if(!file_exists($filename) ){
26
+        if (!file_exists($filename)) {
27 27
             return;
28 28
         }
29 29
 
Please login to merge, or discard this patch.