Completed
Push — master ( 696661...856338 )
by Pásztor
01:54
created
routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 $api = app('Dingo\Api\Routing\Router');
4 4
 
5
-$api->version('v1', function ($api) {
5
+$api->version('v1', function($api) {
6 6
     $api->post('auth/login', 'Autumn\JWTAuth\Http\Controllers\AuthController@authenticate');
7 7
     $api->post('auth/register', 'Autumn\JWTAuth\Http\Controllers\AuthController@register');
8 8
     $api->post('auth/logout', 'Autumn\JWTAuth\Http\Controllers\AuthController@logout');
9 9
 
10
-    $api->group(['middleware' => 'jwt.auth'], function ($api) {
10
+    $api->group(['middleware' => 'jwt.auth'], function($api) {
11 11
         $api->get('auth/me', 'Autumn\JWTAuth\Http\Controllers\AuthController@user');
12 12
     });
13 13
 });
Please login to merge, or discard this patch.