\Horde_Support_Stub

Class that can substitute for any object and safely do nothing.

Summary

Methods
Properties
Constants
__toString()
__set()
__get()
__isset()
__unset()
__call()
__callStatic()
offsetGet()
offsetSet()
offsetExists()
offsetUnset()
count()
getIterator()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

__toString()

__toString() : string

Cooerce to an empty string.

Returns

string

__set()

__set(string  $key, mixed  $val) 

Ignore setting the requested property.

Parameters

string $key

The property.

mixed $val

The property's value.

__get()

__get(string  $key) : null

Return null for any requested property.

Parameters

string $key

The requested object property.

Returns

null —

Null.

__isset()

__isset(string  $key) : boolean

Property existence.

Parameters

string $key

The requested object property.

Returns

boolean —

False.

__unset()

__unset(string  $key) 

Ignore unsetting a property.

Parameters

string $key

The requested object property.

__call()

__call(string  $method, array  $args) 

Gracefully accept any method call and do nothing.

Parameters

string $method

The method that was called.

array $args

The method's arguments.

__callStatic()

__callStatic(string  $method, array  $args) 

Gracefully accept any static method call and do nothing.

Parameters

string $method

The method that was called.

array $args

The method's arguments.

offsetGet()

offsetGet(  $offset) 

Parameters

$offset

offsetSet()

offsetSet(  $offset,   $value) 

Parameters

$offset
$value

offsetExists()

offsetExists(  $offset) 

Parameters

$offset

offsetUnset()

offsetUnset(  $offset) 

Parameters

$offset

count()

count() 

getIterator()

getIterator()