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

18 lines
327 B
PHP

<?php namespace Backend\Facades;
use October\Rain\Support\Facade;
class Backend extends Facade
{
/**
* Get the registered name of the component.
*
* @see \Backend\Helpers\Backend
* @return string
*/
protected static function getFacadeAccessor()
{
return 'backend.helper';
}
}