Files
keringportal/app/Services/Auth/TwoFactor/Facade.php
T
2024-09-18 10:45:22 +02:00

18 lines
331 B
PHP

<?php
namespace Vanguard\Services\Auth\TwoFactor;
class Facade extends \Illuminate\Support\Facades\Facade
{
/**
* Get the registered name of the component.
*
* @return string
*
* @throws \RuntimeException
*/
protected static function getFacadeAccessor()
{
return 'authy';
}
}