update: type hints

This commit is contained in:
HDVinnie
2022-01-08 15:35:53 -05:00
parent 9ddd9736ac
commit d3abd28925
59 changed files with 112 additions and 346 deletions
+1 -9
View File
@@ -25,7 +25,7 @@ class TicketController extends Controller
/**
* Display a listing of the resource.
*/
final public function index(Request $request): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
final public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
{
return \view('ticket.index');
}
@@ -103,14 +103,6 @@ class TicketController extends Controller
]);
}
/**
* Show the form for editing the specified resource.
*/
final public function edit(int $id): void
{
//
}
/**
* Update the specified resource in storage.
*/