Skip to content

Commit

Permalink
import class
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Dec 8, 2023
1 parent e459261 commit e20c7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drivers/Imagick/ImagickColor.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private function setPixel(
): ImagickPixel {
$alpha = is_null($alpha) ? 1 : $alpha;

return $this->pixel = new \ImagickPixel(
return $this->pixel = new ImagickPixel(
sprintf('rgba(%d, %d, %d, %.2F)', $red, $green, $blue, $alpha)
);
}
Expand Down

0 comments on commit e20c7bc

Please sign in to comment.