PHPdoc fixes
This commit is contained in:
parent
4130b1d880
commit
7260bb5267
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue