| 1 | <?php |
||
| 20 | class Client extends ClientAbstract implements ClientInterface |
||
| 21 | { |
||
| 22 | public function getDefaultOptions() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | 'client_user' => false, |
||
| 26 | 'client_password' => false, |
||
| 27 | 'base_url' => '{PROTOCOL}://pal-{VERSION}.adyen.com/pal/servlet/Payment/v12', |
||
| 28 | 'protocol' => 'https', |
||
| 29 | 'version' => 'test', |
||
| 30 | 'verbose' => false, |
||
| 31 | 'sslVersion' => 'SecureTransport', |
||
| 32 | 'cacheTTL' => 3600, |
||
| 33 | 'sslVerifyPeer' => true, |
||
| 34 | ]; |
||
| 35 | } |
||
| 36 | |||
| 37 | protected function renderAuthorization() |
||
| 50 | |||
| 51 | protected function renderHeader() |
||
| 58 | } |
||
| 59 |