@@ -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, |
@@ -241,7 +241,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |