D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
laravel
/
socialite
/
src
/
Facades
/
Filename :
Socialite.php
back
Copy
<?php namespace Laravel\Socialite\Facades; use Illuminate\Support\Facades\Facade; use Laravel\Socialite\Contracts\Factory; /** * @see \Laravel\Socialite\SocialiteManager */ class Socialite extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return Factory::class; } }