Completed
Push — master ( e343a0...8bded7 )
by Roger
07:45
created
app/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,14 +11,14 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
17 17
 
18 18
 Route::resource('task', 'TaskController');
19 19
 Route::resource('tag', 'TagController');
20 20
 
21
-Route::group(['prefix' => 'api/v1', 'middleware' => 'auth:api'], function () {
21
+Route::group(['prefix' => 'api/v1', 'middleware' => 'auth:api'], function() {
22 22
     Route::post('/short', 'UrlMapperController@store');
23 23
 });
24 24
 
Please login to merge, or discard this patch.