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