From d5bdb1bade0cf52b2b4e0e4571eb203fef810d30 Mon Sep 17 00:00:00 2001 From: tracer Date: Wed, 21 Sep 2022 15:52:13 +0200 Subject: [PATCH] initial commit --- src/Entity/KeyHelp/Target.php | 61 +++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/Entity/KeyHelp/Target.php diff --git a/src/Entity/KeyHelp/Target.php b/src/Entity/KeyHelp/Target.php new file mode 100644 index 0000000..eadf9af --- /dev/null +++ b/src/Entity/KeyHelp/Target.php @@ -0,0 +1,61 @@ +forwardingType; + } + + /** + * @param string|null $forwardingType + */ + public function setForwardingType(?string $forwardingType): void + { + $this->forwardingType = $forwardingType; + } + + /** + * @return bool + */ + public function isForwarding(): bool + { + return $this->isForwarding; + } + + /** + * @param bool $isForwarding + */ + public function setIsForwarding(bool $isForwarding): void + { + $this->isForwarding = $isForwarding; + } + + /** + * @return string + */ + public function getTarget(): string + { + return $this->target; + } + + /** + * @param string $target + */ + public function setTarget(string $target): void + { + $this->target = $target; + } +} \ No newline at end of file