diff --git a/src/Dto/PontBasculeHealth.php b/src/Dto/PontBasculeHealth.php new file mode 100644 index 0000000..f33356a --- /dev/null +++ b/src/Dto/PontBasculeHealth.php @@ -0,0 +1,60 @@ +healthy; + } + + public function isOk(): bool + { + return $this->ok; + } + + public function isBusy(): bool + { + return $this->busy; + } + + public function isPortConnected(): bool + { + return $this->portConnected; + } + + public function getPortError(): ?string + { + return $this->portError; + } + + public function getHostname(): ?string + { + return $this->hostname; + } +}