Browse Source
chore: mark enums in value type as experimental
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/49570/head
Daniel Kesselberg
11 months ago
No known key found for this signature in database
GPG Key ID: 4A81C29F63464E8F
1 changed files with
24 additions and
6 deletions
-
lib/unstable/Config/ValueType.php
|
|
|
@ -18,17 +18,35 @@ use UnhandledMatchError; |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
enum ValueType: int { |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case MIXED = 0; |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case STRING = 1; |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case INT = 2; |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case FLOAT = 3; |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case BOOL = 4; |
|
|
|
/** @since 31.0.0 */ |
|
|
|
/** |
|
|
|
* @experimental 31.0.0 |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
case ARRAY = 5; |
|
|
|
|
|
|
|
/** |
|
|
|
|