Class ObjectMixin
Object behaviour mixin.
final public
|
#
__construct(
)
Static class – cannot be instantiated. Static class – cannot be instantiated. |
public static
mixed
|
#
call(
string
$_this,
array
$name,
$args
)
Call to undefined method. Call to undefined method. Parameters$_this string method name$name array arguments$args Throws |
public static
mixed
&
|
#
get(
string
$_this,
$name
)
Returns property value. Returns property value. Parameters$_this string property name$name Returnsmixed property value
Throws
MemberAccessException if the property is not defined.
|
public static
void
|
#
set(
string
$_this,
mixed
$name,
$value
)
Sets value of a property. Sets value of a property. Parameters$_this string property name$name mixed property value$value Throws
MemberAccessException if the property is not defined or is read-only
|
public static
bool
|
#
has(
string
$_this,
$name
)
Is property defined? Is property defined? Parameters$_this string property name$name |