Skip to content

Commit

Permalink
Missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
jdarwood007 committed Nov 29, 2023
1 parent bb23afa commit f5b5058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Graphics/Gif/ColorTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function load(string $lpData, int $num): bool
return true;
}

public function toString()
public function toString(): string
{
$ret = '';

Expand All @@ -66,7 +66,7 @@ public function toString()
return $ret;
}

public function colorIndex($rgb)
public function colorIndex(string $rgb): int
{
$dif = 0;
$rgb = intval($rgb) & 0xFFFFFF;
Expand Down

0 comments on commit f5b5058

Please sign in to comment.