@@ -34,7 +34,7 @@ |
||
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 | ); |
@@ -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, |
@@ -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 | ); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | $excluded_columns = isset($options['excluded_columns']) |
281 | 281 | ? $options['excluded_columns'] |
282 | 282 | : [] |
283 | - ; |
|
283 | + ; |
|
284 | 284 | |
285 | 285 | foreach ($row as $column => &$values) { |
286 | 286 | if ( ! $values instanceof MergeBucket) |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | $excluded_columns = isset($options['excluded_columns']) |
314 | 314 | ? $options['excluded_columns'] |
315 | 315 | : [] |
316 | - ; |
|
316 | + ; |
|
317 | 317 | |
318 | 318 | foreach ($row as $column => &$values) { |
319 | 319 | if (in_array($column, $excluded_columns)) { |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | elseif (is_object($value)) { |
412 | 412 | if ( ! method_exists($value, 'toNumber')) { |
413 | 413 | throw new \InvalidArgumentEXception( |
414 | - "Trying to sum a ".get_class($value)." object which cannot be casted as a number. " |
|
414 | + "Trying to sum a ".get_class($value)." object which cannot be casted as a number. " |
|
415 | 415 | ."Please add a toNumber() method." |
416 | 416 | ); |
417 | 417 | } |
@@ -595,12 +595,12 @@ discard block |
||
595 | 595 | $key_value_separator = ! empty($options['key_value_separator']) |
596 | 596 | ? $options['key_value_separator'] |
597 | 597 | : ':' |
598 | - ; |
|
598 | + ; |
|
599 | 599 | |
600 | 600 | $groups_separator = ! empty($options['groups_separator']) |
601 | 601 | ? $options['groups_separator'] |
602 | 602 | : '-' |
603 | - ; |
|
603 | + ; |
|
604 | 604 | |
605 | 605 | $group_parts = []; |
606 | 606 | foreach ($groups_definitions as $group_definition_key => $group_definition_value) { |
@@ -676,8 +676,8 @@ discard block |
||
676 | 676 | foreach ($group_parts as $group_name => $group_value) { |
677 | 677 | if (is_object($group_value)) { |
678 | 678 | $group_value = get_class($group_value) |
679 | - . '_' |
|
680 | - . hash( 'crc32b', var_export($group_value, true) ); |
|
679 | + . '_' |
|
680 | + . hash( 'crc32b', var_export($group_value, true) ); |
|
681 | 681 | } |
682 | 682 | elseif (is_array($group_value)) { |
683 | 683 | $group_value = 'array_' . hash( 'crc32b', var_export($group_value, true) ); |