-
Notifications
You must be signed in to change notification settings - Fork 95
Description
Hi @VincentLanglet, the commit dac2474 caused a BC, which I can't solve. I would appreciate your input 😄
A Symfony project that still uses 4.4 fails now with
Parameter $user of method App\Security\DoctrineUserProvider::upgradePassword() has invalid type Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface.
This is the Symfony 4.4 code:
https://github.com/symfony/symfony/blob/4.4/src/Symfony/Component/Security/Core/User/PasswordUpgraderInterface.php
The interface that you check was first added with 5.3, see the sources at 5.2:
https://github.com/symfony/symfony/tree/5.2/src/Symfony/Component/Security/Core/User
Is that behavior somehow configurable (e.g. add a SF version in phpstan.neon config) or do I have to pin my composer dep?
"phpstan/phpstan-symfony": "1.2.18",
In my case it doesn't matter, as this project branch only receives security fixes ... but considering that the PasswordAuthenticatedUserInterface interface was first added with 5.3 this might be an issue for others as well.
I don't know how the stubs work, but could it help if your stubbed interface would extend UserInterface to make it compatible with old SF versions?