Services: Convert PasswordReset's static to a const now HHVM is gone
[lhc/web/wiklou.git] / includes / ServiceWiring.php
index 6d3fe6c..6c0748c 100644 (file)
@@ -522,7 +522,7 @@ return [
        },
 
        'PasswordReset' => function ( MediaWikiServices $services ) : PasswordReset {
-               $options = new ServiceOptions( PasswordReset::$constructorOptions, $services->getMainConfig() );
+               $options = new ServiceOptions( PasswordReset::CONSTRUCTOR_OPTIONS, $services->getMainConfig() );
                return new PasswordReset(
                        $options,
                        AuthManager::singleton(),