. */ declare(strict_types=1); namespace FireflyIII\Models; use Eloquent; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Support\Carbon; /** * Class UserRole * * @property int $id * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property string|null $deleted_at * @property string $title * @property-read Collection|GroupMembership[] $groupMemberships * @property-read int|null $group_memberships_count * @method static Builder|UserRole newModelQuery() * @method static Builder|UserRole newQuery() * @method static Builder|UserRole query() * @method static Builder|UserRole whereCreatedAt($value) * @method static Builder|UserRole whereDeletedAt($value) * @method static Builder|UserRole whereId($value) * @method static Builder|UserRole whereTitle($value) * @method static Builder|UserRole whereUpdatedAt($value) * @mixin Eloquent */ class UserRole extends Model { public const CHANGE_PIGGY_BANKS = 'change_piggies'; public const CHANGE_REPETITIONS = 'change_reps'; public const CHANGE_RULES = 'change_rules'; public const CHANGE_TRANSACTIONS = 'change_tx'; public const FULL = 'full'; public const MANAGE_CURRENCIES = 'manage_currencies'; public const MANAGE_WEBHOOKS = 'manage_webhooks'; public const OWNER = 'owner'; public const READ_ONLY = 'ro'; public const VIEW_REPORTS = 'view_reports'; protected $fillable = ['title']; /** * * @return HasMany */ public function groupMemberships(): HasMany { return $this->hasMany(GroupMembership::class); } }