for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelAuth\Services;
/**
* Class SocialAuthenticator
*
* @package Arcanedev\LaravelAuth\Services
* @author ARCANEDEV <[email protected]>
*/
class SocialAuthenticator
{
* Check if social authentication is enabled.
* @return bool
public static function isEnabled()
return config('laravel-auth.socialite.enabled', false);
}