Completed
Push — master ( 367b4e...a600c8 )
by Vladimir
02:25
created
src/Foundation/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation\Providers;
6 6
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         Route::get('/', 'FondBot\Foundation\Controller@index');
17 17
 
18
-        Route::group(['middleware' => 'fondbot.webhook'], function () {
18
+        Route::group(['middleware' => 'fondbot.webhook'], function() {
19 19
             Route::get('webhook/{channel}/{secret?}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook');
20 20
             Route::post('webhook/{channel}/{secret?}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook');
21 21
         });
Please login to merge, or discard this patch.