mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
16 lines
309 B
PHP
16 lines
309 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 function (): Util {
|
|
return app(Util::class);
|
|
});
|
|
}
|
|
}
|