Passed
Pull Request — master (#5)
by Florian
02:22
created
src/AbstractPasswordHasher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,10 +82,10 @@
 block discarded – undo
82 82
         }
83 83
 
84 84
         if ($this->saltPosition === self::SALT_BEFORE) {
85
-            return $this->salt . $password;
85
+            return $this->salt.$password;
86 86
         }
87 87
 
88
-        return $password . $this->salt;
88
+        return $password.$this->salt;
89 89
     }
90 90
 
91 91
     /**
Please login to merge, or discard this patch.