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; + } +}