Completed
Push — master ( de3e26...f442aa )
by Sergi Tur
02:08
created
src/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
  * Same configuration as Laravel 5.2:
4 4
  * See https://github.com/laravel/framework/blob/5.2/src/Illuminate/Auth/Console/stubs/make/routes.stub
5 5
  */
6
-Route::group(['middleware' => 'web'], function () {
6
+Route::group([ 'middleware' => 'web' ], function() {
7 7
     Route::auth();
8 8
 
9 9
     Route::get('/home', 'HomeController@index');
10 10
 
11
-    Route::get('/', function () {
11
+    Route::get('/', function() {
12 12
         return view('welcome');
13 13
     });
14 14
 });
Please login to merge, or discard this patch.