Test Setup Failed
Pull Request — dev (#315)
by Alies
04:10
created
src/Services/PaymentGateways/BePaidApiContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Diglabby\Doika\Services\PaymentGateways;
4 4
 
Please login to merge, or discard this patch.
src/Services/PaymentGateways/BePaidPaymentGateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Diglabby\Doika\Services\PaymentGateways;
4 4
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $appUrl .= (strpos($appUrl, '?') > 0) ? '&' : '?';
42 42
         $checkoutParams = [
43 43
             'checkout' => [
44
-                'test' => ! $this->apiContext->live,
44
+                'test' => !$this->apiContext->live,
45 45
                 'transaction_type' => 'payment',
46 46
                 'version' => self::API_VERSION,
47 47
                 'attempts' => 3,
Please login to merge, or discard this patch.
src/Providers/PaymentGatewayServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     /** @inheritdoc */
13 13
     public function register(): void
14 14
     {
15
-        $this->app->singleton(BePaidApiContext::class, function () {
15
+        $this->app->singleton(BePaidApiContext::class, function() {
16 16
 
17 17
             return new BePaidApiContext([
18 18
                 'marketId' => config('services.bepaid.marketId'),
Please login to merge, or discard this patch.
src/Services/PaymentGateways/OffsitePaymentGateway.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Diglabby\Doika\Services\PaymentGateways;
4 4
 
Please login to merge, or discard this patch.