Метод |
Описание |
|
__get ( string $key ) : object |
Returns an object from an own storage. |
|
__isset ( string $key ) : boolean |
Returns if there's an object with key $key in the storage. |
|
__set ( string $key, object $value ) |
Saves an object into an own storage. |
|
__unset ( mixed $key ) |
Deletes an object with key $key from the storage. |
|
clear ( ) : self |
Clear the whole storage. |
|
get ( string $key ) : object |
Returns an object from the default storage. |
|
getInstance ( ) : self |
Returns default storage for static access. |
|
getIterator ( ) : ArrayIterator |
Returns an iterator. |
|
set ( string $key, object $value ) : object |
Saves an object into the default storage. |
|