\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, string|integer|float|boolean  $value) 

Dumps a scalar value.

Parameters

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

The PHP type of the value being dumped

string|integer|float|boolean $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
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|integer  $class, boolean  $hasChild) 

Dumps while entering an hash.

Parameters

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

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

string|integer $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|integer  $class, boolean  $hasChild, integer  $cut) 

Dumps while leaving an hash.

Parameters

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

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

string|integer $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