From 85f8f114815d0cf9cce0c7e690223210884bb885 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Thu, 7 Aug 2025 10:04:13 +0200 Subject: [PATCH] update stub --- app/Console/Commands/Plugin/Plugin.stub | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/app/Console/Commands/Plugin/Plugin.stub b/app/Console/Commands/Plugin/Plugin.stub index 79ce24959..ab6ba7233 100644 --- a/app/Console/Commands/Plugin/Plugin.stub +++ b/app/Console/Commands/Plugin/Plugin.stub @@ -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; - } }