Passed
Push — statistics ( 40505d...a159ce )
by Simon
19:10 queued 15:20
created
includes/Helpers/LogHelper.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@
 block discarded – undo
361 361
                 }
362 362
 
363 363
                 $task = $job->getTask();
364
-                if(isset($taskDescriptions[$task])){
364
+                if (isset($taskDescriptions[$task])) {
365 365
                     $description = $taskDescriptions[$task];
366 366
                 } else {
367 367
                     $description = 'Unknown task';
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -361,9 +361,10 @@
 block discarded – undo
361 361
                 }
362 362
 
363 363
                 $task = $job->getTask();
364
-                if(isset($taskDescriptions[$task])){
364
+                if(isset($taskDescriptions[$task])) {
365 365
                     $description = $taskDescriptions[$task];
366
-                } else {
366
+                }
367
+                else {
367 368
                     $description = 'Unknown task';
368 369
                 }
369 370
 
Please login to merge, or discard this patch.
includes/Fragments/RequestData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
         $emailDomain = explode("@", $request->getEmail())[1];
185 185
         $this->assign("emailurl", $emailDomain);
186 186
         $this->assign('commonEmailDomain', in_array(strtolower($emailDomain), $configuration->getCommonEmailDomains())
187
-            || $request->getEmail() === $this->getSiteConfiguration()->getDataClearEmail() );
187
+            || $request->getEmail() === $this->getSiteConfiguration()->getDataClearEmail());
188 188
 
189 189
         $trustedIp = $xffProvider->getTrustedClientIp($request->getIp(), $request->getForwardedIp());
190 190
         $this->assign('requestTrustedIp', $trustedIp);
Please login to merge, or discard this patch.