Completed
Push — master ( 7732b1...2a9c77 )
by Jean
02:09
created
src/Arrays.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
         $excluded_columns = isset($options['excluded_columns'])
242 242
                           ? $options['excluded_columns']
243 243
                           : []
244
-                          ;
244
+                            ;
245 245
 
246 246
         foreach ($row as $column => &$values) {
247 247
             if ( ! $values instanceof MergeBucket)
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         $excluded_columns = isset($options['excluded_columns'])
279 279
                           ? $options['excluded_columns']
280 280
                           : []
281
-                          ;
281
+                            ;
282 282
 
283 283
         foreach ($row as $column => &$values) {
284 284
             if (in_array($column, $excluded_columns))
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
             elseif (is_object($value)) {
364 364
                 if ( ! method_exists($value, 'toNumber')) {
365 365
                     throw new \InvalidArgumentEXception(
366
-                         "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
366
+                            "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
367 367
                         ."Please add a toNumber() method."
368 368
                     );
369 369
                 }
Please login to merge, or discard this patch.