| 1 | <?php |
||
| 31 | class TransactionCode |
||
| 32 | { |
||
| 33 | const CODE_CHANGE = "CHG"; |
||
| 34 | const CODE_COMPLETE = "CMP"; |
||
| 35 | const CODE_UPDATE = "UPD"; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * self::CODE_* |
||
| 39 | * |
||
| 40 | * @var string |
||
| 41 | */ |
||
| 42 | public $actionRequestCode; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * TransactionCode constructor. |
||
| 46 | * |
||
| 47 | * @param string $actionRequestCode self::CODE_* |
||
| 48 | */ |
||
| 49 | 7 | public function __construct($actionRequestCode) |
|
| 53 | } |
||
| 54 |