. */ declare(strict_types=1); namespace FireflyIII\Support\Facades; use FireflyIII\Models\Configuration; use Illuminate\Support\Facades\Facade; /** * @codeCoverageIgnore * Class FireflyConfig. * @method null|Configuration get($name, $default = null) * @method Configuration set(string $name, $value) * @method delete(string $name) * @method Configuration|null getFresh(string $name, $default = null) * @method Configuration put(string $name, $value) */ class FireflyConfig extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor(): string { return 'fireflyconfig'; } }