1
0
mirror of https://github.com/danog/PHPStruct.git synced 2024-12-02 09:17:53 +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; $negative = false;
} }
while ($number > 0) { while ($number > 0) {
$curchar = $this->posmod($number, 2); $curchar = $this->posmod($number, 2);
$concat = $curchar.$concat; $concat = $curchar.$concat;
$number = (($number - $curchar) / 2); $number = (($number - $curchar) / 2);
} }