class Data

Methods

__construct(array $data)

No description

array
getRawData()

No description

withMaxDepth(int $maxDepth)

Returns a depth limited clone of $this.

withMaxItemsPerDepth(int $maxItemsPerDepth)

Limits the numbers of elements per depth level.

withRefHandles(bool $useRefHandles)

Enables/disables objects' identifiers tracking.

dump(DumperInterface $dumper)

Dumps data with a DumperInterface dumper.

Details

at line line 27
__construct(array $data)

Parameters

array $data A array as returned by ClonerInterface::cloneVar().

at line line 35
array getRawData()

Return Value

array The raw data structure.

at line line 47
Data withMaxDepth(int $maxDepth)

Returns a depth limited clone of $this.

Parameters

int $maxDepth The max dumped depth level.

Return Value

Data A clone of $this.

at line line 62
Data withMaxItemsPerDepth(int $maxItemsPerDepth)

Limits the numbers of elements per depth level.

Parameters

int $maxItemsPerDepth The max number of items dumped per depth level.

Return Value

Data A clone of $this.

at line line 77
Data withRefHandles(bool $useRefHandles)

Enables/disables objects' identifiers tracking.

Parameters

bool $useRefHandles False to hide global ref. handles.

Return Value

Data A clone of $this.

at line line 88
dump(DumperInterface $dumper)

Dumps data with a DumperInterface dumper.

Parameters

DumperInterface $dumper