Commit 0955a703 authored by Anton Smirnov's avatar Anton Smirnov
Browse files

Update code style

parent f5a238ab
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
        "pear/math_biginteger": "^1.0",
        "phpunit/phpunit": "^10.5.28",
        "psy/psysh": "*",
        "sandfox.dev/code-standard": "^1.2024.07.05",
        "sandfox.dev/code-standard": "^1.2025.05.07",
        "squizlabs/php_codesniffer": "*",
        "vimeo/psalm": "^6"
    },
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ final class CallbackReader
        $intStr = $this->readInteger('e');

        if ($intStr === false) {
            throw new ParseErrorException("Unexpected end of file while processing integer");
            throw new ParseErrorException('Unexpected end of file while processing integer');
        }

        if (!IntUtil::isValid($intStr)) {
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ final class Reader
        $intStr = $this->readInteger('e');

        if ($intStr === false) {
            throw new ParseErrorException("Unexpected end of file while processing integer");
            throw new ParseErrorException('Unexpected end of file while processing integer');
        }

        if (!IntUtil::isValid($intStr)) {