birzha/plugins/rainlab/user/facades/Auth.php

16 lines
314 B
PHP
Raw Normal View History

2021-06-04 06:26:26 +00:00
<?php namespace RainLab\User\Facades;
use October\Rain\Support\Facade;
/**
* @see \RainLab\User\Classes\AuthManager
*/
class Auth extends Facade
{
/**
* Get the registered name of the component.
* @return string
*/
protected static function getFacadeAccessor() { return 'user.auth'; }
}