Files
cyberpanel-dashboard/app/Services/Auth/TwoFactor/Facade.php
T
2026-05-20 14:01:28 +02:00

15 lines
271 B
PHP

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