-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Incorrect return value from Product Attribute Repository #4803
Comments
@samtay, to allow us research the issue, please, provide the used version and description according to the template. |
The issue exists on all versions, on CE develop branch. The description is in the initial comment. I don't see what more information you need? This isn't a huge deal, I'm just letting you know there is a disconnect in the hierarchy of the interfaces. The documentation is incorrect -- which the framework can be very finicky about sometimes when generating code or parsing objects in the webapi. Something for you to be aware of. |
@samtay, thank you for reporting this issue. To fix this issue we will add declaration that |
@samtay, thank you for your report. |
I will be working on this issue |
Hi @samtay. Thank you for your report.
The fix will be available with the upcoming 2.2.7 release. |
Hi @samtay. Thank you for your report.
The fix will be available with the upcoming 2.1.16 release. |
…t Attribute Repository #15688
Hi @samtay. Thank you for your report.
The fix will be available with the upcoming 2.3.0 release. |
…duct Attribute Repository #15723
Customer data invalidation fix
To adhere to
Magento\Catalog\Api\ProductAttributeRepositoryInterface
(extendsMagento\Framework\Api\MetadataServiceInterface
), theimplementation should return
Magento\Framework\Api\MetadataObjectInterface[]
, however it instead returnsMagento\Catalog\Api\Data\ProductAttributeInterface[]
.The
ProductAttributeInterface
does declare the two methods declared inMetadataObjectInterface
, however they are not related by PHPextend
.The text was updated successfully, but these errors were encountered: