2014-05-14 23:24:20 +10:00

17 lines
342 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\Classes\BackendHelper
*
* @return string
*/
protected static function getFacadeAccessor() { return 'backend.helper'; }
}