adaptet to KH v24.1 api changes
This commit is contained in:
parent
9ed956ad7d
commit
1db989d7c8
|
@ -15,6 +15,19 @@ class Security
|
||||||
private bool $hstsInclude;
|
private bool $hstsInclude;
|
||||||
private bool $hstsPreload;
|
private bool $hstsPreload;
|
||||||
|
|
||||||
|
private bool $isPreferHttps;
|
||||||
|
|
||||||
|
public function isPreferHttps(): bool
|
||||||
|
{
|
||||||
|
return $this->isPreferHttps;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setIsPreferHttps(bool $isPreferHttps): void
|
||||||
|
{
|
||||||
|
$this->isPreferHttps = $isPreferHttps;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue