trait Debugging

Traits

Methods

never
dd(mixed ...$args)

Dump the given arguments and terminate execution.

from  Dumpable
dump(string|null $prop = null)

Dump the given props.

mixed
prop(string|null $key = null)

Retrieve a prop within the current scope using "dot" notation.

Details

in Dumpable at line 12
never dd(mixed ...$args)

Dump the given arguments and terminate execution.

Parameters

mixed ...$args

Return Value

never

at line 16
Debugging dump(string|null $prop = null)

Dump the given props.

Parameters

string|null $prop

Return Value

Debugging

at line 26
abstract protected mixed prop(string|null $key = null)

Retrieve a prop within the current scope using "dot" notation.

Parameters

string|null $key

Return Value

mixed