Class ObjectMixin
Nette\Object behaviour mixin.
Methods summary
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
Returns
mixed
Throws
|
public static
mixed
&
|
#
get( string $_this, $name )
Returns property value.
Parameters
- $_this
string property name
- $name
Returns
mixed property value
Throws
|
public static
|
#
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
|
public static
boolean
|
#
has( string $_this, $name )
Is property defined?
Parameters
- $_this
string property name
- $name
Returns
boolean
|