mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
32 lines
522 B
PHP
32 lines
522 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use App\Services\Download;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class DownloadServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Bootstrap the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
app()->singleton('Download', function () {
|
||
|
return new Download();
|
||
|
});
|
||
|
}
|
||
|
}
|