getString(0), name: $result->getString(1), colour: $result->getIntegerOrNull(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 getColourRaw(): ?int { return $this->colour; } public function getColour(): Colour { return $this->colour === null ? Colour::none() : ColourRGB::fromRawRGB($this->colour); } }