1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-22 13:32:56 +02:00

Add missing method to ColorInterface

This commit is contained in:
Oliver Vogel
2023-10-07 09:38:48 +02:00
parent ba01e87883
commit 4ff9abd3a0

View File

@@ -11,4 +11,5 @@ interface ColorInterface
public function toArray(): array;
public function toHex(string $prefix = ''): string;
public function toInt(): int;
public function isGreyscale(): bool;
}