We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone! Excelent work with the package!!!
I have found in one of my tests that the variable that contained the user model instance was not updated after applying the ban() function to it.
Example: $user = User::find($id); $user->ban(); if i look into the $user dosen´t have updated the field banned_at.
I think this should not be the case and should be updated. Hope this helps!
Thanks!!!
The text was updated successfully, but these errors were encountered:
How can we reproduce this issue? How are you checking that model was not updated?
Sorry, something went wrong.
I was able to reproduce this issue, with PHP 8.0 and Laravel 9, I'm not sure if this is a cache configuration, I did it through tinker @antonkomarev
It will be great to reproduce bug in integration tests, it will help a lot
@antonkomarev Sure, I'll try to add a test
No branches or pull requests
Hi everyone! Excelent work with the package!!!
I have found in one of my tests that the variable that contained the user model instance was not updated after applying the ban() function to it.
Example:
$user = User::find($id);
$user->ban();
if i look into the $user dosen´t have updated the field banned_at.
I think this should not be the case and should be updated.
Hope this helps!
Thanks!!!
The text was updated successfully, but these errors were encountered: