diff --git a/standard/standard_1.php b/standard/standard_1.php index bc09de70b..003507778 100644 --- a/standard/standard_1.php +++ b/standard/standard_1.php @@ -1008,14 +1008,14 @@ function explode(string $separator, string $string, int $limit = PHP_INT_MAX) {} * implode as glue would be * the second parameter and thus, the bad prototype would be used. *

- * @param array|null $array

+ * @param array $array

* The array of strings to implode. *

* @return string a string containing a string representation of all the array * elements in the same order, with the glue string between each element. */ #[Pure] -function implode(array|string $separator = "", ?array $array): string {} +function implode(array|string $separator = "", array $array): string {} /** * Alias: @@ -1026,14 +1026,14 @@ function implode(array|string $separator = "", ?array $array): string {} * implode as glue would be * the second parameter and thus, the bad prototype would be used. *

- * @param array|null $array

+ * @param array $array

* The array of strings to implode. *

* @return string a string containing a string representation of all the array * elements in the same order, with the glue string between each element. */ #[Pure] -function join(array|string $separator = "", ?array $array): string {} +function join(array|string $separator = "", array $array): string {} /** * Set locale information