Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Komarev committed Oct 11, 2023
1 parent 3c05812 commit ab0a3bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Calculator/TextUnicodeConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static function convertTextToCodePoints(
$values = [];
$lookingFor = 1;

for ($i = 0, $iMax = \strlen($string); $i < $iMax; $i++) {
for ($i = 0, $iMax = \strlen($string); $i < $iMax; ++$i) {
$thisValue = \ord($string[$i]);

if ($thisValue < 128) {
Expand Down

0 comments on commit ab0a3bf

Please sign in to comment.