|
| _call ($methodName) |
|
| _callRef ($methodName, &$arg1=NULL, &$arg2=NULL, &$arg3=NULL, &$arg4=NULL, &$arg5=NULL, &$arg6=NULL, &$arg7=NULL, &$arg8=NULL, &$arg9=NULL) |
|
| _set ($propertyName, $value) |
|
| _setRef ($propertyName, &$value) |
|
| _setStatic ($propertyName, $value) |
|
| _get ($propertyName) |
|
| _getStatic ($propertyName) |
|
Tx_Phpunit_Interface_AccessibleObject::_call |
( |
|
$methodName | ) |
|
Calls the method $method using call_user_func* and returns its return value.
- Parameters
-
string | $methodName | name of method to call, must not be empty |
- Returns
- mixed the return value from the method $methodName
Tx_Phpunit_Interface_AccessibleObject::_callRef |
( |
|
$methodName, |
|
|
& |
$arg1 = NULL , |
|
|
& |
$arg2 = NULL , |
|
|
& |
$arg3 = NULL , |
|
|
& |
$arg4 = NULL , |
|
|
& |
$arg5 = NULL , |
|
|
& |
$arg6 = NULL , |
|
|
& |
$arg7 = NULL , |
|
|
& |
$arg8 = NULL , |
|
|
& |
$arg9 = NULL |
|
) |
| |
Calls the method $method without using call_user_func* and returns its return value.
- Parameters
-
string | $methodName | name of method to call, must not be empty |
mixed | &$arg1 | first argument given to method $methodName |
mixed | &$arg2 | second argument given to method $methodName |
mixed | &$arg3 | third argument given to method $methodName |
mixed | &$arg4 | fourth argument given to method $methodName |
mixed | &$arg5 | fifth argument given to method $methodName |
mixed | &$arg6 | sixth argument given to method $methodName |
mixed | &$arg7 | seventh argument given to method $methodName |
mixed | &$arg8 | eighth argument given to method $methodName |
mixed | &$arg9 | ninth argument given to method $methodName |
- Returns
- mixed the return value from the method $methodName
Tx_Phpunit_Interface_AccessibleObject::_get |
( |
|
$propertyName | ) |
|
Gets the value of the given property.
- Parameters
-
string | $propertyName | name of property to return value of, must not be empty |
- Returns
- mixed the value of the property $propertyName
Tx_Phpunit_Interface_AccessibleObject::_getStatic |
( |
|
$propertyName | ) |
|
Gets the value of the given static property.
- Parameters
-
string | $propertyName | name of property to return value of, must not be empty |
- Returns
- mixed the value of the static property $propertyName
Tx_Phpunit_Interface_AccessibleObject::_set |
( |
|
$propertyName, |
|
|
|
$value |
|
) |
| |
Sets the value of a property.
- Parameters
-
string | $propertyName | name of property to set value for, must not be empty |
mixed | $value | the new value for the property defined in $propertyName |
- Returns
- void
Tx_Phpunit_Interface_AccessibleObject::_setRef |
( |
|
$propertyName, |
|
|
& |
$value |
|
) |
| |
Sets the value of a property by reference.
- Parameters
-
string | $propertyName | name of property to set value for, must not be empty |
mixed | &$value | the new value for the property defined in $propertyName |
- Returns
- void
Tx_Phpunit_Interface_AccessibleObject::_setStatic |
( |
|
$propertyName, |
|
|
|
$value |
|
) |
| |
Sets the value of a static property.
- Parameters
-
string | $propertyName | name of property to set value for, must not be empty |
mixed | $value | the new value for the property defined in $propertyName |
- Returns
- void
The documentation for this interface was generated from the following file:
- Classes/Interface/AccessibleObject.php