Completed
Push — master ( c4addf...7be28b )
by Nils
03:05
created
src/Rules/Seo/RobotsDisallowAllRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     public function validate(Response $response)
15 15
     {
16
-        $url = (string)$response->getUri();
16
+        $url = (string) $response->getUri();
17 17
 
18 18
         if (substr_count($url, '/') == 2) {
19 19
             $filename = $robotsUrl = $url . "/robots.txt";
Please login to merge, or discard this patch.
src/Extensions/SmokeReporter/Reporter/KoalamonReporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                     } else {
174 174
                         $system = $this->system;
175 175
                     }
176
-                    $this->send($identifier, $system, 'smoke', $message, self::STATUS_FAILURE, (string)$result->getUrl());
176
+                    $this->send($identifier, $system, 'smoke', $message, self::STATUS_FAILURE, (string) $result->getUrl());
177 177
                     $failedTests[] = $ruleLKey;
178 178
                 }
179 179
             }
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
                     } else {
189 189
                         $system = $this->system;
190 190
                     }
191
-                    $this->send($identifier, $system, 'smoke_' . $rule . '_' . $result->getUrl(), self::STATUS_SUCCESS, (string)$result->getUrl());
191
+                    $this->send($identifier, $system, 'smoke_' . $rule . '_' . $result->getUrl(), self::STATUS_SUCCESS, (string) $result->getUrl());
192 192
                 }
193 193
             }
194 194
         }
Please login to merge, or discard this patch.