Completed
Pull Request — dev (#310)
by Alies
03:58
created
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.
src/Http/Controllers/Widget/CampaignController.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\Http\Controllers\Widget;
4 4
 
Please login to merge, or discard this patch.
routes/widget.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 Route::post('campaign/{campaignId}/recurrent/donate', 'Widget\CampaignController@donateRecurrent')->name('campaign.recurrent.donate')->where('campaignId', '[0-9]+');
20 20
 
21 21
 /** @todo @fr0zen will remove it */
22
-Route::get('about', function () { return 'this route is deprecated'; })->name('about');
23
-Route::get('contact', function () { return 'this route is deprecated'; })->name('contact');
24
-Route::get('legal-mentions', function () { return 'this route is deprecated'; })->name('legal-mentions');
22
+Route::get('about', function() { return 'this route is deprecated'; })->name('about');
23
+Route::get('contact', function() { return 'this route is deprecated'; })->name('contact');
24
+Route::get('legal-mentions', function() { return 'this route is deprecated'; })->name('legal-mentions');
Please login to merge, or discard this patch.