App\Providers\LastfmServiceProvider::register PHP Method

register() public method

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