Enhance settings performance queries

This commit is contained in:
Joseph Cohen
2015-01-14 17:19:41 -06:00
parent 494bcd9adb
commit 4f250db260
10 changed files with 128 additions and 35 deletions

21
src/Facades/Setting.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
namespace CachetHQ\Cachet\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @see \CachetHQ\Cachet\Services\SettingsService
*/
class Setting extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'setting';
}
}