Completed
Push — master ( 1f1432...de8229 )
by Jean
18:29 queued 09:40
created
src_5.6/ExportTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
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 .= ')';
Please login to merge, or discard this patch.
src_5.6/FunctionCallTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.