/** * Whether the suggested ldap server is an ActiveDirectory * * @return boolean */ public function isAd() { return $this->connection->getCapabilities()->isActiveDirectory(); }
/** * Whether the suggested ldap server is an ActiveDirectory * * @return boolean */ public function isAd() { $this->execDiscovery(); return $this->connection->getCapabilities()->hasAdOid(); }
/** * Whether the suggested ldap server is an ActiveDirectory * * @return boolean */ public function isAd() { return $this->connection->getCapabilities()->hasAdOid(); }