The AMI_Tx_Cmd_Args class
• Introduction
Transaction command arguments.
• Class synopsis
AMI_Tx_Cmd_Args
{
// Initial data
// Constructor.
// Returns all properties.
public
getAll ( ) returns array;
// Overwrites property.
public
overwrite ( string $name, mixed $value ) returns void;
// Magic __get().
public
__get ( string $name ) returns mixed;
// Magic __isset().
public
__isset ( string $name ) returns bool;
// Magic __set().
public
__set ( string $name, mixed $value ) returns void;
// Magic __unset().
public
__unset ( string $name ) returns void;
}
• Class Details
Kind of registry design pattern.
• Class Properies
-
protected
array
$aData
-
Initial data
• Class Methods
-
array $aData
Object properties
// Returns all properties.
public
getAll ( ) returns array;
// Overwrites property.
public
overwrite ( string $name, mixed $value ) returns void;
-
string $name
Property name
-
mixed $value
Property value
// Magic __get().
public
__get ( string $name ) returns mixed;
-
string $name
Property name
// Magic __isset().
public
__isset ( string $name ) returns bool;
-
string $name
Property name
// Magic __set().
public
__set ( string $name, mixed $value ) returns void;
-
string $name
Property name
-
mixed $value
Property value
// Magic __unset().
public
__unset ( string $name ) returns void;
-
string $name
Property name
|