orklah

Results 254 comments of orklah

Hi! To be sure I understood, what you want to achieve is basically to remove each `@psalm-suppress` from the code and then re-run psalm in `--set-baseline` mode, correct? I'm not...

It doesn't exists but I don't think it would be very difficult to create

the CI on PR actually generates a phar. It should be available here: https://output.circle-artifacts.com/output/job/74cf1ac8-3a6e-46bf-b155-b4054b65780d/artifacts/0/build/psalm.phar

I'm not sure how I feel about classes that have the same FQN as a namespace. Is it widely used? Don't we have some kind of PSR rule to forbid...

> We use that in Psalm Right, I never made the connection > why forbidding that For the exact same reason this issue exists. It creates ambiguity and ambiguity leads...

Well, if we can get to a decent sized chunk of functions to match without manual changes, it could be an easier way to introduce new php version and also...

That's an interesting construction! But you're kinda missing the point of what Psalm is trying to do here. Uninitialized properties are basically impossible for SA to analyse. Psalm can't see...

The way I see it there are two options: - If users store those class in a specific directory (like `entities` for example), then Psalm allow for path-based suppression of...

right now, sealed arrays can only be created by explicitly creating an array in php. The sealed flag is used for several things (like being sure of how many elements...