LdapTools\DomainConfiguration::getUsername PHP Method

getUsername() public method

Get the username to use when binding.
public getUsername ( ) : string
return string
    public function getUsername()
    {
        return $this->config['username'];
    }

Usage Example

Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function connect($username = null, $password = null, $anonymous = false, $server = null)
 {
     $this->initiateLdapConnection($server);
     $username = $this->usernameFormatter->getUsername($username ?: $this->config->getUsername());
     $password = $password ?: $this->config->getPassword();
     $this->bind($username, $password, $anonymous);
     $this->lastActivity = new \DateTime();
     return $this;
 }