| 1 | <?php |
||
| 20 | class Application extends AbstractApplication |
||
| 21 | { |
||
| 22 | protected $commonParameters = [ |
||
| 23 | [ |
||
| 24 | 'key' => 'client_user', |
||
| 25 | ], |
||
| 26 | [ |
||
| 27 | 'key' => 'client_password', |
||
| 28 | ], |
||
| 29 | [ |
||
| 30 | 'key' => 'merchant_account', |
||
| 31 | ], |
||
| 32 | [ |
||
| 33 | 'key' => 'env', |
||
| 34 | 'options' => ['test', 'live'], |
||
| 35 | 'default' => 'test', |
||
| 36 | 'name' => 'Version', |
||
| 37 | ], |
||
| 38 | [ |
||
| 39 | 'key' => 'registerPath', |
||
| 40 | 'default' => false, |
||
| 41 | ], |
||
| 42 | ]; |
||
| 43 | |||
| 44 | public function factorySdk(array $options) |
||
| 51 | } |
||
| 52 |