mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
32 lines
514 B
PHP
32 lines
514 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use App\Services\Lastfm;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class LastfmServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Bootstrap the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
app()->singleton('Lastfm', function () {
|
||
|
return new Lastfm();
|
||
|
});
|
||
|
}
|
||
|
}
|