refactor: Texte überarbeiten

This commit is contained in:
2022-03-04 19:33:25 +01:00
parent bd9eac43b2
commit c9540dc126
17 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ class RedGreenBlue
/**
* @return int
*/
public function getBlue(): int
#[Pure] public function getBlue(): int
{
return $this->hexadecimalValuesHelper->asHexadecimalValue($this->pureColor->getBlue());
}
@@ -86,7 +86,7 @@ class RedGreenBlue
return $this;
}
public function asHtmlNotation(): string
#[Pure] public function asHtmlNotation(): string
{
return sprintf('#%X%X%X', $this->getRed(), $this->getGreen(), $this->getBlue());
}