firefly-iii/app/Support/Facades/Preferences.php
2015-05-10 08:26:42 +02:00

26 lines
404 B
PHP

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