interface PersistentDataStoreInterface (View source)

Methods

string
get(string $key)

Get a value from the store

set(string $key, string $value)

Set a value in the store

void
clear($key)

Clear the key from the store

Details

at line line 13
string get(string $key)

Get a value from the store

Parameters

string $key Data Key

Return Value

string

at line line 20
set(string $key, string $value)

Set a value in the store

Parameters

string $key Data Key
string $value Data Value

at line line 29
void clear($key)

Clear the key from the store

Parameters

$key Data Key

Return Value

void