$defaultOutput
$defaultOutput :
CliDumper dumps variables for command line output.
__construct(callable|resource|string|null $output = null, string $charset = null)
| callable|resource|string|null | $output | A line dumper callable, an opened stream or an output path, defaults to static::$defaultOutput. |
| string | $charset | The default character encoding to use for non-UTF8 strings. |
dump(\Symfony\Component\VarDumper\Cloner\Data $data, callable|resource|string|null $output = null)
Dumps a Data object.
| \Symfony\Component\VarDumper\Cloner\Data | $data | A Data object. |
| callable|resource|string|null | $output | A line dumper callable, an opened stream or an output path. |
dumpScalar(\Symfony\Component\VarDumper\Cloner\Cursor $cursor, $type, $value)
{@inheritdoc}
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | |
| $type | ||
| $value |
dumpString(\Symfony\Component\VarDumper\Cloner\Cursor $cursor, $str, $bin, $cut)
{@inheritdoc}
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | |
| $str | ||
| $bin | ||
| $cut |
enterHash(\Symfony\Component\VarDumper\Cloner\Cursor $cursor, $type, $class, $hasChild)
{@inheritdoc}
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | |
| $type | ||
| $class | ||
| $hasChild |
leaveHash(\Symfony\Component\VarDumper\Cloner\Cursor $cursor, $type, $class, $hasChild, $cut)
{@inheritdoc}
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | |
| $type | ||
| $class | ||
| $hasChild | ||
| $cut |
dumpEllipsis(\Symfony\Component\VarDumper\Cloner\Cursor $cursor, boolean $hasChild, integer $cut)
Dumps an ellipsis for cut children.
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | The Cursor position in the dump. |
| boolean | $hasChild | When the dump of the hash has child item. |
| integer | $cut | The number of items the hash has been cut by. |
dumpKey(\Symfony\Component\VarDumper\Cloner\Cursor $cursor)
Dumps a key in a hash structure.
| \Symfony\Component\VarDumper\Cloner\Cursor | $cursor | The Cursor position in the dump. |