@@ -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 | } |