Completed
Push — develop ( 567ccb )
by Kirill
08:42
created
app/App/Providers/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function map(Router $router)
39 39
     {
40
-        $router->group(['namespace' => $this->namespace], function (Router $router) {
40
+        $router->group(['namespace' => $this->namespace], function(Router $router) {
41 41
             require base_path('app/Interfaces/Http/routes.php');
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
app/Interfaces/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
Please login to merge, or discard this patch.