for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Google2FALaravel;
use Illuminate\Support\Facades\Facade as IlluminateFacade;
use PragmaRX\Google2FALaravel\Support\Authenticator;
class Facade extends IlluminateFacade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
return 'pragmarx.google2fa';
}
public static function logout()
(new Authenticator(request()))->logout();