Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically regenerate the files #24

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generated/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ function curl_multi_setopt(\CurlMultiHandle $multi_handle, int $option, $value):
*
* @param \CurlHandle $handle A cURL handle returned by
* curl_init.
* @param int $option The CURLOPT_XXX option to set.
* @param int $option The CURLOPT_* option to set.
* @param mixed $value The value to be set on option.
*
* value should be a bool for the
Expand Down
8 changes: 4 additions & 4 deletions generated/image.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* Index 0 and 1 contains respectively the width and the height of the image.
*
* Index 2 is one of the IMAGETYPE_XXX constants indicating
* Index 2 is one of the IMAGETYPE_* constants indicating
* the type of the image.
*
* Index 3 is a text string with the correct
Expand Down Expand Up @@ -78,10 +78,10 @@ function getimagesize(string $filename, ?array &$image_info = null): ?array


/**
* Returns the extension for the given IMAGETYPE_XXX
* Returns the extension for the given IMAGETYPE_*
* constant.
*
* @param int $image_type One of the IMAGETYPE_XXX constant.
* @param int $image_type One of the IMAGETYPE_* constant.
* @param bool $include_dot Whether to prepend a dot to the extension or not. Default to TRUE.
* @return string A string with the extension corresponding to the given image type.
* @throws ImageException
Expand Down Expand Up @@ -2028,7 +2028,7 @@ function imageloadfont(string $filename): int
* The default (-1) uses the zlib compression default.
* For more information see the zlib manual.
* @param int $filters Allows reducing the PNG file size. It is a bitmask field which may be
* set to any combination of the PNG_FILTER_XXX
* set to any combination of the PNG_FILTER_*
* constants. PNG_NO_FILTER or
* PNG_ALL_FILTERS may also be used to respectively
* disable or activate all filters.
Expand Down