fix: adds data fixtures for preferences table

This commit is contained in:
2025-05-16 10:29:29 -05:00
parent c4f416af37
commit cc4942a537
7 changed files with 309 additions and 1 deletions

View File

@@ -44,6 +44,12 @@ class Preference
return $this->name;
}
public function setId(string $id): static
{
$this->id = $id;
return $this;
}
public function setName(?string $name): static
{
$this->name = $name;