small fixes

This commit is contained in:
Lars Kusch 2021-10-09 16:13:04 +02:00
parent 011cef7391
commit eb106f01fe
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ use App\Models\PaymentType;
use App\Models\SystemLog; use App\Models\SystemLog;
use App\PaymentDrivers\StripePaymentDriver; use App\PaymentDrivers\StripePaymentDriver;
class IDEAL class iDeal
{ {
/** @var StripePaymentDriver */ /** @var StripePaymentDriver */
public StripePaymentDriver $stripe; public StripePaymentDriver $stripe;

View File

@ -33,7 +33,7 @@ use App\PaymentDrivers\Stripe\CreditCard;
use App\PaymentDrivers\Stripe\ImportCustomers; use App\PaymentDrivers\Stripe\ImportCustomers;
use App\PaymentDrivers\Stripe\SOFORT; use App\PaymentDrivers\Stripe\SOFORT;
use App\PaymentDrivers\Stripe\SEPA; use App\PaymentDrivers\Stripe\SEPA;
use App\PaymentDrivers\Stripe\iDEAL; use App\PaymentDrivers\Stripe\iDeal;
use App\PaymentDrivers\Stripe\UpdatePaymentMethods; use App\PaymentDrivers\Stripe\UpdatePaymentMethods;
use App\PaymentDrivers\Stripe\Utilities; use App\PaymentDrivers\Stripe\Utilities;
use App\Utils\Traits\MakesHash; use App\Utils\Traits\MakesHash;
@ -78,7 +78,7 @@ class StripePaymentDriver extends BaseDriver
GatewayType::SOFORT => SOFORT::class, GatewayType::SOFORT => SOFORT::class,
GatewayType::APPLE_PAY => ApplePay::class, GatewayType::APPLE_PAY => ApplePay::class,
GatewayType::SEPA => SEPA::class, GatewayType::SEPA => SEPA::class,
GatewayType::IDEAL => iDEAL::class, GatewayType::IDEAL => iDeal::class,
]; ];
const SYSTEM_LOG_TYPE = SystemLog::TYPE_STRIPE; const SYSTEM_LOG_TYPE = SystemLog::TYPE_STRIPE;