winter/modules/backend/facades/BackendAuth.php
Quezler cc17b679f1 Code dusting (#2826)
Code cleaning according to PSR-2 w/ exemptions (mostly dust).
2017-04-24 21:38:19 +10:00

20 lines
356 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';
}
}