@@ -553,7 +553,7 @@ |
||
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 | ); |
@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -60,7 +60,7 @@ discard block |
||
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 |
||
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, |
@@ -335,7 +335,7 @@ discard block |
||
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 |
||
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 | } |