Test Setup Failed
Pull Request — dev (#310)
by Alies
03:54
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.
routes/dashboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
     ->where('vue_capture', '[\/\w\.-]*')
21 21
     ->name('dashboard.home');
22 22
 
23
-Route::post('doika/webhooks/bepaid/donated/{campaignId}', function () {
23
+Route::post('doika/webhooks/bepaid/donated/{campaignId}', function() {
24 24
     echo 'stub';
25 25
 })->name('webhooks.bepaid.donated');
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.