mention about service new argument

This commit is contained in:
Francis Hilaire 2023-11-20 17:08:11 +01:00
parent 8e1303e554
commit b2a2b3ea17
No known key found for this signature in database
GPG key ID: 3392F830BF33D421

View file

@ -2,6 +2,13 @@
1. The `Sylius\Component\User\Model\UserInterface` extends the `Symfony\Component\PasswordHasher\Hasher\PasswordHasherAwareInterface`
interface to fix the compatibility with Symfony 6.
2. The constructor of `Sylius\Component\Product\Resolver\DefaultProductVariantResolver` has been modified, a new argument has been added :
```php
public function __construct(
private ?ProductVariantRepositoryInterface $productVariantRepository = null,
)
```
# UPGRADE FROM `v1.12.10` TO `v1.12.11`