mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
17 lines
342 B
PHP
17 lines
342 B
PHP
|
<?php namespace Backend\Facades;
|
||
|
|
||
|
use October\Rain\Support\Facade;
|
||
|
|
||
|
class BackendAuth extends Facade
|
||
|
{
|
||
|
/**
|
||
|
* Get the registered name of the component.
|
||
|
*
|
||
|
* Resolves to:
|
||
|
* - Backend\Classes\AuthManager
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
protected static function getFacadeAccessor() { return 'backend.auth'; }
|
||
|
}
|