Skip to content

Commit a5cca33

Browse files
committed
Generate stubs for WordPress 6.6.1
1 parent 5224a37 commit a5cca33

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

source/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"ext-mbstring": "*",
88
"ext-openssl": "*",
99
"ext-sodium": "*",
10-
"johnpbloch/wordpress": "6.6.0"
10+
"johnpbloch/wordpress": "6.6.1"
1111
},
1212
"minimum-stability": "stable",
1313
"config": {

wordpress-stubs.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110300,9 +110300,13 @@ function get_tag_regex($tag)
110300110300
* $is_utf8 = is_utf8_charset();
110301110301
*
110302110302
* @since 6.6.0
110303+
* @since 6.6.1 A wrapper for _is_utf8_charset
110303110304
*
110304-
* @param ?string $blog_charset Slug representing a text character encoding, or "charset".
110305-
* E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
110305+
* @see _is_utf8_charset
110306+
*
110307+
* @param string|null $blog_charset Optional. Slug representing a text character encoding, or "charset".
110308+
* E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
110309+
* Default value is to infer from "blog_charset" option.
110306110310
* @return bool Whether the slug represents the UTF-8 encoding.
110307110311
*/
110308110312
function is_utf8_charset($blog_charset = \null)

0 commit comments

Comments
 (0)