Lines Matching defs:host
61 protected $host;
88 public function __construct(?string $host = null)
90 $this->host = $host;
111 return $this->host;
117 public function setHost(?string $host)
119 $this->host = $host;
261 $url = ($this->useSsl ? 'ldaps' : 'ldap') . '://' . $this->host;
263 if ($this->host !== null && $this->port !== null) {
290 $url = new LdapUrl($pieces['host'] ?? null);
323 # We are on our own here if it's an empty host, as parse_url will not treat it as valid, though it is valid
324 # for LDAP URLs. In the case of an empty host a client should determine what host to connect to.