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