update stub

This commit is contained in:
Boy132 2025-08-07 10:04:13 +02:00
parent d02bbe2cea
commit 85f8f11481

View File

@ -22,17 +22,4 @@ class $class$ implements Plugin
{
// Is run only when the panel that the plugin is being registered to is actually in-use. It is executed by a middleware class.
}
public static function make(): static
{
return app(static::class);
}
public static function get(): static
{
/** @var static $plugin */
$plugin = filament(app(static::class)->getId());
return $plugin;
}
}