Completed
Pull Request — master (#1)
by
unknown
03:18
created
src/Bcrypt.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -21,6 +21,11 @@
 block discarded – undo
21 21
 		return crypt($plaintext, $ciphertext) == $ciphertext;
22 22
 	}
23 23
 
24
+	/**
25
+	 * @param integer $cost
26
+	 * @param integer $length
27
+	 * @param string $bcrypt_version
28
+	 */
24 29
 	public static function generate_salt($cost, $length, $bcrypt_version){
25 30
 		//make sure adding the cost in two digits
26 31
 		$cost = sprintf('%02d', $cost);
Please login to merge, or discard this patch.