From 1ef107a6f23303087841d13a01a0d7511f8e8ae8 Mon Sep 17 00:00:00 2001 From: Jonathan Visser Date: Wed, 15 Jul 2026 14:43:35 +0200 Subject: [PATCH] Add Hypernode Annotations AfterDeployTask configuration --- src/AfterDeployTask/HypernodeAnnotation.php | 90 +++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/AfterDeployTask/HypernodeAnnotation.php diff --git a/src/AfterDeployTask/HypernodeAnnotation.php b/src/AfterDeployTask/HypernodeAnnotation.php new file mode 100644 index 0000000..f1e2558 --- /dev/null +++ b/src/AfterDeployTask/HypernodeAnnotation.php @@ -0,0 +1,90 @@ +name = $name; + $this->description = $description; + $this->app = $app; + $this->apiToken = $apiToken; + } + + /** + * @return string + */ + public function getName(): ?string + { + return $this->name; + } + + /** + * @return string + */ + public function getDescription(): ?string + { + return $this->description; + } + + /** + * @return string + */ + public function getApp(): ?string + { + return $this->app; + } + + /** + * @return string + */ + public function getApiToken(): ?string + { + return $this->apiToken; + } +}