Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / password / Pbkdf2Password.php
index 080e3b0..8ef6f8d 100644 (file)
  */
 class Pbkdf2Password extends ParameterizedPassword {
        protected function getDefaultParams() {
-               return array(
+               return [
                        'algo' => $this->config['algo'],
                        'rounds' => $this->config['cost'],
                        'length' => $this->config['length']
-               );
+               ];
        }
 
        protected function getDelimiter() {