- πΊπΈUnited States smustgrave
This issue is being reviewed by the kind folks in Slack, #needs-review-queue-initiative. We are working to keep the size of Needs Review queue [2700+ issues] to around 400 (1 month or less), following Review a patch or merge request β as a guide.
This will need a test case to show the issue and that it's been resolved please
Thanks!
- π¦πΊAustralia acbramley
This popped up as part of BSI.
It needs a reroll on to an MR as well as the above mentioned tests.
We could also just NULL coallesce instead of casting to an array.
- π¦πΊAustralia kim.pepper πββοΈπ¦πΊSydney, Australia
From what I can see, casting to an array would produce an error trying to convert a string or NULL to an array?
Perhaps we could do something like
is_array($var) ? $var : [$var]
?This needs a test to verify we aren't breaking anything.