Add PhpDoc for MB_CASE_ constants since PHP 7.3

This commit is contained in:
Thomas Schulz 2019-03-29 19:24:26 +01:00 committed by GitHub
parent 042a76f6f8
commit 99858f0707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -1360,10 +1360,25 @@ define ('MB_OVERLOAD_REGEX', 4);
define ('MB_CASE_UPPER', 0);
define ('MB_CASE_LOWER', 1);
define ('MB_CASE_TITLE', 2);
/**
* @since 7.3
*/
define('MB_CASE_FOLD', 3);
/**
* @since 7.3
*/
define('MB_CASE_UPPER_SIMPLE', 4);
/**
* @since 7.3
*/
define('MB_CASE_LOWER_SIMPLE', 5);
/**
* @since 7.3
*/
define('MB_CASE_TITLE_SIMPLE', 6);
/**
* @since 7.3
*/
define('MB_CASE_FOLD_SIMPLE', 7);
// End of mbstring v.