BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
pragmarx
/
google2fa-laravel
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Facade.php
<?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'; } /** * Get the registered name of the component. * * @return string */ public static function logout() { (new Authenticator(request()))->logout(); } }
Save
Cancel