BUGFIX Declare PasswordEncryptor_Blowfish::get_cost() as static

This commit is contained in:
Sean Harvey 2012-06-15 12:13:33 +12:00
parent 5062bb8ff5
commit 8b2cb9a7d9

View File

@ -167,7 +167,7 @@ class PasswordEncryptor_Blowfish extends PasswordEncryptor {
* @param int $cost
* @return null
*/
public function get_cost() {
public static function get_cost() {
return self::$cost;
}