Passed
Push — master ( f2bc5a...8e7423 )
by Jean
04:25
created
src/Arrays/Arrays.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
         $excluded_columns = isset($options['excluded_columns'])
281 281
                           ? $options['excluded_columns']
282 282
                           : []
283
-                          ;
283
+                            ;
284 284
 
285 285
         foreach ($row as $column => &$values) {
286 286
             if ( ! $values instanceof MergeBucket)
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
         $excluded_columns = isset($options['excluded_columns'])
314 314
                           ? $options['excluded_columns']
315 315
                           : []
316
-                          ;
316
+                            ;
317 317
 
318 318
         foreach ($row as $column => &$values) {
319 319
             if (in_array($column, $excluded_columns)) {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
             elseif (is_object($value)) {
412 412
                 if ( ! method_exists($value, 'toNumber')) {
413 413
                     throw new \InvalidArgumentEXception(
414
-                         "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
414
+                            "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
415 415
                         ."Please add a toNumber() method."
416 416
                     );
417 417
                 }
@@ -595,12 +595,12 @@  discard block
 block discarded – undo
595 595
         $key_value_separator = ! empty($options['key_value_separator'])
596 596
                              ? $options['key_value_separator']
597 597
                              : ':'
598
-                             ;
598
+                                ;
599 599
 
600 600
         $groups_separator    = ! empty($options['groups_separator'])
601 601
                              ? $options['groups_separator']
602 602
                              : '-'
603
-                             ;
603
+                                ;
604 604
 
605 605
         $group_parts = [];
606 606
         foreach ($groups_definitions as $group_definition_key => $group_definition_value) {
@@ -676,8 +676,8 @@  discard block
 block discarded – undo
676 676
         foreach ($group_parts as $group_name => $group_value) {
677 677
             if (is_object($group_value)) {
678 678
                 $group_value = get_class($group_value)
679
-                             . '_'
680
-                             . hash( 'crc32b', var_export($group_value, true) );
679
+                                . '_'
680
+                                . hash( 'crc32b', var_export($group_value, true) );
681 681
             }
682 682
             elseif (is_array($group_value)) {
683 683
                 $group_value = 'array_' . hash( 'crc32b', var_export($group_value, true) );
Please login to merge, or discard this patch.