Skip to content

Commit

Permalink
fix: seedbox controller
Browse files Browse the repository at this point in the history
- closes #2141
  • Loading branch information
HDVinnie committed Feb 28, 2022
1 parent 28b950f commit 1f970f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/SeedboxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected function store(Request $request): \Illuminate\Http\RedirectResponse
*
* @throws \Exception
*/
protected function destroy(Request $request, Seedbox $id): \Illuminate\Http\RedirectResponse
protected function destroy(Request $request, int $id): \Illuminate\Http\RedirectResponse
{
$user = $request->user();
$seedbox = Seedbox::findOrFail($id);
Expand Down

0 comments on commit 1f970f1

Please sign in to comment.