php-src/ext/spl/php_spl.stub.php
Máté Kocsis 6ba24e9615
Improve a few parameter names in ext/spl
Use the same names which are used by zend functions.
2020-08-03 00:45:12 +02:00

36 lines
1.2 KiB
PHP
Executable file

<?php
/** @generate-function-entries */
/** @param object|string $object_or_class */
function class_implements($object_or_class, bool $autoload = true): array|false {}
/** @param object|string $object_or_class */
function class_parents($object_or_class, bool $autoload = true): array|false {}
/** @param object|string $object_or_class */
function class_uses($object_or_class, bool $autoload = true): array|false {}
function spl_autoload(string $class, ?string $file_extensions = null): void {}
function spl_autoload_call(string $class): void {}
function spl_autoload_extensions(?string $file_extensions = null): string {}
function spl_autoload_functions(): array {}
function spl_autoload_register(?callable $autoload_function = null, bool $throw = true, bool $prepend = false): bool {}
function spl_autoload_unregister(callable $autoload_function): bool {}
function spl_classes(): array {}
function spl_object_hash(object $object): string {}
function spl_object_id(object $object): int {}
function iterator_apply(Traversable $iterator, callable $function, ?array $args = null): int {}
function iterator_count(Traversable $iterator): int {}
function iterator_to_array(Traversable $iterator, bool $use_keys = true): array {}