Skip to content

Commit

Permalink
fix: extra X
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Oct 10, 2023
1 parent 8651d7d commit 74b327f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EMS/common-bundle/src/Storage/Processor/Color.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 74b327f

Please sign in to comment.