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 <mklehr@gmx.net>

[skip ci]
  • Loading branch information
marcelklehr authored and blizzz committed Dec 6, 2024
1 parent 414e320 commit 9c1b7c9
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 9c1b7c9

Please sign in to comment.