Merge "Introduce ApiMaxLagInfo hook"
[lhc/web/wiklou.git] / includes / password / Pbkdf2Password.php
index 4a8831e..541fd0e 100644 (file)
@@ -42,8 +42,7 @@ class Pbkdf2Password extends ParameterizedPassword {
        }
 
        protected function shouldUseHashExtension() {
-               return isset( $this->config['use-hash-extension'] ) ?
-                       $this->config['use-hash-extension'] : function_exists( 'hash_pbkdf2' );
+               return $this->config['use-hash-extension'] ?? function_exists( 'hash_pbkdf2' );
        }
 
        public function crypt( $password ) {