mirror of
https://github.com/koel/koel
synced 2024-12-22 18:43:21 +00:00
15 lines
310 B
PHP
15 lines
310 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use App\Services\LicenseService;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class LicenseServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function register(): void
|
||
|
{
|
||
|
app()->singleton('License', static fn (): LicenseService => app(LicenseService::class));
|
||
|
}
|
||
|
}
|