2019-02-21 17:54:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class SpecialPasswordResetTest extends FormSpecialPageTestCase {
|
|
|
|
|
/**
|
2021-01-16 19:44:17 +00:00
|
|
|
* @inheritDoc
|
2019-02-21 17:54:35 +00:00
|
|
|
*/
|
|
|
|
|
protected function newSpecialPage() {
|
2020-03-04 05:59:11 +00:00
|
|
|
return new SpecialPasswordReset(
|
2022-01-12 20:13:39 +00:00
|
|
|
$this->getServiceContainer()->getPasswordReset()
|
2020-03-04 05:59:11 +00:00
|
|
|
);
|
2019-02-21 17:54:35 +00:00
|
|
|
}
|
|
|
|
|
}
|