We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 900ecef + 1de5202 commit 65f0c83Copy full SHA for 65f0c83
src/AspectMock/Util/ArgumentsFormatter.php
@@ -13,7 +13,7 @@ protected static function format($arg)
13
{
14
if ($arg instanceof \Closure) return "func()";
15
if (is_object($arg)) return '['.get_class($arg).']';
16
- if (is_array($arg)) return var_export($arg);
+ if (is_array($arg)) return var_export($arg, true);
17
if (is_string($arg)) return "'$arg'";
18
if (is_scalar($arg)) return $arg;
19
return "*";
0 commit comments