Fix sprintf parameters order

This commit is contained in:
Creeperface01 2021-06-15 10:11:24 +02:00 committed by Kevin Kaniaburka
parent 2abf0ddd66
commit b71a67aa25
No known key found for this signature in database
GPG key ID: 8DB4C54474F3FD72

View file

@ -26,8 +26,8 @@ final class AvailableProductOptionValuesResolver implements AvailableProductOpti
throw new \InvalidArgumentException(
sprintf(
'Cannot resolve available product option values. Option "%s" does not belong to product "%s".',
$product->getCode(),
$productOption->getCode(),
$product->getCode(),
),
);
}