Completed
Push — master ( b8c11c...9be186 )
by Yang
02:09
created
src/Bcrypt.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
 
16 16
 		$salt = self::generateSalt();
17 17
 
18
-        /* Create a string that will be passed to crypt, containing all
18
+		/* Create a string that will be passed to crypt, containing all
19 19
          * of the settings, separated by dollar signs
20 20
          */
21
-        $salt = '$'.implode('$', [$bcrypt_version, $cost, $salt]);
21
+		$salt = '$'.implode('$', [$bcrypt_version, $cost, $salt]);
22 22
 
23
-        $ciphertext = crypt($plaintext, $salt);
23
+		$ciphertext = crypt($plaintext, $salt);
24 24
 
25
-        return $ciphertext;
25
+		return $ciphertext;
26 26
 	}
27 27
 
28 28
 	/**
Please login to merge, or discard this patch.