diff options
Diffstat (limited to 'ext/standard/basic_functions.stub.php')
-rwxr-xr-x | ext/standard/basic_functions.stub.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.stub.php b/ext/standard/basic_functions.stub.php index 7fbb4b0960..31161cdf03 100755 --- a/ext/standard/basic_functions.stub.php +++ b/ext/standard/basic_functions.stub.php @@ -1337,7 +1337,7 @@ function gettype(mixed $var): string {} function get_debug_type(mixed $var): string {} -function settype(&$var, string $type): bool {} +function settype(mixed &$var, string $type): bool {} function intval(mixed $value, int $base = 10): int {} @@ -1379,6 +1379,7 @@ function is_object(mixed $value): bool {} function is_scalar(mixed $value): bool {} +/** @param string $callable_name */ function is_callable(mixed $value, bool $syntax_only = false, &$callable_name = null): bool {} function is_iterable(mixed $value): bool {} |