Completed
Push — master ( 96549e...2e805c )
by Tibor
01:19
created
src/Bex/Behat/ScreenshotExtension/Output/IndentedOutput.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -184,13 +184,13 @@
 block discarded – undo
184 184
         if (is_array($messages)) {
185 185
             array_walk(
186 186
                 $messages,
187
-                function ($message) {
188
-                    return $this->indentation . $message;
187
+                function($message) {
188
+                    return $this->indentation.$message;
189 189
                 }
190 190
             );
191 191
             return $messages;
192 192
         } else {
193
-            $messages = $this->indentation . $messages;
193
+            $messages = $this->indentation.$messages;
194 194
             return $messages;
195 195
         }
196 196
     }
Please login to merge, or discard this patch.