Completed
Push — master ( 118619...fc8906 )
by German Galià
06:53
created
app/Http/routes.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     return view('welcome');
16 16
 });
17 17
 Route::get('auth/login', function(){
18
-   return 'No tens acces a la API';
18
+    return 'No tens acces a la API';
19 19
 });
20 20
 
21 21
 Route::group(['middleware' => 'throttle'], function () {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 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
-Route::get('auth/login', function(){
17
+Route::get('auth/login', function() {
18 18
    return 'No tens acces a la API';
19 19
 });
20 20
 
21
-Route::group(['middleware' => 'throttle'], function () {
21
+Route::group(['middleware' => 'throttle'], function() {
22 22
     Route::get('task/{id}/tag', 'TagController@index');
23 23
     Route::resource('task', 'TaskController');
24 24
     Route::resource('tag', 'TagController');
Please login to merge, or discard this patch.