mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 06:57:24 +08:00
21 lines
406 B
PHP
21 lines
406 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use App\Services\PluginManager;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class PluginServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function register()
|
||
|
{
|
||
|
$this->app->singleton(PluginManager::class);
|
||
|
$this->app->alias(PluginManager::class, 'plugins');
|
||
|
}
|
||
|
|
||
|
public function boot(PluginManager $plugins)
|
||
|
{
|
||
|
$plugins->boot();
|
||
|
}
|
||
|
}
|