source: app/Enum/UserType.php@ dfae77e

Last change on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 145 bytes
Line 
1<?php
2
3namespace App\Enum;
4
5enum UserType:string
6{
7 case ARTIST = 'ARTIST';
8 case MANAGER = 'MANAGER';
9 case ORGANIZER = 'ORGANIZER';
10}
Note: See TracBrowser for help on using the repository browser.