wiki.techinc.nl/tests/phpunit/includes/specials/SpecialPasswordResetTest.php
Umherirrender 7691dbeca9 Add missing @param and @return to documentation in tests
Change-Id: Ic663e81cca0bf007804a70772250914a85f1fef4
2021-01-22 19:57:25 +01:00

14 lines
272 B
PHP

<?php
use MediaWiki\MediaWikiServices;
class SpecialPasswordResetTest extends FormSpecialPageTestCase {
/**
* @inheritDoc
*/
protected function newSpecialPage() {
return new SpecialPasswordReset(
MediaWikiServices::getInstance()->getPasswordReset()
);
}
}