Completed
Push — master ( d7d231...3a9895 )
by Nils
06:20
created
src/Cli/Command/SmokeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
         if ($configFile) {
99 99
             if (strpos($configFile, 'http://') === 0) {
100
-                $fileContent = (string)$this->getHttpClient()->get($configFile)->getBody();
100
+                $fileContent = (string) $this->getHttpClient()->get($configFile)->getBody();
101 101
             } else {
102 102
                 if (file_exists($configFile)) {
103 103
                     $fileContent = file_get_contents($configFile);
Please login to merge, or discard this patch.
src/Extensions/SmokeFilter/FilterExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
                 }
37 37
             }
38 38
         } else {
39
-            foreach($filters as $rule => $filteredUrls) {
39
+            foreach ($filters as $rule => $filteredUrls) {
40 40
                 foreach ($filteredUrls as $uri) {
41 41
                     $this->filters[] = array('rule' => $rule, 'uri' => $uri);
42 42
                 }
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.
src/Extensions/SmokeResponseRetriever/Retriever/ListRetriever/Retriever.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function getSystem(UriInterface $uri)
55 55
     {
56
-        return $this->urls[(string)$uri]['system'];
56
+        return $this->urls[(string) $uri]['system'];
57 57
     }
58 58
 
59 59
     public function getSystems()
Please login to merge, or discard this patch.