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
307 B
PHP

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