From 74b327f0aee04b60709767b9acdd8221b5120ebe Mon Sep 17 00:00:00 2001 From: Mathieu De Keyzer Date: Tue, 10 Oct 2023 23:10:10 +0200 Subject: [PATCH] fix: extra X --- EMS/common-bundle/src/Storage/Processor/Color.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EMS/common-bundle/src/Storage/Processor/Color.php b/EMS/common-bundle/src/Storage/Processor/Color.php index dd5dea244..a8971019d 100644 --- a/EMS/common-bundle/src/Storage/Processor/Color.php +++ b/EMS/common-bundle/src/Storage/Processor/Color.php @@ -298,6 +298,6 @@ public function getRGB(): string public function getRGBA(): string { - return \sprintf('#%\'.02X%\'.02X%\'.02XX%\'.02X', $this->red, $this->green, $this->blue, $this->alpha); + return \sprintf('#%\'.02X%\'.02X%\'.02X%\'.02X', $this->red, $this->green, $this->blue, $this->alpha); } }