Completed
Push — master ( 4314d2...3ee107 )
by Artem
03:45
created
src/TokenGuard.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,8 +171,7 @@
 block discarded – undo
171 171
         try
172 172
         {
173 173
             $data = (array) \Firebase\JWT\JWT::decode($token, env('JWT_SECRET'), ['HS256']);
174
-        }
175
-        catch(\RuntimeException $e) {
174
+        } catch(\RuntimeException $e) {
176 175
             $this->logout();
177 176
 
178 177
             return null;
Please login to merge, or discard this patch.
src/AuthService.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -296,8 +296,7 @@
 block discarded – undo
296 296
 
297 297
         try {
298 298
             $output = $callback();
299
-        }
300
-        catch(\Exception $e) {
299
+        } catch(\Exception $e) {
301 300
             DB::rollBack();
302 301
 
303 302
             if(is_null($fallback)) {
Please login to merge, or discard this patch.
src/Commands/SyncUsers.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,8 +95,7 @@
 block discarded – undo
95 95
 
96 96
         if(!count($difference)) {
97 97
             $this->info('There are no changes to apply locally.');
98
-        }
99
-        else {
98
+        } else {
100 99
             $this->info('Remote changes detected, applying...');
101 100
 
102 101
             $localStats = $this->applyDifference($difference);
Please login to merge, or discard this patch.