Passed
Pull Request — master (#5)
by Stephen
04:03
created
routes/web.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 use Illuminate\Support\Facades\Route;
5 5
 
6 6
 Route::get(Config::get('formio.route.uri', 'api/formio/jwt'), 'FormioController@jwt')
7
-     ->name(Config::get('formio.route.name', 'formio.jwt'));
7
+        ->name(Config::get('formio.route.name', 'formio.jwt'));
Please login to merge, or discard this patch.
migrations/2019_09_23_194855_add_formio_password_to_users_table.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
             'users',
18 18
             function (Blueprint $table) {
19 19
                 $table->string('formio_password')
20
-                      ->after('password')
21
-                      ->nullable();
20
+                        ->after('password')
21
+                        ->nullable();
22 22
             }
23 23
         );
24 24
     }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -164,11 +164,11 @@
 block discarded – undo
164 164
     {
165 165
         // TODO: Add some error checking to user parsing
166 166
         $this->token = $this->token->setUser(json_decode($response->getBody(), true))
167
-                                   ->setJwt(
168
-                                       $response->getHeader('x-jwt-token')[0],
169
-                                       $this->configs['jwt']['secret'],
170
-                                       $this->configs['jwt']['algorithm']
171
-                                   );
167
+                                    ->setJwt(
168
+                                        $response->getHeader('x-jwt-token')[0],
169
+                                        $this->configs['jwt']['secret'],
170
+                                        $this->configs['jwt']['algorithm']
171
+                                    );
172 172
     }
173 173
 
174 174
     /**
Please login to merge, or discard this patch.
src/Providers/ClientServiceProvider.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
                 $resourceIds = function () use ($formio) {
74 74
                     $id = $formio->login()
75
-                                 ->request('form?name=user')[0]['_id'];
75
+                                    ->request('form?name=user')[0]['_id'];
76 76
 
77 77
                     $formio->logout();
78 78
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                         Cache::remember(
87 87
                             'formio.id',
88 88
                             Carbon::now()
89
-                                  ->addDay(),
89
+                                    ->addDay(),
90 90
                             $resourceIds
91 91
                         )
92 92
                     );
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
                 $roleIds = function () use ($formio) {
98 98
                     $roles = (array)$formio->login()
99
-                                           ->request('role?title=Authenticated')[0]['_id'];
99
+                                            ->request('role?title=Authenticated')[0]['_id'];
100 100
 
101 101
                     $formio->logout();
102 102
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                         Cache::remember(
111 111
                             'formio.user.roles',
112 112
                             Carbon::now()
113
-                                  ->addDay(),
113
+                                    ->addDay(),
114 114
                             $roleIds
115 115
                         )
116 116
                     );
Please login to merge, or discard this patch.
src/Concerns/HasForms.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         return is_null($this->attributes['formio_password'] ?? null)
26 26
             ? null
27 27
             : $this->resolveEncrypter()
28
-                   ->decrypt($this->attributes['formio_password']);
28
+                    ->decrypt($this->attributes['formio_password']);
29 29
     }
30 30
 
31 31
     /**
@@ -90,6 +90,6 @@  discard block
 block discarded – undo
90 90
         $this->attributes['formio_password'] = is_null($formio_password)
91 91
             ? null
92 92
             : $this->resolveEncrypter()
93
-                   ->encrypt($formio_password);
93
+                    ->encrypt($formio_password);
94 94
     }
95 95
 }
Please login to merge, or discard this patch.