| 1 | <?php |
||
| 31 | class MerchantInformation |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $companyCode; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string|int |
||
| 40 | */ |
||
| 41 | public $companyNumericCode; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * MerchantInformation constructor. |
||
| 45 | * |
||
| 46 | * @param string $companyCode |
||
| 47 | */ |
||
| 48 | 10 | public function __construct($companyCode) |
|
| 52 | } |
||
| 53 |