PHPdoc fixes

This commit is contained in:
Roland Gruber 2017-06-05 09:39:29 +02:00
parent 4130b1d880
commit 7260bb5267
4 changed files with 4 additions and 13 deletions

View File

@ -1912,7 +1912,7 @@ abstract class baseModule {
/**
* Returns a list of wildcards that can be replaced in input fileds.
* E.g. "$firstname$" is replaced with "givenName" attribute value.
* E.g. "$firstname" is replaced with "givenName" attribute value.
*
* @return array replacements as wildcard => value
*/

View File

@ -3822,10 +3822,7 @@ class inetOrgPerson extends baseModule implements passwordService {
}
/**
* Returns a list of wildcards that can be replaced in input fileds.
* E.g. "$firstname$" is replaced with "givenName" attribute value.
*
* @return array replacements as wildcard => value
* {@inheritdoc}
*/
public function getWildCardReplacements() {
$replacements = array();

View File

@ -3479,10 +3479,7 @@ class posixAccount extends baseModule implements passwordService {
}
/**
* Returns a list of wildcards that can be replaced in input fileds.
* E.g. "$firstname$" is replaced with "givenName" attribute value.
*
* @return array replacements as wildcard => value
* {@inheritdoc}
*/
public function getWildCardReplacements() {
$replacements = array();

View File

@ -3377,10 +3377,7 @@ class windowsUser extends baseModule implements passwordService {
}
/**
* Returns a list of wildcards that can be replaced in input fileds.
* E.g. "$firstname$" is replaced with "givenName" attribute value.
*
* @return array replacements as wildcard => value
* {@inheritdoc}
*/
public function getWildCardReplacements() {
$replacements = array();