completed story 1.1 with QA tests and fixes

This commit is contained in:
Naser Mansour
2025-12-26 13:46:39 +02:00
parent 028ce573b9
commit 84d9c2f66a
57 changed files with 2193 additions and 85 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App\Enums;
enum UserType: string
{
case Admin = 'admin';
case Individual = 'individual';
case Company = 'company';
}