Passed
Push — 2.x ( d1e533...30af3d )
by Terry
02:03
created
src/Firewall/Firewall/SetupTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
         foreach ($ipList as $ip) {
281 281
 
282
-            if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url']) ) {
282
+            if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url'])) {
283 283
 
284 284
                 if ('allow' === $ip['rule']) {
285 285
                     $allowedList[] = $ip['ip'];
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
         $this->kernel->setProperty(
353 353
             'deny_attempt_enable',
354 354
             [
355
-                'data_circle'     => $setting['data_circle']['enable'],     // false   
355
+                'data_circle'     => $setting['data_circle']['enable'], // false   
356 356
                 'system_firewall' => $setting['system_firewall']['enable'], // false   
357 357
             ]
358 358
         );
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         $this->kernel->setProperty(
361 361
             'deny_attempt_buffer',
362 362
             [
363
-                'data_circle'     => $setting['data_circle']['buffer'],     // 10
363
+                'data_circle'     => $setting['data_circle']['buffer'], // 10
364 364
                 'system_firewall' => $setting['system_firewall']['buffer'], // 10
365 365
             ]
366 366
         );
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
 
429 429
             $lastResetTime = $cronjobSetting['config']['last_update'];
430 430
 
431
-            if (!empty($lastResetTime) ) {
431
+            if (!empty($lastResetTime)) {
432 432
                 $lastResetTime = strtotime($lastResetTime);
433 433
             } else {
434 434
                 // @codeCoverageIgnoreStart
Please login to merge, or discard this patch.
src/Firewall/Panel/Security.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,9 +120,9 @@
 block discarded – undo
120 120
         if ($this->checkPostParamsExist('xss')) {
121 121
             unset_superglobal('xss', 'post');
122 122
 
123
-            $type     = $postParams['type']     ?? '';
123
+            $type     = $postParams['type'] ?? '';
124 124
             $variable = $postParams['variable'] ?? '';
125
-            $action   = $postParams['action']   ?? '';
125
+            $action   = $postParams['action'] ?? '';
126 126
 
127 127
             // The index number in the $xssProtectedList, see below.
128 128
             $order = (int) $postParams['order'];
Please login to merge, or discard this patch.