/home/techb158/ileadtechnology.com/vendor/alaouy/youtube/src
Edit: /home/techb158/ileadtechnology.com/vendor/alaouy/youtube/src/YoutubeServiceProvider.php (910B)
publishes([$source => config_path('youtube.php')]);
$this->mergeConfigFrom($source, 'youtube');
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->app->bind(Youtube::class, function () {
return new Youtube(config('youtube.key'));
});
$this->app->alias(Youtube::class, 'youtube');
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [Youtube::class];
}
}