id; } public function number(): int { return $this->randomNumber; } public function withNumber(int $number): self { return new self($this->id, $number); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'randomNumber' => $this->randomNumber ]; } }