Completed
Pull Request — dev (#310)
by Alies
04:03
created
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.
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.