Fixed the range thing

This commit is contained in:
James Cole
2015-02-06 20:43:19 +01:00
parent 1b54b14671
commit c4d8a0da05
6 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Preferences
*
* @package FireflyIII\Support\Facades
*/
class Preferences extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'preferences';
}
}