mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-03-14 20:33:40 +00:00
15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class UpdateSettings extends Settings
|
|
{
|
|
public bool $prereleases = false;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'update';
|
|
}
|
|
}
|