We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 213837b commit c9300f4Copy full SHA for c9300f4
stubs/app-modules/app/Plugin.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+declare(strict_types=1);
4
+
5
/*
6
<COPYRIGHT>
7
@@ -39,7 +41,7 @@
39
41
use Filament\Contracts\Plugin;
40
42
use Filament\Panel;
43
-class StubComposerNamePlugin implements Plugin
44
+final class StubComposerNamePlugin implements Plugin
45
{
46
public function getId(): string
47
@@ -49,7 +51,7 @@ public function getId(): string
49
51
public function register(Panel $panel): void
50
52
53
$panel->discoverResources(
- in: __DIR__ . '/Filament/Resources',
54
+ in: __DIR__.'/Filament/Resources',
55
for: 'Laravelcm\\StubComposerName\\Filament\\Resources'
56
);
57
}
0 commit comments