koel/app/Providers/DownloadServiceProvider.php
2018-08-29 11:06:17 +07:00

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);
});
}
}