mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
14 lines
274 B
PHP
14 lines
274 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\Util;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class UtilServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
app()->singleton('Util', static fn (): Util => app(Util::class));
|
|
}
|
|
}
|