MediaWiki master
SpecialChangePassword.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Specials;
22
25
33 public function __construct() {
34 parent::__construct( 'ChangePassword', 'ChangeCredentials',
35 PasswordAuthenticationRequest::class, [ 'returnto', 'returntoquery' ] );
36 }
37}
38
40class_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...