koel/app/Providers/DownloadServiceProvider.php
2018-08-18 14:27:17 +02:00

31 lines
536 B
PHP

<?php
namespace App\Providers;
use App\Services\DownloadService;
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 DownloadService();
});
}
}