Remove too strict parameter check in defaults()

2022.09-rc
Hypolite Petovan 2018-01-03 21:24:09 -05:00
rodzic 929c6de5f2
commit 2a09af8bd0
1 zmienionych plików z 0 dodań i 3 usunięć

Wyświetl plik

@ -595,9 +595,6 @@ function defaults() {
if (count($args) > 3) {
throw new BadFunctionCallException('defaults() cannot use more than 3 parameters');
}
if (count($args) === 3 && !is_array($args[0])) {
throw new BadFunctionCallException('defaults($arr, $key, $def) requires an array as first parameter');
}
if (count($args) === 3 && is_null($args[1])) {
throw new BadFunctionCallException('defaults($arr, $key, $def) $key is null');
}