You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be an error in the function definition, more specifically the return value. This: array_change_key_case(array $array, int $case = CASE_LOWER): array
needs to be altered to this: array_change_key_case(array $array, int $case = CASE_LOWER): ?array
Null is returned if no array is passed.
The text was updated successfully, but these errors were encountered:
From manual page: https://php.net/function.array-change-key-case
There seems to be an error in the function definition, more specifically the return value. This:
array_change_key_case(array $array, int $case = CASE_LOWER): array
needs to be altered to this:
array_change_key_case(array $array, int $case = CASE_LOWER): ?array
Null is returned if no array is passed.
The text was updated successfully, but these errors were encountered: