@@ -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'); |
@@ -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 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Diglabby\Doika\Http\Controllers\Widget; |
4 | 4 |
@@ -19,6 +19,6 @@ |
||
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'); |