Skip to content

Commit

Permalink
Automatically regenerate the files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kharhamel authored Dec 22, 2021
1 parent e661d5d commit b07be66
Show file tree
Hide file tree
Showing 82 changed files with 373 additions and 168 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
"generated/mbstring.php",
"generated/misc.php",
"generated/mysql.php",
"generated/mysqli.php",
"generated/network.php",
"generated/oci8.php",
"generated/opcache.php",
Expand Down
11 changes: 0 additions & 11 deletions generated/Exceptions/MysqliException.php

This file was deleted.

1 change: 1 addition & 0 deletions generated/apache.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,4 @@ function virtual(string $uri): void
throw ApacheException::createFromPhpError();
}
}

1 change: 1 addition & 0 deletions generated/apcu.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,4 @@ function apcu_sma_info(bool $limited = false): array
}
return $result;
}

31 changes: 1 addition & 30 deletions generated/array.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,6 @@ function array_combine(array $keys, array $values): array
}


/**
* array_flip returns an array in flip
* order, i.e. keys from array become values and values
* from array become keys.
*
* Note that the values of array need to be valid
* keys, i.e. they need to be either int or
* string. A warning will be emitted if a value has the wrong
* type, and the key/value pair in question will not be included
* in the result.
*
* If a value has several occurrences, the latest key will be
* used as its value, and all others will be lost.
*
* @param array $array An array of key/value pairs to be flipped.
* @return array Returns the flipped array on success.
* @throws ArrayException
*
*/
function array_flip(array $array): array
{
error_clear_last();
$result = \array_flip($array);
if ($result === null) {
throw ArrayException::createFromPhpError();
}
return $result;
}


/**
* array_replace_recursive replaces the values of
* array with the same values from all the following
Expand Down Expand Up @@ -186,3 +156,4 @@ function shuffle(array &$array): void
throw ArrayException::createFromPhpError();
}
}

1 change: 1 addition & 0 deletions generated/bzip2.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ function bzwrite($bz, string $data, int $length = null): int
}
return $result;
}

1 change: 1 addition & 0 deletions generated/calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ function unixtojd(int $timestamp = null): int
}
return $result;
}

1 change: 1 addition & 0 deletions generated/classobj.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ function class_alias(string $class, string $alias, bool $autoload = true): void
throw ClassobjException::createFromPhpError();
}
}

1 change: 1 addition & 0 deletions generated/com.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,4 @@ function variant_round($value, int $decimals)
}
return $result;
}

1 change: 1 addition & 0 deletions generated/cubrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -2036,3 +2036,4 @@ function cubrid_set_query_timeout($req_identifier, int $timeout): void
throw CubridException::createFromPhpError();
}
}

3 changes: 2 additions & 1 deletion generated/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -2354,7 +2354,7 @@ function curl_multi_setopt($multi_handle, int $option, $value): void
* multipart/form-data.
*
*
* Files can be sent using CURLFile,
* Files can be sent using CURLFile or CURLStringFile,
* in which case value must be an array.
*
*
Expand Down Expand Up @@ -3262,3 +3262,4 @@ function curl_unescape($handle, string $string): string
}
return $result;
}

1 change: 1 addition & 0 deletions generated/datetime.php
Original file line number Diff line number Diff line change
Expand Up @@ -1129,3 +1129,4 @@ function timezone_name_from_abbr(string $abbr, int $utcOffset = -1, int $isDST =
}
return $result;
}

1 change: 1 addition & 0 deletions generated/dir.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,4 @@ function scandir(string $directory, int $sorting_order = SCANDIR_SORT_ASCENDING,
}
return $result;
}

Loading

0 comments on commit b07be66

Please sign in to comment.