Completed
Pull Request — master (#36)
by
unknown
02:23
created
src/Data/QRDataAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @return int
170 170
 	 */
171 171
 	protected function getLength(string $data):int{
172
-		return \mb_strlen($data,'8bit');
172
+		return \mb_strlen($data, '8bit');
173 173
 	}
174 174
 
175 175
 	/**
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
 			$this->dcdata[$key] = \array_fill(0, $dcCount, null);
294 294
 
295 295
 			foreach($this->dcdata[$key] as $a => $_z){
296
-				$this->dcdata[$key][$a] = 0xff & $this->bitBuffer->buffer[$a + $offset];
296
+				$this->dcdata[$key][$a] = 0xff&$this->bitBuffer->buffer[$a + $offset];
297 297
 			}
298 298
 
299 299
 			[$num, $add] = $this->poly($key, $ecCount);
Please login to merge, or discard this patch.