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
With the latest upgrade to Slim 4, we retrieve query and payload parameters, with $object->getArray()['key'] ?? 'default'.
This is not great for readability and maintainability, and could easily be improved with either:
a simple helper function
a wrapper around requests object
Whichever solution can make the code better and is relatively easy to set up.
The text was updated successfully, but these errors were encountered:
Follow-up of #1972 (review)
With the latest upgrade to Slim 4, we retrieve query and payload parameters, with
$object->getArray()['key'] ?? 'default'
.This is not great for readability and maintainability, and could easily be improved with either:
Whichever solution can make the code better and is relatively easy to set up.
The text was updated successfully, but these errors were encountered: