Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 0 |
1 | <?php |
||
9 | final class RequestType extends Enum |
||
10 | { |
||
11 | public const REQUEST_TYPE_LOW = 'lowcost'; |
||
12 | public const REQUEST_TYPE_ECONOMY = 'economy'; |
||
13 | public const REQUEST_TYPE_HIGH = 'high'; |
||
14 | |||
15 | public static function getRequestTypeLow() : self |
||
18 | } |
||
19 | |||
20 | public static function getRequestTypeEconomy() : self |
||
21 | { |
||
22 | return self::get(self::REQUEST_TYPE_ECONOMY); |
||
23 | } |
||
24 | |||
25 | 1 | public static function getRequestTypeHigh() : self |
|
28 | } |
||
29 | } |
||
30 |