username = $username; $this->password = $password; $this->backend = $backend; } /** * returns the login name, which must not necessarily match to a user ID * * @since 18.0.0 */ public function getUsername(): string { return $this->username; } /** * @since 18.0.0 * @since 26.0.0 value can be null */ public function getPassword(): ?string { return $this->password; } /** * return backend if available (or null) * * @return IApacheBackend|null * @since 26.0.0 */ public function getBackend(): ?IApacheBackend { return $this->backend; } }