Create get all roles method

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-01-13 23:46:08 +01:00
parent 797887b23d
commit dd2a0bc333
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -16,9 +16,9 @@ class GetRole
public static function GetAllRoles() {
return [
1 => "Président",
2 => "Gérant",
3 => "Bénévole"
"Président",
"Gérant",
"Bénévole"
];
}
}