zone; } public function getType(): string { return $this->type; } public function getTemp(): float { return $this->temp; } #[\Override] public function jsonSerialize(): array { return [ 'zone' => $this->zone, 'type' => $this->type, 'temp' => $this->temp, ]; } }