Passed
Push — master ( d29d54...9a5709 )
by Darko
07:08
created
app/Http/Controllers/Admin/AdminUserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         // Add country data to each user based on their host IP
58 58
         foreach ($results as $user) {
59 59
             $position = null;
60
-            if (! empty($user->host) && filter_var($user->host, FILTER_VALIDATE_IP)) {
60
+            if (!empty($user->host) && filter_var($user->host, FILTER_VALIDATE_IP)) {
61 61
                 $position = Location::get($user->host);
62 62
             }
63 63
             $user->country_name = $position ? $position->countryName : null;
Please login to merge, or discard this patch.