final public
|
#
__construct(
)
Static class – cannot be instantiated. Static class – cannot be instantiated. |
public static
mixed
|
#
call(
object
$_this,
string
$name,
array
$args
)
Call to undefined method. Call to undefined method. Parameters$_this object$name string method name$args array argumentsThrows |
public static
mixed
|
#
callStatic(
object
$class,
string
$name,
array
$args
)
Call to undefined static method. Call to undefined static method. Parameters$class object$name string method name$args array argumentsThrows |
public static
mixed
&
|
#
get(
object
$_this,
string
$name
)
Returns property value. Returns property value. Parameters$_this object$name string property nameReturnsmixed property value
Throws
\MemberAccessException if the property is not defined.
|
public static
void
|
#
set(
object
$_this,
string
$name,
mixed
$value
)
Sets value of a property. Sets value of a property. Parameters$_this object$name string property name$value mixed property valueThrows
\MemberAccessException if the property is not defined or is read-only
|
public static
|
#
remove(
object
$_this,
string
$name
)
Throws exception. |
public static
bool
|
#
has(
object
$_this,
string
$name
)
Is property defined? Is property defined? Parameters$_this object$name string property name |