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
After commit "[5.5] Add the power of Arr::get() to Collection get() #22554" the functionality of collection::get() has changed. The default value is always ignored and whole collection is returned instead of null(default) value.
Description:
After commit "[5.5] Add the power of Arr::get() to Collection get() #22554" the functionality of collection::get() has changed. The default value is always ignored and whole collection is returned instead of null(default) value.
Steps To Reproduce:
$users = User::where('column',value)->get()->keyBy('id');
$user = $users->get(null);
The text was updated successfully, but these errors were encountered: