Completed
Push — master ( 398959...8d20f2 )
by smiley
01:19
created
src/QRCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@
 block discarded – undo
289 289
 		$len = strlen($string);
290 290
 
291 291
 		while($i + 1 < $len){
292
-			$c = ((0xff & ord($string[$i])) << 8) | (0xff & ord($string[$i + 1]));
292
+			$c = ((0xff&ord($string[$i])) << 8)|(0xff&ord($string[$i + 1]));
293 293
 
294 294
 			if(!($c >= 0x8140 && $c <= 0x9FFC) && !($c >= 0xE040 && $c <= 0xEBBF)){
295 295
 				return false;
Please login to merge, or discard this patch.