Skip to content

Commit

Permalink
Add missing paramter in ImageInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed Dec 16, 2023
1 parent 68f2bb1 commit 3de73ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Interfaces/ImageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,10 @@ public function removeProfile(): ImageInterface;
* Apply color quantization to the current image
*
* @param int $limit
* @param mixed $background
* @return ImageInterface
*/
public function reduceColors(int $limit): ImageInterface;
public function reduceColors(int $limit, mixed $background = 'transparent'): ImageInterface;

/**
* Sharpen the current image with given strength
Expand Down

0 comments on commit 3de73ef

Please sign in to comment.