Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from thecodingmachine/create-pull-request/regen…
Browse files Browse the repository at this point in the history
…erate-files

Automatically regenerate the files
  • Loading branch information
Kharhamel authored Apr 16, 2021
2 parents d812873 + cd562ac commit 1833f21
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion generated/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ function imap_fetchbody($imap, int $message_num, string $section, int $flags = 0
*
*
*
* FT_UID - The msgno
* FT_UID - The message_num
* argument is a UID
*
*
Expand Down
22 changes: 16 additions & 6 deletions generated/mbstring.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@
use Safe\Exceptions\MbstringException;

/**
* Returns a string containing the character specified by the Unicode code point value,
* encoded in the specified encoding.
*
* This function compliments mb_ord.
*
* @param int $codepoint
* @param string $encoding
* @return string Returns a specific character.
* @param int $codepoint A Unicode codepoint value, e.g. 128024 for U+1F418 ELEPHANT
* @param string $encoding The encoding
* parameter is the character encoding. If it is omitted or NULL, the internal character
* encoding value will be used.
* @return string A string containing the requested character, if it can be represented in the specified
* encoding.
* @throws MbstringException
*
*/
Expand Down Expand Up @@ -428,11 +434,15 @@ function mb_internal_encoding(string $encoding = null)


/**
* Returns the Unicode code point value of the given character.
*
* This function compliments mb_chr.
*
* @param string $string
* @param string $encoding
* @return int Returns a code point of character.
* @param string $string A string
* @param string $encoding The encoding
* parameter is the character encoding. If it is omitted or NULL, the internal character
* encoding value will be used.
* @return int The Unicode code point for the first character of string.
* @throws MbstringException
*
*/
Expand Down
1 change: 1 addition & 0 deletions generated/stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ function stream_supports_lock($stream): void
* fread etc.).
*
* @param string $protocol The wrapper name to be registered.
* Valid protocol names must contain alphanumerics, dots (.), plusses (+), or hyphens (-) only.
* @param string $class The classname which implements the protocol.
* @param int $flags Should be set to STREAM_IS_URL if
* protocol is a URL protocol. Default is 0, local
Expand Down

0 comments on commit 1833f21

Please sign in to comment.