Skip to content

Commit 3487ca6

Browse files
change typing and import
1 parent ad5711e commit 3487ca6

File tree

3 files changed

+201
-201
lines changed

3 files changed

+201
-201
lines changed

app/Http/Controllers/Admin/ProviderController.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use Illuminate\Support\Facades\Storage;
1313
use Inertia\Inertia;
1414
use Inertia\Response;
15+
use Illuminate\Http\Response as InertiaResponse;
1516

1617
class ProviderController extends Controller
1718
{
@@ -63,7 +64,7 @@ public function destroy(Provider $provider): void
6364
File::delete($imagePath);
6465
}
6566

66-
public function showLogo(string $filename): \Illuminate\Http\Response
67+
public function showLogo(string $filename): InertiaResponse
6768
{
6869
$imagePath = storage_path("app/public/providers/" . $filename);
6970

0 commit comments

Comments
 (0)