since a composer update I got this error when I run php artisan route:list :
[Symfony\Component\Debug\Exception\FatalThrowableError] Class name must be a valid object or a string
I ran some tests and this is the lines where the error should but i don't see why:
use Businessbecause\Users\Controllers\Users;
Route::get('/users/update/created_at', Users::class .'@update_users_created_at');
Do you have any idea why it's not working anymore ? Cause it's the same code than before nothing has changed.