- Issue created by @dydave
- Merge request !405Issue #3504429 by DYdave: Fixed 'TypeError: array_intersect_key(): Argument #1... → (Merged) created by dydave
- 🇫🇷France dydave
Considered the 3 following possible solutions:
1 - Casting an array on the first argument:
return array_intersect_key((array) $this->paymentMethodTypes, array_flip($this->configuration['payment_method_types']));
2 - Using the null coalescing operator to pass an empty array as the first argument:
return array_intersect_key($this->paymentMethodTypes ?? [], array_flip($this->configuration['payment_method_types']));
3 - Initializing the property to an empty array, which was the chosen solution, see MR!405.
Thanks in advance for your feedback and reviews!
- First commit to issue fork.
-
jsacksick →
committed 56e23705 on 3.0.x authored by
dydave →
Issue #3504429: Fix TypeError: array_intersect_key(): Argument #1 ($...
-
jsacksick →
committed 56e23705 on 3.0.x authored by
dydave →
Automatically closed - issue fixed for 2 weeks with no activity.