Skip to content

Commit

Permalink
Merge pull request #240 from thecodingmachine/create-pull-request/reg…
Browse files Browse the repository at this point in the history
…enerate-files

Automatically regenerate the files
  • Loading branch information
Kharhamel authored Sep 15, 2020
2 parents f25823f + 46c6385 commit f34781c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion generated/mailparse.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ function mailparse_msg_free($mimemail): void
*
* @param string $filename Path to the file holding the message.
* The file is opened and streamed through the parser.
*
* The message contained in filename is supposed to end with a newline
* (CRLF); otherwise the last line of the message will not be parsed.
* @return resource Returns a MIME resource representing the structure.
* @throws MailparseException
*
Expand All @@ -88,7 +91,8 @@ function mailparse_msg_parse_file(string $filename)
* than read and parse the whole thing.
*
* @param resource $mimemail A valid MIME resource.
* @param string $data
* @param string $data The final chunk of data is supposed to end with a newline
* (CRLF); otherwise the last line of the message will not be parsed.
* @throws MailparseException
*
*/
Expand Down
2 changes: 2 additions & 0 deletions generated/network.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ function closelog(): void
* between platforms, DNS_ANY will not
* always return every record, the slower DNS_ALL
* will collect all records more reliably.
*
* DNS_CAA is not supported on Windows.
* @param array|null $authns Passed by reference and, if given, will be populated with Resource
* Records for the Authoritative Name Servers.
* @param array|null $addtl Passed by reference and, if given, will be populated with any
Expand Down

0 comments on commit f34781c

Please sign in to comment.