\Symfony\Component\VarDumper\ClonerDumperInterface

DumperInterface used by Data objects.

Summary

Methods
Constants
dumpScalar()
dumpString()
enterHash()
leaveHash()
No constants found
No protected methods found
N/A
No private methods found
N/A

Methods

dumpScalar()

dumpScalar(\Symfony\Component\VarDumper\Cloner\Cursor  $cursor, string  $type, scalar  $value) 

Dumps a scalar value.

Parameters

\Symfony\Component\VarDumper\Cloner\Cursor $cursor

The Cursor position in the dump.

string $type

The PHP type of the value being dumped.

scalar $value

The scalar value being dumped.

dumpString()

dumpString(\Symfony\Component\VarDumper\Cloner\Cursor  $cursor, string  $str, boolean  $bin, integer  $cut) 

Dumps a string.

Parameters

\Symfony\Component\VarDumper\Cloner\Cursor $cursor

The Cursor position in the dump.

string $str

The string being dumped.

boolean $bin

Whether $str is UTF-8 or binary encoded.

integer $cut

The number of characters $str has been cut by.

enterHash()

enterHash(\Symfony\Component\VarDumper\Cloner\Cursor  $cursor, integer  $type, string  $class, boolean  $hasChild) 

Dumps while entering an hash.

Parameters

\Symfony\Component\VarDumper\Cloner\Cursor $cursor

The Cursor position in the dump.

integer $type

A Cursor::HASH_* const for the type of hash.

string $class

The object class, resource type or array count.

boolean $hasChild

When the dump of the hash has child item.

leaveHash()

leaveHash(\Symfony\Component\VarDumper\Cloner\Cursor  $cursor, integer  $type, string  $class, boolean  $hasChild, integer  $cut) 

Dumps while leaving an hash.

Parameters

\Symfony\Component\VarDumper\Cloner\Cursor $cursor

The Cursor position in the dump.

integer $type

A Cursor::HASH_* const for the type of hash.

string $class

The object class, resource type or array count.

boolean $hasChild

When the dump of the hash has child item.

integer $cut

The number of items the hash has been cut by.