. */ declare(strict_types=1); namespace FireflyIII\Support\Facades; use Illuminate\Support\Facades\Facade; class Preferences extends Facade { public function __construct() { app('log')->warning('Hi there'); } /** * Get the registered name of the component. */ protected static function getFacadeAccessor(): string { return 'preferences'; } }