Git Product home page Git Product logo

Comments (4)

muglug avatar muglug commented on May 27, 2024 1

@paragonie-scott fixed that error here: e59dba3

from psalm.

muglug avatar muglug commented on May 27, 2024

Short answer
To get rid of this particular issue, add <FailedTypeResolution errorLevel="suppress" /> to the <issueHandlers> block in your Psalm config.

Longer answer
Psalm is treating the above as directly equivalent to

function foo(string $foo)
{
    if (!is_string($foo)) {
        throw new TypeError("test");
    }
}

In the above function, the exception cannot ever be thrown, and so Psalm emits an issue when trying to change a variable to an impossible type.

Unfortunately, Psalm doesn't record whether a variable's type is asserted in a docblock or in a more iron-clad fashion (e.g. a parameter type or instanceof check), and I want to add that in the near future. So I'll keep this open until that's fixed.

from psalm.

muglug avatar muglug commented on May 27, 2024

In Vimeo's PHP 5 codebase we have <FailedTypeResolution errorLevel="info" /> so we can see where these issues can crop up, but they don't prevent Psalm running succesfully.

from psalm.

paragonie-scott avatar paragonie-scott commented on May 27, 2024

Other failures:

ERROR: TooManyArguments - src/Core/Util.php:121 - Too many arguments for method pack
            $hex .= pack(
                'CC',
                (55 + $b + ((($b - 10) >> 8) & ~6)),
                (55 + $c + ((($c - 10) >> 8) & ~6))
            );

Well, pack() can actually accept an arbitrary number of parameters.

from psalm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.