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; }