We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f6b39 commit 8133862Copy full SHA for 8133862
Dumper/PhpDumper.php
@@ -1342,14 +1342,14 @@ private function getNextVariableName()
1342
$i = $this->variableCount;
1343
1344
if ('' === $name) {
1345
- $name .= $firstChars[$i%$firstCharsLength];
1346
- $i = (int) ($i/$firstCharsLength);
+ $name .= $firstChars[$i % $firstCharsLength];
+ $i = (int) ($i / $firstCharsLength);
1347
}
1348
1349
while ($i > 0) {
1350
--$i;
1351
- $name .= $nonFirstChars[$i%$nonFirstCharsLength];
1352
- $i = (int) ($i/$nonFirstCharsLength);
+ $name .= $nonFirstChars[$i % $nonFirstCharsLength];
+ $i = (int) ($i / $nonFirstCharsLength);
1353
1354
1355
++$this->variableCount;
0 commit comments