diff --git a/src/PaymentMethods/PaymentFacade.php b/src/PaymentMethods/PaymentFacade.php index a74b263..76d65d6 100644 --- a/src/PaymentMethods/PaymentFacade.php +++ b/src/PaymentMethods/PaymentFacade.php @@ -166,10 +166,8 @@ public function paymentMethod(): PaymentMethod */ public function __call(?string $name, array $arguments) { - if (method_exists($this->paymentMethod, $name)) - { - if($name === 'setServiceVersion') - { + if (method_exists($this->paymentMethod, $name)) { + if($name === 'setServiceVersion') { $this->paymentMethod->setServiceVersion($arguments[0]); return $this;