Skip to content

Commit faef0dd

Browse files
committed
Fix phpstan errors
1 parent 593392b commit faef0dd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Http/Controllers/SeoTagController.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ public function index(Tag $tag): View
4141
$modelLabels = $this->createModelLabelsLookup();
4242
$this->setupSEO($tag, $taggedContent);
4343

44-
return view('filament-flexible-content-block-pages::tailwind.pages.tag_index', [
44+
/** @var view-string $viewName */
45+
$viewName = 'filament-flexible-content-block-pages::tailwind.pages.tag_index';
46+
47+
return view($viewName, [
4548
'tag' => $tag,
4649
'taggedContent' => $taggedContent,
4750
'contentCounts' => $contentCounts,

0 commit comments

Comments
 (0)