Skip to content

Commit f47d6a6

Browse files
committed
Renamed variable
1 parent 003246f commit f47d6a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Decoder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,15 +203,15 @@ protected function decodeInteger(): int
203203
}
204204

205205
$clamp = PHP_INT_MIN;
206-
$digits = '-' . $this->readDigits('e');
206+
$string = '-' . $this->readDigits('e');
207207
}
208208
else
209209
{
210210
$clamp = PHP_INT_MAX;
211-
$digits = $this->readDigits('e');
211+
$string = $this->readDigits('e');
212212
}
213213

214-
return $this->castInteger($digits, $clamp);
214+
return $this->castInteger($string, $clamp);
215215
}
216216

217217
protected function decodeList(): array

0 commit comments

Comments
 (0)