mirror of
https://github.com/koel/koel
synced 2024-11-24 05:03:05 +00:00
16 lines
350 B
PHP
16 lines
350 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\DownloadService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class DownloadServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
app()->singleton('Download', static function (): DownloadService {
|
|
return app(DownloadService::class);
|
|
});
|
|
}
|
|
}
|