Skip to content

Commit

Permalink
chore: mark enums in value type as experimental
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kesselberg <[email protected]>
  • Loading branch information
kesselb committed Dec 2, 2024
1 parent dd3fa88 commit f2d0f79
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions lib/unstable/Config/ValueType.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,35 @@
* @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;

/**
Expand Down

0 comments on commit f2d0f79

Please sign in to comment.