mirror of
https://github.com/pelican-dev/panel.git
synced 2025-11-08 12:29:26 +01:00
add phpdocs to Plugins facade
This commit is contained in:
parent
72b9a24ac4
commit
a4109cad9d
@ -2,9 +2,23 @@
|
|||||||
|
|
||||||
namespace App\Facades;
|
namespace App\Facades;
|
||||||
|
|
||||||
|
use App\Models\Plugin;
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
use App\Services\Helpers\PluginService;
|
use App\Services\Helpers\PluginService;
|
||||||
|
use Filament\Panel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @method static void loadPlugins()
|
||||||
|
* @method static void loadPanelPlugins(Panel $panel)
|
||||||
|
* @method static void requireComposerPackages(Plugin $plugin)
|
||||||
|
* @method static void runPluginMigrations(Plugin $plugin)
|
||||||
|
* @method static void installPlugin(Plugin $plugin)
|
||||||
|
* @method static void enablePlugin(string|Plugin $plugin)
|
||||||
|
* @method static void disablePlugin(string|Plugin $plugin)
|
||||||
|
* @method static void updateLoadOrder(array $order)
|
||||||
|
*
|
||||||
|
* @see \App\Services\Helpers\PluginService
|
||||||
|
*/
|
||||||
class Plugins extends Facade
|
class Plugins extends Facade
|
||||||
{
|
{
|
||||||
protected static function getFacadeAccessor(): string
|
protected static function getFacadeAccessor(): string
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user