blackbirdchess-service-results/src/Enums/Title.php
Jeroen De Meerleer bbe6975670
Initial Commit
This commit:
- Creates the repository
- Forks libpairtwo
- Removes the unrelated files
- Moves the namespaces to a new namespace
- Uses native 8.1 enums instead of a thirdparty-library
2023-01-12 19:18:00 +01:00

31 lines
768 B
PHP

<?php
namespace Blackbirdchess\Service\Results\Enums;
/**
* Enum Title
*
* List of all compatible titles
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
Enum Title: string
{
case CM = 'Candidate Master';
case ELO = 'Elo';
case FM = 'Fide Master';
case GM = 'Grand Master';
case HG = 'Honorary Grand Master';
case HM = 'Honorary International Master';
case IM = 'International Master';
case NM = 'National Master';
case NONE = '*';
case WCM = 'Woman Candidate Master';
case WFM = 'Woman Fide Master';
case WGM = 'Woman Grand Master';
case WIM = 'Woman International Master';
}