Skip to content

Commit 303391e

Browse files
committed
CS fixes
1 parent f3a707e commit 303391e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

app/Http/Controllers/BasePageController.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
use App\Models\User;
1010
use Illuminate\Http\Request;
1111
use Illuminate\Pagination\LengthAwarePaginator;
12+
use Illuminate\Support\Collection;
1213
use Illuminate\Support\Facades\Auth;
1314
use Illuminate\Support\Facades\Cache;
1415
use Illuminate\Support\Facades\Log;
@@ -17,9 +18,9 @@
1718
class BasePageController extends Controller
1819
{
1920
/**
20-
* @var \Illuminate\Support\Collection<int, mixed>
21+
* @var Collection<int, mixed>
2122
*/
22-
public \Illuminate\Support\Collection $settings; // @phpstan-ignore property.phpDocType, class.notFound, missingType.generics
23+
public Collection $settings; // @phpstan-ignore property.phpDocType, class.notFound, missingType.generics
2324

2425
public string $title = '';
2526

0 commit comments

Comments
 (0)