1
0
mirror of https://github.com/danog/PHPStruct.git synced 2024-11-30 04:19:08 +01:00

Applied fixes from StyleCI

This commit is contained in:
Daniil Gentili 2016-08-14 13:51:55 -04:00 committed by StyleCI Bot
parent ceabe3f4f7
commit 635b6a57a9

View File

@ -686,7 +686,7 @@ class StructTools
$negative = false;
}
while ($number > 0) {
$curchar = $this->posmod($number, 2);
$curchar = $this->posmod($number, 2);
$concat = $curchar.$concat;
$number = (($number - $curchar) / 2);
}