Passed
Push — master ( 6a4583...107afa )
by Jean
02:44
created
src/Arrays.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
         $excluded_columns = isset($options['excluded_columns'])
243 243
                           ? $options['excluded_columns']
244 244
                           : []
245
-                          ;
245
+                            ;
246 246
 
247 247
         foreach ($row as $column => &$values) {
248 248
             if ( ! $values instanceof MergeBucket)
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
         $excluded_columns = isset($options['excluded_columns'])
276 276
                           ? $options['excluded_columns']
277 277
                           : []
278
-                          ;
278
+                            ;
279 279
 
280 280
         foreach ($row as $column => &$values) {
281 281
             if (in_array($column, $excluded_columns))
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
             elseif (is_object($value)) {
372 372
                 if ( ! method_exists($value, 'toNumber')) {
373 373
                     throw new \InvalidArgumentEXception(
374
-                         "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
374
+                            "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
375 375
                         ."Please add a toNumber() method."
376 376
                     );
377 377
                 }
@@ -555,12 +555,12 @@  discard block
 block discarded – undo
555 555
         $key_value_separator = ! empty($options['key_value_separator'])
556 556
                              ? $options['key_value_separator']
557 557
                              : ':'
558
-                             ;
558
+                                ;
559 559
 
560 560
         $groups_separator    = ! empty($options['groups_separator'])
561 561
                              ? $options['groups_separator']
562 562
                              : '-'
563
-                             ;
563
+                                ;
564 564
 
565 565
         $group_parts = [];
566 566
         foreach ($groups_definitions as $group_definition_key => $group_definition_value) {
@@ -618,8 +618,8 @@  discard block
 block discarded – undo
618 618
         foreach ($group_parts as $group_name => $group_value) {
619 619
             if (is_object($group_value)) {
620 620
                 $group_value = get_class($group_value)
621
-                             . '_'
622
-                             . hash( 'crc32b', var_export($group_value, true) );
621
+                                . '_'
622
+                                . hash( 'crc32b', var_export($group_value, true) );
623 623
             }
624 624
             elseif (is_array($group_value)) {
625 625
                 $group_value = 'array_' . hash( 'crc32b', var_export($group_value, true) );
Please login to merge, or discard this patch.