mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
22 lines
364 B
PHP
22 lines
364 B
PHP
<?php namespace Cms\Facades;
|
|
|
|
use Winter\Storm\Support\Facade;
|
|
|
|
/**
|
|
* @method static string url(string $path = null)
|
|
*
|
|
* @see \Cms\Helpers\Cms
|
|
*/
|
|
class Cms extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'cms.helper';
|
|
}
|
|
}
|