Skip to content

Commit 8133862

Browse files
committed
CS: Binary operators should be arounded by at least one space
1 parent 20f6b39 commit 8133862

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dumper/PhpDumper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,14 +1342,14 @@ private function getNextVariableName()
13421342
$i = $this->variableCount;
13431343

13441344
if ('' === $name) {
1345-
$name .= $firstChars[$i%$firstCharsLength];
1346-
$i = (int) ($i/$firstCharsLength);
1345+
$name .= $firstChars[$i % $firstCharsLength];
1346+
$i = (int) ($i / $firstCharsLength);
13471347
}
13481348

13491349
while ($i > 0) {
13501350
--$i;
1351-
$name .= $nonFirstChars[$i%$nonFirstCharsLength];
1352-
$i = (int) ($i/$nonFirstCharsLength);
1351+
$name .= $nonFirstChars[$i % $nonFirstCharsLength];
1352+
$i = (int) ($i / $nonFirstCharsLength);
13531353
}
13541354

13551355
++$this->variableCount;

0 commit comments

Comments
 (0)