Passed
Push — 2.x ( a1962c...4a3192 )
by Terry
02:33
created
src/Firewall/Session.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
      * @return void
176 176
      */
177 177
     public function init(
178
-             $driver, 
178
+                $driver, 
179 179
         int  $gcExpires     = 300, 
180 180
         int  $gcProbability = 1, 
181 181
         int  $gcDivisor     = 100, 
Please login to merge, or discard this patch.
src/Firewall/Helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         $masked = implode('.', $tmp);
240 240
 
241 241
     } else {
242
-        $masked =  str_repeat('*', strlen($str) - 6) . substr($str, -6);
242
+        $masked = str_repeat('*', strlen($str) - 6) . substr($str, -6);
243 243
     }
244 244
 
245 245
     return $masked;
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
  */
796 796
 function create_session_id(): string
797 797
 {
798
-    $hash =  rand() . 'ej;1zj47vu;3e;31g642941ek62au/41' . time();
798
+    $hash = rand() . 'ej;1zj47vu;3e;31g642941ek62au/41' . time();
799 799
 
800 800
     return md5($hash);
801 801
 }
802 802
\ No newline at end of file
Please login to merge, or discard this patch.