Git Product home page Git Product logo

Comments (7)

orklah avatar orklah commented on August 25, 2024 3

The error you get is because you're trying to push mixed[] to $params. I don't expect your proposal to make it any better. Replacing scalar[] by int[]|string[] restricts the type even more

from psalm-plugin-doctrine.

martinsebastianwns avatar martinsebastianwns commented on August 25, 2024

Heya @orklah, thank you for the correction. You are absolutely correct.

from psalm-plugin-doctrine.

weirdan avatar weirdan commented on August 25, 2024

definitions for $query and $types are off by one

Psalm matches params to docblock tags by parameter name.

from psalm-plugin-doctrine.

orklah avatar orklah commented on August 25, 2024

small error on my part, you didn't push mixed[] but array<string, mixed[]> but the conclusion was the same

from psalm-plugin-doctrine.

martinsebastianwns avatar martinsebastianwns commented on August 25, 2024

definitions for $query and $types are off by one

Psalm matches params to docblock tags by parameter name.

I know. I mixed it up when reading the param descriptions, the words "query" and "parameter" came off very prominent to me but the rest is history.

from psalm-plugin-doctrine.

spideyfusion avatar spideyfusion commented on August 25, 2024

Actually, we're getting hit with the same problem. I think that the updated stub introduced in #105 is incorrect, as the following code is perfectly valid, yet Psalm is complaining:

$this->entityManager->getConnection()->executeStatement($sql, [$uuids], [Connection::PARAM_STR_ARRAY]);

results in:

ERROR: InvalidArgument - some/path/Service.php:621:13 - Argument 2 of Doctrine\DBAL\Connection::executeStatement expects array<array-key, scalar>, array{int, array<array-key, mixed>} provided (see https://psalm.dev/004)
            [$uuids],

The doc block for the $params argument on the executeStatement method is:

@param array<int, mixed>|array<string, mixed> $params Statement parameters

Shouldn't the stub's parameter be mixed[] instead of scalar[] then?

from psalm-plugin-doctrine.

orklah avatar orklah commented on August 25, 2024

scalar[]|scalar[][] would probably be more helpful for users I think

Can you propose a PR?

from psalm-plugin-doctrine.

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.