App\Providers\DownloadServiceProvider::register PHP Method

register() public method

Register the application services.
public register ( ) : void
return void
    public function register()
    {
        app()->singleton('Download', function () {
            return new Download();
        });
    }
DownloadServiceProvider