add Null safety to whereever appropriate, so things like this wouldn't be fatal:
ErrorException
Trying to access array fset on value of type null
at vendor/laravel/browser-kit-testing/src/Concerns/ImpersonatesUsers.php:32
28▕ * @return void
29▕ */
30▕ public function be(UserContract $user, $driver = null)
31▕ {
➜ 32▕ $this->app['auth']->guard($driver)->setUser($user);
33▕ }
34▕ }
35▕
add Null safety to whereever appropriate, so things like this wouldn't be fatal:
ErrorException