DOCS: API changes from f862ce71d5

This commit is contained in:
Sam Minnee 2017-04-18 17:04:40 +12:00
parent f862ce71d5
commit 9b1baa9503

View File

@ -1761,3 +1761,10 @@ New `TimeField` methods replace `getConfig()` / `setConfig()`
* `SapphireTest::$requiredExtensions` renamed to `SapphireTest::$required_extensions` and made static
* `SapphireTest::$extraDataObjects` renamed to `SapphireTest::$extra_dataobjects` and made static
* `SapphireTest::$extraControllers` renamed to `SapphireTest::$extra_controllers` and made static
### <a name="overview-testing"></a>Security
* `LoginForm` now has an abstract method `getAuthenticatorName()`. If you have made subclasses of this,
you will need to define this method and return a short name describing the login method.
* `MemberLoginForm` has a new constructor argument for the authenticator class, athough tis is usually
constructed by `MemberAuthenticator` and won't affect normal use.