Skip to content

Commit

Permalink
Generate stubs for WordPress 6.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Sep 30, 2024
1 parent 5224a37 commit a5cca33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-sodium": "*",
"johnpbloch/wordpress": "6.6.0"
"johnpbloch/wordpress": "6.6.1"
},
"minimum-stability": "stable",
"config": {
Expand Down
8 changes: 6 additions & 2 deletions wordpress-stubs.php
Original file line number Diff line number Diff line change
Expand Up @@ -110300,9 +110300,13 @@ function get_tag_regex($tag)
* $is_utf8 = is_utf8_charset();
*
* @since 6.6.0
* @since 6.6.1 A wrapper for _is_utf8_charset
*
* @param ?string $blog_charset Slug representing a text character encoding, or "charset".
* E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
* @see _is_utf8_charset
*
* @param string|null $blog_charset Optional. Slug representing a text character encoding, or "charset".
* E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
* Default value is to infer from "blog_charset" option.
* @return bool Whether the slug represents the UTF-8 encoding.
*/
function is_utf8_charset($blog_charset = \null)
Expand Down

0 comments on commit a5cca33

Please sign in to comment.