skip to Main Content

i use Laravel 10 (php 8.2) in my application in the backend side, and react js in the frontend, in production when trying to log in into any account its throwing an error

SymfonyComponentHttpFoundationRequest::getPayload(): Return value must be of type SymfonyComponentHttpFoundationInputBag, SymfonyComponentHttpFoundationParameterBag returned

This is only in production, so application works fine in my local PC.
Any suggestions what could be done ?

2

Answers


  1. same issue, due to package update but not yet find the good one

    Login or Signup to reply.
  2. You need to update laravel/framework from v10.16.0 to v10.16.1 with "composer update"

    More details: https://github.com/laravel/framework/compare/v10.16.0…v10.16.1

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search