20 lines
352 B
PHP
Raw Normal View History

2014-05-14 23:24:20 +10:00
<?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
2014-05-14 23:24:20 +10:00
*
* @return string
*/
2014-10-10 23:36:04 +02:00
protected static function getFacadeAccessor()
{
return 'backend.helper';
}
2014-05-14 23:24:20 +10:00
}