mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-18 12:48:41 +00:00
Best Practice fixes.
This commit is contained in:
parent
0978f41ca2
commit
2e8e37fd29
|
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
|
||||
class Aztec
|
||||
class QR
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user