Best Practice fixes.

This commit is contained in:
Dennis Eichhorn 2016-03-27 22:01:36 +02:00
parent 0978f41ca2
commit 2e8e37fd29
2 changed files with 3 additions and 2 deletions

View File

@ -130,7 +130,8 @@ class C25 extends C128Abstract
$temp1 = explode('-', $temp[$posX]);
$temp2 = explode('-', $temp[($posX + 1)]);
for ($posY = 0; $posY < count($temp1); $posY++) {
$count = count($temp1);
for ($posY = 0; $posY < $count; $posY++) {
$codeString .= $temp1[$posY] . $temp2[$posY];
}
}

View File

@ -1,5 +1,5 @@
<?php
class Aztec
class QR
{
}