Completed
Push — master ( 56ba93...1d6cd8 )
by Vojta
8s
created
models/UserImportModel.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,9 @@
 block discarded – undo
94 94
     private function getStateId($stateIdent)
95 95
     {
96 96
         $state = State::where('code', $stateIdent)->first();
97
-        if ( !$state ) return null;
97
+        if ( !$state ) {
98
+            return null;
99
+        }
98 100
 
99 101
         return $state->id;
100 102
     }
Please login to merge, or discard this patch.