From 2e0d9e170f034214fe4b5490bea2e09eb426d3fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 29 Jun 2021 12:33:12 +0200 Subject: [PATCH] Update formatting on AuthorizePaymentDriver.php --- app/PaymentDrivers/AuthorizePaymentDriver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/PaymentDrivers/AuthorizePaymentDriver.php b/app/PaymentDrivers/AuthorizePaymentDriver.php index bb79b5ddc318..76874570c106 100644 --- a/app/PaymentDrivers/AuthorizePaymentDriver.php +++ b/app/PaymentDrivers/AuthorizePaymentDriver.php @@ -54,11 +54,11 @@ class AuthorizePaymentDriver extends BaseDriver /** * Returns the gateway types. */ - public function gatewayTypes() :array + public function gatewayTypes(): array { $types = []; - if($this->company_gateway->fees_and_limits->{GatewayType::CREDIT_CARD}->is_enabled) { + if ($this->company_gateway->fees_and_limits->{GatewayType::CREDIT_CARD}->is_enabled) { $types[] = GatewayType::CREDIT_CARD; }