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

Narrow type on setting offsets of properties #3699

Conversation

herndlm
Copy link
Contributor

@herndlm herndlm commented Dec 1, 2024

Removes OriginalPropertyTypeExpr which now leads to the expression in the scope being used for property fetches when determining the result of an array offset set.

I believe this makes things simpler and more consistent and expected. But it also showed that some small restructuring of tests for TypesAssignedToPropertiesRule was needed to avoid dependencies and weirdness with types that were changed. I was hoping that integration tests will show us how "annoying" this is.

Fixes phpstan/phpstan#6398
Fixes phpstan/phpstan#6571
Fixes phpstan/phpstan#12565

@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from fee1250 to 9564df9 Compare December 1, 2024 21:33
{
$this->integers[] = 4;
$this->integers['foo'] = 5;
$this->integers[] = 'foo';
Copy link
Contributor

@staabm staabm Dec 2, 2024

Choose a reason for hiding this comment

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

if you don't remove lines in test-files but leave them empty, you don't need to adjust all the line numbers in the expectations (and get a smaller, easier to review PR)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

sorry, didn't get that fully. can you explain what you mean? because it highly annoys me that I had to do things there yeah.. I would have not touched these even, but the problem here is that invalid assignments would widen the array type and influence other errors, so I had to separate them a bit more.

Copy link
Contributor

@staabm staabm Dec 2, 2024

Choose a reason for hiding this comment

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

if you add 3 empty lines, line 18,19,20 (so the ones you deleted) all following line-numbers in the file will not be reduced by 3

(so you don't delete lines in existing tests, but replace them with a empty lines)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ah simple like that, ok, good idea I guess. let me clean this up as much as I can then

Copy link
Contributor Author

Choose a reason for hiding this comment

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

hmm I don't think this helps much here tbh. I can make like 3 of them go away maybe, but the rest of the line numbers increased, so I can't do anything about them.

Copy link
Contributor

@staabm staabm Dec 2, 2024

Choose a reason for hiding this comment

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

one idea, if you want to invest a few more time:

don't change the test (or only add comments after existing lines) instead of moving lines arround

Copy link
Contributor Author

@herndlm herndlm Dec 2, 2024

Choose a reason for hiding this comment

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

yeah, it's a reasonable approach I guess. I'll revert changes, adapt the test classes to show changed behaviour and add new tests where the existing ones did not pick up issues any more as before. that should also help show the behaviour changes better 👍

UPDATE: think I'll wait for some feedback from the boss before spending more time on formatting these files :) e.g. I hate things like $this->intArray[new \DateTimeImmutable()] = 1; would set the property type in that scope to non-empty-array<*ERROR*, mixed> which allows all kind of keys. I believe the tests need to be restructured, otherwise they look very weird. my main argument for this behaviour change (except that it fixes the linked issues) is that it works like that for other properties too, see https://phpstan.org/r/e8909d22-857a-4dea-8d88-4cb13704b63e

Copy link
Member

Choose a reason for hiding this comment

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

Please don't change existing tests at all, they are there for a reason. The reason might be why OriginalPropertyTypeExpr exists.

If you change existing tests it's impossible for me to review the PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sure, will revert those changes again. We are going to see the annoying behaviour again which I described above: modifying the prop and the re-using it, sometimes in an error state, changes how later prop changes behave :/ doing this change without adapting these tests a bit is most likely not possible

Copy link
Contributor Author

Choose a reason for hiding this comment

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

sorry, was on vacation :) reverted those test changes and those ugly failures should show up again. you can see that a couple of those are pretty weird. right now I'm not a 100% sure any more if the types should adapt on invalid type assignment or not tbh. I was expecting it to adapt as e.g. https://phpstan.org/r/9f4469db-571c-4967-a79c-ebf0e8ab6ba1 does too. I believed that those couple of weird test errors are test issues only and should not cause issues in the real world.

@herndlm herndlm changed the base branch from 1.12.x to 2.1.x December 24, 2024 18:13
@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from 9564df9 to 8bf4588 Compare December 24, 2024 18:14
@herndlm herndlm marked this pull request as ready for review December 24, 2024 18:19
@phpstan-bot
Copy link
Collaborator

This pull request has been marked as ready for review.

@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from 8bf4588 to 1f9f463 Compare January 4, 2025 13:03
@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from 97e50b9 to 6ba6c71 Compare February 4, 2025 09:53
@ondrejmirtes
Copy link
Member

I'd like to look at this but the tests are failing.

@herndlm
Copy link
Contributor Author

herndlm commented Mar 18, 2025

I'd like to look at this but the tests are failing.

thx for checking this. the issue here is that the changes start breaking the tests and re-ordering things, to remove dependencies basically, avoids that, but obviously this was also considered to be bad. we're at a dead-end here. I was arguing that I think the tests need re-arranging and the behaviour changes made sense to me, see #3699 (comment)

but I'm not sure if the example mentioned there is still a good example of a similar behaviour.

@ondrejmirtes
Copy link
Member

Surface level idea (didn't think about the issue that much recently): what about keeping the logic as it's currently done in your PR, but do some extra work to make sure the error messages do not change by putting the original property type description into them?

@herndlm
Copy link
Contributor Author

herndlm commented Mar 18, 2025

that makes total sense. I think I tried and it was basically in direct conflict with those reported errors. in terms of, trying to not change that behaviour also does not fix the linked issues then. but I need to look at this once more with a fresh mind maybe.

@ondrejmirtes
Copy link
Member

trying to not change that behaviour also does not fix the linked issues then

Please read my response carefully. My point was to keep the behaviour of the PR, just improve the messages so that they don't change.

@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from 6ba6c71 to f9ee99a Compare March 18, 2025 15:45
@herndlm
Copy link
Contributor Author

herndlm commented Mar 18, 2025

trying to not change that behaviour also does not fix the linked issues then

Please read my response carefully. My point was to keep the behaviour of the PR, just improve the messages so that they don't change.

ah sorry, didn't get that. good point, that would improve things. but there will be some cases where new errors are added or some don't show any more.

I did some checking, but the core issue here seems to be that the thing that is assigned has a different type and I'm not sure how to change the message without changing the logic, don't think that's possible here. or I'm missing something :/

@ondrejmirtes
Copy link
Member

Please add regression test for (and mention it in the original description): phpstan/phpstan#12565

@ondrejmirtes
Copy link
Member

I'll try to think about what we can do about the messages.

@herndlm herndlm force-pushed the type-narrowing-property-fetch-set-offset-value branch from f9ee99a to 2cfa07c Compare March 18, 2025 17:04
@herndlm
Copy link
Contributor Author

herndlm commented Mar 18, 2025

ok thx, done

@ondrejmirtes ondrejmirtes force-pushed the type-narrowing-property-fetch-set-offset-value branch from 2cfa07c to 2459bef Compare March 20, 2025 08:43
@ondrejmirtes
Copy link
Member

The OriginalPropertyTypeExpr is here for a reason. I really dislike the error messages and the error lines reported without it.

That said I realized 3 of 4 of the issues are about ArrayAccess, so I hardcoded the solution just for that.

@ondrejmirtes ondrejmirtes force-pushed the type-narrowing-property-fetch-set-offset-value branch from 2459bef to 280b718 Compare March 20, 2025 08:49
@ondrejmirtes ondrejmirtes merged commit 17d4a03 into phpstan:2.1.x Mar 20, 2025
414 of 416 checks passed
@ondrejmirtes
Copy link
Member

Thank you!

@herndlm
Copy link
Contributor Author

herndlm commented Mar 20, 2025

Oh, thx!

@herndlm herndlm deleted the type-narrowing-property-fetch-set-offset-value branch March 20, 2025 09:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
5 participants