mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-05 16:02:34 +00:00
20
app/Facades/Plugins.php
Normal file
20
app/Facades/Plugins.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user