firefly-iii/app/Support/Facades/Preferences.php
2016-04-06 09:27:45 +02:00

26 lines
416 B
PHP

<?php
declare(strict_types = 1);
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(): string
{
return 'preferences';
}
}