Method |
Description |
|
__get ( string $key = null ) : mixed |
Grab some data |
|
__isset ( mixed $key ) : boolean |
Does this exist? |
|
__set ( string $key, mixed $value ) |
Store something in the state |
|
__toString ( ) : string |
|
|
__unset ( mixed $key ) |
This runs when a variable is unset |
|
count ( ) : integer |
How many things are in the registry? |
|
get ( string $key = null ) : mixed |
Get something |
|
getIterator ( ) : Iterator |
|
|
instance ( ) : State |
Return the sole instance of this singleton |
|
offsetExists ( string $key ) : boolean |
Does it exist? |
|
offsetGet ( string $key ) : mixed |
Get something |
|
offsetSet ( string $key, mixed $value ) |
Store an object in the registry |
|
offsetUnset ( mixed $key ) |
Delete an entry from the registry |
|
serialize ( ) : string |
Return a JSON encoded representation of the registry |
|
set ( mixed $key = null, mixed $value = null ) |
Proxy method |
|
unserialize ( string $serialized ) : array |
|
|