Completed
Push — master ( d20ccf...046303 )
by Jean
02:40
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
                     }
336 336
                     catch (\Exception $e) {
337 337
                         throw new \InvalidArgumentEXception(
338
-                             "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
338
+                                "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
339 339
                             ."Please add a toNumber() method."
340 340
                         );
341 341
                     }
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
                 else {
344 344
                     if ( ! method_exists($value, 'toNumber')) {
345 345
                         throw new \InvalidArgumentEXception(
346
-                             "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
346
+                                "Trying to sum a ".get_class($value)." object which cannot be casted as a number. "
347 347
                             ."Please add a toNumber() method."
348 348
                         );
349 349
                     }
Please login to merge, or discard this patch.