]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/GroupBundle/Service/Sha256Salted.php
Fixed typos
[github/wallabag/wallabag.git] / src / Wallabag / GroupBundle / Service / Sha256Salted.php
index c72486ad74225a3bd42a0047dd835aef23d58880..053aaefa8823ad89b456459e7e6cd40f009108ec 100644 (file)
@@ -8,7 +8,7 @@ class Sha256Salted implements PasswordEncoderInterface
 {
     public function encodePassword($raw, $salt)
     {
-        return hash('sha256', $salt . $raw); // Custom function for password encrypt
+        return hash('sha256', $salt.$raw); // Custom function for password encrypt
     }
 
     public function isPasswordValid($encoded, $raw, $salt)