2015-09-11 02:31:09 +08:00
|
|
|
<?php namespace BookStack\Services\Facades;
|
2015-08-30 22:31:16 +08:00
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class Setting extends Facade
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the registered name of the component.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-01-29 00:58:52 +08:00
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return 'setting';
|
|
|
|
}
|
|
|
|
}
|