MediaWiki master
SpecialChangePassword.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Specials;
8
11
19 public function __construct() {
20 parent::__construct( 'ChangePassword', 'ChangeCredentials',
21 PasswordAuthenticationRequest::class, [ 'returnto', 'returntoquery' ] );
22 }
23}
24
26class_alias( SpecialChangePassword::class, 'SpecialChangePassword' );
This is a value object for authentication requests with a username and password.
Compatibility and shortcut redirect to Special:ChangeCredentials, and to hide internal AuthManager cl...