Passed
Push — master ( b96e37...b266ca )
by meta
03:38
created
routes/api.microsoft.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Unauthenticated API routes
4
-Route::middleware([config('azure-oath.apiroutes.middleware')])->group(function () {
4
+Route::middleware([config('azure-oath.apiroutes.middleware')])->group(function() {
5 5
 
6 6
     /**
7 7
      * @SWG\Get(
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 });
46 46
 
47 47
 // Authenticated user information routes
48
-Route::middleware([config('azure-oath.apiroutes.middleware'), config('azure-oath.apiroutes.authmiddleware')])->group(function () {
48
+Route::middleware([config('azure-oath.apiroutes.middleware'), config('azure-oath.apiroutes.authmiddleware')])->group(function() {
49 49
 
50 50
     /**
51 51
      * @SWG\Get(
Please login to merge, or discard this patch.
publish/app/User.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
 
8 8
 class User extends Authenticatable implements
9 9
     \Illuminate\Contracts\Auth\Authenticatable,
10
-                                              \Illuminate\Contracts\Auth\Access\Authorizable,
11
-                                              \Illuminate\Contracts\Auth\CanResetPassword,
12
-                                              \Tymon\JWTAuth\Contracts\JWTSubject
10
+                                                \Illuminate\Contracts\Auth\Access\Authorizable,
11
+                                                \Illuminate\Contracts\Auth\CanResetPassword,
12
+                                                \Tymon\JWTAuth\Contracts\JWTSubject
13 13
 {
14 14
     use Notifiable;
15 15
     use \Silber\Bouncer\Database\HasRolesAndAbilities;
Please login to merge, or discard this patch.
publish/routes/swagger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 
7 7
     // Redirect requests to /api to the swagger documentation
8 8
     //$api->any('', function (Illuminate\Http\Request $request) {
9
-    $api->any('', function () {
9
+    $api->any('', function() {
10 10
         return redirect('api/documentation/');
11 11
     });
12 12
 
@@ -17,6 +17,6 @@  discard block
 block discarded – undo
17 17
      *     @SWG\Response(response="200", description="Hello world example")
18 18
      * )
19 19
      **/
20
-    $api->any('/api/hello', function () {
20
+    $api->any('/api/hello', function() {
21 21
         return 'hello world';
22 22
     });
Please login to merge, or discard this patch.
publish/routes/api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
  *     @SWG\Response(response="200", description="Hello world example")
25 25
  * )
26 26
  **/
27
-Route::middleware('api')->get('/hello', function (Request $request) {
27
+Route::middleware('api')->get('/hello', function(Request $request) {
28 28
     return 'hello world';
29 29
 });
30 30
 
Please login to merge, or discard this patch.