| 1 | <?php |
||
| 13 | final class Type |
||
| 14 | { |
||
| 15 | const UNKNOWN = 0; |
||
| 16 | const STANDARD = 1; |
||
| 17 | const FULL = 2; |
||
| 18 | const LITE = 3; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param int $type |
||
| 22 | * |
||
| 23 | * @return bool |
||
| 24 | */ |
||
| 25 | public static function isValid(int $type) : bool |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param int $type |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public static function getName(int $type) : string |
||
| 40 | } |
||
| 41 |