interface ValueSelectorInterface

internal  This interface is not covered by the backward compatibility promise
 

Methods

bool
supports(mixed $subject)

No description

bool
select(mixed $subject, mixed $key, mixed $retval)

No description

string
subject()

A short string naming the subject type(s) supported by this selector (e.g. "an array", "an object", "a class", etc.).

string
selectable()

A name for the values being selected from subject (in plural, e.g. "values" or "properties").

Details

at line 25
bool supports(mixed $subject)

No description

Parameters

mixed $subject

Return Value

bool

at line 38
bool select(mixed $subject, mixed $key, mixed $retval)

No description

Parameters

mixed $subject
mixed $key
mixed $retval

Return Value

bool

Exceptions

InvalidArgumentException

at line 44
string subject()

A short string naming the subject type(s) supported by this selector (e.g. "an array", "an object", "a class", etc.).

Return Value

string

at line 50
string selectable()

A name for the values being selected from subject (in plural, e.g. "values" or "properties").

Return Value

string