Reservations

This commit is contained in:
Juan Pablo Vial
2025-08-08 17:04:50 -04:00
parent 62aa6a08a0
commit 42336133cd
6 changed files with 210 additions and 6 deletions

View File

@ -14,4 +14,8 @@ enum Type: int
'description' => $this->name
];
}
public static function getTypes(): array
{
return [self::ACTIVE->value, self::INACTIVE->value, self::REJECTED->value];
}
}