@@ -52,7 +52,7 @@ |
||
52 | 52 | if (isset($call['method'])) { |
53 | 53 | $string .= '->'; |
54 | 54 | $string .= $call['method'] . '('; |
55 | - $string .= implode(', ', array_map(function ($argument) use($max_param_length, $short_objects) { |
|
55 | + $string .= implode(', ', array_map(function($argument) use($max_param_length, $short_objects) { |
|
56 | 56 | return static::varExport($argument, ['short_objects' => $short_objects, 'max_length' => $max_param_length]); |
57 | 57 | }, $call['arguments'])); |
58 | 58 | $string .= ')'; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | */ |
58 | 58 | protected function replacePlaceholderWithValue(array $args, $value) |
59 | 59 | { |
60 | - return array_map(function ($arg) use($value) { |
|
60 | + return array_map(function($arg) use($value) { |
|
61 | 61 | return $arg === $this->placeholder ? $value : $arg; |
62 | 62 | }, $args); |
63 | 63 | } |