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
^10.9.0
^3.5.0
{ "match_id": 1, "team_id": 2 }
public function addCheerPointTeam(CheerPointTeamRequest $request) { return $this->serviceV2->addCheerPointTeam( $request->matchId, $request->teamId, ); }
#[MapInputName(SnakeCaseMapper::class)] class CheerPointTeamRequest extends Data { public function __construct( #[Required] public readonly int $matchId, #[Required] public readonly int $teamId, ) { } }
Could not create App\Http\Controllers\CheerPointTeamRequest: the constructor requires 2 parameters, 0 given.
App\Http\Controllers\CheerPointTeamRequest
Prior to version 3.4.4, it was functioning correctly, but after updating to 3.5.0, the payloads are not being properly mapped in POST requests.
The text was updated successfully, but these errors were encountered:
This has todo with #432, we're going to release v3.5.1 without this feature and iron out the kinks in v4.
Sorry, something went wrong.
No branches or pull requests
Versions
^10.9.0
^3.5.0
Reproduction
Output
Could not create
App\Http\Controllers\CheerPointTeamRequest
: the constructor requires 2 parameters, 0 given.Prior to version 3.4.4, it was functioning correctly, but after updating to 3.5.0, the payloads are not being properly mapped in POST requests.
The text was updated successfully, but these errors were encountered: