counter = $counter; } public function getCounter(): ?int { return $this->counter; } public function jsonSerialize(): array { return ['count' => $this->counter]; } public function setCounter(?int $counter): Counter { $this->counter = $counter; return $this; } }