We will work on Apr 26th (Saturday) and will be off from Apr 30th (Wednesday) until May 2nd (Friday) for public holiday in our country

Commit 221f45a6 authored by Rik ter Beek's avatar Rik ter Beek

fix errors from validation

parent e8002438
...@@ -78,7 +78,6 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -78,7 +78,6 @@ class VaultDetailsHandler implements HandlerInterface
* *
* @param array $response * @param array $response
* @return PaymentTokenInterface|null * @return PaymentTokenInterface|null
* @throws \Exception
*/ */
private function getVaultPaymentToken(array $response) private function getVaultPaymentToken(array $response)
{ {
...@@ -141,7 +140,7 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -141,7 +140,7 @@ class VaultDetailsHandler implements HandlerInterface
]; ];
$paymentToken->setTokenDetails(json_encode($details)); $paymentToken->setTokenDetails(json_encode($details));
} catch (Exception $e) { } catch (\Exception $e) {
$this->_adyenLogger->error(print_r($e, true)); $this->_adyenLogger->error(print_r($e, true));
} }
} }
......
...@@ -36,7 +36,6 @@ class AvailabilityChecker implements AvailabilityCheckerInterface ...@@ -36,7 +36,6 @@ class AvailabilityChecker implements AvailabilityCheckerInterface
*/ */
public function isAvailable(): bool public function isAvailable(): bool
{ {
return true; return true;
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment