Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support narrowing a constant array to a list with count #3876

Merged
merged 1 commit into from
Mar 12, 2025

Conversation

herndlm
Copy link
Contributor

@herndlm herndlm commented Mar 11, 2025

Implementing what was found/suggested in #3709 (comment) and improves very special cases with int ranges.

PR title is maybe misleading. it's making keys non-optional if it can for list-like cases.

@herndlm herndlm force-pushed the count-const-array-list branch from c737a0d to 2abd69e Compare March 11, 2025 19:25
Copy link
Member

@ondrejmirtes ondrejmirtes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this has nothing to do with lists. If you have array{a?: int, b?: string} and check count >= 2, you can make them required too. Please add more tests.

If I have array{a: int, b: string, c?: int} and check count > 2 or count >= 3, c should become required too.

@staabm
Copy link
Contributor

staabm commented Mar 12, 2025

If I have array{a: int, b: string, c?: int} and check count > 2 or count >= 3, c should become required too.

this sounds like sealed vs. unsealed array shape business

@ondrejmirtes
Copy link
Member

Yes, in the future we will have to modify the condition to only apply to sealed shapes.

@ondrejmirtes
Copy link
Member

You're right, we shouldn't change this now before sealed shapes are implemented.

@ondrejmirtes ondrejmirtes merged commit 7dd7b14 into phpstan:2.1.x Mar 12, 2025
415 of 417 checks passed
@ondrejmirtes
Copy link
Member

Thank you.

@herndlm herndlm deleted the count-const-array-list branch March 12, 2025 16:39
@ondrejmirtes
Copy link
Member

We have another regression: https://phpstan.org/r/c97add7b-a241-45c9-88f1-b8e7c76daa09

Please, Martin or Markus, look into it. Thank you!

@herndlm
Copy link
Contributor Author

herndlm commented Mar 21, 2025

weird, this stuff is supposed to deal only with lists or constant arrays, I'll try to take a look

@herndlm
Copy link
Contributor Author

herndlm commented Mar 21, 2025

yeah, looks not related to recent changes at least. if I did not mess up massively right now, then this is *NEVER* already with phpstan 2.0.0

I'll see if I can find out why though..

@herndlm
Copy link
Contributor Author

herndlm commented Mar 21, 2025

wait, everything is OK I think 😅 it is comparing a constant int with an array and that will always return false and make the assertion throw an exception. riiight? :) https://3v4l.org/k2LU5

I was already deep-debugging TypeSpecifier and my confusion grew by the second 😂

@ondrejmirtes
Copy link
Member

Oh now I'm confused 😂 I need to look into what was I thinking.

@ondrejmirtes
Copy link
Member

Alright, this is the right code sample: https://phpstan.org/r/032a2b0f-40bc-48e1-a5ee-a71859e78b04

This really changed before and after this PR. Sorry about the previous confusion.

@staabm staabm mentioned this pull request Mar 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants