adaptet to KH v24.1 api changes

This commit is contained in:
tracer 2024-07-13 16:34:27 +02:00
parent 9ed956ad7d
commit 1db989d7c8
1 changed files with 13 additions and 0 deletions

View File

@ -15,6 +15,19 @@ class Security
private bool $hstsInclude;
private bool $hstsPreload;
private bool $isPreferHttps;
public function isPreferHttps(): bool
{
return $this->isPreferHttps;
}
public function setIsPreferHttps(bool $isPreferHttps): void
{
$this->isPreferHttps = $isPreferHttps;
}
/**
* @return int
*/