This commit is contained in:
Thomas Peterson 2025-02-17 11:32:17 +01:00
parent 7d30d4d34c
commit 32e3b9739b

View File

@ -35,7 +35,7 @@ class ColorOpt extends Opt
$this->colorHex = $colorHex;
}
public function getColorCMYK(): HEX|null
public function getColorCMYK(): CMYK|null
{
return $this->colorCMYK;
}
@ -45,7 +45,7 @@ class ColorOpt extends Opt
$this->colorCMYK = $colorCMYK;
}
public function getColorRGB(): HEX|null
public function getColorRGB(): RGB|null
{
return $this->colorRGB;
}