Skip to content

Commit

Permalink
fix(external_storage): Cast id to int
Browse files Browse the repository at this point in the history
follow up to #49218

Signed-off-by: Marcel Klehr <[email protected]>

[skip ci]
  • Loading branch information
marcelklehr authored and backportbot[bot] committed Nov 25, 2024
1 parent 54b1d17 commit 1e5e25f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function update(
*/
#[NoAdminRequired]
#[PasswordConfirmationRequired]
public function destroy($id) {
public function destroy(int $id) {
return parent::destroy($id);
}
}

0 comments on commit 1e5e25f

Please sign in to comment.