CS: Fix LdapUserBackend

refs #4641
This commit is contained in:
Marius Hein 2013-08-30 10:33:35 +02:00
parent c77a48ff1f
commit 7765877318
1 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ use \Icinga\User;
use \Icinga\Authentication\UserBackend; use \Icinga\Authentication\UserBackend;
use \Icinga\Authentication\Credential; use \Icinga\Authentication\Credential;
use \Icinga\Protocol\Ldap; use \Icinga\Protocol\Ldap;
use Icinga\Protocol\Ldap\Connection; use \Icinga\Protocol\Ldap\Connection;
use \Icinga\Application\Config as IcingaConfig; use \Icinga\Application\Config as IcingaConfig;
/** /**
@ -66,7 +66,7 @@ class LdapUserBackend implements UserBackend
/** /**
* Create new Ldap User backend * Create new Ldap User backend
* *
* @param Zend_Config $config * @param Zend_Config $config Configuration to create instance
*/ */
public function __construct(Zend_Config $config) public function __construct(Zend_Config $config)
{ {
@ -88,7 +88,7 @@ class LdapUserBackend implements UserBackend
/** /**
* Test if the username exists * Test if the username exists
* *
* @param Credential $credential * @param Credential $credential Credential to find user in database
* *
* @return bool * @return bool
*/ */
@ -102,7 +102,7 @@ class LdapUserBackend implements UserBackend
/** /**
* Removes the '*' character from $string * Removes the '*' character from $string
* *
* @param string $string * @param string $string Input string
* *
* @return string * @return string
**/ **/
@ -136,7 +136,7 @@ class LdapUserBackend implements UserBackend
/** /**
* Authenticate * Authenticate
* *
* @param Credential $credentials * @param Credential $credentials Credential to authenticate
* *
* @return User * @return User
*/ */