Closed geoidesic closed 2 years ago
Replaced array_key_exists with isset
Addresses https://github.com/FriendsOfCake/crud-json-api/issues/150
As far as I can tell, array_key_exists has not been deprecated. This also behaves differently, isset() will return false if the key exists, but has a value of null.
array_key_exists
isset()
null
Replaced array_key_exists with isset
Addresses https://github.com/FriendsOfCake/crud-json-api/issues/150