28 lines
599 B
PHP
28 lines
599 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//Event::listen(function (\SocialiteProvider\Manager\SocialiteWasCalled $event) {
|
|
// $event->extendSocialite('eveonline', \SocialiteProviders\Eveonline\Provider::class);
|
|
//});
|
|
}
|
|
}
|