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