mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\ITunesService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ITunesServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
app()->singleton('iTunes', static fn (): ITunesService => app(ITunesService::class));
|
|
}
|
|
}
|