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