| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | string $environment, |
||
| 34 | string $merchantId, |
||
| 35 | string $publicKey, |
||
| 36 | string $privateKey, |
||
| 37 | LoggerInterface $logger |
||
| 38 | ) { |
||
| 39 | $this->logger = $logger; |
||
| 40 | $this->gateway = new Gateway([ |
||
| 41 | 'environment' => $environment, |
||
| 42 | 'merchantId' => $merchantId, |
||
| 43 | 'publicKey' => $publicKey, |
||
| 44 | 'privateKey' => $privateKey |
||
| 45 | ]); |
||
| 46 | } |
||
| 47 | } |
||
| 48 |