@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare(strict_types = 1); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace Diglabby\Doika\Services\PaymentGateways; |
| 4 | 4 | |
@@ -12,7 +12,7 @@ |
||
| 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'), |
@@ -20,6 +20,6 @@ |
||
| 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'); |