20 lines
352 B
PHP

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