Hi I got this errors in Lumen
FatalErrorException in RedirectResponse.php line 75: Call to a member function flashInput() on null
in RedirectResponse.php line 75
at Application->handleShutdown() in RegistersExceptionHandlers.php line 55
at Application->Laravel\Lumen\Concerns{closure}()
Here the code which throws the error:
return redirect('formular')
->withErrors($validator)
->withInput();
The error comes from withInput()
The error is happening because Lumen 5.2 does not support sessions. The
withErrors()
andwithInput()
methods attempt to set values on thesession
attribute on the redirector, but thesession
attribute is null.From the Lumen 5.2 documentation on validation:
Basically, if you're trying to use sessions, you're trying to use Lumen 5.2 in a way it was not intended. You should either be using Lumen 5.1, or using the full Laravel framework. You can read the release notes here on the philosophy change for Lumen 5.2.