id = $result->getString(0); $this->name = $result->getString(1); $this->colour = $result->isNull(2) ? null : $result->getInteger(2); } public function getId(): string { return $this->id; } public function getName(): string { return $this->name; } public function hasColour(): bool { return $this->colour !== null; } public function getColour(): Colour { return $this->colour === null ? Colour::none() : ColourRGB::fromRawRGB($this->colour); } public function getColourRaw(): ?int { return $this->colour; } }