Completed
Push — master ( e86b6e...1708fa )
by Jodie
02:29
created
src/Transformer/Pipeline.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,13 +152,13 @@
 block discarded – undo
152 152
         // Handle when no transformer is present
153 153
         if (empty($transformer)) {
154 154
             // No transformation
155
-            return (array) $data;
155
+            return (array)$data;
156 156
         }
157 157
 
158 158
         // Handle when transformer is a callable
159 159
         if (\is_callable($transformer)) {
160 160
             // Simply run callable on the data and return the result
161
-            return (array) $transformer($data);
161
+            return (array)$transformer($data);
162 162
         }
163 163
 
164 164
         // Ensure we're working with a real transformer from this point forward.
Please login to merge, or discard this patch.