diff --git a/src/Entity/KeyHelp/Apache.php b/src/Entity/KeyHelp/Apache.php new file mode 100644 index 0000000..31bdd64 --- /dev/null +++ b/src/Entity/KeyHelp/Apache.php @@ -0,0 +1,44 @@ +httpDirectives; + } + + /** + * @param string|null $httpDirectives + */ + public function setHttpDirectives(?string $httpDirectives): void + { + $this->httpDirectives = $httpDirectives; + } + + /** + * @return string + */ + public function getHttpsDirectives(): string + { + return $this->httpsDirectives; + } + + /** + * @param string|null $httpsDirectives + */ + public function setHttpsDirectives(?string $httpsDirectives): void + { + $this->httpsDirectives = $httpsDirectives; + } +} \ No newline at end of file