Passed
Push — main ( e5b1fb...6c3421 )
by smiley
01:55
created
src/Decoder/GDLuminanceSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	private function setLuminancePixels():void{
60 60
 
61 61
 		if($this->options->readerGrayscale){
62
-			imagefilter($this->gdImage,  IMG_FILTER_GRAYSCALE);
62
+			imagefilter($this->gdImage, IMG_FILTER_GRAYSCALE);
63 63
 		}
64 64
 
65 65
 		if($this->options->readerIncreaseContrast){
Please login to merge, or discard this patch.
src/Decoder/IMagickLuminanceSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 		$count  = count($pixels);
60 60
 
61 61
 		for($i = 0; $i < $count; $i += 3){
62
-			$this->setLuminancePixel($pixels[$i] & 0xff, $pixels[$i + 1] & 0xff, $pixels[$i + 2] & 0xff);
62
+			$this->setLuminancePixel($pixels[$i]&0xff, $pixels[$i + 1]&0xff, $pixels[$i + 2]&0xff);
63 63
 		}
64 64
 	}
65 65
 
Please login to merge, or discard this patch.