LdapTools\Operation\Handler\AuthenticationOperationHandler::switchCredentials PHP 메소드

switchCredentials() 보호된 메소드

If the operation requested that the credentials be switched, then update the credential information in the connections config. Otherwise it will switch again on other auth-attempts or re-connects.
protected switchCredentials ( AuthenticationOperation $operation )
$operation LdapTools\Operation\AuthenticationOperation
    protected function switchCredentials(AuthenticationOperation $operation)
    {
        $this->connection->getConfig()->setUsername($operation->getUsername());
        $this->connection->getConfig()->setPassword($operation->getPassword());
    }