Passed
Push — 2.x ( b78933...b6300f )
by Terry
02:01
created
src/Firewall/Log/ActionLogger.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,10 +111,10 @@
 block discarded – undo
111 111
 
112 112
         $data = [];
113 113
 
114
-        $data[0] = $record['ip']          ?? 'null';
115
-        $data[1] = $record['session_id']  ?? 'null';
114
+        $data[0] = $record['ip'] ?? 'null';
115
+        $data[1] = $record['session_id'] ?? 'null';
116 116
         $data[2] = $record['action_code'] ?? 'null';
117
-        $data[3] = $record['timestamp']    ?? 'null';
117
+        $data[3] = $record['timestamp'] ?? 'null';
118 118
 
119 119
         file_put_contents($this->filePath, implode(',', $data) . "\n", FILE_APPEND | LOCK_EX);
120 120
     }
Please login to merge, or discard this patch.
src/Firewall/FirewallTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
             $channel = '_' . $this->channel;
273 273
         }
274 274
 
275
-        return $this->directory . '/' . $this->version . $channel .  '_' . $driverType . '_' . $this->checkpoint;
275
+        return $this->directory . '/' . $this->version . $channel . '_' . $driverType . '_' . $this->checkpoint;
276 276
     }
277 277
 
278 278
     /**
Please login to merge, or discard this patch.