We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c33f00c commit 8735958Copy full SHA for 8735958
1 file changed
src/Odds.php
@@ -11,13 +11,13 @@
11
namespace OddsPHP;
12
13
enum OddsFormat: int {
14
- case Decimal;
15
- case Fractional;
16
- case HongKong;
17
- case ImpliedProbability;
18
- case Indonesian;
19
- case Malay;
20
- case Moneyline;
+ case Decimal = 0;
+ case Fractional = 1;
+ case HongKong = 2;
+ case ImpliedProbability = 3;
+ case Indonesian = 4;
+ case Malay = 5;
+ case Moneyline = 6;
21
}
22
23
enum OddsErrors: string {
0 commit comments