Passed
Branch main (dbb5b4)
by Tim
19:37
created
src/Module/SystemInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,11 +146,11 @@
 block discarded – undo
146 146
         $promise = $client->getAsync('https://api.ipify.org');
147 147
 
148 148
         $promise->then(
149
-            function ($response) {
149
+            function($response) {
150 150
                 $publicIp = $response->getBody()->getContents();
151 151
                 return $publicIp;
152 152
             },
153
-            function ($exception) {
153
+            function($exception) {
154 154
                 return 'Error: ' . $exception->getMessage();
155 155
             }
156 156
         );
Please login to merge, or discard this patch.