\Pop\Debug\StorageAbstractStorage

Debug storage abstract class

Summary

Methods
Properties
Constants
__construct()
setFormat()
isText()
isPhp()
isJson()
getFormat()
save()
get()
has()
delete()
clear()
encodeValue()
No public properties found
No constants found
No protected methods found
$format
N/A
No private methods found
No private properties found
N/A

Properties

$format

$format : string

Storage format

Type

string

Methods

__construct()

__construct(string  $format = 'text') 

Constructor

Instantiate the storage object

Parameters

string $format

isText()

isText() : boolean

Determine if the format is text

Returns

boolean

isPhp()

isPhp() : boolean

Determine if the format is PHP

Returns

boolean

isJson()

isJson() : boolean

Determine if the format is JSON

Returns

boolean

getFormat()

getFormat() : string

Get the storage format

Returns

string

save()

save(string  $id, mixed  $value) : void

Save debug data

Parameters

string $id
mixed $value

get()

get(string  $id) : mixed

Get debug data

Parameters

string $id

Returns

mixed

has()

has(string  $id) : mixed

Determine if debug data exists

Parameters

string $id

Returns

mixed

delete()

delete(string  $id) : void

Delete debug data

Parameters

string $id

clear()

clear() : void

Clear all debug data

encodeValue()

encodeValue(mixed  $value) : string

Encode the value based on the format

Parameters

mixed $value

Throws

\Pop\Debug\Storage\Exception

Returns

string