mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
16 lines
360 B
PHP
16 lines
360 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 function (): MediaCacheService {
|
|
return app(MediaCacheService::class);
|
|
});
|
|
}
|
|
}
|