App\Providers\DownloadServiceProvider::register PHP Méthode

register() public méthode

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