Passed
Push — main ( 6c3421...547c31 )
by smiley
02:24
created
src/Output/QRMarkup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
 
165 165
 			$cssClass = implode(' ', [
166 166
 				'qr-'.$M_TYPE,
167
-				($M_TYPE & QRMatrix::IS_DARK) === QRMatrix::IS_DARK ? 'dark' : 'light',
167
+				($M_TYPE&QRMatrix::IS_DARK) === QRMatrix::IS_DARK ? 'dark' : 'light',
168 168
 				$this->options->cssClass,
169 169
 			]);
170 170
 
Please login to merge, or discard this patch.
src/Detector/GridSampler.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,8 @@
 block discarded – undo
152 152
 					}
153 153
 				}
154 154
 			}
155
-			catch(Throwable $aioobe){//ArrayIndexOutOfBoundsException
155
+			catch(Throwable $aioobe){
156
+//ArrayIndexOutOfBoundsException
156 157
 				// This feels wrong, but, sometimes if the finder patterns are misidentified, the resulting
157 158
 				// transform gets "twisted" such that it maps a straight line of points to a set of points
158 159
 				// whose endpoints are in bounds, but others are not. There is probably some mathematical
Please login to merge, or discard this patch.
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.