mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-14 14:16:31 +00:00
13 lines
285 B
PHP
13 lines
285 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Socialite;
|
|
|
|
use SocialiteProviders\Manager\SocialiteWasCalled;
|
|
|
|
class AnikeenIdExtendSocialite
|
|
{
|
|
public function handle(SocialiteWasCalled $socialiteWasCalled): void
|
|
{
|
|
$socialiteWasCalled->extendSocialite('anikeen', Provider::class);
|
|
}
|
|
} |