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