Completed
Push — master ( 93f8ee...79d7ec )
by Jean
02:04
created
src/ChainableArray_Utils_Trait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -553,7 +553,7 @@
 block discarded – undo
553 553
             foreach ($rowIdParts as $name => $value) {
554 554
                 if (isset($data[$name]) && $data[$name] !== $value) {
555 555
                     self::throwUsageException(
556
-                         "Trying to populate a column '$name' that "
556
+                            "Trying to populate a column '$name' that "
557 557
                         ."already exists with a different value "
558 558
                         .var_export($data[$name], true). " => '$value'"
559 559
                     );
Please login to merge, or discard this patch.
src/ChainableArray_NativeFunctions_Trait.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                 foreach ($column_names as $column_name) {
35 35
                     if (!array_key_exists($column_name, $row)) {
36 36
                         self::throwUsageException(
37
-                             "Trying to extract a column from a row which"
37
+                                "Trying to extract a column from a row which"
38 38
                             ." doesn't contain it : '$column_name' \n"
39 39
                             .var_export($row, true)
40 40
                         );
@@ -680,7 +680,6 @@  discard block
 block discarded – undo
680 680
 
681 681
     /**
682 682
      * Equivalent of array_intersect()
683
-
684 683
      * @param Array|static $intersect_with
685 684
      * @return static $this or a new static.
686 685
      */
Please login to merge, or discard this patch.
src/ChainableArray_Wip_Trait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             },
61 61
             formatted_values: [ ]
62 62
         }
63
-        *
63
+     *
64 64
         =>
65 65
      *  action_calculate_paid_impressions: {
66 66
             values: [ ],
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
             },
70 70
             formatted_values: [ ]
71 71
         }
72
-        *
73
-        *
74
-        *data: [
72
+     *
73
+     *
74
+     *data: [
75 75
             {
76 76
             paidImpressions: {
77 77
                 value: 246367,
Please login to merge, or discard this patch.
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.