Files
vito/app/Facades/Plugins.php
Saeed Vaziry 342a3aa4c6 Plugins (#616)
* wip

* fix plugin uninstall

* marketplace
2025-06-19 14:07:15 +02:00

21 lines
443 B
PHP

<?php
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static mixed all()
* @method static string install(string $url, ?string $branch = null, ?string $tag = null)
* @method static string load()
* @method static string uninstall(string $name)
* @method static void cleanup()
*/
class Plugins extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'plugins';
}
}