-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
getItemsByColumnValue wrong type declaration #33070
Comments
Hi @vaso123. Thank you for your report.
Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:
For more details, please, review the Magento Contributor Assistant documentation. Please, add a comment to assign the issue:
🕙 You can find the schedule on the Magento Community Calendar page. 📞 The triage of issues happens in the queue order. If you want to speed up the delivery of your contribution, please join the Community Contributions Triage session to discuss the appropriate ticket. 🎥 You can find the recording of the previous Community Contributions Triage on the Magento Youtube Channel ✏️ Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel |
Hi @engcom-Golf. Thank you for working on this issue.
|
Please check it now. |
@engcom-Golf Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
@m2-community-project[bot] Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
@engcom-Golf Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
@m2-community-project[bot] Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
@engcom-Golf Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
@m2-community-project[bot] Thank you for verifying the issue. Unfortunately, not enough information was provided to acknowledge ticket. Please consider adding the following:
Once all required information is added, please add label |
✅ Confirmed by @engcom-Golf Issue Available: @engcom-Golf, You will be automatically unassigned. Contributors/Maintainers can claim this issue to continue. To reclaim and continue work, reassign the ticket to yourself. |
@magento I'm working on it |
✅ Jira issue https://jira.corp.adobe.com/browse/AC-13240 is successfully created for this GitHub issue. |
✅ Confirmed by @engcom-Dash. Thank you for verifying the issue. |
Preconditions (*)
Magento 2.4.2
Steps to reproduce (*)
Call
getItemsByColumnValue([string], [array])
on any collection.Expected result (*)
Get the collection
Actual result (*)
Get
null
.Component: magento-framework
File: vendor/magento/framework/Data/Collection.php
Description
The problem is that the input parameter
$value
has defined as anarray
in the annotation.If you are using an array with a single value, you will get back nothing and IDEs will mark it as an error.
You should use primitives (int, string, float, etc...).
The problem is that you defined the function like this:
but later you says:
if ($item->getData($column) == $value) {
So the value should be a primitive type, not an array.
Please fix it.
Issue: Confirmed
The text was updated successfully, but these errors were encountered: