19 lines
398 B
PHP
19 lines
398 B
PHP
<?php
|
|
|
|
namespace Leantime\Core\Plugins;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class PluginsServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(\Leantime\Domain\Plugins\Services\Plugins::class, \Leantime\Domain\Plugins\Services\Plugins::class);
|
|
}
|
|
}
|