mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
36 lines
726 B
PHP
36 lines
726 B
PHP
|
<?php namespace Oxbow\Providers;
|
||
|
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class SocialiteServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Indicates if loading of the provider is deferred.
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $defer = true;
|
||
|
|
||
|
/**
|
||
|
* Register the service provider.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
$this->app->bindShared('Laravel\Socialite\Contracts\Factory', function ($app) {
|
||
|
return new SocialiteManager($app);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the services provided by the provider.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function provides()
|
||
|
{
|
||
|
return ['Laravel\Socialite\Contracts\Factory'];
|
||
|
}
|
||
|
}
|