Passed
Push — 2.x ( 364dd8...03335a )
by Terry
01:58
created
src/Firewall/Panel/BaseController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
             define('SHIELDON_VIEW', true);
166 166
         }
167 167
 
168
-        $viewFilePath =  __DIR__ . '/../../../templates/' . $page . '.php';
168
+        $viewFilePath = __DIR__ . '/../../../templates/' . $page . '.php';
169 169
     
170 170
         if (!empty($data)) {
171 171
             extract($data);
Please login to merge, or discard this patch.
src/Firewall/Panel/ConfigMethodsTrait.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@
 block discarded – undo
35 35
  */
36 36
 trait ConfigMethodsTrait
37 37
 {
38
-     /**
39
-     * Parse the POST fields and set them into configuration data structure.
40
-     * Used for saveConfig method only.
41
-     *
42
-     * @param array $postParams
43
-     *
44
-     * @return void
45
-     */
38
+        /**
39
+         * Parse the POST fields and set them into configuration data structure.
40
+         * Used for saveConfig method only.
41
+         *
42
+         * @param array $postParams
43
+         *
44
+         * @return void
45
+         */
46 46
     protected function saveConfigPrepareSettings(array $postParams): void
47 47
     {
48 48
         foreach ($postParams as $postKey => $postData) {
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                     } else {
78 78
                         if (is_numeric($postData)) {
79 79
                             $this->setConfig(str_replace('__', '.', $postKey), (int) $postData);
80
-                        } else  {
80
+                        } else {
81 81
                             $this->setConfig(str_replace('__', '.', $postKey), $postData);
82 82
                         }
83 83
                     }
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
                 // Create default log files.
166 166
                 if (is_writable($iptablesWatchingFolder)) {
167 167
                     fopen($iptablesWatchingFolder . '/iptables_queue.log', 'w+');
168
-                    fopen($iptablesWatchingFolder . '/ipv4_status.log',    'w+');
169
-                    fopen($iptablesWatchingFolder . '/ipv6_status.log',    'w+');
170
-                    fopen($iptablesWatchingFolder . '/ipv4_command.log',   'w+');
171
-                    fopen($iptablesWatchingFolder . '/ipv6_command.log',   'w+');
168
+                    fopen($iptablesWatchingFolder . '/ipv4_status.log', 'w+');
169
+                    fopen($iptablesWatchingFolder . '/ipv6_status.log', 'w+');
170
+                    fopen($iptablesWatchingFolder . '/ipv4_command.log', 'w+');
171
+                    fopen($iptablesWatchingFolder . '/ipv6_command.log', 'w+');
172 172
                 }
173 173
             }
174 174
     
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                     (string) $db['user'],
247 247
                     (string) $db['pass']
248 248
                 );
249
-            } catch(PDOException $e) {
249
+            } catch (PDOException $e) {
250 250
                 $result = false;
251 251
                 $this->pushMessage('error', 
252 252
                     __(
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
         if (class_exists('PDO')) {
300 300
             try {
301 301
                 new PDO('sqlite:' . $sqliteFilePath);
302
-            } catch(PDOException $e) { 
302
+            } catch (PDOException $e) { 
303 303
                 $this->pushMessage('error', $e->getMessage());
304 304
                 $result = false;
305 305
             }
@@ -341,10 +341,10 @@  discard block
 block discarded – undo
341 341
                 $redis = new Redis();
342 342
                 $redis->connect(
343 343
                     (string) $this->getConfig('drivers.redis.host'), 
344
-                    (int)    $this->getConfig('drivers.redis.port')
344
+                    (int) $this->getConfig('drivers.redis.port')
345 345
                 );
346 346
                 unset($redis);
347
-            } catch(RedisException $e) {
347
+            } catch (RedisException $e) {
348 348
                 $this->pushMessage('error', $e->getMessage());
349 349
                 $result = false;
350 350
             }
Please login to merge, or discard this patch.