From cdfeaaabdd0459dcb922b87eda4dff11d6a02988 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 30 Nov 2024 19:05:55 +0100 Subject: [PATCH 1/7] Normalize callmap --- dictionaries/CallMap.php | 100001 +++++++++++++++++++++---- dictionaries/CallMap_71_delta.php | 327 +- dictionaries/CallMap_72_delta.php | 1523 +- dictionaries/CallMap_73_delta.php | 651 +- dictionaries/CallMap_74_delta.php | 403 +- dictionaries/CallMap_80_delta.php | 15027 +++- dictionaries/CallMap_81_delta.php | 6537 +- dictionaries/CallMap_82_delta.php | 363 +- dictionaries/CallMap_83_delta.php | 650 +- dictionaries/CallMap_historical.php | 99174 ++++++++++++++++++++---- 10 files changed, 188147 insertions(+), 36509 deletions(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index 48e23a2c603..a630d46218b 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -1,15817 +1,84188 @@ ' => [', ''=>''] - * alternative signature for the same function - * '' => [', ''=>''] - * - * A '&' in front of the means the arg is always passed by reference. - * (i.e. ReflectionParameter->isPassedByReference()) - * This was previously only used in cases where the function actually created the - * variable in the local scope. - * Some reference arguments will have prefixes in to indicate the way the argument is used. - * Currently, the only prefixes with meaning are 'rw_' (read-write) and 'w_' (write). - * Those prefixes don't mean anything for non-references. - * Code using these signatures should remove those prefixes from messages rendered to the user. - * 1. '&rw_' indicates that a parameter with a value is expected to be passed in, and may be modified. - * Phan will warn if the variable has an incompatible type, or is undefined. - * 2. '&w_' indicates that a parameter is expected to be passed in, and the value will be ignored, and may be overwritten. - * 3. The absence of a prefix is treated by Phan the same way as having the prefix 'w_' (Some may be changed to 'rw_name'). These will have prefixes added later. - * - * So, for functions like sort() where technically the arg is by-ref, - * indicate the reference param's signature by-ref and read-write, - * as `'&rw_array'=>'array'` - * so that Phan won't create it in the local scope - * - * However, for a function like preg_match() where the 3rd arg is an array of sub-pattern matches (and optional), - * this arg needs to be marked as by-ref and write-only, as `'&w_matches='=>'array'`. - * - * A '=' following the indicates this arg is optional. - * - * The can begin with '...' to indicate the arg is variadic. - * '...args=' indicates it is both variadic and optional. - * - * Some reference arguments will have prefixes in to indicate the way the argument is used. - * Currently, the only prefixes with meaning are 'rw_' and 'w_'. - * Code using these signatures should remove those prefixes from messages rendered to the user. - * 1. '&rw_name' indicates that a parameter with a value is expected to be passed in, and may be modified. - * 2. '&w_name' indicates that a parameter is expected to be passed in, and the value will be ignored, and may be overwritten. - * - * This file contains the signatures for the most recent minor release of PHP supported by phan (php 7.2) - * - * Changes: - * - * In Phan 0.12.3, - * - * - This started using array shapes for union types (array{...}). - * - * \Phan\Language\UnionType->withFlattenedArrayShapeOrLiteralTypeInstances() may be of help to programmatically convert these to array|array - * - * - This started using array shapes with optional fields for union types (array{key?:int}). - * A `?` after the array shape field's key indicates that the field is optional. - * - * - This started adding param signatures and return signatures to `callable` types. - * E.g. 'usort' => ['bool', '&rw_array_arg'=>'array', 'cmp_function'=>'callable(mixed,mixed):int']. - * See NEWS.md for 0.12.3 for possible syntax. A suffix of `=` within `callable(...)` means that a parameter is optional. - * - * (Phan assumes that callbacks with optional arguments can be cast to callbacks with/without those args (Similar to inheritance checks) - * (e.g. callable(T1,T2=) can be cast to callable(T1) or callable(T1,T2), in the same way that a subclass would check). - * For some signatures, e.g. set_error_handler, this results in repetition, because callable(T1=) can't cast to callable(T1). - * - * Sources of stub info: - * - * 1. Reflection - * 2. docs.php.net's SVN repo or website, and examples (See internal/internalsignatures.php) - * - * See https://secure.php.net/manual/en/copyright.php - * - * The PHP manual text and comments are covered by the [Creative Commons Attribution 3.0 License](http://creativecommons.org/licenses/by/3.0/legalcode), - * copyright (c) the PHP Documentation Group - * 3. Various websites documenting individual extensions - * 4. PHPStorm stubs (For anything missing from the above sources) - * See internal/internalsignatures.php - * - * Available from https://github.com/JetBrains/phpstorm-stubs under the [Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0) - * - * @phan-file-suppress PhanPluginMixedKeyNoKey (read by Phan when analyzing this file) - * - * Note: Some of Phan's inferences about return types are written as plugins for functions/methods where the return type depends on the parameter types. - * E.g. src/Phan/Plugin/Internal/DependentReturnTypeOverridePlugin.php is one plugin - */ -return [ -'_' => ['string', 'message'=>'string'], -'__halt_compiler' => ['void'], -'abs' => ['0|positive-int', 'num'=>'int'], -'abs\'1' => ['float', 'num'=>'float'], -'abs\'2' => ['numeric', 'num'=>'numeric'], -'accelerator_get_configuration' => ['array'], -'accelerator_get_scripts' => ['array'], -'accelerator_get_status' => ['array', 'fetch_scripts'=>'bool'], -'accelerator_reset' => [''], -'accelerator_set_status' => ['void', 'status'=>'bool'], -'acos' => ['float', 'num'=>'float'], -'acosh' => ['float', 'num'=>'float'], -'addcslashes' => ['string', 'string'=>'string', 'characters'=>'string'], -'addslashes' => ['string', 'string'=>'string'], -'AMQPBasicProperties::__construct' => ['void', 'content_type='=>'string', 'content_encoding='=>'string', 'headers='=>'array', 'delivery_mode='=>'int', 'priority='=>'int', 'correlation_id='=>'string', 'reply_to='=>'string', 'expiration='=>'string', 'message_id='=>'string', 'timestamp='=>'int', 'type='=>'string', 'user_id='=>'string', 'app_id='=>'string', 'cluster_id='=>'string'], -'AMQPBasicProperties::getAppId' => ['string'], -'AMQPBasicProperties::getClusterId' => ['string'], -'AMQPBasicProperties::getContentEncoding' => ['string'], -'AMQPBasicProperties::getContentType' => ['string'], -'AMQPBasicProperties::getCorrelationId' => ['string'], -'AMQPBasicProperties::getDeliveryMode' => ['int'], -'AMQPBasicProperties::getExpiration' => ['string'], -'AMQPBasicProperties::getHeaders' => ['array'], -'AMQPBasicProperties::getMessageId' => ['string'], -'AMQPBasicProperties::getPriority' => ['int'], -'AMQPBasicProperties::getReplyTo' => ['string'], -'AMQPBasicProperties::getTimestamp' => ['string'], -'AMQPBasicProperties::getType' => ['string'], -'AMQPBasicProperties::getUserId' => ['string'], -'AMQPChannel::__construct' => ['void', 'amqp_connection'=>'AMQPConnection'], -'AMQPChannel::basicRecover' => ['', 'requeue='=>'bool'], -'AMQPChannel::close' => [''], -'AMQPChannel::commitTransaction' => ['bool'], -'AMQPChannel::confirmSelect' => [''], -'AMQPChannel::getChannelId' => ['int'], -'AMQPChannel::getConnection' => ['AMQPConnection'], -'AMQPChannel::getConsumers' => ['AMQPQueue[]'], -'AMQPChannel::getPrefetchCount' => ['int'], -'AMQPChannel::getPrefetchSize' => ['int'], -'AMQPChannel::isConnected' => ['bool'], -'AMQPChannel::qos' => ['bool', 'size'=>'int', 'count'=>'int'], -'AMQPChannel::rollbackTransaction' => ['bool'], -'AMQPChannel::setConfirmCallback' => ['', 'ack_callback='=>'?callable', 'nack_callback='=>'?callable'], -'AMQPChannel::setPrefetchCount' => ['bool', 'count'=>'int'], -'AMQPChannel::setPrefetchSize' => ['bool', 'size'=>'int'], -'AMQPChannel::setReturnCallback' => ['', 'return_callback='=>'?callable'], -'AMQPChannel::startTransaction' => ['bool'], -'AMQPChannel::waitForBasicReturn' => ['', 'timeout='=>'float'], -'AMQPChannel::waitForConfirm' => ['', 'timeout='=>'float'], -'AMQPConnection::__construct' => ['void', 'credentials='=>'array'], -'AMQPConnection::connect' => ['bool'], -'AMQPConnection::disconnect' => ['bool'], -'AMQPConnection::getCACert' => ['string'], -'AMQPConnection::getCert' => ['string'], -'AMQPConnection::getHeartbeatInterval' => ['int'], -'AMQPConnection::getHost' => ['string'], -'AMQPConnection::getKey' => ['string'], -'AMQPConnection::getLogin' => ['string'], -'AMQPConnection::getMaxChannels' => ['?int'], -'AMQPConnection::getMaxFrameSize' => ['int'], -'AMQPConnection::getPassword' => ['string'], -'AMQPConnection::getPort' => ['int'], -'AMQPConnection::getReadTimeout' => ['float'], -'AMQPConnection::getTimeout' => ['float'], -'AMQPConnection::getUsedChannels' => ['int'], -'AMQPConnection::getVerify' => ['bool'], -'AMQPConnection::getVhost' => ['string'], -'AMQPConnection::getWriteTimeout' => ['float'], -'AMQPConnection::isConnected' => ['bool'], -'AMQPConnection::isPersistent' => ['?bool'], -'AMQPConnection::pconnect' => ['bool'], -'AMQPConnection::pdisconnect' => ['bool'], -'AMQPConnection::preconnect' => ['bool'], -'AMQPConnection::reconnect' => ['bool'], -'AMQPConnection::setCACert' => ['', 'cacert'=>'string'], -'AMQPConnection::setCert' => ['', 'cert'=>'string'], -'AMQPConnection::setHost' => ['bool', 'host'=>'string'], -'AMQPConnection::setKey' => ['', 'key'=>'string'], -'AMQPConnection::setLogin' => ['bool', 'login'=>'string'], -'AMQPConnection::setPassword' => ['bool', 'password'=>'string'], -'AMQPConnection::setPort' => ['bool', 'port'=>'int'], -'AMQPConnection::setReadTimeout' => ['bool', 'timeout'=>'int'], -'AMQPConnection::setTimeout' => ['bool', 'timeout'=>'int'], -'AMQPConnection::setVerify' => ['', 'verify'=>'bool'], -'AMQPConnection::setVhost' => ['bool', 'vhost'=>'string'], -'AMQPConnection::setWriteTimeout' => ['bool', 'timeout'=>'int'], -'AMQPDecimal::__construct' => ['void', 'exponent'=>'', 'significand'=>''], -'AMQPDecimal::getExponent' => ['int'], -'AMQPDecimal::getSignificand' => ['int'], -'AMQPEnvelope::__construct' => ['void'], -'AMQPEnvelope::getAppId' => ['string'], -'AMQPEnvelope::getBody' => ['string'], -'AMQPEnvelope::getClusterId' => ['string'], -'AMQPEnvelope::getConsumerTag' => ['string'], -'AMQPEnvelope::getContentEncoding' => ['string'], -'AMQPEnvelope::getContentType' => ['string'], -'AMQPEnvelope::getCorrelationId' => ['string'], -'AMQPEnvelope::getDeliveryMode' => ['int'], -'AMQPEnvelope::getDeliveryTag' => ['string'], -'AMQPEnvelope::getExchangeName' => ['string'], -'AMQPEnvelope::getExpiration' => ['string'], -'AMQPEnvelope::getHeader' => ['string|false', 'header_key'=>'string'], -'AMQPEnvelope::getHeaders' => ['array'], -'AMQPEnvelope::getMessageId' => ['string'], -'AMQPEnvelope::getPriority' => ['int'], -'AMQPEnvelope::getReplyTo' => ['string'], -'AMQPEnvelope::getRoutingKey' => ['string'], -'AMQPEnvelope::getTimeStamp' => ['string'], -'AMQPEnvelope::getType' => ['string'], -'AMQPEnvelope::getUserId' => ['string'], -'AMQPEnvelope::hasHeader' => ['bool', 'header_key'=>'string'], -'AMQPEnvelope::isRedelivery' => ['bool'], -'AMQPExchange::__construct' => ['void', 'amqp_channel'=>'AMQPChannel'], -'AMQPExchange::bind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], -'AMQPExchange::declareExchange' => ['bool'], -'AMQPExchange::delete' => ['bool', 'exchangeName='=>'string', 'flags='=>'int'], -'AMQPExchange::getArgument' => ['int|string|false', 'key'=>'string'], -'AMQPExchange::getArguments' => ['array'], -'AMQPExchange::getChannel' => ['AMQPChannel'], -'AMQPExchange::getConnection' => ['AMQPConnection'], -'AMQPExchange::getFlags' => ['int'], -'AMQPExchange::getName' => ['string'], -'AMQPExchange::getType' => ['string'], -'AMQPExchange::hasArgument' => ['bool', 'key'=>'string'], -'AMQPExchange::publish' => ['bool', 'message'=>'string', 'routing_key='=>'string', 'flags='=>'int', 'attributes='=>'array'], -'AMQPExchange::setArgument' => ['bool', 'key'=>'string', 'value'=>'int|string'], -'AMQPExchange::setArguments' => ['bool', 'arguments'=>'array'], -'AMQPExchange::setFlags' => ['bool', 'flags'=>'int'], -'AMQPExchange::setName' => ['bool', 'exchange_name'=>'string'], -'AMQPExchange::setType' => ['bool', 'exchange_type'=>'string'], -'AMQPExchange::unbind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], -'AMQPQueue::__construct' => ['void', 'amqp_channel'=>'AMQPChannel'], -'AMQPQueue::ack' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], -'AMQPQueue::bind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], -'AMQPQueue::cancel' => ['bool', 'consumer_tag='=>'string'], -'AMQPQueue::consume' => ['void', 'callback='=>'?callable', 'flags='=>'int', 'consumerTag='=>'string'], -'AMQPQueue::declareQueue' => ['int'], -'AMQPQueue::delete' => ['int', 'flags='=>'int'], -'AMQPQueue::get' => ['AMQPEnvelope|false', 'flags='=>'int'], -'AMQPQueue::getArgument' => ['int|string|false', 'key'=>'string'], -'AMQPQueue::getArguments' => ['array'], -'AMQPQueue::getChannel' => ['AMQPChannel'], -'AMQPQueue::getConnection' => ['AMQPConnection'], -'AMQPQueue::getConsumerTag' => ['?string'], -'AMQPQueue::getFlags' => ['int'], -'AMQPQueue::getName' => ['string'], -'AMQPQueue::hasArgument' => ['bool', 'key'=>'string'], -'AMQPQueue::nack' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], -'AMQPQueue::purge' => ['bool'], -'AMQPQueue::reject' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], -'AMQPQueue::setArgument' => ['bool', 'key'=>'string', 'value'=>'mixed'], -'AMQPQueue::setArguments' => ['bool', 'arguments'=>'array'], -'AMQPQueue::setFlags' => ['bool', 'flags'=>'int'], -'AMQPQueue::setName' => ['bool', 'queue_name'=>'string'], -'AMQPQueue::unbind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], -'AMQPTimestamp::__construct' => ['void', 'timestamp'=>'string'], -'AMQPTimestamp::__toString' => ['string'], -'AMQPTimestamp::getTimestamp' => ['string'], -'apache_child_terminate' => ['bool'], -'apache_get_modules' => ['array'], -'apache_get_version' => ['string|false'], -'apache_getenv' => ['string|false', 'variable'=>'string', 'walk_to_top='=>'bool'], -'apache_lookup_uri' => ['object', 'filename'=>'string'], -'apache_note' => ['string|false', 'note_name'=>'string', 'note_value='=>'string'], -'apache_request_headers' => ['array|false'], -'apache_reset_timeout' => ['bool'], -'apache_response_headers' => ['array|false'], -'apache_setenv' => ['bool', 'variable'=>'string', 'value'=>'string', 'walk_to_top='=>'bool'], -'apc_add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'ttl='=>'int'], -'apc_add\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'apc_bin_dump' => ['string|false|null', 'files='=>'array', 'user_vars='=>'array'], -'apc_bin_dumpfile' => ['int|false', 'files'=>'array', 'user_vars'=>'array', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], -'apc_bin_load' => ['bool', 'data'=>'string', 'flags='=>'int'], -'apc_bin_loadfile' => ['bool', 'filename'=>'string', 'context='=>'resource', 'flags='=>'int'], -'apc_cache_info' => ['array|false', 'cache_type='=>'string', 'limited='=>'bool'], -'apc_cas' => ['bool', 'key'=>'string', 'old'=>'int', 'new'=>'int'], -'apc_clear_cache' => ['bool', 'cache_type='=>'string'], -'apc_compile_file' => ['bool', 'filename'=>'string', 'atomic='=>'bool'], -'apc_dec' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool'], -'apc_define_constants' => ['bool', 'key'=>'string', 'constants'=>'array', 'case_sensitive='=>'bool'], -'apc_delete' => ['bool', 'key'=>'string|string[]|APCIterator'], -'apc_delete_file' => ['bool|string[]', 'keys'=>'mixed'], -'apc_exists' => ['bool', 'keys'=>'string'], -'apc_exists\'1' => ['array', 'keys'=>'string[]'], -'apc_fetch' => ['mixed|false', 'key'=>'string', '&w_success='=>'bool'], -'apc_fetch\'1' => ['array|false', 'key'=>'string[]', '&w_success='=>'bool'], -'apc_inc' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool'], -'apc_load_constants' => ['bool', 'key'=>'string', 'case_sensitive='=>'bool'], -'apc_sma_info' => ['array|false', 'limited='=>'bool'], -'apc_store' => ['bool', 'key'=>'string', 'var'=>'', 'ttl='=>'int'], -'apc_store\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'APCIterator::__construct' => ['void', 'cache'=>'string', 'search='=>'null|string|string[]', 'format='=>'int', 'chunk_size='=>'int', 'list='=>'int'], -'APCIterator::current' => ['mixed|false'], -'APCIterator::getTotalCount' => ['int|false'], -'APCIterator::getTotalHits' => ['int|false'], -'APCIterator::getTotalSize' => ['int|false'], -'APCIterator::key' => ['string'], -'APCIterator::next' => ['void'], -'APCIterator::rewind' => ['void'], -'APCIterator::valid' => ['bool'], -'apcu_add' => ['bool', 'key'=>'string', 'var'=>'', 'ttl='=>'int'], -'apcu_add\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'apcu_cache_info' => ['array|false', 'limited='=>'bool'], -'apcu_cas' => ['bool', 'key'=>'string', 'old'=>'int', 'new'=>'int'], -'apcu_clear_cache' => ['bool'], -'apcu_dec' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool', 'ttl='=>'int'], -'apcu_delete' => ['bool', 'key'=>'string|APCuIterator'], -'apcu_delete\'1' => ['list', 'key'=>'string[]'], -'apcu_enabled' => ['bool'], -'apcu_entry' => ['mixed', 'key'=>'string', 'generator'=>'callable(string):mixed', 'ttl='=>'int'], -'apcu_exists' => ['bool', 'keys'=>'string'], -'apcu_exists\'1' => ['array', 'keys'=>'string[]'], -'apcu_fetch' => ['mixed|false', 'key'=>'string', '&w_success='=>'bool'], -'apcu_fetch\'1' => ['array|false', 'key'=>'string[]', '&w_success='=>'bool'], -'apcu_inc' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool', 'ttl='=>'int'], -'apcu_key_info' => ['?array', 'key'=>'string'], -'apcu_sma_info' => ['array|false', 'limited='=>'bool'], -'apcu_store' => ['bool', 'key'=>'string', 'var='=>'', 'ttl='=>'int'], -'apcu_store\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'APCuIterator::__construct' => ['void', 'search='=>'string|string[]|null', 'format='=>'int', 'chunk_size='=>'int', 'list='=>'int'], -'APCuIterator::current' => ['mixed'], -'APCuIterator::getTotalCount' => ['int'], -'APCuIterator::getTotalHits' => ['int'], -'APCuIterator::getTotalSize' => ['int'], -'APCuIterator::key' => ['string'], -'APCuIterator::next' => ['void'], -'APCuIterator::rewind' => ['void'], -'APCuIterator::valid' => ['bool'], -'apd_breakpoint' => ['bool', 'debug_level'=>'int'], -'apd_callstack' => ['array'], -'apd_clunk' => ['void', 'warning'=>'string', 'delimiter='=>'string'], -'apd_continue' => ['bool', 'debug_level'=>'int'], -'apd_croak' => ['void', 'warning'=>'string', 'delimiter='=>'string'], -'apd_dump_function_table' => ['void'], -'apd_dump_persistent_resources' => ['array'], -'apd_dump_regular_resources' => ['array'], -'apd_echo' => ['bool', 'output'=>'string'], -'apd_get_active_symbols' => ['array'], -'apd_set_pprof_trace' => ['string', 'dump_directory='=>'string', 'fragment='=>'string'], -'apd_set_session' => ['void', 'debug_level'=>'int'], -'apd_set_session_trace' => ['void', 'debug_level'=>'int', 'dump_directory='=>'string'], -'apd_set_session_trace_socket' => ['bool', 'tcp_server'=>'string', 'socket_type'=>'int', 'port'=>'int', 'debug_level'=>'int'], -'AppendIterator::__construct' => ['void'], -'AppendIterator::append' => ['void', 'iterator'=>'Iterator'], -'AppendIterator::current' => ['mixed'], -'AppendIterator::getArrayIterator' => ['ArrayIterator'], -'AppendIterator::getInnerIterator' => ['Iterator'], -'AppendIterator::getIteratorIndex' => ['int'], -'AppendIterator::key' => ['int|string|float|bool'], -'AppendIterator::next' => ['void'], -'AppendIterator::rewind' => ['void'], -'AppendIterator::valid' => ['bool'], -'ArgumentCountError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'ArgumentCountError::__toString' => ['string'], -'ArgumentCountError::__wakeup' => ['void'], -'ArgumentCountError::getCode' => ['int'], -'ArgumentCountError::getFile' => ['string'], -'ArgumentCountError::getLine' => ['int'], -'ArgumentCountError::getMessage' => ['string'], -'ArgumentCountError::getPrevious' => ['?Throwable'], -'ArgumentCountError::getTrace' => ['list\',args?:array}>'], -'ArgumentCountError::getTraceAsString' => ['string'], -'ArithmeticError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'ArithmeticError::__toString' => ['string'], -'ArithmeticError::__wakeup' => ['void'], -'ArithmeticError::getCode' => ['int'], -'ArithmeticError::getFile' => ['string'], -'ArithmeticError::getLine' => ['int'], -'ArithmeticError::getMessage' => ['string'], -'ArithmeticError::getPrevious' => ['?Throwable'], -'ArithmeticError::getTrace' => ['list\',args?:array}>'], -'ArithmeticError::getTraceAsString' => ['string'], -'array_change_key_case' => ['array', 'array'=>'array', 'case='=>'int'], -'array_chunk' => ['list', 'array'=>'array', 'length'=>'int', 'preserve_keys='=>'bool'], -'array_column' => ['array', 'array'=>'array', 'column_key'=>'int|string|null', 'index_key='=>'int|string|null'], -'array_combine' => ['array', 'keys'=>'string[]|int[]', 'values'=>'array'], -'array_count_values' => ['array', 'array'=>'array'], -'array_diff' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_diff_assoc' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_diff_key' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_diff_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int'], -'array_diff_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_diff_ukey' => ['array', 'array'=>'array', 'rest'=>'array', 'key_comp_func'=>'callable(mixed,mixed):int'], -'array_diff_ukey\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_fill' => ['array', 'start_index'=>'int', 'count'=>'int', 'value'=>'mixed'], -'array_fill_keys' => ['array', 'keys'=>'array', 'value'=>'mixed'], -'array_filter' => ['array', 'array'=>'array', 'callback='=>'callable(mixed,array-key=):mixed|null', 'mode='=>'int'], -'array_flip' => ['array', 'array'=>'array'], -'array_intersect' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_intersect_assoc' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_intersect_key' => ['array', 'array'=>'array', '...arrays='=>'array'], -'array_intersect_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'key_compare_func'=>'callable(mixed,mixed):int'], -'array_intersect_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest'=>'array|callable(mixed,mixed):int'], -'array_intersect_ukey' => ['array', 'array'=>'array', 'rest'=>'array', 'key_compare_func'=>'callable(mixed,mixed):int'], -'array_intersect_ukey\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest'=>'array|callable(mixed,mixed):int'], -'array_is_list' => ['bool', 'array'=>'array'], -'array_key_exists' => ['bool', 'key'=>'string|int', 'array'=>'array'], -'array_key_first' => ['int|string|null', 'array'=>'array'], -'array_key_last' => ['int|string|null', 'array'=>'array'], -'array_keys' => ['list', 'array'=>'array', 'filter_value='=>'mixed', 'strict='=>'bool'], -'array_map' => ['array', 'callback'=>'?callable', 'array'=>'array', '...arrays='=>'array'], -'array_merge' => ['array', '...arrays='=>'array'], -'array_merge_recursive' => ['array', '...arrays='=>'array'], -'array_multisort' => ['bool', '&rw_array'=>'array', 'rest='=>'array|int', 'array1_sort_flags='=>'array|int', '...args='=>'array|int'], -'array_pad' => ['array', 'array'=>'array', 'length'=>'int', 'value'=>'mixed'], -'array_pop' => ['mixed', '&rw_array'=>'array'], -'array_product' => ['int|float', 'array'=>'array'], -'array_push' => ['int', '&rw_array'=>'array', '...values='=>'mixed'], -'array_rand' => ['int|string|array|array', 'array'=>'non-empty-array', 'num'=>'int'], -'array_rand\'1' => ['int|string', 'array'=>'array'], -'array_reduce' => ['mixed', 'array'=>'array', 'callback'=>'callable(mixed,mixed):mixed', 'initial='=>'mixed'], -'array_replace' => ['array', 'array'=>'array', '...replacements='=>'array'], -'array_replace_recursive' => ['array', 'array'=>'array', '...replacements='=>'array'], -'array_reverse' => ['array', 'array'=>'array', 'preserve_keys='=>'bool'], -'array_search' => ['int|string|false', 'needle'=>'mixed', 'haystack'=>'array', 'strict='=>'bool'], -'array_shift' => ['mixed|null', '&rw_array'=>'array'], -'array_slice' => ['array', 'array'=>'array', 'offset'=>'int', 'length='=>'?int', 'preserve_keys='=>'bool'], -'array_splice' => ['array', '&rw_array'=>'array', 'offset'=>'int', 'length='=>'?int', 'replacement='=>'array|string'], -'array_sum' => ['int|float', 'array'=>'array'], -'array_udiff' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int'], -'array_udiff\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_udiff_assoc' => ['array', 'array'=>'array', 'rest'=>'array', 'key_comp_func'=>'callable(mixed,mixed):int'], -'array_udiff_assoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_udiff_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int', 'key_comp_func'=>'callable(mixed,mixed):int'], -'array_udiff_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', 'arg5'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_uintersect' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int'], -'array_uintersect\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_uintersect_assoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int'], -'array_uintersect_assoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable', '...rest='=>'array|callable(mixed,mixed):int'], -'array_uintersect_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int', 'key_compare_func'=>'callable(mixed,mixed):int'], -'array_uintersect_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', 'arg5'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], -'array_unique' => ['array', 'array'=>'array', 'flags='=>'int'], -'array_unshift' => ['int', '&rw_array'=>'array', '...values='=>'mixed'], -'array_values' => ['list', 'array'=>'array'], -'array_walk' => ['bool', '&rw_array'=>'array', 'callback'=>'callable', 'arg='=>'mixed'], -'array_walk\'1' => ['bool', '&rw_array'=>'object', 'callback'=>'callable', 'arg='=>'mixed'], -'array_walk_recursive' => ['bool', '&rw_array'=>'array', 'callback'=>'callable', 'arg='=>'mixed'], -'array_walk_recursive\'1' => ['bool', '&rw_array'=>'object', 'callback'=>'callable', 'arg='=>'mixed'], -'ArrayAccess::offsetExists' => ['bool', 'offset'=>'int|string'], -'ArrayAccess::offsetGet' => ['mixed', 'offset'=>'int|string'], -'ArrayAccess::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'ArrayAccess::offsetUnset' => ['void', 'offset'=>'int|string'], -'ArrayIterator::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int'], -'ArrayIterator::append' => ['void', 'value'=>'mixed'], -'ArrayIterator::asort' => ['true', 'flags='=>'int'], -'ArrayIterator::count' => ['int'], -'ArrayIterator::current' => ['mixed'], -'ArrayIterator::getArrayCopy' => ['array'], -'ArrayIterator::getFlags' => ['int'], -'ArrayIterator::key' => ['int|string|null'], -'ArrayIterator::ksort' => ['true', 'flags='=>'int'], -'ArrayIterator::natcasesort' => ['true'], -'ArrayIterator::natsort' => ['true'], -'ArrayIterator::next' => ['void'], -'ArrayIterator::offsetExists' => ['bool', 'key'=>'string|int'], -'ArrayIterator::offsetGet' => ['mixed', 'key'=>'string|int'], -'ArrayIterator::offsetSet' => ['void', 'key'=>'string|int|null', 'value'=>'mixed'], -'ArrayIterator::offsetUnset' => ['void', 'key'=>'string|int'], -'ArrayIterator::rewind' => ['void'], -'ArrayIterator::seek' => ['void', 'offset'=>'int'], -'ArrayIterator::serialize' => ['string'], -'ArrayIterator::setFlags' => ['void', 'flags'=>'int'], -'ArrayIterator::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'ArrayIterator::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'ArrayIterator::unserialize' => ['void', 'data'=>'string'], -'ArrayIterator::valid' => ['bool'], -'ArrayObject::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int', 'iteratorClass='=>'class-string'], -'ArrayObject::append' => ['void', 'value'=>'mixed'], -'ArrayObject::asort' => ['true', 'flags='=>'int'], -'ArrayObject::count' => ['int'], -'ArrayObject::exchangeArray' => ['array', 'array'=>'array|object'], -'ArrayObject::getArrayCopy' => ['array'], -'ArrayObject::getFlags' => ['int'], -'ArrayObject::getIterator' => ['ArrayIterator'], -'ArrayObject::getIteratorClass' => ['string'], -'ArrayObject::ksort' => ['true', 'flags='=>'int'], -'ArrayObject::natcasesort' => ['true'], -'ArrayObject::natsort' => ['true'], -'ArrayObject::offsetExists' => ['bool', 'key'=>'int|string'], -'ArrayObject::offsetGet' => ['mixed|null', 'key'=>'int|string'], -'ArrayObject::offsetSet' => ['void', 'key'=>'int|string|null', 'value'=>'mixed'], -'ArrayObject::offsetUnset' => ['void', 'key'=>'int|string'], -'ArrayObject::serialize' => ['string'], -'ArrayObject::setFlags' => ['void', 'flags'=>'int'], -'ArrayObject::setIteratorClass' => ['void', 'iteratorClass'=>'class-string'], -'ArrayObject::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'ArrayObject::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'ArrayObject::unserialize' => ['void', 'data'=>'string'], -'arsort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'asin' => ['float', 'num'=>'float'], -'asinh' => ['float', 'num'=>'float'], -'asort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'assert' => ['bool', 'assertion'=>'string|bool|int', 'description='=>'string|Throwable|null'], -'assert_options' => ['mixed|false', 'option'=>'int', 'value='=>'mixed'], -'ast\get_kind_name' => ['string', 'kind'=>'int'], -'ast\get_metadata' => ['array'], -'ast\get_supported_versions' => ['array', 'exclude_deprecated='=>'bool'], -'ast\kind_uses_flags' => ['bool', 'kind'=>'int'], -'ast\Node::__construct' => ['void', 'kind='=>'int', 'flags='=>'int', 'children='=>'ast\Node\Decl[]|ast\Node[]|int[]|string[]|float[]|bool[]|null[]', 'start_line='=>'int'], -'ast\parse_code' => ['ast\Node', 'code'=>'string', 'version'=>'int', 'filename='=>'string'], -'ast\parse_file' => ['ast\Node', 'filename'=>'string', 'version'=>'int'], -'atan' => ['float', 'num'=>'float'], -'atan2' => ['float', 'y'=>'float', 'x'=>'float'], -'atanh' => ['float', 'num'=>'float'], -'BadFunctionCallException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'BadFunctionCallException::__toString' => ['string'], -'BadFunctionCallException::getCode' => ['int'], -'BadFunctionCallException::getFile' => ['string'], -'BadFunctionCallException::getLine' => ['int'], -'BadFunctionCallException::getMessage' => ['string'], -'BadFunctionCallException::getPrevious' => ['?Throwable'], -'BadFunctionCallException::getTrace' => ['list\',args?:array}>'], -'BadFunctionCallException::getTraceAsString' => ['string'], -'BadMethodCallException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'BadMethodCallException::__toString' => ['string'], -'BadMethodCallException::getCode' => ['int'], -'BadMethodCallException::getFile' => ['string'], -'BadMethodCallException::getLine' => ['int'], -'BadMethodCallException::getMessage' => ['string'], -'BadMethodCallException::getPrevious' => ['?Throwable'], -'BadMethodCallException::getTrace' => ['list\',args?:array}>'], -'BadMethodCallException::getTraceAsString' => ['string'], -'base64_decode' => ['string', 'string'=>'string', 'strict='=>'false'], -'base64_decode\'1' => ['string|false', 'string'=>'string', 'strict='=>'true'], -'base64_encode' => ['string', 'string'=>'string'], -'base_convert' => ['string', 'num'=>'string', 'from_base'=>'int', 'to_base'=>'int'], -'basename' => ['string', 'path'=>'string', 'suffix='=>'string'], -'bbcode_add_element' => ['bool', 'bbcode_container'=>'resource', 'tag_name'=>'string', 'tag_rules'=>'array'], -'bbcode_add_smiley' => ['bool', 'bbcode_container'=>'resource', 'smiley'=>'string', 'replace_by'=>'string'], -'bbcode_create' => ['resource', 'bbcode_initial_tags='=>'array'], -'bbcode_destroy' => ['bool', 'bbcode_container'=>'resource'], -'bbcode_parse' => ['string', 'bbcode_container'=>'resource', 'to_parse'=>'string'], -'bbcode_set_arg_parser' => ['bool', 'bbcode_container'=>'resource', 'bbcode_arg_parser'=>'resource'], -'bbcode_set_flags' => ['bool', 'bbcode_container'=>'resource', 'flags'=>'int', 'mode='=>'int'], -'bcadd' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bccomp' => ['int', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bcdiv' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bcmod' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bcmul' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bcompiler_load' => ['bool', 'filename'=>'string'], -'bcompiler_load_exe' => ['bool', 'filename'=>'string'], -'bcompiler_parse_class' => ['bool', 'class'=>'string', 'callback'=>'string'], -'bcompiler_read' => ['bool', 'filehandle'=>'resource'], -'bcompiler_write_class' => ['bool', 'filehandle'=>'resource', 'classname'=>'string', 'extends='=>'string'], -'bcompiler_write_constant' => ['bool', 'filehandle'=>'resource', 'constantname'=>'string'], -'bcompiler_write_exe_footer' => ['bool', 'filehandle'=>'resource', 'startpos'=>'int'], -'bcompiler_write_file' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], -'bcompiler_write_footer' => ['bool', 'filehandle'=>'resource'], -'bcompiler_write_function' => ['bool', 'filehandle'=>'resource', 'functionname'=>'string'], -'bcompiler_write_functions_from_file' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], -'bcompiler_write_header' => ['bool', 'filehandle'=>'resource', 'write_ver='=>'string'], -'bcompiler_write_included_filename' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], -'bcpow' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'scale='=>'int|null'], -'bcpowmod' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'modulus'=>'numeric-string', 'scale='=>'int|null'], -'bcscale' => ['int', 'scale='=>'int|null'], -'bcsqrt' => ['numeric-string', 'num'=>'numeric-string', 'scale='=>'int|null'], -'bcsub' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], -'bin2hex' => ['string', 'string'=>'string'], -'bind_textdomain_codeset' => ['string', 'domain'=>'string', 'codeset'=>'?string'], -'bindec' => ['float|int', 'binary_string'=>'string'], -'bindtextdomain' => ['string', 'domain'=>'string', 'directory'=>'?string'], -'birdstep_autocommit' => ['bool', 'index'=>'int'], -'birdstep_close' => ['bool', 'id'=>'int'], -'birdstep_commit' => ['bool', 'index'=>'int'], -'birdstep_connect' => ['int', 'server'=>'string', 'user'=>'string', 'pass'=>'string'], -'birdstep_exec' => ['int', 'index'=>'int', 'exec_str'=>'string'], -'birdstep_fetch' => ['bool', 'index'=>'int'], -'birdstep_fieldname' => ['string', 'index'=>'int', 'col'=>'int'], -'birdstep_fieldnum' => ['int', 'index'=>'int'], -'birdstep_freeresult' => ['bool', 'index'=>'int'], -'birdstep_off_autocommit' => ['bool', 'index'=>'int'], -'birdstep_result' => ['', 'index'=>'int', 'col'=>''], -'birdstep_rollback' => ['bool', 'index'=>'int'], -'blenc_encrypt' => ['string', 'plaintext'=>'string', 'encodedfile'=>'string', 'encryption_key='=>'string'], -'boolval' => ['bool', 'value'=>'mixed'], -'bson_decode' => ['array', 'bson'=>'string'], -'bson_encode' => ['string', 'anything'=>'mixed'], -'bzclose' => ['bool', 'bz'=>'resource'], -'bzcompress' => ['string|int', 'data'=>'string', 'block_size='=>'int', 'work_factor='=>'int'], -'bzdecompress' => ['string|int|false', 'data'=>'string', 'use_less_memory='=>'bool'], -'bzerrno' => ['int', 'bz'=>'resource'], -'bzerror' => ['array', 'bz'=>'resource'], -'bzerrstr' => ['string', 'bz'=>'resource'], -'bzflush' => ['bool', 'bz'=>'resource'], -'bzopen' => ['resource|false', 'file'=>'string|resource', 'mode'=>'string'], -'bzread' => ['string|false', 'bz'=>'resource', 'length='=>'int'], -'bzwrite' => ['int|false', 'bz'=>'resource', 'data'=>'string', 'length='=>'?int'], -'CachingIterator::__construct' => ['void', 'iterator'=>'Iterator', 'flags='=>''], -'CachingIterator::__toString' => ['string'], -'CachingIterator::count' => ['int'], -'CachingIterator::current' => ['mixed'], -'CachingIterator::getCache' => ['array'], -'CachingIterator::getFlags' => ['int'], -'CachingIterator::getInnerIterator' => ['Iterator'], -'CachingIterator::hasNext' => ['bool'], -'CachingIterator::key' => ['int|string|float|bool'], -'CachingIterator::next' => ['void'], -'CachingIterator::offsetExists' => ['bool', 'key'=>'string'], -'CachingIterator::offsetGet' => ['mixed', 'key'=>'string'], -'CachingIterator::offsetSet' => ['void', 'key'=>'string', 'value'=>'mixed'], -'CachingIterator::offsetUnset' => ['void', 'key'=>'string'], -'CachingIterator::rewind' => ['void'], -'CachingIterator::setFlags' => ['void', 'flags'=>'int'], -'CachingIterator::valid' => ['bool'], -'cal_days_in_month' => ['int', 'calendar'=>'int', 'month'=>'int', 'year'=>'int'], -'cal_from_jd' => ['array{date:string,month:int,day:int,year:int,dow:int,abbrevdayname:string,dayname:string,abbrevmonth:string,monthname:string}', 'julian_day'=>'int', 'calendar'=>'int'], -'cal_info' => ['array', 'calendar='=>'int'], -'cal_to_jd' => ['int', 'calendar'=>'int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'calcul_hmac' => ['string', 'clent'=>'string', 'siretcode'=>'string', 'price'=>'string', 'reference'=>'string', 'validity'=>'string', 'taxation'=>'string', 'devise'=>'string', 'language'=>'string'], -'calculhmac' => ['string', 'clent'=>'string', 'data'=>'string'], -'call_user_func' => ['mixed|false', 'callback'=>'callable', '...args='=>'mixed'], -'call_user_func_array' => ['mixed|false', 'callback'=>'callable', 'args'=>'list'], -'call_user_method' => ['mixed', 'method_name'=>'string', 'object'=>'object', 'parameter='=>'mixed', '...args='=>'mixed'], -'call_user_method_array' => ['mixed', 'method_name'=>'string', 'object'=>'object', 'params'=>'list'], -'CallbackFilterIterator::__construct' => ['void', 'iterator'=>'Iterator', 'callback'=>'callable(mixed,mixed=,mixed=):bool'], -'CallbackFilterIterator::accept' => ['bool'], -'CallbackFilterIterator::current' => ['mixed'], -'CallbackFilterIterator::getInnerIterator' => ['Iterator'], -'CallbackFilterIterator::key' => ['mixed'], -'CallbackFilterIterator::next' => ['void'], -'CallbackFilterIterator::rewind' => ['void'], -'CallbackFilterIterator::valid' => ['bool'], -'ceil' => ['float', 'num'=>'float|int'], -'chdb::__construct' => ['void', 'pathname'=>'string'], -'chdb::get' => ['string', 'key'=>'string'], -'chdb_create' => ['bool', 'pathname'=>'string', 'data'=>'array'], -'chdir' => ['bool', 'directory'=>'string'], -'checkdate' => ['bool', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'checkdnsrr' => ['bool', 'hostname'=>'string', 'type='=>'string'], -'chgrp' => ['bool', 'filename'=>'string', 'group'=>'string|int'], -'chmod' => ['bool', 'filename'=>'string', 'permissions'=>'int'], -'chop' => ['string', 'string'=>'string', 'characters='=>'string'], -'chown' => ['bool', 'filename'=>'string', 'user'=>'string|int'], -'chr' => ['non-empty-string', 'codepoint'=>'int'], -'chroot' => ['bool', 'directory'=>'string'], -'chunk_split' => ['string', 'string'=>'string', 'length='=>'int', 'separator='=>'string'], -'class_alias' => ['bool', 'class'=>'string', 'alias'=>'string', 'autoload='=>'bool'], -'class_exists' => ['bool', 'class'=>'string', 'autoload='=>'bool'], -'class_implements' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], -'class_parents' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], -'class_uses' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], -'classkit_import' => ['array', 'filename'=>'string'], -'classkit_method_add' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int'], -'classkit_method_copy' => ['bool', 'dclass'=>'string', 'dmethod'=>'string', 'sclass'=>'string', 'smethod='=>'string'], -'classkit_method_redefine' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int'], -'classkit_method_remove' => ['bool', 'classname'=>'string', 'methodname'=>'string'], -'classkit_method_rename' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'newname'=>'string'], -'classObj::__construct' => ['void', 'layer'=>'layerObj', 'class'=>'classObj'], -'classObj::addLabel' => ['int', 'label'=>'labelObj'], -'classObj::convertToString' => ['string'], -'classObj::createLegendIcon' => ['imageObj', 'width'=>'int', 'height'=>'int'], -'classObj::deletestyle' => ['int', 'index'=>'int'], -'classObj::drawLegendIcon' => ['int', 'width'=>'int', 'height'=>'int', 'im'=>'imageObj', 'dstX'=>'int', 'dstY'=>'int'], -'classObj::free' => ['void'], -'classObj::getExpressionString' => ['string'], -'classObj::getLabel' => ['labelObj', 'index'=>'int'], -'classObj::getMetaData' => ['int', 'name'=>'string'], -'classObj::getStyle' => ['styleObj', 'index'=>'int'], -'classObj::getTextString' => ['string'], -'classObj::movestyledown' => ['int', 'index'=>'int'], -'classObj::movestyleup' => ['int', 'index'=>'int'], -'classObj::ms_newClassObj' => ['classObj', 'layer'=>'layerObj', 'class'=>'classObj'], -'classObj::removeLabel' => ['labelObj', 'index'=>'int'], -'classObj::removeMetaData' => ['int', 'name'=>'string'], -'classObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'classObj::setExpression' => ['int', 'expression'=>'string'], -'classObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], -'classObj::settext' => ['int', 'text'=>'string'], -'classObj::updateFromString' => ['int', 'snippet'=>'string'], -'clearstatcache' => ['void', 'clear_realpath_cache='=>'bool', 'filename='=>'string'], -'cli_get_process_title' => ['?string'], -'cli_set_process_title' => ['bool', 'title'=>'string'], -'ClosedGeneratorException::__toString' => ['string'], -'ClosedGeneratorException::getCode' => ['int'], -'ClosedGeneratorException::getFile' => ['string'], -'ClosedGeneratorException::getLine' => ['int'], -'ClosedGeneratorException::getMessage' => ['string'], -'ClosedGeneratorException::getPrevious' => ['?Throwable'], -'ClosedGeneratorException::getTrace' => ['list\',args?:array}>'], -'ClosedGeneratorException::getTraceAsString' => ['string'], -'closedir' => ['void', 'dir_handle='=>'resource'], -'closelog' => ['true'], -'Closure::__construct' => ['void'], -'Closure::__invoke' => ['', '...args='=>''], -'Closure::bind' => ['?Closure', 'closure'=>'Closure', 'newThis'=>'?object', 'newScope='=>'object|string|null'], -'Closure::bindTo' => ['?Closure', 'newThis'=>'?object', 'newScope='=>'object|string|null'], -'Closure::call' => ['mixed', 'newThis'=>'object', '...args='=>'mixed'], -'Closure::fromCallable' => ['Closure', 'callback'=>'callable'], -'clusterObj::convertToString' => ['string'], -'clusterObj::getFilterString' => ['string'], -'clusterObj::getGroupString' => ['string'], -'clusterObj::setFilter' => ['int', 'expression'=>'string'], -'clusterObj::setGroup' => ['int', 'expression'=>'string'], -'Collator::__construct' => ['void', 'locale'=>'string'], -'Collator::asort' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], -'Collator::compare' => ['int|false', 'string1'=>'string', 'string2'=>'string'], -'Collator::create' => ['?Collator', 'locale'=>'string'], -'Collator::getAttribute' => ['int|false', 'attribute'=>'int'], -'Collator::getErrorCode' => ['int'], -'Collator::getErrorMessage' => ['string'], -'Collator::getLocale' => ['string', 'type'=>'int'], -'Collator::getSortKey' => ['string|false', 'string'=>'string'], -'Collator::getStrength' => ['int'], -'Collator::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'int'], -'Collator::setStrength' => ['bool', 'strength'=>'int'], -'Collator::sort' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], -'Collator::sortWithSortKeys' => ['bool', '&rw_array'=>'array'], -'collator_asort' => ['bool', 'object'=>'collator', '&rw_array'=>'array', 'flags='=>'int'], -'collator_compare' => ['int', 'object'=>'collator', 'string1'=>'string', 'string2'=>'string'], -'collator_create' => ['?Collator', 'locale'=>'string'], -'collator_get_attribute' => ['int|false', 'object'=>'collator', 'attribute'=>'int'], -'collator_get_error_code' => ['int', 'object'=>'collator'], -'collator_get_error_message' => ['string', 'object'=>'collator'], -'collator_get_locale' => ['string', 'object'=>'collator', 'type'=>'int'], -'collator_get_sort_key' => ['string', 'object'=>'collator', 'string'=>'string'], -'collator_get_strength' => ['int', 'object'=>'collator'], -'collator_set_attribute' => ['bool', 'object'=>'collator', 'attribute'=>'int', 'value'=>'int'], -'collator_set_strength' => ['bool', 'object'=>'collator', 'strength'=>'int'], -'collator_sort' => ['bool', 'object'=>'collator', '&rw_array'=>'array', 'flags='=>'int'], -'collator_sort_with_sort_keys' => ['bool', 'object'=>'collator', '&rw_array'=>'array'], -'Collectable::isGarbage' => ['bool'], -'Collectable::setGarbage' => ['void'], -'colorObj::setHex' => ['int', 'hex'=>'string'], -'colorObj::toHex' => ['string'], -'COM::__call' => ['', 'name'=>'', 'args'=>''], -'COM::__construct' => ['void', 'module_name'=>'string', 'server_name='=>'mixed', 'codepage='=>'int', 'typelib='=>'string'], -'COM::__get' => ['', 'name'=>''], -'COM::__set' => ['void', 'name'=>'', 'value'=>''], -'com_addref' => [''], -'com_create_guid' => ['string'], -'com_event_sink' => ['bool', 'variant'=>'VARIANT', 'sink_object'=>'object', 'sink_interface='=>'mixed'], -'com_get_active_object' => ['VARIANT', 'prog_id'=>'string', 'codepage='=>'int'], -'com_isenum' => ['bool', 'com_module'=>'variant'], -'com_load_typelib' => ['bool', 'typelib_name'=>'string', 'case_insensitive='=>'true'], -'com_message_pump' => ['bool', 'timeout_milliseconds='=>'int'], -'com_print_typeinfo' => ['bool', 'variant'=>'object', 'dispatch_interface='=>'string', 'display_sink='=>'bool'], -'commonmark\cql::__invoke' => ['', 'root'=>'CommonMark\Node', 'handler'=>'callable'], -'commonmark\interfaces\ivisitable::accept' => ['void', 'visitor'=>'CommonMark\Interfaces\IVisitor'], -'commonmark\interfaces\ivisitor::enter' => ['?int|IVisitable', 'visitable'=>'IVisitable'], -'commonmark\interfaces\ivisitor::leave' => ['?int|IVisitable', 'visitable'=>'IVisitable'], -'commonmark\node::accept' => ['void', 'visitor'=>'CommonMark\Interfaces\IVisitor'], -'commonmark\node::appendChild' => ['CommonMark\Node', 'child'=>'CommonMark\Node'], -'commonmark\node::insertAfter' => ['CommonMark\Node', 'sibling'=>'CommonMark\Node'], -'commonmark\node::insertBefore' => ['CommonMark\Node', 'sibling'=>'CommonMark\Node'], -'commonmark\node::prependChild' => ['CommonMark\Node', 'child'=>'CommonMark\Node'], -'commonmark\node::replace' => ['CommonMark\Node', 'target'=>'CommonMark\Node'], -'commonmark\node::unlink' => ['void'], -'commonmark\parse' => ['CommonMark\Node', 'content'=>'string', 'options='=>'int'], -'commonmark\parser::finish' => ['CommonMark\Node'], -'commonmark\parser::parse' => ['void', 'buffer'=>'string'], -'commonmark\render' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], -'commonmark\render\html' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int'], -'commonmark\render\latex' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], -'commonmark\render\man' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], -'commonmark\render\xml' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int'], -'compact' => ['array', 'var_name'=>'string|array', '...var_names='=>'string|array'], -'COMPersistHelper::__construct' => ['void', 'variant'=>'object'], -'COMPersistHelper::GetCurFile' => ['string'], -'COMPersistHelper::GetCurFileName' => ['string'], -'COMPersistHelper::GetMaxStreamSize' => ['int'], -'COMPersistHelper::InitNew' => ['int'], -'COMPersistHelper::LoadFromFile' => ['bool', 'filename'=>'string', 'flags'=>'int'], -'COMPersistHelper::LoadFromStream' => ['', 'stream'=>''], -'COMPersistHelper::SaveToFile' => ['bool', 'filename'=>'string', 'remember'=>'bool'], -'COMPersistHelper::SaveToStream' => ['int', 'stream'=>''], -'componere\abstract\definition::addInterface' => ['Componere\Abstract\Definition', 'interface'=>'string'], -'componere\abstract\definition::addMethod' => ['Componere\Abstract\Definition', 'name'=>'string', 'method'=>'Componere\Method'], -'componere\abstract\definition::addTrait' => ['Componere\Abstract\Definition', 'trait'=>'string'], -'componere\abstract\definition::getReflector' => ['ReflectionClass'], -'componere\cast' => ['object', 'arg1'=>'string', 'object'=>'object'], -'componere\cast_by_ref' => ['object', 'arg1'=>'string', 'object'=>'object'], -'componere\definition::addConstant' => ['Componere\Definition', 'name'=>'string', 'value'=>'Componere\Value'], -'componere\definition::addProperty' => ['Componere\Definition', 'name'=>'string', 'value'=>'Componere\Value'], -'componere\definition::getClosure' => ['Closure', 'name'=>'string'], -'componere\definition::getClosures' => ['Closure[]'], -'componere\definition::isRegistered' => ['bool'], -'componere\definition::register' => ['void'], -'componere\method::getReflector' => ['ReflectionMethod'], -'componere\method::setPrivate' => ['Method'], -'componere\method::setProtected' => ['Method'], -'componere\method::setStatic' => ['Method'], -'componere\patch::apply' => ['void'], -'componere\patch::derive' => ['Componere\Patch', 'instance'=>'object'], -'componere\patch::getClosure' => ['Closure', 'name'=>'string'], -'componere\patch::getClosures' => ['Closure[]'], -'componere\patch::isApplied' => ['bool'], -'componere\patch::revert' => ['void'], -'componere\value::hasDefault' => ['bool'], -'componere\value::isPrivate' => ['bool'], -'componere\value::isProtected' => ['bool'], -'componere\value::isStatic' => ['bool'], -'componere\value::setPrivate' => ['Value'], -'componere\value::setProtected' => ['Value'], -'componere\value::setStatic' => ['Value'], -'Cond::broadcast' => ['bool', 'condition'=>'long'], -'Cond::create' => ['long'], -'Cond::destroy' => ['bool', 'condition'=>'long'], -'Cond::signal' => ['bool', 'condition'=>'long'], -'Cond::wait' => ['bool', 'condition'=>'long', 'mutex'=>'long', 'timeout='=>'long'], -'confirm_pdo_ibm_compiled' => [''], -'connection_aborted' => ['int'], -'connection_status' => ['int'], -'connection_timeout' => ['int'], -'constant' => ['mixed', 'name'=>'string'], -'convert_cyr_string' => ['string', 'string'=>'string', 'from'=>'string', 'to'=>'string'], -'convert_uudecode' => ['string', 'string'=>'string'], -'convert_uuencode' => ['string', 'string'=>'string'], -'copy' => ['bool', 'from'=>'string', 'to'=>'string', 'context='=>'resource'], -'cos' => ['float', 'num'=>'float'], -'cosh' => ['float', 'num'=>'float'], -'Couchbase\AnalyticsQuery::__construct' => ['void'], -'Couchbase\AnalyticsQuery::fromString' => ['Couchbase\AnalyticsQuery', 'statement'=>'string'], -'Couchbase\basicDecoderV1' => ['mixed', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int', 'options'=>'array'], -'Couchbase\basicEncoderV1' => ['array', 'value'=>'mixed', 'options'=>'array'], -'Couchbase\BooleanFieldSearchQuery::__construct' => ['void'], -'Couchbase\BooleanFieldSearchQuery::boost' => ['Couchbase\BooleanFieldSearchQuery', 'boost'=>'float'], -'Couchbase\BooleanFieldSearchQuery::field' => ['Couchbase\BooleanFieldSearchQuery', 'field'=>'string'], -'Couchbase\BooleanFieldSearchQuery::jsonSerialize' => ['array'], -'Couchbase\BooleanSearchQuery::__construct' => ['void'], -'Couchbase\BooleanSearchQuery::boost' => ['Couchbase\BooleanSearchQuery', 'boost'=>'float'], -'Couchbase\BooleanSearchQuery::jsonSerialize' => ['array'], -'Couchbase\BooleanSearchQuery::must' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], -'Couchbase\BooleanSearchQuery::mustNot' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], -'Couchbase\BooleanSearchQuery::should' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], -'Couchbase\Bucket::__construct' => ['void'], -'Couchbase\Bucket::__get' => ['int', 'name'=>'string'], -'Couchbase\Bucket::__set' => ['int', 'name'=>'string', 'value'=>'int'], -'Couchbase\Bucket::append' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\Bucket::counter' => ['Couchbase\Document|array', 'ids'=>'array|string', 'delta='=>'int', 'options='=>'array'], -'Couchbase\Bucket::decryptFields' => ['array', 'document'=>'array', 'fieldOptions'=>'', 'prefix='=>'string'], -'Couchbase\Bucket::diag' => ['array', 'reportId='=>'string'], -'Couchbase\Bucket::encryptFields' => ['array', 'document'=>'array', 'fieldOptions'=>'', 'prefix='=>'string'], -'Couchbase\Bucket::get' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], -'Couchbase\Bucket::getAndLock' => ['Couchbase\Document|array', 'ids'=>'array|string', 'lockTime'=>'int', 'options='=>'array'], -'Couchbase\Bucket::getAndTouch' => ['Couchbase\Document|array', 'ids'=>'array|string', 'expiry'=>'int', 'options='=>'array'], -'Couchbase\Bucket::getFromReplica' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], -'Couchbase\Bucket::getName' => ['string'], -'Couchbase\Bucket::insert' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\Bucket::listExists' => ['bool', 'id'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::listGet' => ['mixed', 'id'=>'string', 'index'=>'int'], -'Couchbase\Bucket::listPush' => ['', 'id'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::listRemove' => ['', 'id'=>'string', 'index'=>'int'], -'Couchbase\Bucket::listSet' => ['', 'id'=>'string', 'index'=>'int', 'value'=>'mixed'], -'Couchbase\Bucket::listShift' => ['', 'id'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::listSize' => ['int', 'id'=>'string'], -'Couchbase\Bucket::lookupIn' => ['Couchbase\LookupInBuilder', 'id'=>'string'], -'Couchbase\Bucket::manager' => ['Couchbase\BucketManager'], -'Couchbase\Bucket::mapAdd' => ['', 'id'=>'string', 'key'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::mapGet' => ['mixed', 'id'=>'string', 'key'=>'string'], -'Couchbase\Bucket::mapRemove' => ['', 'id'=>'string', 'key'=>'string'], -'Couchbase\Bucket::mapSize' => ['int', 'id'=>'string'], -'Couchbase\Bucket::mutateIn' => ['Couchbase\MutateInBuilder', 'id'=>'string', 'cas'=>'string'], -'Couchbase\Bucket::ping' => ['array', 'services='=>'int', 'reportId='=>'string'], -'Couchbase\Bucket::prepend' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\Bucket::query' => ['object', 'query'=>'Couchbase\AnalyticsQuery|Couchbase\N1qlQuery|Couchbase\SearchQuery|Couchbase\SpatialViewQuery|Couchbase\ViewQuery', 'jsonAsArray='=>'bool'], -'Couchbase\Bucket::queueAdd' => ['', 'id'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::queueExists' => ['bool', 'id'=>'string', 'value'=>'mixed'], -'Couchbase\Bucket::queueRemove' => ['mixed', 'id'=>'string'], -'Couchbase\Bucket::queueSize' => ['int', 'id'=>'string'], -'Couchbase\Bucket::remove' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], -'Couchbase\Bucket::replace' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\Bucket::retrieveIn' => ['Couchbase\DocumentFragment', 'id'=>'string', '...paths='=>'array'], -'Couchbase\Bucket::setAdd' => ['', 'id'=>'string', 'value'=>'bool|float|int|string'], -'Couchbase\Bucket::setExists' => ['bool', 'id'=>'string', 'value'=>'bool|float|int|string'], -'Couchbase\Bucket::setRemove' => ['', 'id'=>'string', 'value'=>'bool|float|int|string'], -'Couchbase\Bucket::setSize' => ['int', 'id'=>'string'], -'Couchbase\Bucket::setTranscoder' => ['', 'encoder'=>'callable', 'decoder'=>'callable'], -'Couchbase\Bucket::touch' => ['Couchbase\Document|array', 'ids'=>'array|string', 'expiry'=>'int', 'options='=>'array'], -'Couchbase\Bucket::unlock' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], -'Couchbase\Bucket::upsert' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\BucketManager::__construct' => ['void'], -'Couchbase\BucketManager::createN1qlIndex' => ['', 'name'=>'string', 'fields'=>'array', 'whereClause='=>'string', 'ignoreIfExist='=>'bool', 'defer='=>'bool'], -'Couchbase\BucketManager::createN1qlPrimaryIndex' => ['', 'customName='=>'string', 'ignoreIfExist='=>'bool', 'defer='=>'bool'], -'Couchbase\BucketManager::dropN1qlIndex' => ['', 'name'=>'string', 'ignoreIfNotExist='=>'bool'], -'Couchbase\BucketManager::dropN1qlPrimaryIndex' => ['', 'customName='=>'string', 'ignoreIfNotExist='=>'bool'], -'Couchbase\BucketManager::flush' => [''], -'Couchbase\BucketManager::getDesignDocument' => ['array', 'name'=>'string'], -'Couchbase\BucketManager::info' => ['array'], -'Couchbase\BucketManager::insertDesignDocument' => ['', 'name'=>'string', 'document'=>'array'], -'Couchbase\BucketManager::listDesignDocuments' => ['array'], -'Couchbase\BucketManager::listN1qlIndexes' => ['array'], -'Couchbase\BucketManager::removeDesignDocument' => ['', 'name'=>'string'], -'Couchbase\BucketManager::upsertDesignDocument' => ['', 'name'=>'string', 'document'=>'array'], -'Couchbase\ClassicAuthenticator::bucket' => ['', 'name'=>'string', 'password'=>'string'], -'Couchbase\ClassicAuthenticator::cluster' => ['', 'username'=>'string', 'password'=>'string'], -'Couchbase\Cluster::__construct' => ['void', 'connstr'=>'string'], -'Couchbase\Cluster::authenticate' => ['null', 'authenticator'=>'Couchbase\Authenticator'], -'Couchbase\Cluster::authenticateAs' => ['null', 'username'=>'string', 'password'=>'string'], -'Couchbase\Cluster::manager' => ['Couchbase\ClusterManager', 'username='=>'string', 'password='=>'string'], -'Couchbase\Cluster::openBucket' => ['Couchbase\Bucket', 'name='=>'string', 'password='=>'string'], -'Couchbase\ClusterManager::__construct' => ['void'], -'Couchbase\ClusterManager::createBucket' => ['', 'name'=>'string', 'options='=>'array'], -'Couchbase\ClusterManager::getUser' => ['array', 'username'=>'string', 'domain='=>'int'], -'Couchbase\ClusterManager::info' => ['array'], -'Couchbase\ClusterManager::listBuckets' => ['array'], -'Couchbase\ClusterManager::listUsers' => ['array', 'domain='=>'int'], -'Couchbase\ClusterManager::removeBucket' => ['', 'name'=>'string'], -'Couchbase\ClusterManager::removeUser' => ['', 'name'=>'string', 'domain='=>'int'], -'Couchbase\ClusterManager::upsertUser' => ['', 'name'=>'string', 'settings'=>'Couchbase\UserSettings', 'domain='=>'int'], -'Couchbase\ConjunctionSearchQuery::__construct' => ['void'], -'Couchbase\ConjunctionSearchQuery::boost' => ['Couchbase\ConjunctionSearchQuery', 'boost'=>'float'], -'Couchbase\ConjunctionSearchQuery::every' => ['Couchbase\ConjunctionSearchQuery', '...queries='=>'array'], -'Couchbase\ConjunctionSearchQuery::jsonSerialize' => ['array'], -'Couchbase\DateRangeSearchFacet::__construct' => ['void'], -'Couchbase\DateRangeSearchFacet::addRange' => ['Couchbase\DateRangeSearchFacet', 'name'=>'string', 'start'=>'int|string', 'end'=>'int|string'], -'Couchbase\DateRangeSearchFacet::jsonSerialize' => ['array'], -'Couchbase\DateRangeSearchQuery::__construct' => ['void'], -'Couchbase\DateRangeSearchQuery::boost' => ['Couchbase\DateRangeSearchQuery', 'boost'=>'float'], -'Couchbase\DateRangeSearchQuery::dateTimeParser' => ['Couchbase\DateRangeSearchQuery', 'dateTimeParser'=>'string'], -'Couchbase\DateRangeSearchQuery::end' => ['Couchbase\DateRangeSearchQuery', 'end'=>'int|string', 'inclusive='=>'bool'], -'Couchbase\DateRangeSearchQuery::field' => ['Couchbase\DateRangeSearchQuery', 'field'=>'string'], -'Couchbase\DateRangeSearchQuery::jsonSerialize' => ['array'], -'Couchbase\DateRangeSearchQuery::start' => ['Couchbase\DateRangeSearchQuery', 'start'=>'int|string', 'inclusive='=>'bool'], -'Couchbase\defaultDecoder' => ['mixed', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int'], -'Couchbase\defaultEncoder' => ['array', 'value'=>'mixed'], -'Couchbase\DisjunctionSearchQuery::__construct' => ['void'], -'Couchbase\DisjunctionSearchQuery::boost' => ['Couchbase\DisjunctionSearchQuery', 'boost'=>'float'], -'Couchbase\DisjunctionSearchQuery::either' => ['Couchbase\DisjunctionSearchQuery', '...queries='=>'array'], -'Couchbase\DisjunctionSearchQuery::jsonSerialize' => ['array'], -'Couchbase\DisjunctionSearchQuery::min' => ['Couchbase\DisjunctionSearchQuery', 'min'=>'int'], -'Couchbase\DocIdSearchQuery::__construct' => ['void'], -'Couchbase\DocIdSearchQuery::boost' => ['Couchbase\DocIdSearchQuery', 'boost'=>'float'], -'Couchbase\DocIdSearchQuery::docIds' => ['Couchbase\DocIdSearchQuery', '...documentIds='=>'array'], -'Couchbase\DocIdSearchQuery::field' => ['Couchbase\DocIdSearchQuery', 'field'=>'string'], -'Couchbase\DocIdSearchQuery::jsonSerialize' => ['array'], -'Couchbase\fastlzCompress' => ['string', 'data'=>'string'], -'Couchbase\fastlzDecompress' => ['string', 'data'=>'string'], -'Couchbase\GeoBoundingBoxSearchQuery::__construct' => ['void'], -'Couchbase\GeoBoundingBoxSearchQuery::boost' => ['Couchbase\GeoBoundingBoxSearchQuery', 'boost'=>'float'], -'Couchbase\GeoBoundingBoxSearchQuery::field' => ['Couchbase\GeoBoundingBoxSearchQuery', 'field'=>'string'], -'Couchbase\GeoBoundingBoxSearchQuery::jsonSerialize' => ['array'], -'Couchbase\GeoDistanceSearchQuery::__construct' => ['void'], -'Couchbase\GeoDistanceSearchQuery::boost' => ['Couchbase\GeoDistanceSearchQuery', 'boost'=>'float'], -'Couchbase\GeoDistanceSearchQuery::field' => ['Couchbase\GeoDistanceSearchQuery', 'field'=>'string'], -'Couchbase\GeoDistanceSearchQuery::jsonSerialize' => ['array'], -'Couchbase\LookupInBuilder::__construct' => ['void'], -'Couchbase\LookupInBuilder::execute' => ['Couchbase\DocumentFragment'], -'Couchbase\LookupInBuilder::exists' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], -'Couchbase\LookupInBuilder::get' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], -'Couchbase\LookupInBuilder::getCount' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], -'Couchbase\MatchAllSearchQuery::__construct' => ['void'], -'Couchbase\MatchAllSearchQuery::boost' => ['Couchbase\MatchAllSearchQuery', 'boost'=>'float'], -'Couchbase\MatchAllSearchQuery::jsonSerialize' => ['array'], -'Couchbase\MatchNoneSearchQuery::__construct' => ['void'], -'Couchbase\MatchNoneSearchQuery::boost' => ['Couchbase\MatchNoneSearchQuery', 'boost'=>'float'], -'Couchbase\MatchNoneSearchQuery::jsonSerialize' => ['array'], -'Couchbase\MatchPhraseSearchQuery::__construct' => ['void'], -'Couchbase\MatchPhraseSearchQuery::analyzer' => ['Couchbase\MatchPhraseSearchQuery', 'analyzer'=>'string'], -'Couchbase\MatchPhraseSearchQuery::boost' => ['Couchbase\MatchPhraseSearchQuery', 'boost'=>'float'], -'Couchbase\MatchPhraseSearchQuery::field' => ['Couchbase\MatchPhraseSearchQuery', 'field'=>'string'], -'Couchbase\MatchPhraseSearchQuery::jsonSerialize' => ['array'], -'Couchbase\MatchSearchQuery::__construct' => ['void'], -'Couchbase\MatchSearchQuery::analyzer' => ['Couchbase\MatchSearchQuery', 'analyzer'=>'string'], -'Couchbase\MatchSearchQuery::boost' => ['Couchbase\MatchSearchQuery', 'boost'=>'float'], -'Couchbase\MatchSearchQuery::field' => ['Couchbase\MatchSearchQuery', 'field'=>'string'], -'Couchbase\MatchSearchQuery::fuzziness' => ['Couchbase\MatchSearchQuery', 'fuzziness'=>'int'], -'Couchbase\MatchSearchQuery::jsonSerialize' => ['array'], -'Couchbase\MatchSearchQuery::prefixLength' => ['Couchbase\MatchSearchQuery', 'prefixLength'=>'int'], -'Couchbase\MutateInBuilder::__construct' => ['void'], -'Couchbase\MutateInBuilder::arrayAddUnique' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::arrayAppend' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::arrayAppendAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::arrayInsert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\MutateInBuilder::arrayInsertAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array'], -'Couchbase\MutateInBuilder::arrayPrepend' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::arrayPrependAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::counter' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'delta'=>'int', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::execute' => ['Couchbase\DocumentFragment'], -'Couchbase\MutateInBuilder::insert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::modeDocument' => ['', 'mode'=>'int'], -'Couchbase\MutateInBuilder::remove' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'options='=>'array'], -'Couchbase\MutateInBuilder::replace' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array'], -'Couchbase\MutateInBuilder::upsert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], -'Couchbase\MutateInBuilder::withExpiry' => ['Couchbase\MutateInBuilder', 'expiry'=>'Couchbase\expiry'], -'Couchbase\MutationState::__construct' => ['void'], -'Couchbase\MutationState::add' => ['', 'source'=>'Couchbase\Document|Couchbase\DocumentFragment|array'], -'Couchbase\MutationState::from' => ['Couchbase\MutationState', 'source'=>'Couchbase\Document|Couchbase\DocumentFragment|array'], -'Couchbase\MutationToken::__construct' => ['void'], -'Couchbase\MutationToken::bucketName' => ['string'], -'Couchbase\MutationToken::from' => ['', 'bucketName'=>'string', 'vbucketId'=>'int', 'vbucketUuid'=>'string', 'sequenceNumber'=>'string'], -'Couchbase\MutationToken::sequenceNumber' => ['string'], -'Couchbase\MutationToken::vbucketId' => ['int'], -'Couchbase\MutationToken::vbucketUuid' => ['string'], -'Couchbase\N1qlIndex::__construct' => ['void'], -'Couchbase\N1qlQuery::__construct' => ['void'], -'Couchbase\N1qlQuery::adhoc' => ['Couchbase\N1qlQuery', 'adhoc'=>'bool'], -'Couchbase\N1qlQuery::consistency' => ['Couchbase\N1qlQuery', 'consistency'=>'int'], -'Couchbase\N1qlQuery::consistentWith' => ['Couchbase\N1qlQuery', 'state'=>'Couchbase\MutationState'], -'Couchbase\N1qlQuery::crossBucket' => ['Couchbase\N1qlQuery', 'crossBucket'=>'bool'], -'Couchbase\N1qlQuery::fromString' => ['Couchbase\N1qlQuery', 'statement'=>'string'], -'Couchbase\N1qlQuery::maxParallelism' => ['Couchbase\N1qlQuery', 'maxParallelism'=>'int'], -'Couchbase\N1qlQuery::namedParams' => ['Couchbase\N1qlQuery', 'params'=>'array'], -'Couchbase\N1qlQuery::pipelineBatch' => ['Couchbase\N1qlQuery', 'pipelineBatch'=>'int'], -'Couchbase\N1qlQuery::pipelineCap' => ['Couchbase\N1qlQuery', 'pipelineCap'=>'int'], -'Couchbase\N1qlQuery::positionalParams' => ['Couchbase\N1qlQuery', 'params'=>'array'], -'Couchbase\N1qlQuery::profile' => ['', 'profileType'=>'string'], -'Couchbase\N1qlQuery::readonly' => ['Couchbase\N1qlQuery', 'readonly'=>'bool'], -'Couchbase\N1qlQuery::scanCap' => ['Couchbase\N1qlQuery', 'scanCap'=>'int'], -'Couchbase\NumericRangeSearchFacet::__construct' => ['void'], -'Couchbase\NumericRangeSearchFacet::addRange' => ['Couchbase\NumericRangeSearchFacet', 'name'=>'string', 'min'=>'float', 'max'=>'float'], -'Couchbase\NumericRangeSearchFacet::jsonSerialize' => ['array'], -'Couchbase\NumericRangeSearchQuery::__construct' => ['void'], -'Couchbase\NumericRangeSearchQuery::boost' => ['Couchbase\NumericRangeSearchQuery', 'boost'=>'float'], -'Couchbase\NumericRangeSearchQuery::field' => ['Couchbase\NumericRangeSearchQuery', 'field'=>'string'], -'Couchbase\NumericRangeSearchQuery::jsonSerialize' => ['array'], -'Couchbase\NumericRangeSearchQuery::max' => ['Couchbase\NumericRangeSearchQuery', 'max'=>'float', 'inclusive='=>'bool'], -'Couchbase\NumericRangeSearchQuery::min' => ['Couchbase\NumericRangeSearchQuery', 'min'=>'float', 'inclusive='=>'bool'], -'Couchbase\passthruDecoder' => ['string', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int'], -'Couchbase\passthruEncoder' => ['array', 'value'=>'string'], -'Couchbase\PasswordAuthenticator::password' => ['Couchbase\PasswordAuthenticator', 'password'=>'string'], -'Couchbase\PasswordAuthenticator::username' => ['Couchbase\PasswordAuthenticator', 'username'=>'string'], -'Couchbase\PhraseSearchQuery::__construct' => ['void'], -'Couchbase\PhraseSearchQuery::boost' => ['Couchbase\PhraseSearchQuery', 'boost'=>'float'], -'Couchbase\PhraseSearchQuery::field' => ['Couchbase\PhraseSearchQuery', 'field'=>'string'], -'Couchbase\PhraseSearchQuery::jsonSerialize' => ['array'], -'Couchbase\PrefixSearchQuery::__construct' => ['void'], -'Couchbase\PrefixSearchQuery::boost' => ['Couchbase\PrefixSearchQuery', 'boost'=>'float'], -'Couchbase\PrefixSearchQuery::field' => ['Couchbase\PrefixSearchQuery', 'field'=>'string'], -'Couchbase\PrefixSearchQuery::jsonSerialize' => ['array'], -'Couchbase\QueryStringSearchQuery::__construct' => ['void'], -'Couchbase\QueryStringSearchQuery::boost' => ['Couchbase\QueryStringSearchQuery', 'boost'=>'float'], -'Couchbase\QueryStringSearchQuery::jsonSerialize' => ['array'], -'Couchbase\RegexpSearchQuery::__construct' => ['void'], -'Couchbase\RegexpSearchQuery::boost' => ['Couchbase\RegexpSearchQuery', 'boost'=>'float'], -'Couchbase\RegexpSearchQuery::field' => ['Couchbase\RegexpSearchQuery', 'field'=>'string'], -'Couchbase\RegexpSearchQuery::jsonSerialize' => ['array'], -'Couchbase\SearchQuery::__construct' => ['void', 'indexName'=>'string', 'queryPart'=>'Couchbase\SearchQueryPart'], -'Couchbase\SearchQuery::addFacet' => ['Couchbase\SearchQuery', 'name'=>'string', 'facet'=>'Couchbase\SearchFacet'], -'Couchbase\SearchQuery::boolean' => ['Couchbase\BooleanSearchQuery'], -'Couchbase\SearchQuery::booleanField' => ['Couchbase\BooleanFieldSearchQuery', 'value'=>'bool'], -'Couchbase\SearchQuery::conjuncts' => ['Couchbase\ConjunctionSearchQuery', '...queries='=>'array'], -'Couchbase\SearchQuery::consistentWith' => ['Couchbase\SearchQuery', 'state'=>'Couchbase\MutationState'], -'Couchbase\SearchQuery::dateRange' => ['Couchbase\DateRangeSearchQuery'], -'Couchbase\SearchQuery::dateRangeFacet' => ['Couchbase\DateRangeSearchFacet', 'field'=>'string', 'limit'=>'int'], -'Couchbase\SearchQuery::disjuncts' => ['Couchbase\DisjunctionSearchQuery', '...queries='=>'array'], -'Couchbase\SearchQuery::docId' => ['Couchbase\DocIdSearchQuery', '...documentIds='=>'array'], -'Couchbase\SearchQuery::explain' => ['Couchbase\SearchQuery', 'explain'=>'bool'], -'Couchbase\SearchQuery::fields' => ['Couchbase\SearchQuery', '...fields='=>'array'], -'Couchbase\SearchQuery::geoBoundingBox' => ['Couchbase\GeoBoundingBoxSearchQuery', 'topLeftLongitude'=>'float', 'topLeftLatitude'=>'float', 'bottomRightLongitude'=>'float', 'bottomRightLatitude'=>'float'], -'Couchbase\SearchQuery::geoDistance' => ['Couchbase\GeoDistanceSearchQuery', 'longitude'=>'float', 'latitude'=>'float', 'distance'=>'string'], -'Couchbase\SearchQuery::highlight' => ['Couchbase\SearchQuery', 'style'=>'string', '...fields='=>'array'], -'Couchbase\SearchQuery::jsonSerialize' => ['array'], -'Couchbase\SearchQuery::limit' => ['Couchbase\SearchQuery', 'limit'=>'int'], -'Couchbase\SearchQuery::match' => ['Couchbase\MatchSearchQuery', 'match'=>'string'], -'Couchbase\SearchQuery::matchAll' => ['Couchbase\MatchAllSearchQuery'], -'Couchbase\SearchQuery::matchNone' => ['Couchbase\MatchNoneSearchQuery'], -'Couchbase\SearchQuery::matchPhrase' => ['Couchbase\MatchPhraseSearchQuery', '...terms='=>'array'], -'Couchbase\SearchQuery::numericRange' => ['Couchbase\NumericRangeSearchQuery'], -'Couchbase\SearchQuery::numericRangeFacet' => ['Couchbase\NumericRangeSearchFacet', 'field'=>'string', 'limit'=>'int'], -'Couchbase\SearchQuery::prefix' => ['Couchbase\PrefixSearchQuery', 'prefix'=>'string'], -'Couchbase\SearchQuery::queryString' => ['Couchbase\QueryStringSearchQuery', 'queryString'=>'string'], -'Couchbase\SearchQuery::regexp' => ['Couchbase\RegexpSearchQuery', 'regexp'=>'string'], -'Couchbase\SearchQuery::serverSideTimeout' => ['Couchbase\SearchQuery', 'serverSideTimeout'=>'int'], -'Couchbase\SearchQuery::skip' => ['Couchbase\SearchQuery', 'skip'=>'int'], -'Couchbase\SearchQuery::sort' => ['Couchbase\SearchQuery', '...sort='=>'array'], -'Couchbase\SearchQuery::term' => ['Couchbase\TermSearchQuery', 'term'=>'string'], -'Couchbase\SearchQuery::termFacet' => ['Couchbase\TermSearchFacet', 'field'=>'string', 'limit'=>'int'], -'Couchbase\SearchQuery::termRange' => ['Couchbase\TermRangeSearchQuery'], -'Couchbase\SearchQuery::wildcard' => ['Couchbase\WildcardSearchQuery', 'wildcard'=>'string'], -'Couchbase\SearchSort::__construct' => ['void'], -'Couchbase\SearchSort::field' => ['Couchbase\SearchSortField', 'field'=>'string'], -'Couchbase\SearchSort::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], -'Couchbase\SearchSort::id' => ['Couchbase\SearchSortId'], -'Couchbase\SearchSort::score' => ['Couchbase\SearchSortScore'], -'Couchbase\SearchSortField::__construct' => ['void'], -'Couchbase\SearchSortField::descending' => ['Couchbase\SearchSortField', 'descending'=>'bool'], -'Couchbase\SearchSortField::field' => ['Couchbase\SearchSortField', 'field'=>'string'], -'Couchbase\SearchSortField::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], -'Couchbase\SearchSortField::id' => ['Couchbase\SearchSortId'], -'Couchbase\SearchSortField::jsonSerialize' => ['mixed'], -'Couchbase\SearchSortField::missing' => ['', 'missing'=>'string'], -'Couchbase\SearchSortField::mode' => ['', 'mode'=>'string'], -'Couchbase\SearchSortField::score' => ['Couchbase\SearchSortScore'], -'Couchbase\SearchSortField::type' => ['', 'type'=>'string'], -'Couchbase\SearchSortGeoDistance::__construct' => ['void'], -'Couchbase\SearchSortGeoDistance::descending' => ['Couchbase\SearchSortGeoDistance', 'descending'=>'bool'], -'Couchbase\SearchSortGeoDistance::field' => ['Couchbase\SearchSortField', 'field'=>'string'], -'Couchbase\SearchSortGeoDistance::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], -'Couchbase\SearchSortGeoDistance::id' => ['Couchbase\SearchSortId'], -'Couchbase\SearchSortGeoDistance::jsonSerialize' => ['mixed'], -'Couchbase\SearchSortGeoDistance::score' => ['Couchbase\SearchSortScore'], -'Couchbase\SearchSortGeoDistance::unit' => ['Couchbase\SearchSortGeoDistance', 'unit'=>'string'], -'Couchbase\SearchSortId::__construct' => ['void'], -'Couchbase\SearchSortId::descending' => ['Couchbase\SearchSortId', 'descending'=>'bool'], -'Couchbase\SearchSortId::field' => ['Couchbase\SearchSortField', 'field'=>'string'], -'Couchbase\SearchSortId::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], -'Couchbase\SearchSortId::id' => ['Couchbase\SearchSortId'], -'Couchbase\SearchSortId::jsonSerialize' => ['mixed'], -'Couchbase\SearchSortId::score' => ['Couchbase\SearchSortScore'], -'Couchbase\SearchSortScore::__construct' => ['void'], -'Couchbase\SearchSortScore::descending' => ['Couchbase\SearchSortScore', 'descending'=>'bool'], -'Couchbase\SearchSortScore::field' => ['Couchbase\SearchSortField', 'field'=>'string'], -'Couchbase\SearchSortScore::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], -'Couchbase\SearchSortScore::id' => ['Couchbase\SearchSortId'], -'Couchbase\SearchSortScore::jsonSerialize' => ['mixed'], -'Couchbase\SearchSortScore::score' => ['Couchbase\SearchSortScore'], -'Couchbase\SpatialViewQuery::__construct' => ['void'], -'Couchbase\SpatialViewQuery::bbox' => ['Couchbase\SpatialViewQuery', 'bbox'=>'array'], -'Couchbase\SpatialViewQuery::consistency' => ['Couchbase\SpatialViewQuery', 'consistency'=>'int'], -'Couchbase\SpatialViewQuery::custom' => ['', 'customParameters'=>'array'], -'Couchbase\SpatialViewQuery::encode' => ['array'], -'Couchbase\SpatialViewQuery::endRange' => ['Couchbase\SpatialViewQuery', 'range'=>'array'], -'Couchbase\SpatialViewQuery::limit' => ['Couchbase\SpatialViewQuery', 'limit'=>'int'], -'Couchbase\SpatialViewQuery::order' => ['Couchbase\SpatialViewQuery', 'order'=>'int'], -'Couchbase\SpatialViewQuery::skip' => ['Couchbase\SpatialViewQuery', 'skip'=>'int'], -'Couchbase\SpatialViewQuery::startRange' => ['Couchbase\SpatialViewQuery', 'range'=>'array'], -'Couchbase\TermRangeSearchQuery::__construct' => ['void'], -'Couchbase\TermRangeSearchQuery::boost' => ['Couchbase\TermRangeSearchQuery', 'boost'=>'float'], -'Couchbase\TermRangeSearchQuery::field' => ['Couchbase\TermRangeSearchQuery', 'field'=>'string'], -'Couchbase\TermRangeSearchQuery::jsonSerialize' => ['array'], -'Couchbase\TermRangeSearchQuery::max' => ['Couchbase\TermRangeSearchQuery', 'max'=>'string', 'inclusive='=>'bool'], -'Couchbase\TermRangeSearchQuery::min' => ['Couchbase\TermRangeSearchQuery', 'min'=>'string', 'inclusive='=>'bool'], -'Couchbase\TermSearchFacet::__construct' => ['void'], -'Couchbase\TermSearchFacet::jsonSerialize' => ['array'], -'Couchbase\TermSearchQuery::__construct' => ['void'], -'Couchbase\TermSearchQuery::boost' => ['Couchbase\TermSearchQuery', 'boost'=>'float'], -'Couchbase\TermSearchQuery::field' => ['Couchbase\TermSearchQuery', 'field'=>'string'], -'Couchbase\TermSearchQuery::fuzziness' => ['Couchbase\TermSearchQuery', 'fuzziness'=>'int'], -'Couchbase\TermSearchQuery::jsonSerialize' => ['array'], -'Couchbase\TermSearchQuery::prefixLength' => ['Couchbase\TermSearchQuery', 'prefixLength'=>'int'], -'Couchbase\UserSettings::fullName' => ['Couchbase\UserSettings', 'fullName'=>'string'], -'Couchbase\UserSettings::password' => ['Couchbase\UserSettings', 'password'=>'string'], -'Couchbase\UserSettings::role' => ['Couchbase\UserSettings', 'role'=>'string', 'bucket='=>'string'], -'Couchbase\ViewQuery::__construct' => ['void'], -'Couchbase\ViewQuery::consistency' => ['Couchbase\ViewQuery', 'consistency'=>'int'], -'Couchbase\ViewQuery::custom' => ['Couchbase\ViewQuery', 'customParameters'=>'array'], -'Couchbase\ViewQuery::encode' => ['array'], -'Couchbase\ViewQuery::from' => ['Couchbase\ViewQuery', 'designDocumentName'=>'string', 'viewName'=>'string'], -'Couchbase\ViewQuery::fromSpatial' => ['Couchbase\SpatialViewQuery', 'designDocumentName'=>'string', 'viewName'=>'string'], -'Couchbase\ViewQuery::group' => ['Couchbase\ViewQuery', 'group'=>'bool'], -'Couchbase\ViewQuery::groupLevel' => ['Couchbase\ViewQuery', 'groupLevel'=>'int'], -'Couchbase\ViewQuery::idRange' => ['Couchbase\ViewQuery', 'startKeyDocumentId'=>'string', 'endKeyDocumentId'=>'string'], -'Couchbase\ViewQuery::key' => ['Couchbase\ViewQuery', 'key'=>'mixed'], -'Couchbase\ViewQuery::keys' => ['Couchbase\ViewQuery', 'keys'=>'array'], -'Couchbase\ViewQuery::limit' => ['Couchbase\ViewQuery', 'limit'=>'int'], -'Couchbase\ViewQuery::order' => ['Couchbase\ViewQuery', 'order'=>'int'], -'Couchbase\ViewQuery::range' => ['Couchbase\ViewQuery', 'startKey'=>'mixed', 'endKey'=>'mixed', 'inclusiveEnd='=>'bool'], -'Couchbase\ViewQuery::reduce' => ['Couchbase\ViewQuery', 'reduce'=>'bool'], -'Couchbase\ViewQuery::skip' => ['Couchbase\ViewQuery', 'skip'=>'int'], -'Couchbase\ViewQueryEncodable::encode' => ['array'], -'Couchbase\WildcardSearchQuery::__construct' => ['void'], -'Couchbase\WildcardSearchQuery::boost' => ['Couchbase\WildcardSearchQuery', 'boost'=>'float'], -'Couchbase\WildcardSearchQuery::field' => ['Couchbase\WildcardSearchQuery', 'field'=>'string'], -'Couchbase\WildcardSearchQuery::jsonSerialize' => ['array'], -'Couchbase\zlibCompress' => ['string', 'data'=>'string'], -'Couchbase\zlibDecompress' => ['string', 'data'=>'string'], -'count' => ['int<0, max>', 'value'=>'Countable|array', 'mode='=>'int'], -'count_chars' => ['array', 'input'=>'string', 'mode='=>'0|1|2'], -'count_chars\'1' => ['string', 'input'=>'string', 'mode='=>'3|4'], -'Countable::count' => ['int'], -'crack_check' => ['bool', 'dictionary'=>'', 'password'=>'string'], -'crack_closedict' => ['bool', 'dictionary='=>'resource'], -'crack_getlastmessage' => ['string'], -'crack_opendict' => ['resource|false', 'dictionary'=>'string'], -'crash' => [''], -'crc32' => ['int', 'string'=>'string'], -'crypt' => ['string', 'string'=>'string', 'salt'=>'string'], -'ctype_alnum' => ['bool', 'text'=>'string'], -'ctype_alpha' => ['bool', 'text'=>'string'], -'ctype_cntrl' => ['bool', 'text'=>'string'], -'ctype_digit' => ['bool', 'text'=>'string'], -'ctype_graph' => ['bool', 'text'=>'string'], -'ctype_lower' => ['bool', 'text'=>'string'], -'ctype_print' => ['bool', 'text'=>'string'], -'ctype_punct' => ['bool', 'text'=>'string'], -'ctype_space' => ['bool', 'text'=>'string'], -'ctype_upper' => ['bool', 'text'=>'string'], -'ctype_xdigit' => ['bool', 'text'=>'string'], -'cubrid_affected_rows' => ['int', 'req_identifier='=>''], -'cubrid_bind' => ['bool', 'req_identifier'=>'resource', 'bind_param'=>'int', 'bind_value'=>'mixed', 'bind_value_type='=>'string'], -'cubrid_client_encoding' => ['string', 'conn_identifier='=>''], -'cubrid_close' => ['bool', 'conn_identifier='=>''], -'cubrid_close_prepare' => ['bool', 'req_identifier'=>'resource'], -'cubrid_close_request' => ['bool', 'req_identifier'=>'resource'], -'cubrid_col_get' => ['array', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string'], -'cubrid_col_size' => ['int', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string'], -'cubrid_column_names' => ['array', 'req_identifier'=>'resource'], -'cubrid_column_types' => ['array', 'req_identifier'=>'resource'], -'cubrid_commit' => ['bool', 'conn_identifier'=>'resource'], -'cubrid_connect' => ['resource', 'host'=>'string', 'port'=>'int', 'dbname'=>'string', 'userid='=>'string', 'passwd='=>'string'], -'cubrid_connect_with_url' => ['resource', 'conn_url'=>'string', 'userid='=>'string', 'passwd='=>'string'], -'cubrid_current_oid' => ['string', 'req_identifier'=>'resource'], -'cubrid_data_seek' => ['bool', 'req_identifier'=>'', 'row_number'=>'int'], -'cubrid_db_name' => ['string', 'result'=>'array', 'index'=>'int'], -'cubrid_db_parameter' => ['array', 'conn_identifier'=>'resource'], -'cubrid_disconnect' => ['bool', 'conn_identifier'=>'resource'], -'cubrid_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], -'cubrid_errno' => ['int', 'conn_identifier='=>''], -'cubrid_error' => ['string', 'connection='=>''], -'cubrid_error_code' => ['int'], -'cubrid_error_code_facility' => ['int'], -'cubrid_error_msg' => ['string'], -'cubrid_execute' => ['bool', 'conn_identifier'=>'', 'sql'=>'string', 'option='=>'int', 'request_identifier='=>''], -'cubrid_fetch' => ['mixed', 'result'=>'resource', 'type='=>'int'], -'cubrid_fetch_array' => ['array', 'result'=>'resource', 'type='=>'int'], -'cubrid_fetch_assoc' => ['array', 'result'=>'resource'], -'cubrid_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], -'cubrid_fetch_lengths' => ['array', 'result'=>'resource'], -'cubrid_fetch_object' => ['object', 'result'=>'resource', 'class_name='=>'string', 'params='=>'array'], -'cubrid_fetch_row' => ['array', 'result'=>'resource'], -'cubrid_field_flags' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'cubrid_field_len' => ['int', 'result'=>'resource', 'field_offset'=>'int'], -'cubrid_field_name' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'cubrid_field_seek' => ['bool', 'result'=>'resource', 'field_offset='=>'int'], -'cubrid_field_table' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'cubrid_field_type' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'cubrid_free_result' => ['bool', 'req_identifier'=>'resource'], -'cubrid_get' => ['mixed', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr='=>'mixed'], -'cubrid_get_autocommit' => ['bool', 'conn_identifier'=>'resource'], -'cubrid_get_charset' => ['string', 'conn_identifier'=>'resource'], -'cubrid_get_class_name' => ['string', 'conn_identifier'=>'resource', 'oid'=>'string'], -'cubrid_get_client_info' => ['string'], -'cubrid_get_db_parameter' => ['array', 'conn_identifier'=>'resource'], -'cubrid_get_query_timeout' => ['int', 'req_identifier'=>'resource'], -'cubrid_get_server_info' => ['string', 'conn_identifier'=>'resource'], -'cubrid_insert_id' => ['string', 'conn_identifier='=>'resource'], -'cubrid_is_instance' => ['int', 'conn_identifier'=>'resource', 'oid'=>'string'], -'cubrid_list_dbs' => ['array', 'conn_identifier'=>'resource'], -'cubrid_load_from_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string', 'file_name'=>'string'], -'cubrid_lob2_bind' => ['bool', 'req_identifier'=>'resource', 'bind_index'=>'int', 'bind_value'=>'mixed', 'bind_value_type='=>'string'], -'cubrid_lob2_close' => ['bool', 'lob_identifier'=>'resource'], -'cubrid_lob2_export' => ['bool', 'lob_identifier'=>'resource', 'file_name'=>'string'], -'cubrid_lob2_import' => ['bool', 'lob_identifier'=>'resource', 'file_name'=>'string'], -'cubrid_lob2_new' => ['resource', 'conn_identifier='=>'resource', 'type='=>'string'], -'cubrid_lob2_read' => ['string', 'lob_identifier'=>'resource', 'length'=>'int'], -'cubrid_lob2_seek' => ['bool', 'lob_identifier'=>'resource', 'offset'=>'int', 'origin='=>'int'], -'cubrid_lob2_seek64' => ['bool', 'lob_identifier'=>'resource', 'offset'=>'string', 'origin='=>'int'], -'cubrid_lob2_size' => ['int', 'lob_identifier'=>'resource'], -'cubrid_lob2_size64' => ['string', 'lob_identifier'=>'resource'], -'cubrid_lob2_tell' => ['int', 'lob_identifier'=>'resource'], -'cubrid_lob2_tell64' => ['string', 'lob_identifier'=>'resource'], -'cubrid_lob2_write' => ['bool', 'lob_identifier'=>'resource', 'buf'=>'string'], -'cubrid_lob_close' => ['bool', 'lob_identifier_array'=>'array'], -'cubrid_lob_export' => ['bool', 'conn_identifier'=>'resource', 'lob_identifier'=>'resource', 'path_name'=>'string'], -'cubrid_lob_get' => ['array', 'conn_identifier'=>'resource', 'sql'=>'string'], -'cubrid_lob_send' => ['bool', 'conn_identifier'=>'resource', 'lob_identifier'=>'resource'], -'cubrid_lob_size' => ['string', 'lob_identifier'=>'resource'], -'cubrid_lock_read' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], -'cubrid_lock_write' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], -'cubrid_move_cursor' => ['int', 'req_identifier'=>'resource', 'offset'=>'int', 'origin='=>'int'], -'cubrid_new_glo' => ['string', 'conn_identifier'=>'', 'class_name'=>'string', 'file_name'=>'string'], -'cubrid_next_result' => ['bool', 'result'=>'resource'], -'cubrid_num_cols' => ['int', 'req_identifier'=>'resource'], -'cubrid_num_fields' => ['int', 'result'=>'resource'], -'cubrid_num_rows' => ['int', 'req_identifier'=>'resource'], -'cubrid_pconnect' => ['resource', 'host'=>'string', 'port'=>'int', 'dbname'=>'string', 'userid='=>'string', 'passwd='=>'string'], -'cubrid_pconnect_with_url' => ['resource', 'conn_url'=>'string', 'userid='=>'string', 'passwd='=>'string'], -'cubrid_ping' => ['bool', 'conn_identifier='=>''], -'cubrid_prepare' => ['resource', 'conn_identifier'=>'resource', 'prepare_stmt'=>'string', 'option='=>'int'], -'cubrid_put' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr='=>'string', 'value='=>'mixed'], -'cubrid_query' => ['resource', 'query'=>'string', 'conn_identifier='=>''], -'cubrid_real_escape_string' => ['string', 'unescaped_string'=>'string', 'conn_identifier='=>''], -'cubrid_result' => ['string', 'result'=>'resource', 'row'=>'int', 'field='=>''], -'cubrid_rollback' => ['bool', 'conn_identifier'=>'resource'], -'cubrid_save_to_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string', 'file_name'=>'string'], -'cubrid_schema' => ['array', 'conn_identifier'=>'resource', 'schema_type'=>'int', 'class_name='=>'string', 'attr_name='=>'string'], -'cubrid_send_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string'], -'cubrid_seq_add' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'seq_element'=>'string'], -'cubrid_seq_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int'], -'cubrid_seq_insert' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int', 'seq_element'=>'string'], -'cubrid_seq_put' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int', 'seq_element'=>'string'], -'cubrid_set_add' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'set_element'=>'string'], -'cubrid_set_autocommit' => ['bool', 'conn_identifier'=>'resource', 'mode'=>'bool'], -'cubrid_set_db_parameter' => ['bool', 'conn_identifier'=>'resource', 'param_type'=>'int', 'param_value'=>'int'], -'cubrid_set_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'set_element'=>'string'], -'cubrid_set_query_timeout' => ['bool', 'req_identifier'=>'resource', 'timeout'=>'int'], -'cubrid_unbuffered_query' => ['resource', 'query'=>'string', 'conn_identifier='=>''], -'cubrid_version' => ['string'], -'curl_close' => ['void', 'handle'=>'CurlHandle'], -'curl_copy_handle' => ['CurlHandle|false', 'handle'=>'CurlHandle'], -'curl_errno' => ['int', 'handle'=>'CurlHandle'], -'curl_error' => ['string', 'handle'=>'CurlHandle'], -'curl_escape' => ['string|false', 'handle'=>'CurlHandle', 'string'=>'string'], -'curl_exec' => ['bool|string', 'handle'=>'CurlHandle'], -'curl_file_create' => ['CURLFile', 'filename'=>'string', 'mime_type='=>'string|null', 'posted_filename='=>'string|null'], -'curl_getinfo' => ['mixed', 'handle'=>'CurlHandle', 'option='=>'?int'], -'curl_init' => ['CurlHandle|false', 'url='=>'?string'], -'curl_multi_add_handle' => ['int', 'multi_handle'=>'CurlMultiHandle', 'handle'=>'CurlHandle'], -'curl_multi_close' => ['void', 'multi_handle'=>'CurlMultiHandle'], -'curl_multi_errno' => ['int', 'multi_handle'=>'CurlMultiHandle'], -'curl_multi_exec' => ['int', 'multi_handle'=>'CurlMultiHandle', '&w_still_running'=>'int'], -'curl_multi_getcontent' => ['string', 'handle'=>'CurlHandle'], -'curl_multi_info_read' => ['array|false', 'multi_handle'=>'CurlMultiHandle', '&w_queued_messages='=>'int'], -'curl_multi_init' => ['CurlMultiHandle'], -'curl_multi_remove_handle' => ['int', 'multi_handle'=>'CurlMultiHandle', 'handle'=>'CurlHandle'], -'curl_multi_select' => ['int', 'multi_handle'=>'CurlMultiHandle', 'timeout='=>'float'], -'curl_multi_setopt' => ['bool', 'multi_handle'=>'CurlMultiHandle', 'option'=>'int', 'value'=>'mixed'], -'curl_multi_strerror' => ['?string', 'error_code'=>'int'], -'curl_pause' => ['int', 'handle'=>'CurlHandle', 'flags'=>'int'], -'curl_reset' => ['void', 'handle'=>'CurlHandle'], -'curl_setopt' => ['bool', 'handle'=>'CurlHandle', 'option'=>'int', 'value'=>'callable|mixed'], -'curl_setopt_array' => ['bool', 'handle'=>'CurlHandle', 'options'=>'array'], -'curl_share_close' => ['void', 'share_handle'=>'CurlShareHandle'], -'curl_share_errno' => ['int', 'share_handle'=>'CurlShareHandle'], -'curl_share_init' => ['CurlShareHandle'], -'curl_share_setopt' => ['bool', 'share_handle'=>'CurlShareHandle', 'option'=>'int', 'value'=>'mixed'], -'curl_share_strerror' => ['?string', 'error_code'=>'int'], -'curl_strerror' => ['?string', 'error_code'=>'int'], -'curl_upkeep' => ['bool', 'handle'=>'CurlHandle'], -'curl_unescape' => ['string|false', 'handle'=>'CurlHandle', 'string'=>'string'], -'curl_version' => ['array', 'version='=>'int'], -'CURLFile::__construct' => ['void', 'filename'=>'string', 'mime_type='=>'?string', 'posted_filename='=>'?string'], -'CURLFile::getFilename' => ['string'], -'CURLFile::getMimeType' => ['string'], -'CURLFile::getPostFilename' => ['string'], -'CURLFile::setMimeType' => ['void', 'mime_type'=>'string'], -'CURLFile::setPostFilename' => ['void', 'posted_filename'=>'string'], -'CURLStringFile::__construct' => ['void', 'data'=>'string', 'postname'=>'string', 'mime='=>'string'], -'current' => ['mixed|false', 'array'=>'array'], -'cyrus_authenticate' => ['void', 'connection'=>'resource', 'mechlist='=>'string', 'service='=>'string', 'user='=>'string', 'minssf='=>'int', 'maxssf='=>'int', 'authname='=>'string', 'password='=>'string'], -'cyrus_bind' => ['bool', 'connection'=>'resource', 'callbacks'=>'array'], -'cyrus_close' => ['bool', 'connection'=>'resource'], -'cyrus_connect' => ['resource', 'host='=>'string', 'port='=>'string', 'flags='=>'int'], -'cyrus_query' => ['array', 'connection'=>'resource', 'query'=>'string'], -'cyrus_unbind' => ['bool', 'connection'=>'resource', 'trigger_name'=>'string'], -'date' => ['string', 'format'=>'string', 'timestamp='=>'?int'], -'date_add' => ['DateTime', 'object'=>'DateTime', 'interval'=>'DateInterval'], -'date_create' => ['DateTime|false', 'datetime='=>'string', 'timezone='=>'?DateTimeZone'], -'date_create_from_format' => ['DateTime|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?\DateTimeZone'], -'date_create_immutable' => ['DateTimeImmutable|false', 'datetime='=>'string', 'timezone='=>'?DateTimeZone'], -'date_create_immutable_from_format' => ['DateTimeImmutable|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?DateTimeZone'], -'date_date_set' => ['DateTime', 'object'=>'DateTime', 'year'=>'int', 'month'=>'int', 'day'=>'int'], -'date_default_timezone_get' => ['non-empty-string'], -'date_default_timezone_set' => ['bool', 'timezoneId'=>'non-empty-string'], -'date_diff' => ['DateInterval', 'baseObject'=>'DateTimeInterface', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], -'date_format' => ['string', 'object'=>'DateTimeInterface', 'format'=>'string'], -'date_get_last_errors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], -'date_interval_create_from_date_string' => ['DateInterval', 'datetime'=>'string'], -'date_interval_format' => ['string', 'object'=>'DateInterval', 'format'=>'string'], -'date_isodate_set' => ['DateTime', 'object'=>'DateTime', 'year'=>'int', 'week'=>'int', 'dayOfWeek='=>'int'], -'date_modify' => ['DateTime|false', 'object'=>'DateTime', 'modifier'=>'string'], -'date_offset_get' => ['int', 'object'=>'DateTimeInterface'], -'date_parse' => ['array', 'datetime'=>'string'], -'date_parse_from_format' => ['array', 'format'=>'string', 'datetime'=>'string'], -'date_sub' => ['DateTime', 'object'=>'DateTime', 'interval'=>'DateInterval'], -'date_sun_info' => ['array', 'timestamp'=>'int', 'latitude'=>'float', 'longitude'=>'float'], -'date_sunrise' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'?float', 'longitude='=>'?float', 'zenith='=>'?float', 'utcOffset='=>'?float'], -'date_sunset' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'?float', 'longitude='=>'?float', 'zenith='=>'?float', 'utcOffset='=>'?float'], -'date_time_set' => ['DateTime', 'object'=>'', 'hour'=>'', 'minute'=>'', 'second='=>'', 'microsecond='=>''], -'date_timestamp_get' => ['int', 'object'=>'DateTimeInterface'], -'date_timestamp_set' => ['DateTime', 'object'=>'DateTime', 'timestamp'=>'int'], -'date_timezone_get' => ['DateTimeZone|false', 'object'=>'DateTimeInterface'], -'date_timezone_set' => ['DateTime', 'object'=>'DateTime', 'timezone'=>'DateTimeZone'], -'datefmt_create' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'DateTimeZone|IntlTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], -'datefmt_format' => ['string|false', 'formatter'=>'IntlDateFormatter', 'datetime'=>'DateTime|IntlCalendar|array|int'], -'datefmt_format_object' => ['string|false', 'datetime'=>'object', 'format='=>'mixed', 'locale='=>'?string'], -'datefmt_get_calendar' => ['int', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_calendar_object' => ['IntlCalendar|false|null', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_datetype' => ['int', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_error_code' => ['int', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_error_message' => ['string', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_locale' => ['string|false', 'formatter'=>'IntlDateFormatter', 'type='=>'int'], -'datefmt_get_pattern' => ['string', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_timetype' => ['int', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_timezone' => ['IntlTimeZone|false', 'formatter'=>'IntlDateFormatter'], -'datefmt_get_timezone_id' => ['string|false', 'formatter'=>'IntlDateFormatter'], -'datefmt_is_lenient' => ['bool', 'formatter'=>'IntlDateFormatter'], -'datefmt_localtime' => ['array|false', 'formatter'=>'IntlDateFormatter', 'string'=>'string', '&rw_offset='=>'int'], -'datefmt_parse' => ['float|int|false', 'formatter'=>'IntlDateFormatter', 'string'=>'string', '&rw_offset='=>'int'], -'datefmt_set_calendar' => ['bool', 'formatter'=>'IntlDateFormatter', 'calendar'=>'IntlCalendar|int|null'], -'datefmt_set_lenient' => ['void', 'formatter'=>'IntlDateFormatter', 'lenient'=>'bool'], -'datefmt_set_pattern' => ['bool', 'formatter'=>'IntlDateFormatter', 'pattern'=>'string'], -'datefmt_set_timezone' => ['bool', 'formatter'=>'IntlDateFormatter', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], -'DateInterval::__construct' => ['void', 'duration'=>'string'], -'DateInterval::__set_state' => ['DateInterval', 'array'=>'array'], -'DateInterval::__wakeup' => ['void'], -'DateInterval::createFromDateString' => ['DateInterval|false', 'datetime'=>'string'], -'DateInterval::format' => ['string', 'format'=>'string'], -'DatePeriod::__construct' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'recur'=>'int', 'options='=>'int'], -'DatePeriod::__construct\'1' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'end'=>'DateTimeInterface', 'options='=>'int'], -'DatePeriod::__construct\'2' => ['void', 'iso'=>'string', 'options='=>'int'], -'DatePeriod::__wakeup' => ['void'], -'DatePeriod::getDateInterval' => ['DateInterval'], -'DatePeriod::getEndDate' => ['?DateTimeInterface'], -'DatePeriod::getStartDate' => ['DateTimeInterface'], -'DateTime::__construct' => ['void', 'time='=>'string'], -'DateTime::__construct\'1' => ['void', 'time'=>'?string', 'timezone'=>'?DateTimeZone'], -'DateTime::__wakeup' => ['void'], -'DateTime::add' => ['static', 'interval'=>'DateInterval'], -'DateTime::createFromFormat' => ['static|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?DateTimeZone'], -'DateTime::createFromImmutable' => ['static', 'object'=>'DateTimeImmutable'], -'DateTime::createFromInterface' => ['static', 'object' => 'DateTimeInterface'], -'DateTime::diff' => ['DateInterval', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], -'DateTime::format' => ['string', 'format'=>'string'], -'DateTime::getLastErrors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], -'DateTime::getOffset' => ['int'], -'DateTime::getTimestamp' => ['int'], -'DateTime::getTimezone' => ['DateTimeZone|false'], -'DateTime::modify' => ['static|false', 'modifier'=>'string'], -'DateTime::setDate' => ['static', 'year'=>'int', 'month'=>'int', 'day'=>'int'], -'DateTime::setISODate' => ['static', 'year'=>'int', 'week'=>'int', 'dayOfWeek='=>'int'], -'DateTime::setTime' => ['static', 'hour'=>'int', 'minute'=>'int', 'second='=>'int', 'microsecond='=>'int'], -'DateTime::setTimestamp' => ['static', 'timestamp'=>'int'], -'DateTime::setTimezone' => ['static', 'timezone'=>'DateTimeZone'], -'DateTime::sub' => ['static', 'interval'=>'DateInterval'], -'DateTimeImmutable::__wakeup' => ['void'], -'DateTimeImmutable::createFromInterface' => ['static', 'object' => 'DateTimeInterface'], -'DateTimeImmutable::getLastErrors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], -'DateTimeInterface::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'], -'DateTimeInterface::format' => ['string', 'format'=>'string'], -'DateTimeInterface::getOffset' => ['int'], -'DateTimeInterface::getTimestamp' => ['int'], -'DateTimeInterface::getTimezone' => ['DateTimeZone|false'], -'DateTimeInterface::__serialize' => ['array'], -'DateTimeInterface::__unserialize' => ['void', 'data'=>'array'], -'DateTimeZone::__construct' => ['void', 'timezone'=>'non-empty-string'], -'DateTimeZone::__set_state' => ['DateTimeZone', 'array'=>'array'], -'DateTimeZone::__wakeup' => ['void'], -'DateTimeZone::getLocation' => ['array|false'], -'DateTimeZone::getName' => ['non-empty-string'], -'DateTimeZone::getOffset' => ['int', 'datetime'=>'DateTimeInterface'], -'DateTimeZone::getTransitions' => ['list|false', 'timestampBegin='=>'int', 'timestampEnd='=>'int'], -'DateTimeZone::listAbbreviations' => ['array>'], -'DateTimeZone::listIdentifiers' => ['list', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'], -'db2_autocommit' => ['0|1|bool', 'connection'=>'resource', 'value='=>'0|1'], -'db2_bind_param' => ['bool', 'stmt'=>'resource', 'parameter_number'=>'int', 'variable_name'=>'string', 'parameter_type='=>'int', 'data_type='=>'int', 'precision='=>'int', 'scale='=>'int'], -'db2_client_info' => ['stdClass|false', 'connection'=>'resource'], -'db2_close' => ['bool', 'connection'=>'resource'], -'db2_column_privileges' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'column_name='=>'?string'], -'db2_columns' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'column_name='=>'?string'], -'db2_commit' => ['bool', 'connection'=>'resource'], -'db2_conn_error' => ['string', 'connection='=>'resource'], -'db2_conn_errormsg' => ['string', 'connection='=>'resource'], -'db2_connect' => ['resource|false', 'database'=>'string', 'username'=>'?string', 'password'=>'?string', 'options='=>'array'], -'db2_cursor_type' => ['int', 'stmt'=>'resource'], -'db2_escape_string' => ['string', 'string_literal'=>'string'], -'db2_exec' => ['resource|false', 'connection'=>'resource', 'statement'=>'string', 'options='=>'array'], -'db2_execute' => ['bool', 'stmt'=>'resource', 'parameters='=>'array'], -'db2_fetch_array' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], -'db2_fetch_assoc' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], -'db2_fetch_both' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], -'db2_fetch_object' => ['stdClass|false', 'stmt'=>'resource', 'row_number='=>'?int'], -'db2_fetch_row' => ['bool', 'stmt'=>'resource', 'row_number='=>'?int'], -'db2_field_display_size' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_name' => ['string|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_num' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_precision' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_scale' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_type' => ['string|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_field_width' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_foreign_keys' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string'], -'db2_free_result' => ['bool', 'stmt'=>'resource'], -'db2_free_stmt' => ['bool', 'stmt'=>'resource'], -'db2_get_option' => ['string|false', 'resource'=>'resource', 'option'=>'string'], -'db2_last_insert_id' => ['string|null', 'resource'=>'resource'], -'db2_lob_read' => ['string|false', 'stmt'=>'resource', 'colnum'=>'int', 'length'=>'int'], -'db2_next_result' => ['resource|false', 'stmt'=>'resource'], -'db2_num_fields' => ['int|false', 'stmt'=>'resource'], -'db2_num_rows' => ['int|false', 'stmt'=>'resource'], -'db2_pclose' => ['bool', 'resource'=>'resource'], -'db2_pconnect' => ['resource|false', 'database'=>'string', 'username'=>'?string', 'password'=>'?string', 'options='=>'array'], -'db2_prepare' => ['resource|false', 'connection'=>'resource', 'statement'=>'string', 'options='=>'array'], -'db2_primary_keys' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string'], -'db2_primarykeys' => [''], -'db2_procedure_columns' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'procedure'=>'string', 'parameter'=>'?string'], -'db2_procedurecolumns' => [''], -'db2_procedures' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'procedure'=>'string'], -'db2_result' => ['mixed', 'stmt'=>'resource', 'column'=>'string|int'], -'db2_rollback' => ['bool', 'connection'=>'resource'], -'db2_server_info' => ['stdClass|false', 'connection'=>'resource'], -'db2_set_option' => ['bool', 'resource'=>'resource', 'options'=>'array', 'type'=>'int'], -'db2_setoption' => [''], -'db2_special_columns' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'table_name'=>'string', 'scope'=>'int'], -'db2_specialcolumns' => [''], -'db2_statistics' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string', 'unique'=>'bool'], -'db2_stmt_error' => ['string', 'stmt='=>'resource'], -'db2_stmt_errormsg' => ['string', 'stmt='=>'resource'], -'db2_table_privileges' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string'], -'db2_tableprivileges' => [''], -'db2_tables' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'table_type='=>'?string'], -'dba_close' => ['void', 'dba'=>'resource'], -'dba_delete' => ['bool', 'key'=>'array|string', 'dba'=>'resource'], -'dba_exists' => ['bool', 'key'=>'array|string', 'dba'=>'resource'], -'dba_fetch' => ['string|false', 'key'=>'array|string', 'skip'=>'int', 'dba'=>'resource'], -'dba_fetch\'1' => ['string|false', 'key'=>'array|string', 'skip'=>'resource'], -'dba_firstkey' => ['string', 'dba'=>'resource'], -'dba_handlers' => ['array', 'full_info='=>'bool'], -'dba_insert' => ['bool', 'key'=>'array|string', 'value'=>'string', 'dba'=>'resource'], -'dba_key_split' => ['array|false', 'key'=>'string|false|null'], -'dba_list' => ['array'], -'dba_nextkey' => ['string', 'dba'=>'resource'], -'dba_open' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'?string', 'permission='=>'int', 'map_size='=>'int', 'flags='=>'?int'], -'dba_optimize' => ['bool', 'dba'=>'resource'], -'dba_popen' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'?string', 'permission='=>'int', 'map_size='=>'int', 'flags='=>'?int'], -'dba_replace' => ['bool', 'key'=>'array|string', 'value'=>'string', 'dba'=>'resource'], -'dba_sync' => ['bool', 'dba'=>'resource'], -'dbase_add_record' => ['bool', 'dbase_identifier'=>'resource', 'record'=>'array'], -'dbase_close' => ['bool', 'dbase_identifier'=>'resource'], -'dbase_create' => ['resource|false', 'filename'=>'string', 'fields'=>'array'], -'dbase_delete_record' => ['bool', 'dbase_identifier'=>'resource', 'record_number'=>'int'], -'dbase_get_header_info' => ['array', 'dbase_identifier'=>'resource'], -'dbase_get_record' => ['array', 'dbase_identifier'=>'resource', 'record_number'=>'int'], -'dbase_get_record_with_names' => ['array', 'dbase_identifier'=>'resource', 'record_number'=>'int'], -'dbase_numfields' => ['int', 'dbase_identifier'=>'resource'], -'dbase_numrecords' => ['int', 'dbase_identifier'=>'resource'], -'dbase_open' => ['resource|false', 'filename'=>'string', 'mode'=>'int'], -'dbase_pack' => ['bool', 'dbase_identifier'=>'resource'], -'dbase_replace_record' => ['bool', 'dbase_identifier'=>'resource', 'record'=>'array', 'record_number'=>'int'], -'dbplus_add' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_aql' => ['resource', 'query'=>'string', 'server='=>'string', 'dbpath='=>'string'], -'dbplus_chdir' => ['string', 'newdir='=>'string'], -'dbplus_close' => ['mixed', 'relation'=>'resource'], -'dbplus_curr' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_errcode' => ['string', 'errno='=>'int'], -'dbplus_errno' => ['int'], -'dbplus_find' => ['int', 'relation'=>'resource', 'constraints'=>'array', 'tuple'=>'mixed'], -'dbplus_first' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_flush' => ['int', 'relation'=>'resource'], -'dbplus_freealllocks' => ['int'], -'dbplus_freelock' => ['int', 'relation'=>'resource', 'tuple'=>'string'], -'dbplus_freerlocks' => ['int', 'relation'=>'resource'], -'dbplus_getlock' => ['int', 'relation'=>'resource', 'tuple'=>'string'], -'dbplus_getunique' => ['int', 'relation'=>'resource', 'uniqueid'=>'int'], -'dbplus_info' => ['int', 'relation'=>'resource', 'key'=>'string', 'result'=>'array'], -'dbplus_last' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_lockrel' => ['int', 'relation'=>'resource'], -'dbplus_next' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_open' => ['resource', 'name'=>'string'], -'dbplus_prev' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_rchperm' => ['int', 'relation'=>'resource', 'mask'=>'int', 'user'=>'string', 'group'=>'string'], -'dbplus_rcreate' => ['resource', 'name'=>'string', 'domlist'=>'mixed', 'overwrite='=>'bool'], -'dbplus_rcrtexact' => ['mixed', 'name'=>'string', 'relation'=>'resource', 'overwrite='=>'bool'], -'dbplus_rcrtlike' => ['mixed', 'name'=>'string', 'relation'=>'resource', 'overwrite='=>'int'], -'dbplus_resolve' => ['array', 'relation_name'=>'string'], -'dbplus_restorepos' => ['int', 'relation'=>'resource', 'tuple'=>'array'], -'dbplus_rkeys' => ['mixed', 'relation'=>'resource', 'domlist'=>'mixed'], -'dbplus_ropen' => ['resource', 'name'=>'string'], -'dbplus_rquery' => ['resource', 'query'=>'string', 'dbpath='=>'string'], -'dbplus_rrename' => ['int', 'relation'=>'resource', 'name'=>'string'], -'dbplus_rsecindex' => ['mixed', 'relation'=>'resource', 'domlist'=>'mixed', 'type'=>'int'], -'dbplus_runlink' => ['int', 'relation'=>'resource'], -'dbplus_rzap' => ['int', 'relation'=>'resource'], -'dbplus_savepos' => ['int', 'relation'=>'resource'], -'dbplus_setindex' => ['int', 'relation'=>'resource', 'idx_name'=>'string'], -'dbplus_setindexbynumber' => ['int', 'relation'=>'resource', 'idx_number'=>'int'], -'dbplus_sql' => ['resource', 'query'=>'string', 'server='=>'string', 'dbpath='=>'string'], -'dbplus_tcl' => ['string', 'sid'=>'int', 'script'=>'string'], -'dbplus_tremove' => ['int', 'relation'=>'resource', 'tuple'=>'array', 'current='=>'array'], -'dbplus_undo' => ['int', 'relation'=>'resource'], -'dbplus_undoprepare' => ['int', 'relation'=>'resource'], -'dbplus_unlockrel' => ['int', 'relation'=>'resource'], -'dbplus_unselect' => ['int', 'relation'=>'resource'], -'dbplus_update' => ['int', 'relation'=>'resource', 'old'=>'array', 'new'=>'array'], -'dbplus_xlockrel' => ['int', 'relation'=>'resource'], -'dbplus_xunlockrel' => ['int', 'relation'=>'resource'], -'dbx_close' => ['int', 'link_identifier'=>'object'], -'dbx_compare' => ['int', 'row_a'=>'array', 'row_b'=>'array', 'column_key'=>'string', 'flags='=>'int'], -'dbx_connect' => ['object', 'module'=>'mixed', 'host'=>'string', 'database'=>'string', 'username'=>'string', 'password'=>'string', 'persistent='=>'int'], -'dbx_error' => ['string', 'link_identifier'=>'object'], -'dbx_escape_string' => ['string', 'link_identifier'=>'object', 'text'=>'string'], -'dbx_fetch_row' => ['mixed', 'result_identifier'=>'object'], -'dbx_query' => ['mixed', 'link_identifier'=>'object', 'sql_statement'=>'string', 'flags='=>'int'], -'dbx_sort' => ['bool', 'result'=>'object', 'user_compare_function'=>'string'], -'dcgettext' => ['string', 'domain'=>'string', 'message'=>'string', 'category'=>'int'], -'dcngettext' => ['string', 'domain'=>'string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int', 'category'=>'int'], -'deaggregate' => ['', 'object'=>'object', 'class_name='=>'string'], -'debug_backtrace' => ['list', 'options='=>'int', 'limit='=>'int'], -'debug_print_backtrace' => ['void', 'options='=>'int', 'limit='=>'int'], -'debug_zval_dump' => ['void', 'value'=>'mixed', '...values='=>'mixed'], -'debugger_connect' => [''], -'debugger_connector_pid' => [''], -'debugger_get_server_start_time' => [''], -'debugger_print' => [''], -'debugger_start_debug' => [''], -'decbin' => ['string', 'num'=>'int'], -'dechex' => ['string', 'num'=>'int'], -'decoct' => ['string', 'num'=>'int'], -'define' => ['bool', 'constant_name'=>'string', 'value'=>'array|scalar|null', 'case_insensitive='=>'false'], -'define_syslog_variables' => ['void'], -'defined' => ['bool', 'constant_name'=>'string'], -'deflate_add' => ['string|false', 'context'=>'DeflateContext', 'data'=>'string', 'flush_mode='=>'int'], -'deflate_init' => ['DeflateContext|false', 'encoding'=>'int', 'options='=>'array'], -'deg2rad' => ['float', 'num'=>'float'], -'dgettext' => ['string', 'domain'=>'string', 'message'=>'string'], -'dio_close' => ['void', 'fd'=>'resource'], -'dio_fcntl' => ['mixed', 'fd'=>'resource', 'cmd'=>'int', 'args='=>'mixed'], -'dio_open' => ['resource|false', 'filename'=>'string', 'flags'=>'int', 'mode='=>'int'], -'dio_read' => ['string', 'fd'=>'resource', 'length='=>'int'], -'dio_seek' => ['int', 'fd'=>'resource', 'pos'=>'int', 'whence='=>'int'], -'dio_stat' => ['?array', 'fd'=>'resource'], -'dio_tcsetattr' => ['bool', 'fd'=>'resource', 'options'=>'array'], -'dio_truncate' => ['bool', 'fd'=>'resource', 'offset'=>'int'], -'dio_write' => ['int', 'fd'=>'resource', 'data'=>'string', 'length='=>'int'], -'dir' => ['Directory|false', 'directory'=>'string', 'context='=>'resource'], -'Directory::close' => ['void'], -'Directory::read' => ['string|false'], -'Directory::rewind' => ['void'], -'DirectoryIterator::__construct' => ['void', 'directory'=>'string'], -'DirectoryIterator::__toString' => ['string'], -'DirectoryIterator::current' => ['DirectoryIterator'], -'DirectoryIterator::getATime' => ['int'], -'DirectoryIterator::getBasename' => ['string', 'suffix='=>'string'], -'DirectoryIterator::getCTime' => ['int'], -'DirectoryIterator::getExtension' => ['string'], -'DirectoryIterator::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'DirectoryIterator::getFilename' => ['string'], -'DirectoryIterator::getGroup' => ['int'], -'DirectoryIterator::getInode' => ['int'], -'DirectoryIterator::getLinkTarget' => ['string'], -'DirectoryIterator::getMTime' => ['int'], -'DirectoryIterator::getOwner' => ['int'], -'DirectoryIterator::getPath' => ['string'], -'DirectoryIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'?class-string'], -'DirectoryIterator::getPathname' => ['string'], -'DirectoryIterator::getPerms' => ['int'], -'DirectoryIterator::getRealPath' => ['non-falsy-string'], -'DirectoryIterator::getSize' => ['int'], -'DirectoryIterator::getType' => ['string'], -'DirectoryIterator::isDir' => ['bool'], -'DirectoryIterator::isDot' => ['bool'], -'DirectoryIterator::isExecutable' => ['bool'], -'DirectoryIterator::isFile' => ['bool'], -'DirectoryIterator::isLink' => ['bool'], -'DirectoryIterator::isReadable' => ['bool'], -'DirectoryIterator::isWritable' => ['bool'], -'DirectoryIterator::key' => ['string'], -'DirectoryIterator::next' => ['void'], -'DirectoryIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'DirectoryIterator::rewind' => ['void'], -'DirectoryIterator::seek' => ['void', 'offset'=>'int'], -'DirectoryIterator::setFileClass' => ['void', 'class='=>'class-string'], -'DirectoryIterator::setInfoClass' => ['void', 'class='=>'class-string'], -'DirectoryIterator::valid' => ['bool'], -'dirname' => ['string', 'path'=>'string', 'levels='=>'int<1, max>'], -'disk_free_space' => ['float|false', 'directory'=>'string'], -'disk_total_space' => ['float|false', 'directory'=>'string'], -'diskfreespace' => ['float|false', 'directory'=>'string'], -'display_disabled_function' => [''], -'dl' => ['bool', 'extension_filename'=>'string'], -'dngettext' => ['string', 'domain'=>'string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int'], -'dns_check_record' => ['bool', 'hostname'=>'string', 'type='=>'string'], -'dns_get_mx' => ['bool', 'hostname'=>'string', '&w_hosts'=>'array', '&w_weights='=>'array'], -'dns_get_record' => ['list|false', 'hostname'=>'string', 'type='=>'int', '&w_authoritative_name_servers='=>'array', '&w_additional_records='=>'array', 'raw='=>'bool'], -'dom_document_relaxNG_validate_file' => ['bool', 'filename'=>'string'], -'dom_document_relaxNG_validate_xml' => ['bool', 'source'=>'string'], -'dom_document_schema_validate' => ['bool', 'source'=>'string', 'flags'=>'int'], -'dom_document_schema_validate_file' => ['bool', 'filename'=>'string', 'flags'=>'int'], -'dom_document_xinclude' => ['int', 'options'=>'int'], -'dom_import_simplexml' => ['DOMElement', 'node'=>'SimpleXMLElement'], -'dom_xpath_evaluate' => ['', 'expr'=>'string', 'context'=>'DOMNode', 'registernodens'=>'bool'], -'dom_xpath_query' => ['DOMNodeList', 'expr'=>'string', 'context'=>'DOMNode', 'registernodens'=>'bool'], -'dom_xpath_register_ns' => ['bool', 'prefix'=>'string', 'uri'=>'string'], -'dom_xpath_register_php_functions' => [''], -'DomainException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'DomainException::__toString' => ['string'], -'DomainException::__wakeup' => ['void'], -'DomainException::getCode' => ['int'], -'DomainException::getFile' => ['string'], -'DomainException::getLine' => ['int'], -'DomainException::getMessage' => ['string'], -'DomainException::getPrevious' => ['?Throwable'], -'DomainException::getTrace' => ['list\',args?:array}>'], -'DomainException::getTraceAsString' => ['string'], -'DOMAttr::__construct' => ['void', 'name'=>'string', 'value='=>'string'], -'DOMAttr::getLineNo' => ['int'], -'DOMAttr::getNodePath' => ['?string'], -'DOMAttr::hasAttributes' => ['bool'], -'DOMAttr::hasChildNodes' => ['bool'], -'DOMAttr::insertBefore' => ['DOMNode|false', 'node'=>'DOMNode', 'child='=>'?DOMNode'], -'DOMAttr::isDefaultNamespace' => ['bool', 'namespace'=>'string'], -'DOMAttr::isId' => ['bool'], -'DOMAttr::isSameNode' => ['bool', 'otherNode'=>'DOMNode'], -'DOMAttr::isSupported' => ['bool', 'feature'=>'string', 'version'=>'string'], -'DOMAttr::lookupNamespaceUri' => ['string|null', 'prefix'=>'string|null'], -'DOMAttr::lookupPrefix' => ['string|null', 'namespace'=>'string'], -'DOMAttr::normalize' => ['void'], -'DOMAttr::removeChild' => ['DOMNode|false', 'child'=>'DOMNode'], -'DOMAttr::replaceChild' => ['DOMNode|false', 'node'=>'DOMNode', 'child'=>'DOMNode'], -'DomAttribute::name' => ['string'], -'DomAttribute::set_value' => ['bool', 'content'=>'string'], -'DomAttribute::specified' => ['bool'], -'DomAttribute::value' => ['string'], -'DOMCdataSection::__construct' => ['void', 'data'=>'string'], -'DOMCharacterData::appendData' => ['true', 'data'=>'string'], -'DOMCharacterData::deleteData' => ['bool', 'offset'=>'int', 'count'=>'int'], -'DOMCharacterData::insertData' => ['bool', 'offset'=>'int', 'data'=>'string'], -'DOMCharacterData::replaceData' => ['bool', 'offset'=>'int', 'count'=>'int', 'data'=>'string'], -'DOMCharacterData::substringData' => ['string', 'offset'=>'int', 'count'=>'int'], -'DOMComment::__construct' => ['void', 'data='=>'string'], -'DOMDocument::__construct' => ['void', 'version='=>'string', 'encoding='=>'string'], -'DOMDocument::createAttribute' => ['DOMAttr|false', 'localName'=>'string'], -'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespace'=>'string|null', 'qualifiedName'=>'string'], -'DOMDocument::createCDATASection' => ['DOMCDATASection|false', 'data'=>'string'], -'DOMDocument::createComment' => ['DOMComment', 'data'=>'string'], -'DOMDocument::createDocumentFragment' => ['DOMDocumentFragment'], -'DOMDocument::createElement' => ['DOMElement|false', 'localName'=>'string', 'value='=>'string'], -'DOMDocument::createElementNS' => ['DOMElement|false', 'namespace'=>'string|null', 'qualifiedName'=>'string', 'value='=>'string'], -'DOMDocument::createEntityReference' => ['DOMEntityReference|false', 'name'=>'string'], -'DOMDocument::createProcessingInstruction' => ['DOMProcessingInstruction|false', 'target'=>'string', 'data='=>'string'], -'DOMDocument::createTextNode' => ['DOMText', 'data'=>'string'], -'DOMDocument::getElementById' => ['?DOMElement', 'elementId'=>'string'], -'DOMDocument::getElementsByTagName' => ['DOMNodeList', 'qualifiedName'=>'string'], -'DOMDocument::getElementsByTagNameNS' => ['DOMNodeList', 'namespace'=>'?string', 'localName'=>'string'], -'DOMDocument::importNode' => ['DOMNode|false', 'node'=>'DOMNode', 'deep='=>'bool'], -'DOMDocument::load' => ['bool', 'filename'=>'string', 'options='=>'int'], -'DOMDocument::loadHTML' => ['bool', 'source'=>'non-empty-string', 'options='=>'int'], -'DOMDocument::loadHTMLFile' => ['bool', 'filename'=>'string', 'options='=>'int'], -'DOMDocument::loadXML' => ['bool', 'source'=>'non-empty-string', 'options='=>'int'], -'DOMDocument::normalizeDocument' => ['void'], -'DOMDocument::registerNodeClass' => ['bool', 'baseClass'=>'string', 'extendedClass'=>'?string'], -'DOMDocument::relaxNGValidate' => ['bool', 'filename'=>'string'], -'DOMDocument::relaxNGValidateSource' => ['bool', 'source'=>'string'], -'DOMDocument::save' => ['int|false', 'filename'=>'string', 'options='=>'int'], -'DOMDocument::saveHTML' => ['string|false', 'node='=>'?DOMNode'], -'DOMDocument::saveHTMLFile' => ['int|false', 'filename'=>'string'], -'DOMDocument::saveXML' => ['string|false', 'node='=>'?DOMNode', 'options='=>'int'], -'DOMDocument::schemaValidate' => ['bool', 'filename'=>'string', 'flags='=>'int'], -'DOMDocument::schemaValidateSource' => ['bool', 'source'=>'string', 'flags='=>'int'], -'DOMDocument::validate' => ['bool'], -'DOMDocument::xinclude' => ['int', 'options='=>'int'], -'DOMDocumentFragment::__construct' => ['void'], -'DOMDocumentFragment::appendXML' => ['bool', 'data'=>'string'], -'DOMElement::__construct' => ['void', 'qualifiedName'=>'string', 'value='=>'?string', 'namespace='=>'string'], -'DOMElement::getAttribute' => ['string', 'qualifiedName'=>'string'], -'DOMElement::getAttributeNode' => ['DOMAttr', 'qualifiedName'=>'string'], -'DOMElement::getAttributeNodeNS' => ['DOMAttr', 'namespace'=>'string|null', 'localName'=>'string'], -'DOMElement::getAttributeNS' => ['string', 'namespace'=>'string|null', 'localName'=>'string'], -'DOMElement::getElementsByTagName' => ['DOMNodeList', 'qualifiedName'=>'string'], -'DOMElement::getElementsByTagNameNS' => ['DOMNodeList', 'namespace'=>'string|null', 'localName'=>'string'], -'DOMElement::hasAttribute' => ['bool', 'qualifiedName'=>'string'], -'DOMElement::hasAttributeNS' => ['bool', 'namespace'=>'string|null', 'localName'=>'string'], -'DOMElement::removeAttribute' => ['bool', 'qualifiedName'=>'string'], -'DOMElement::removeAttributeNode' => ['DOMAttr|false', 'attr'=>'DOMAttr'], -'DOMElement::removeAttributeNS' => ['void', 'namespace'=>'string|null', 'localName'=>'string'], -'DOMElement::setAttribute' => ['DOMAttr|false', 'qualifiedName'=>'string', 'value'=>'string'], -'DOMElement::setAttributeNode' => ['?DOMAttr', 'attr'=>'DOMAttr'], -'DOMElement::setAttributeNodeNS' => ['DOMAttr', 'attr'=>'DOMAttr'], -'DOMElement::setAttributeNS' => ['void', 'namespace'=>'string|null', 'qualifiedName'=>'string', 'value'=>'string'], -'DOMElement::setIdAttribute' => ['void', 'qualifiedName'=>'string', 'isId'=>'bool'], -'DOMElement::setIdAttributeNode' => ['void', 'attr'=>'DOMAttr', 'isId'=>'bool'], -'DOMElement::setIdAttributeNS' => ['void', 'namespace'=>'string', 'qualifiedName'=>'string', 'isId'=>'bool'], -'DOMEntityReference::__construct' => ['void', 'name'=>'string'], -'DOMImplementation::__construct' => ['void'], -'DOMImplementation::createDocument' => ['DOMDocument|false', 'namespace='=>'?string', 'qualifiedName='=>'string', 'doctype='=>'?DOMDocumentType'], -'DOMImplementation::createDocumentType' => ['DOMDocumentType|false', 'qualifiedName'=>'string', 'publicId='=>'string', 'systemId='=>'string'], -'DOMImplementation::hasFeature' => ['bool', 'feature'=>'string', 'version'=>'string'], -'DOMNamedNodeMap::count' => ['int'], -'DOMNamedNodeMap::getNamedItem' => ['?DOMNode', 'qualifiedName'=>'string'], -'DOMNamedNodeMap::getNamedItemNS' => ['?DOMNode', 'namespace'=>'?string', 'localName'=>'string'], -'DOMNamedNodeMap::item' => ['?DOMNode', 'index'=>'int'], -'DOMNode::appendChild' => ['DOMNode|false', 'node'=>'DOMNode'], -'DOMNode::C14N' => ['string|false', 'exclusive='=>'bool', 'withComments='=>'bool', 'xpath='=>'?array', 'nsPrefixes='=>'?array'], -'DOMNode::C14NFile' => ['int|false', 'uri'=>'string', 'exclusive='=>'bool', 'withComments='=>'bool', 'xpath='=>'?array', 'nsPrefixes='=>'?array'], -'DOMNode::cloneNode' => ['DOMNode', 'deep='=>'bool'], -'DOMNode::getLineNo' => ['int'], -'DOMNode::getNodePath' => ['?string'], -'DOMNode::hasAttributes' => ['bool'], -'DOMNode::hasChildNodes' => ['bool'], -'DOMNode::insertBefore' => ['DOMNode|false', 'node'=>'DOMNode', 'child='=>'?DOMNode'], -'DOMNode::isDefaultNamespace' => ['bool', 'namespace'=>'string'], -'DOMNode::isSameNode' => ['bool', 'otherNode'=>'DOMNode'], -'DOMNode::isSupported' => ['bool', 'feature'=>'string', 'version'=>'string'], -'DOMNode::lookupNamespaceURI' => ['string|null', 'prefix'=>'string|null'], -'DOMNode::lookupPrefix' => ['string|null', 'namespace'=>'string'], -'DOMNode::normalize' => ['void'], -'DOMNode::removeChild' => ['DOMNode|false', 'child'=>'DOMNode'], -'DOMNode::replaceChild' => ['DOMNode|false', 'node'=>'DOMNode', 'child'=>'DOMNode'], -'DOMNodeList::count' => ['int'], -'DOMNodeList::item' => ['?DOMNode', 'index'=>'int'], -'DOMProcessingInstruction::__construct' => ['void', 'name'=>'string', 'value='=>'string'], -'DOMText::__construct' => ['void', 'data='=>'string'], -'DOMText::isElementContentWhitespace' => ['bool'], -'DOMText::isWhitespaceInElementContent' => ['bool'], -'DOMText::splitText' => ['DOMText', 'offset'=>'int'], -'domxml_new_doc' => ['DomDocument', 'version'=>'string'], -'domxml_open_file' => ['DomDocument', 'filename'=>'string', 'mode='=>'int', 'error='=>'array'], -'domxml_open_mem' => ['DomDocument', 'string'=>'string', 'mode='=>'int', 'error='=>'array'], -'domxml_version' => ['string'], -'domxml_xmltree' => ['DomDocument', 'string'=>'string'], -'domxml_xslt_stylesheet' => ['DomXsltStylesheet', 'xsl_buf'=>'string'], -'domxml_xslt_stylesheet_doc' => ['DomXsltStylesheet', 'xsl_doc'=>'DOMDocument'], -'domxml_xslt_stylesheet_file' => ['DomXsltStylesheet', 'xsl_file'=>'string'], -'domxml_xslt_version' => ['int'], -'DOMXPath::__construct' => ['void', 'document'=>'DOMDocument', 'registerNodeNS='=>'bool'], -'DOMXPath::evaluate' => ['mixed', 'expression'=>'string', 'contextNode='=>'?DOMNode', 'registerNodeNS='=>'bool'], -'DOMXPath::query' => ['DOMNodeList|false', 'expression'=>'string', 'contextNode='=>'?DOMNode', 'registerNodeNS='=>'bool'], -'DOMXPath::registerNamespace' => ['bool', 'prefix'=>'string', 'namespace'=>'string'], -'DOMXPath::registerPhpFunctions' => ['void', 'restrict='=>'array|string|null'], -'DomXsltStylesheet::process' => ['DomDocument', 'xml_doc'=>'DOMDocument', 'xslt_params='=>'array', 'is_xpath_param='=>'bool', 'profile_filename='=>'string'], -'DomXsltStylesheet::result_dump_file' => ['string', 'xmldoc'=>'DOMDocument', 'filename'=>'string'], -'DomXsltStylesheet::result_dump_mem' => ['string', 'xmldoc'=>'DOMDocument'], -'DOTNET::__call' => ['mixed', 'name'=>'string', 'args'=>''], -'DOTNET::__construct' => ['void', 'assembly_name'=>'string', 'datatype_name'=>'string', 'codepage='=>'int'], -'DOTNET::__get' => ['mixed', 'name'=>'string'], -'DOTNET::__set' => ['void', 'name'=>'string', 'value'=>''], -'dotnet_load' => ['int', 'assembly_name'=>'string', 'datatype_name='=>'string', 'codepage='=>'int'], -'doubleval' => ['float', 'value'=>'mixed'], -'Ds\Collection::clear' => ['void'], -'Ds\Collection::copy' => ['Ds\Collection'], -'Ds\Collection::isEmpty' => ['bool'], -'Ds\Collection::toArray' => ['array'], -'Ds\Deque::__construct' => ['void', 'values='=>'mixed'], -'Ds\Deque::allocate' => ['void', 'capacity'=>'int'], -'Ds\Deque::apply' => ['void', 'callback'=>'callable'], -'Ds\Deque::capacity' => ['int'], -'Ds\Deque::clear' => ['void'], -'Ds\Deque::contains' => ['bool', '...values='=>'mixed'], -'Ds\Deque::copy' => ['Ds\Deque'], -'Ds\Deque::count' => ['int'], -'Ds\Deque::filter' => ['Ds\Deque', 'callback='=>'callable'], -'Ds\Deque::find' => ['mixed', 'value'=>'mixed'], -'Ds\Deque::first' => ['mixed'], -'Ds\Deque::get' => ['void', 'index'=>'int'], -'Ds\Deque::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], -'Ds\Deque::isEmpty' => ['bool'], -'Ds\Deque::join' => ['string', 'glue='=>'string'], -'Ds\Deque::jsonSerialize' => ['array'], -'Ds\Deque::last' => ['mixed'], -'Ds\Deque::map' => ['Ds\Deque', 'callback'=>'callable'], -'Ds\Deque::merge' => ['Ds\Deque', 'values'=>'mixed'], -'Ds\Deque::pop' => ['mixed'], -'Ds\Deque::push' => ['void', '...values='=>'mixed'], -'Ds\Deque::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], -'Ds\Deque::remove' => ['mixed', 'index'=>'int'], -'Ds\Deque::reverse' => ['void'], -'Ds\Deque::reversed' => ['Ds\Deque'], -'Ds\Deque::rotate' => ['void', 'rotations'=>'int'], -'Ds\Deque::set' => ['void', 'index'=>'int', 'value'=>'mixed'], -'Ds\Deque::shift' => ['mixed'], -'Ds\Deque::slice' => ['Ds\Deque', 'index'=>'int', 'length='=>'?int'], -'Ds\Deque::sort' => ['void', 'comparator='=>'callable'], -'Ds\Deque::sorted' => ['Ds\Deque', 'comparator='=>'callable'], -'Ds\Deque::sum' => ['int|float'], -'Ds\Deque::toArray' => ['array'], -'Ds\Deque::unshift' => ['void', '...values='=>'mixed'], -'Ds\Hashable::equals' => ['bool', 'object'=>'mixed'], -'Ds\Hashable::hash' => ['mixed'], -'Ds\Map::__construct' => ['void', 'values='=>'mixed'], -'Ds\Map::allocate' => ['void', 'capacity'=>'int'], -'Ds\Map::apply' => ['void', 'callback'=>'callable'], -'Ds\Map::capacity' => ['int'], -'Ds\Map::clear' => ['void'], -'Ds\Map::copy' => ['Ds\Map'], -'Ds\Map::count' => ['int'], -'Ds\Map::diff' => ['Ds\Map', 'map'=>'Ds\Map'], -'Ds\Map::filter' => ['Ds\Map', 'callback='=>'callable'], -'Ds\Map::first' => ['Ds\Pair'], -'Ds\Map::get' => ['mixed', 'key'=>'mixed', 'default='=>'mixed'], -'Ds\Map::hasKey' => ['bool', 'key'=>'mixed'], -'Ds\Map::hasValue' => ['bool', 'value'=>'mixed'], -'Ds\Map::intersect' => ['Ds\Map', 'map'=>'Ds\Map'], -'Ds\Map::isEmpty' => ['bool'], -'Ds\Map::jsonSerialize' => ['array'], -'Ds\Map::keys' => ['Ds\Set'], -'Ds\Map::ksort' => ['void', 'comparator='=>'callable'], -'Ds\Map::ksorted' => ['Ds\Map', 'comparator='=>'callable'], -'Ds\Map::last' => ['Ds\Pair'], -'Ds\Map::map' => ['Ds\Map', 'callback'=>'callable'], -'Ds\Map::merge' => ['Ds\Map', 'values'=>'mixed'], -'Ds\Map::pairs' => ['Ds\Sequence'], -'Ds\Map::put' => ['void', 'key'=>'mixed', 'value'=>'mixed'], -'Ds\Map::putAll' => ['void', 'values'=>'mixed'], -'Ds\Map::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], -'Ds\Map::remove' => ['mixed', 'key'=>'mixed', 'default='=>'mixed'], -'Ds\Map::reverse' => ['void'], -'Ds\Map::reversed' => ['Ds\Map'], -'Ds\Map::skip' => ['Ds\Pair', 'position'=>'int'], -'Ds\Map::slice' => ['Ds\Map', 'index'=>'int', 'length='=>'?int'], -'Ds\Map::sort' => ['void', 'comparator='=>'callable'], -'Ds\Map::sorted' => ['Ds\Map', 'comparator='=>'callable'], -'Ds\Map::sum' => ['int|float'], -'Ds\Map::toArray' => ['array'], -'Ds\Map::union' => ['Ds\Map', 'map'=>'Ds\Map'], -'Ds\Map::values' => ['Ds\Sequence'], -'Ds\Map::xor' => ['Ds\Map', 'map'=>'Ds\Map'], -'Ds\Pair::__construct' => ['void', 'key='=>'mixed', 'value='=>'mixed'], -'Ds\Pair::clear' => ['void'], -'Ds\Pair::copy' => ['Ds\Pair'], -'Ds\Pair::isEmpty' => ['bool'], -'Ds\Pair::jsonSerialize' => ['array'], -'Ds\Pair::toArray' => ['array'], -'Ds\PriorityQueue::__construct' => ['void'], -'Ds\PriorityQueue::allocate' => ['void', 'capacity'=>'int'], -'Ds\PriorityQueue::capacity' => ['int'], -'Ds\PriorityQueue::clear' => ['void'], -'Ds\PriorityQueue::copy' => ['Ds\PriorityQueue'], -'Ds\PriorityQueue::count' => ['int'], -'Ds\PriorityQueue::isEmpty' => ['bool'], -'Ds\PriorityQueue::jsonSerialize' => ['array'], -'Ds\PriorityQueue::peek' => ['mixed'], -'Ds\PriorityQueue::pop' => ['mixed'], -'Ds\PriorityQueue::push' => ['void', 'value'=>'mixed', 'priority'=>'int'], -'Ds\PriorityQueue::toArray' => ['array'], -'Ds\Queue::__construct' => ['void', 'values='=>'mixed'], -'Ds\Queue::allocate' => ['void', 'capacity'=>'int'], -'Ds\Queue::capacity' => ['int'], -'Ds\Queue::clear' => ['void'], -'Ds\Queue::copy' => ['Ds\Queue'], -'Ds\Queue::count' => ['int'], -'Ds\Queue::isEmpty' => ['bool'], -'Ds\Queue::jsonSerialize' => ['array'], -'Ds\Queue::peek' => ['mixed'], -'Ds\Queue::pop' => ['mixed'], -'Ds\Queue::push' => ['void', '...values='=>'mixed'], -'Ds\Queue::toArray' => ['array'], -'Ds\Sequence::allocate' => ['void', 'capacity'=>'int'], -'Ds\Sequence::apply' => ['void', 'callback'=>'callable'], -'Ds\Sequence::capacity' => ['int'], -'Ds\Sequence::contains' => ['bool', '...values='=>'mixed'], -'Ds\Sequence::filter' => ['Ds\Sequence', 'callback='=>'callable'], -'Ds\Sequence::find' => ['mixed', 'value'=>'mixed'], -'Ds\Sequence::first' => ['mixed'], -'Ds\Sequence::get' => ['mixed', 'index'=>'int'], -'Ds\Sequence::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], -'Ds\Sequence::join' => ['string', 'glue='=>'string'], -'Ds\Sequence::last' => ['void'], -'Ds\Sequence::map' => ['Ds\Sequence', 'callback'=>'callable'], -'Ds\Sequence::merge' => ['Ds\Sequence', 'values'=>'mixed'], -'Ds\Sequence::pop' => ['mixed'], -'Ds\Sequence::push' => ['void', '...values='=>'mixed'], -'Ds\Sequence::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], -'Ds\Sequence::remove' => ['mixed', 'index'=>'int'], -'Ds\Sequence::reverse' => ['void'], -'Ds\Sequence::reversed' => ['Ds\Sequence'], -'Ds\Sequence::rotate' => ['void', 'rotations'=>'int'], -'Ds\Sequence::set' => ['void', 'index'=>'int', 'value'=>'mixed'], -'Ds\Sequence::shift' => ['mixed'], -'Ds\Sequence::slice' => ['Ds\Sequence', 'index'=>'int', 'length='=>'?int'], -'Ds\Sequence::sort' => ['void', 'comparator='=>'callable'], -'Ds\Sequence::sorted' => ['Ds\Sequence', 'comparator='=>'callable'], -'Ds\Sequence::sum' => ['int|float'], -'Ds\Sequence::unshift' => ['void', '...values='=>'mixed'], -'Ds\Set::__construct' => ['void', 'values='=>'mixed'], -'Ds\Set::add' => ['void', '...values='=>'mixed'], -'Ds\Set::allocate' => ['void', 'capacity'=>'int'], -'Ds\Set::capacity' => ['int'], -'Ds\Set::clear' => ['void'], -'Ds\Set::contains' => ['bool', '...values='=>'mixed'], -'Ds\Set::copy' => ['Ds\Set'], -'Ds\Set::count' => ['int'], -'Ds\Set::diff' => ['Ds\Set', 'set'=>'Ds\Set'], -'Ds\Set::filter' => ['Ds\Set', 'callback='=>'callable'], -'Ds\Set::first' => ['mixed'], -'Ds\Set::get' => ['mixed', 'index'=>'int'], -'Ds\Set::intersect' => ['Ds\Set', 'set'=>'Ds\Set'], -'Ds\Set::isEmpty' => ['bool'], -'Ds\Set::join' => ['string', 'glue='=>'string'], -'Ds\Set::jsonSerialize' => ['array'], -'Ds\Set::last' => ['mixed'], -'Ds\Set::merge' => ['Ds\Set', 'values'=>'mixed'], -'Ds\Set::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], -'Ds\Set::remove' => ['void', '...values='=>'mixed'], -'Ds\Set::reverse' => ['void'], -'Ds\Set::reversed' => ['Ds\Set'], -'Ds\Set::slice' => ['Ds\Set', 'index'=>'int', 'length='=>'?int'], -'Ds\Set::sort' => ['void', 'comparator='=>'callable'], -'Ds\Set::sorted' => ['Ds\Set', 'comparator='=>'callable'], -'Ds\Set::sum' => ['int|float'], -'Ds\Set::toArray' => ['array'], -'Ds\Set::union' => ['Ds\Set', 'set'=>'Ds\Set'], -'Ds\Set::xor' => ['Ds\Set', 'set'=>'Ds\Set'], -'Ds\Stack::__construct' => ['void', 'values='=>'mixed'], -'Ds\Stack::allocate' => ['void', 'capacity'=>'int'], -'Ds\Stack::capacity' => ['int'], -'Ds\Stack::clear' => ['void'], -'Ds\Stack::copy' => ['Ds\Stack'], -'Ds\Stack::count' => ['int'], -'Ds\Stack::isEmpty' => ['bool'], -'Ds\Stack::jsonSerialize' => ['array'], -'Ds\Stack::peek' => ['mixed'], -'Ds\Stack::pop' => ['mixed'], -'Ds\Stack::push' => ['void', '...values='=>'mixed'], -'Ds\Stack::toArray' => ['array'], -'Ds\Vector::__construct' => ['void', 'values='=>'mixed'], -'Ds\Vector::allocate' => ['void', 'capacity'=>'int'], -'Ds\Vector::apply' => ['void', 'callback'=>'callable'], -'Ds\Vector::capacity' => ['int'], -'Ds\Vector::clear' => ['void'], -'Ds\Vector::contains' => ['bool', '...values='=>'mixed'], -'Ds\Vector::copy' => ['Ds\Vector'], -'Ds\Vector::count' => ['int'], -'Ds\Vector::filter' => ['Ds\Vector', 'callback='=>'callable'], -'Ds\Vector::find' => ['mixed', 'value'=>'mixed'], -'Ds\Vector::first' => ['mixed'], -'Ds\Vector::get' => ['mixed', 'index'=>'int'], -'Ds\Vector::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], -'Ds\Vector::isEmpty' => ['bool'], -'Ds\Vector::join' => ['string', 'glue='=>'string'], -'Ds\Vector::jsonSerialize' => ['array'], -'Ds\Vector::last' => ['mixed'], -'Ds\Vector::map' => ['Ds\Vector', 'callback'=>'callable'], -'Ds\Vector::merge' => ['Ds\Vector', 'values'=>'mixed'], -'Ds\Vector::pop' => ['mixed'], -'Ds\Vector::push' => ['void', '...values='=>'mixed'], -'Ds\Vector::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], -'Ds\Vector::remove' => ['mixed', 'index'=>'int'], -'Ds\Vector::reverse' => ['void'], -'Ds\Vector::reversed' => ['Ds\Vector'], -'Ds\Vector::rotate' => ['void', 'rotations'=>'int'], -'Ds\Vector::set' => ['void', 'index'=>'int', 'value'=>'mixed'], -'Ds\Vector::shift' => ['mixed'], -'Ds\Vector::slice' => ['Ds\Vector', 'index'=>'int', 'length='=>'?int'], -'Ds\Vector::sort' => ['void', 'comparator='=>'callable'], -'Ds\Vector::sorted' => ['Ds\Vector', 'comparator='=>'callable'], -'Ds\Vector::sum' => ['int|float'], -'Ds\Vector::toArray' => ['array'], -'Ds\Vector::unshift' => ['void', '...values='=>'mixed'], -'easter_date' => ['int', 'year='=>'?int', 'mode='=>'int'], -'easter_days' => ['int', 'year='=>'?int', 'mode='=>'int'], -'echo' => ['void', 'arg1'=>'string', '...args='=>'string'], -'eio_busy' => ['resource', 'delay'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_cancel' => ['void', 'req'=>'resource'], -'eio_chmod' => ['resource', 'path'=>'string', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_chown' => ['resource', 'path'=>'string', 'uid'=>'int', 'gid='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_close' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_custom' => ['resource', 'execute'=>'callable', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_dup2' => ['resource', 'fd'=>'mixed', 'fd2'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_event_loop' => ['bool'], -'eio_fallocate' => ['resource', 'fd'=>'mixed', 'mode'=>'int', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_fchmod' => ['resource', 'fd'=>'mixed', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_fchown' => ['resource', 'fd'=>'mixed', 'uid'=>'int', 'gid='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_fdatasync' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_fstat' => ['resource', 'fd'=>'mixed', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_fstatvfs' => ['resource', 'fd'=>'mixed', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_fsync' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_ftruncate' => ['resource', 'fd'=>'mixed', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_futime' => ['resource', 'fd'=>'mixed', 'atime'=>'float', 'mtime'=>'float', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_get_event_stream' => ['mixed'], -'eio_get_last_error' => ['string', 'req'=>'resource'], -'eio_grp' => ['resource', 'callback'=>'callable', 'data='=>'string'], -'eio_grp_add' => ['void', 'grp'=>'resource', 'req'=>'resource'], -'eio_grp_cancel' => ['void', 'grp'=>'resource'], -'eio_grp_limit' => ['void', 'grp'=>'resource', 'limit'=>'int'], -'eio_init' => ['void'], -'eio_link' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_lstat' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_mkdir' => ['resource', 'path'=>'string', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_mknod' => ['resource', 'path'=>'string', 'mode'=>'int', 'dev'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_nop' => ['resource', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_npending' => ['int'], -'eio_nready' => ['int'], -'eio_nreqs' => ['int'], -'eio_nthreads' => ['int'], -'eio_open' => ['resource', 'path'=>'string', 'flags'=>'int', 'mode'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_poll' => ['int'], -'eio_read' => ['resource', 'fd'=>'mixed', 'length'=>'int', 'offset'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_readahead' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_readdir' => ['resource', 'path'=>'string', 'flags'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], -'eio_readlink' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], -'eio_realpath' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], -'eio_rename' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_rmdir' => ['resource', 'path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_seek' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'whence'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_sendfile' => ['resource', 'out_fd'=>'mixed', 'in_fd'=>'mixed', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'string'], -'eio_set_max_idle' => ['void', 'nthreads'=>'int'], -'eio_set_max_parallel' => ['void', 'nthreads'=>'int'], -'eio_set_max_poll_reqs' => ['void', 'nreqs'=>'int'], -'eio_set_max_poll_time' => ['void', 'nseconds'=>'float'], -'eio_set_min_parallel' => ['void', 'nthreads'=>'string'], -'eio_stat' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_statvfs' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], -'eio_symlink' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_sync' => ['resource', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_sync_file_range' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'nbytes'=>'int', 'flags'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_syncfs' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_truncate' => ['resource', 'path'=>'string', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_unlink' => ['resource', 'path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_utime' => ['resource', 'path'=>'string', 'atime'=>'float', 'mtime'=>'float', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'eio_write' => ['resource', 'fd'=>'mixed', 'string'=>'string', 'length='=>'int', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], -'empty' => ['bool', 'value'=>'mixed'], -'EmptyIterator::current' => ['never'], -'EmptyIterator::key' => ['never'], -'EmptyIterator::next' => ['void'], -'EmptyIterator::rewind' => ['void'], -'EmptyIterator::valid' => ['false'], -'enchant_broker_describe' => ['array', 'broker'=>'EnchantBroker'], -'enchant_broker_dict_exists' => ['bool', 'broker'=>'EnchantBroker', 'tag'=>'string'], -'enchant_broker_free' => ['bool', 'broker'=>'EnchantBroker'], -'enchant_broker_free_dict' => ['bool', 'dictionary'=>'EnchantBroker'], -'enchant_broker_get_dict_path' => ['string', 'broker'=>'EnchantBroker', 'type'=>'int'], -'enchant_broker_get_error' => ['string|false', 'broker'=>'EnchantBroker'], -'enchant_broker_init' => ['EnchantBroker|false'], -'enchant_broker_list_dicts' => ['array', 'broker'=>'EnchantBroker'], -'enchant_broker_request_dict' => ['EnchantDictionary|false', 'broker'=>'EnchantBroker', 'tag'=>'string'], -'enchant_broker_request_pwl_dict' => ['EnchantDictionary|false', 'broker'=>'EnchantBroker', 'filename'=>'string'], -'enchant_broker_set_dict_path' => ['bool', 'broker'=>'EnchantBroker', 'type'=>'int', 'path'=>'string'], -'enchant_broker_set_ordering' => ['bool', 'broker'=>'EnchantBroker', 'tag'=>'string', 'ordering'=>'string'], -'enchant_dict_add_to_personal' => ['void', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], -'enchant_dict_add_to_session' => ['void', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], -'enchant_dict_check' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], -'enchant_dict_describe' => ['array', 'dictionary'=>'EnchantDictionary'], -'enchant_dict_get_error' => ['string', 'dictionary'=>'EnchantDictionary'], -'enchant_dict_is_in_session' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], -'enchant_dict_quick_check' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string', '&w_suggestions='=>'array'], -'enchant_dict_store_replacement' => ['void', 'dictionary'=>'EnchantDictionary', 'misspelled'=>'string', 'correct'=>'string'], -'enchant_dict_suggest' => ['array', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], -'end' => ['mixed|false', '&r_array'=>'array|object'], -'enum_exists' => ['bool', 'enum' => 'string', 'autoload=' => 'bool'], -'Error::__clone' => ['void'], -'Error::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'Error::__toString' => ['string'], -'Error::getCode' => ['int'], -'Error::getFile' => ['string'], -'Error::getLine' => ['int'], -'Error::getMessage' => ['string'], -'Error::getPrevious' => ['?Throwable'], -'Error::getTrace' => ['list\',args?:array}>'], -'Error::getTraceAsString' => ['string'], -'error_clear_last' => ['void'], -'error_get_last' => ['?array{type:int,message:string,file:string,line:int}'], -'error_log' => ['bool', 'message'=>'string', 'message_type='=>'int', 'destination='=>'?string', 'additional_headers='=>'?string'], -'error_reporting' => ['int', 'error_level='=>'?int'], -'ErrorException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'severity='=>'int', 'filename='=>'?string', 'line='=>'?int', 'previous='=>'?Throwable'], -'ErrorException::__toString' => ['string'], -'ErrorException::getCode' => ['int'], -'ErrorException::getFile' => ['string'], -'ErrorException::getLine' => ['int'], -'ErrorException::getMessage' => ['string'], -'ErrorException::getPrevious' => ['?Throwable'], -'ErrorException::getSeverity' => ['int'], -'ErrorException::getTrace' => ['list\',args?:array}>'], -'ErrorException::getTraceAsString' => ['string'], -'escapeshellarg' => ['string', 'arg'=>'string'], -'escapeshellcmd' => ['string', 'command'=>'string'], -'Ev::backend' => ['int'], -'Ev::depth' => ['int'], -'Ev::embeddableBackends' => ['int'], -'Ev::feedSignal' => ['void', 'signum'=>'int'], -'Ev::feedSignalEvent' => ['void', 'signum'=>'int'], -'Ev::iteration' => ['int'], -'Ev::now' => ['float'], -'Ev::nowUpdate' => ['void'], -'Ev::recommendedBackends' => ['int'], -'Ev::resume' => ['void'], -'Ev::run' => ['void', 'flags='=>'int'], -'Ev::sleep' => ['void', 'seconds'=>'float'], -'Ev::stop' => ['void', 'how='=>'int'], -'Ev::supportedBackends' => ['int'], -'Ev::suspend' => ['void'], -'Ev::time' => ['float'], -'Ev::verify' => ['void'], -'eval' => ['mixed', 'code_str'=>'string'], -'EvCheck::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvCheck::clear' => ['int'], -'EvCheck::createStopped' => ['EvCheck', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvCheck::feed' => ['void', 'events'=>'int'], -'EvCheck::getLoop' => ['EvLoop'], -'EvCheck::invoke' => ['void', 'events'=>'int'], -'EvCheck::keepAlive' => ['void', 'value'=>'bool'], -'EvCheck::setCallback' => ['void', 'callback'=>'callable'], -'EvCheck::start' => ['void'], -'EvCheck::stop' => ['void'], -'EvChild::__construct' => ['void', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvChild::clear' => ['int'], -'EvChild::createStopped' => ['EvChild', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvChild::feed' => ['void', 'events'=>'int'], -'EvChild::getLoop' => ['EvLoop'], -'EvChild::invoke' => ['void', 'events'=>'int'], -'EvChild::keepAlive' => ['void', 'value'=>'bool'], -'EvChild::set' => ['void', 'pid'=>'int', 'trace'=>'bool'], -'EvChild::setCallback' => ['void', 'callback'=>'callable'], -'EvChild::start' => ['void'], -'EvChild::stop' => ['void'], -'EvEmbed::__construct' => ['void', 'other'=>'object', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvEmbed::clear' => ['int'], -'EvEmbed::createStopped' => ['EvEmbed', 'other'=>'object', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvEmbed::feed' => ['void', 'events'=>'int'], -'EvEmbed::getLoop' => ['EvLoop'], -'EvEmbed::invoke' => ['void', 'events'=>'int'], -'EvEmbed::keepAlive' => ['void', 'value'=>'bool'], -'EvEmbed::set' => ['void', 'other'=>'object'], -'EvEmbed::setCallback' => ['void', 'callback'=>'callable'], -'EvEmbed::start' => ['void'], -'EvEmbed::stop' => ['void'], -'EvEmbed::sweep' => ['void'], -'Event::__construct' => ['void', 'base'=>'EventBase', 'fd'=>'mixed', 'what'=>'int', 'cb'=>'callable', 'arg='=>'mixed'], -'Event::add' => ['bool', 'timeout='=>'float'], -'Event::addSignal' => ['bool', 'timeout='=>'float'], -'Event::addTimer' => ['bool', 'timeout='=>'float'], -'Event::del' => ['bool'], -'Event::delSignal' => ['bool'], -'Event::delTimer' => ['bool'], -'Event::free' => ['void'], -'Event::getSupportedMethods' => ['array'], -'Event::pending' => ['bool', 'flags'=>'int'], -'Event::set' => ['bool', 'base'=>'EventBase', 'fd'=>'mixed', 'what='=>'int', 'cb='=>'callable', 'arg='=>'mixed'], -'Event::setPriority' => ['bool', 'priority'=>'int'], -'Event::setTimer' => ['bool', 'base'=>'EventBase', 'cb'=>'callable', 'arg='=>'mixed'], -'Event::signal' => ['Event', 'base'=>'EventBase', 'signum'=>'int', 'cb'=>'callable', 'arg='=>'mixed'], -'Event::timer' => ['Event', 'base'=>'EventBase', 'cb'=>'callable', 'arg='=>'mixed'], -'event_add' => ['bool', 'event'=>'resource', 'timeout='=>'int'], -'event_base_free' => ['void', 'event_base'=>'resource'], -'event_base_loop' => ['int', 'event_base'=>'resource', 'flags='=>'int'], -'event_base_loopbreak' => ['bool', 'event_base'=>'resource'], -'event_base_loopexit' => ['bool', 'event_base'=>'resource', 'timeout='=>'int'], -'event_base_new' => ['resource|false'], -'event_base_priority_init' => ['bool', 'event_base'=>'resource', 'npriorities'=>'int'], -'event_base_reinit' => ['bool', 'event_base'=>'resource'], -'event_base_set' => ['bool', 'event'=>'resource', 'event_base'=>'resource'], -'event_buffer_base_set' => ['bool', 'bevent'=>'resource', 'event_base'=>'resource'], -'event_buffer_disable' => ['bool', 'bevent'=>'resource', 'events'=>'int'], -'event_buffer_enable' => ['bool', 'bevent'=>'resource', 'events'=>'int'], -'event_buffer_fd_set' => ['void', 'bevent'=>'resource', 'fd'=>'resource'], -'event_buffer_free' => ['void', 'bevent'=>'resource'], -'event_buffer_new' => ['resource|false', 'stream'=>'resource', 'readcb'=>'callable|null', 'writecb'=>'callable|null', 'errorcb'=>'callable', 'arg='=>'mixed'], -'event_buffer_priority_set' => ['bool', 'bevent'=>'resource', 'priority'=>'int'], -'event_buffer_read' => ['string', 'bevent'=>'resource', 'data_size'=>'int'], -'event_buffer_set_callback' => ['bool', 'event'=>'resource', 'readcb'=>'mixed', 'writecb'=>'mixed', 'errorcb'=>'mixed', 'arg='=>'mixed'], -'event_buffer_timeout_set' => ['void', 'bevent'=>'resource', 'read_timeout'=>'int', 'write_timeout'=>'int'], -'event_buffer_watermark_set' => ['void', 'bevent'=>'resource', 'events'=>'int', 'lowmark'=>'int', 'highmark'=>'int'], -'event_buffer_write' => ['bool', 'bevent'=>'resource', 'data'=>'string', 'data_size='=>'int'], -'event_del' => ['bool', 'event'=>'resource'], -'event_free' => ['void', 'event'=>'resource'], -'event_new' => ['resource|false'], -'event_priority_set' => ['bool', 'event'=>'resource', 'priority'=>'int'], -'event_set' => ['bool', 'event'=>'resource', 'fd'=>'int|resource', 'events'=>'int', 'callback'=>'callable', 'arg='=>'mixed'], -'event_timer_add' => ['bool', 'event'=>'resource', 'timeout='=>'int'], -'event_timer_del' => ['bool', 'event'=>'resource'], -'event_timer_new' => ['resource|false'], -'event_timer_pending' => ['bool', 'event'=>'resource', 'timeout='=>'int'], -'event_timer_set' => ['bool', 'event'=>'resource', 'callback'=>'callable', 'arg='=>'mixed'], -'EventBase::__construct' => ['void', 'cfg='=>'EventConfig'], -'EventBase::dispatch' => ['void'], -'EventBase::exit' => ['bool', 'timeout='=>'float'], -'EventBase::free' => ['void'], -'EventBase::getFeatures' => ['int'], -'EventBase::getMethod' => ['string', 'cfg='=>'EventConfig'], -'EventBase::getTimeOfDayCached' => ['float'], -'EventBase::gotExit' => ['bool'], -'EventBase::gotStop' => ['bool'], -'EventBase::loop' => ['bool', 'flags='=>'int'], -'EventBase::priorityInit' => ['bool', 'n_priorities'=>'int'], -'EventBase::reInit' => ['bool'], -'EventBase::stop' => ['bool'], -'EventBuffer::__construct' => ['void'], -'EventBuffer::add' => ['bool', 'data'=>'string'], -'EventBuffer::addBuffer' => ['bool', 'buf'=>'EventBuffer'], -'EventBuffer::appendFrom' => ['int', 'buf'=>'EventBuffer', 'length'=>'int'], -'EventBuffer::copyout' => ['int', '&w_data'=>'string', 'max_bytes'=>'int'], -'EventBuffer::drain' => ['bool', 'length'=>'int'], -'EventBuffer::enableLocking' => ['void'], -'EventBuffer::expand' => ['bool', 'length'=>'int'], -'EventBuffer::freeze' => ['bool', 'at_front'=>'bool'], -'EventBuffer::lock' => ['void'], -'EventBuffer::prepend' => ['bool', 'data'=>'string'], -'EventBuffer::prependBuffer' => ['bool', 'buf'=>'EventBuffer'], -'EventBuffer::pullup' => ['string', 'size'=>'int'], -'EventBuffer::read' => ['string', 'max_bytes'=>'int'], -'EventBuffer::readFrom' => ['int', 'fd'=>'mixed', 'howmuch'=>'int'], -'EventBuffer::readLine' => ['string', 'eol_style'=>'int'], -'EventBuffer::search' => ['mixed', 'what'=>'string', 'start='=>'int', 'end='=>'int'], -'EventBuffer::searchEol' => ['mixed', 'start='=>'int', 'eol_style='=>'int'], -'EventBuffer::substr' => ['string', 'start'=>'int', 'length='=>'int'], -'EventBuffer::unfreeze' => ['bool', 'at_front'=>'bool'], -'EventBuffer::unlock' => ['bool'], -'EventBuffer::write' => ['int', 'fd'=>'mixed', 'howmuch='=>'int'], -'EventBufferEvent::__construct' => ['void', 'base'=>'EventBase', 'socket='=>'mixed', 'options='=>'int', 'readcb='=>'callable', 'writecb='=>'callable', 'eventcb='=>'callable'], -'EventBufferEvent::close' => ['void'], -'EventBufferEvent::connect' => ['bool', 'addr'=>'string'], -'EventBufferEvent::connectHost' => ['bool', 'dns_base'=>'EventDnsBase', 'hostname'=>'string', 'port'=>'int', 'family='=>'int'], -'EventBufferEvent::createPair' => ['array', 'base'=>'EventBase', 'options='=>'int'], -'EventBufferEvent::disable' => ['bool', 'events'=>'int'], -'EventBufferEvent::enable' => ['bool', 'events'=>'int'], -'EventBufferEvent::free' => ['void'], -'EventBufferEvent::getDnsErrorString' => ['string'], -'EventBufferEvent::getEnabled' => ['int'], -'EventBufferEvent::getInput' => ['EventBuffer'], -'EventBufferEvent::getOutput' => ['EventBuffer'], -'EventBufferEvent::read' => ['string', 'size'=>'int'], -'EventBufferEvent::readBuffer' => ['bool', 'buf'=>'EventBuffer'], -'EventBufferEvent::setCallbacks' => ['void', 'readcb'=>'callable', 'writecb'=>'callable', 'eventcb'=>'callable', 'arg='=>'string'], -'EventBufferEvent::setPriority' => ['bool', 'priority'=>'int'], -'EventBufferEvent::setTimeouts' => ['bool', 'timeout_read'=>'float', 'timeout_write'=>'float'], -'EventBufferEvent::setWatermark' => ['void', 'events'=>'int', 'lowmark'=>'int', 'highmark'=>'int'], -'EventBufferEvent::sslError' => ['string'], -'EventBufferEvent::sslFilter' => ['EventBufferEvent', 'base'=>'EventBase', 'underlying'=>'EventBufferEvent', 'ctx'=>'EventSslContext', 'state'=>'int', 'options='=>'int'], -'EventBufferEvent::sslGetCipherInfo' => ['string'], -'EventBufferEvent::sslGetCipherName' => ['string'], -'EventBufferEvent::sslGetCipherVersion' => ['string'], -'EventBufferEvent::sslGetProtocol' => ['string'], -'EventBufferEvent::sslRenegotiate' => ['void'], -'EventBufferEvent::sslSocket' => ['EventBufferEvent', 'base'=>'EventBase', 'socket'=>'mixed', 'ctx'=>'EventSslContext', 'state'=>'int', 'options='=>'int'], -'EventBufferEvent::write' => ['bool', 'data'=>'string'], -'EventBufferEvent::writeBuffer' => ['bool', 'buf'=>'EventBuffer'], -'EventConfig::__construct' => ['void'], -'EventConfig::avoidMethod' => ['bool', 'method'=>'string'], -'EventConfig::requireFeatures' => ['bool', 'feature'=>'int'], -'EventConfig::setMaxDispatchInterval' => ['void', 'max_interval'=>'int', 'max_callbacks'=>'int', 'min_priority'=>'int'], -'EventDnsBase::__construct' => ['void', 'base'=>'EventBase', 'initialize'=>'bool'], -'EventDnsBase::addNameserverIp' => ['bool', 'ip'=>'string'], -'EventDnsBase::addSearch' => ['void', 'domain'=>'string'], -'EventDnsBase::clearSearch' => ['void'], -'EventDnsBase::countNameservers' => ['int'], -'EventDnsBase::loadHosts' => ['bool', 'hosts'=>'string'], -'EventDnsBase::parseResolvConf' => ['bool', 'flags'=>'int', 'filename'=>'string'], -'EventDnsBase::setOption' => ['bool', 'option'=>'string', 'value'=>'string'], -'EventDnsBase::setSearchNdots' => ['bool', 'ndots'=>'int'], -'EventHttp::__construct' => ['void', 'base'=>'EventBase', 'ctx='=>'EventSslContext'], -'EventHttp::accept' => ['bool', 'socket'=>'mixed'], -'EventHttp::addServerAlias' => ['bool', 'alias'=>'string'], -'EventHttp::bind' => ['void', 'address'=>'string', 'port'=>'int'], -'EventHttp::removeServerAlias' => ['bool', 'alias'=>'string'], -'EventHttp::setAllowedMethods' => ['void', 'methods'=>'int'], -'EventHttp::setCallback' => ['void', 'path'=>'string', 'cb'=>'string', 'arg='=>'string'], -'EventHttp::setDefaultCallback' => ['void', 'cb'=>'string', 'arg='=>'string'], -'EventHttp::setMaxBodySize' => ['void', 'value'=>'int'], -'EventHttp::setMaxHeadersSize' => ['void', 'value'=>'int'], -'EventHttp::setTimeout' => ['void', 'value'=>'int'], -'EventHttpConnection::__construct' => ['void', 'base'=>'EventBase', 'dns_base'=>'EventDnsBase', 'address'=>'string', 'port'=>'int', 'ctx='=>'EventSslContext'], -'EventHttpConnection::getBase' => ['EventBase'], -'EventHttpConnection::getPeer' => ['void', '&w_address'=>'string', '&w_port'=>'int'], -'EventHttpConnection::makeRequest' => ['bool', 'req'=>'EventHttpRequest', 'type'=>'int', 'uri'=>'string'], -'EventHttpConnection::setCloseCallback' => ['void', 'callback'=>'callable', 'data='=>'mixed'], -'EventHttpConnection::setLocalAddress' => ['void', 'address'=>'string'], -'EventHttpConnection::setLocalPort' => ['void', 'port'=>'int'], -'EventHttpConnection::setMaxBodySize' => ['void', 'max_size'=>'string'], -'EventHttpConnection::setMaxHeadersSize' => ['void', 'max_size'=>'string'], -'EventHttpConnection::setRetries' => ['void', 'retries'=>'int'], -'EventHttpConnection::setTimeout' => ['void', 'timeout'=>'int'], -'EventHttpRequest::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed'], -'EventHttpRequest::addHeader' => ['bool', 'key'=>'string', 'value'=>'string', 'type'=>'int'], -'EventHttpRequest::cancel' => ['void'], -'EventHttpRequest::clearHeaders' => ['void'], -'EventHttpRequest::closeConnection' => ['void'], -'EventHttpRequest::findHeader' => ['void', 'key'=>'string', 'type'=>'string'], -'EventHttpRequest::free' => ['void'], -'EventHttpRequest::getBufferEvent' => ['EventBufferEvent'], -'EventHttpRequest::getCommand' => ['void'], -'EventHttpRequest::getConnection' => ['EventHttpConnection'], -'EventHttpRequest::getHost' => ['string'], -'EventHttpRequest::getInputBuffer' => ['EventBuffer'], -'EventHttpRequest::getInputHeaders' => ['array'], -'EventHttpRequest::getOutputBuffer' => ['EventBuffer'], -'EventHttpRequest::getOutputHeaders' => ['void'], -'EventHttpRequest::getResponseCode' => ['int'], -'EventHttpRequest::getUri' => ['string'], -'EventHttpRequest::removeHeader' => ['void', 'key'=>'string', 'type'=>'string'], -'EventHttpRequest::sendError' => ['void', 'error'=>'int', 'reason='=>'string'], -'EventHttpRequest::sendReply' => ['void', 'code'=>'int', 'reason'=>'string', 'buf='=>'EventBuffer'], -'EventHttpRequest::sendReplyChunk' => ['void', 'buf'=>'EventBuffer'], -'EventHttpRequest::sendReplyEnd' => ['void'], -'EventHttpRequest::sendReplyStart' => ['void', 'code'=>'int', 'reason'=>'string'], -'EventListener::__construct' => ['void', 'base'=>'EventBase', 'cb'=>'callable', 'data'=>'mixed', 'flags'=>'int', 'backlog'=>'int', 'target'=>'mixed'], -'EventListener::disable' => ['bool'], -'EventListener::enable' => ['bool'], -'EventListener::getBase' => ['void'], -'EventListener::getSocketName' => ['bool', '&w_address'=>'string', '&w_port='=>'mixed'], -'EventListener::setCallback' => ['void', 'cb'=>'callable', 'arg='=>'mixed'], -'EventListener::setErrorCallback' => ['void', 'cb'=>'string'], -'EventSslContext::__construct' => ['void', 'method'=>'string', 'options'=>'string'], -'EventUtil::__construct' => ['void'], -'EventUtil::getLastSocketErrno' => ['int', 'socket='=>'mixed'], -'EventUtil::getLastSocketError' => ['string', 'socket='=>'mixed'], -'EventUtil::getSocketFd' => ['int', 'socket'=>'mixed'], -'EventUtil::getSocketName' => ['bool', 'socket'=>'mixed', '&w_address'=>'string', '&w_port='=>'mixed'], -'EventUtil::setSocketOption' => ['bool', 'socket'=>'mixed', 'level'=>'int', 'optname'=>'int', 'optval'=>'mixed'], -'EventUtil::sslRandPoll' => ['void'], -'EvFork::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvFork::clear' => ['int'], -'EvFork::createStopped' => ['EvFork', 'callback'=>'callable', 'data='=>'string', 'priority='=>'string'], -'EvFork::feed' => ['void', 'events'=>'int'], -'EvFork::getLoop' => ['EvLoop'], -'EvFork::invoke' => ['void', 'events'=>'int'], -'EvFork::keepAlive' => ['void', 'value'=>'bool'], -'EvFork::setCallback' => ['void', 'callback'=>'callable'], -'EvFork::start' => ['void'], -'EvFork::stop' => ['void'], -'EvIdle::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvIdle::clear' => ['int'], -'EvIdle::createStopped' => ['EvIdle', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvIdle::feed' => ['void', 'events'=>'int'], -'EvIdle::getLoop' => ['EvLoop'], -'EvIdle::invoke' => ['void', 'events'=>'int'], -'EvIdle::keepAlive' => ['void', 'value'=>'bool'], -'EvIdle::setCallback' => ['void', 'callback'=>'callable'], -'EvIdle::start' => ['void'], -'EvIdle::stop' => ['void'], -'EvIo::__construct' => ['void', 'fd'=>'mixed', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvIo::clear' => ['int'], -'EvIo::createStopped' => ['EvIo', 'fd'=>'resource', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvIo::feed' => ['void', 'events'=>'int'], -'EvIo::getLoop' => ['EvLoop'], -'EvIo::invoke' => ['void', 'events'=>'int'], -'EvIo::keepAlive' => ['void', 'value'=>'bool'], -'EvIo::set' => ['void', 'fd'=>'resource', 'events'=>'int'], -'EvIo::setCallback' => ['void', 'callback'=>'callable'], -'EvIo::start' => ['void'], -'EvIo::stop' => ['void'], -'EvLoop::__construct' => ['void', 'flags='=>'int', 'data='=>'mixed', 'io_interval='=>'float', 'timeout_interval='=>'float'], -'EvLoop::backend' => ['int'], -'EvLoop::check' => ['EvCheck', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::child' => ['EvChild', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::defaultLoop' => ['EvLoop', 'flags='=>'int', 'data='=>'mixed', 'io_interval='=>'float', 'timeout_interval='=>'float'], -'EvLoop::embed' => ['EvEmbed', 'other'=>'EvLoop', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::fork' => ['EvFork', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::idle' => ['EvIdle', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::invokePending' => ['void'], -'EvLoop::io' => ['EvIo', 'fd'=>'resource', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::loopFork' => ['void'], -'EvLoop::now' => ['float'], -'EvLoop::nowUpdate' => ['void'], -'EvLoop::periodic' => ['EvPeriodic', 'offset'=>'float', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::prepare' => ['EvPrepare', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::resume' => ['void'], -'EvLoop::run' => ['void', 'flags='=>'int'], -'EvLoop::signal' => ['EvSignal', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::stat' => ['EvStat', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::stop' => ['void', 'how='=>'int'], -'EvLoop::suspend' => ['void'], -'EvLoop::timer' => ['EvTimer', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvLoop::verify' => ['void'], -'EvPeriodic::__construct' => ['void', 'offset'=>'float', 'interval'=>'string', 'reschedule_cb'=>'callable', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvPeriodic::again' => ['void'], -'EvPeriodic::at' => ['float'], -'EvPeriodic::clear' => ['int'], -'EvPeriodic::createStopped' => ['EvPeriodic', 'offset'=>'float', 'interval'=>'float', 'reschedule_cb'=>'callable', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvPeriodic::feed' => ['void', 'events'=>'int'], -'EvPeriodic::getLoop' => ['EvLoop'], -'EvPeriodic::invoke' => ['void', 'events'=>'int'], -'EvPeriodic::keepAlive' => ['void', 'value'=>'bool'], -'EvPeriodic::set' => ['void', 'offset'=>'float', 'interval'=>'float'], -'EvPeriodic::setCallback' => ['void', 'callback'=>'callable'], -'EvPeriodic::start' => ['void'], -'EvPeriodic::stop' => ['void'], -'EvPrepare::__construct' => ['void', 'callback'=>'string', 'data='=>'string', 'priority='=>'string'], -'EvPrepare::clear' => ['int'], -'EvPrepare::createStopped' => ['EvPrepare', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvPrepare::feed' => ['void', 'events'=>'int'], -'EvPrepare::getLoop' => ['EvLoop'], -'EvPrepare::invoke' => ['void', 'events'=>'int'], -'EvPrepare::keepAlive' => ['void', 'value'=>'bool'], -'EvPrepare::setCallback' => ['void', 'callback'=>'callable'], -'EvPrepare::start' => ['void'], -'EvPrepare::stop' => ['void'], -'EvSignal::__construct' => ['void', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvSignal::clear' => ['int'], -'EvSignal::createStopped' => ['EvSignal', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvSignal::feed' => ['void', 'events'=>'int'], -'EvSignal::getLoop' => ['EvLoop'], -'EvSignal::invoke' => ['void', 'events'=>'int'], -'EvSignal::keepAlive' => ['void', 'value'=>'bool'], -'EvSignal::set' => ['void', 'signum'=>'int'], -'EvSignal::setCallback' => ['void', 'callback'=>'callable'], -'EvSignal::start' => ['void'], -'EvSignal::stop' => ['void'], -'EvStat::__construct' => ['void', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvStat::attr' => ['array'], -'EvStat::clear' => ['int'], -'EvStat::createStopped' => ['EvStat', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvStat::feed' => ['void', 'events'=>'int'], -'EvStat::getLoop' => ['EvLoop'], -'EvStat::invoke' => ['void', 'events'=>'int'], -'EvStat::keepAlive' => ['void', 'value'=>'bool'], -'EvStat::prev' => ['array'], -'EvStat::set' => ['void', 'path'=>'string', 'interval'=>'float'], -'EvStat::setCallback' => ['void', 'callback'=>'callable'], -'EvStat::start' => ['void'], -'EvStat::stat' => ['bool'], -'EvStat::stop' => ['void'], -'EvTimer::__construct' => ['void', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvTimer::again' => ['void'], -'EvTimer::clear' => ['int'], -'EvTimer::createStopped' => ['EvTimer', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], -'EvTimer::feed' => ['void', 'events'=>'int'], -'EvTimer::getLoop' => ['EvLoop'], -'EvTimer::invoke' => ['void', 'events'=>'int'], -'EvTimer::keepAlive' => ['void', 'value'=>'bool'], -'EvTimer::set' => ['void', 'after'=>'float', 'repeat'=>'float'], -'EvTimer::setCallback' => ['void', 'callback'=>'callable'], -'EvTimer::start' => ['void'], -'EvTimer::stop' => ['void'], -'EvWatcher::__construct' => ['void'], -'EvWatcher::clear' => ['int'], -'EvWatcher::feed' => ['void', 'revents'=>'int'], -'EvWatcher::getLoop' => ['EvLoop'], -'EvWatcher::invoke' => ['void', 'revents'=>'int'], -'EvWatcher::keepalive' => ['bool', 'value='=>'bool'], -'EvWatcher::setCallback' => ['void', 'callback'=>'callable'], -'EvWatcher::start' => ['void'], -'EvWatcher::stop' => ['void'], -'Exception::__clone' => ['void'], -'Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'Exception::__toString' => ['string'], -'Exception::getCode' => ['int|string'], -'Exception::getFile' => ['string'], -'Exception::getLine' => ['int'], -'Exception::getMessage' => ['string'], -'Exception::getPrevious' => ['?Throwable'], -'Exception::getTrace' => ['list\',args?:array}>'], -'Exception::getTraceAsString' => ['string'], -'exec' => ['string|false', 'command'=>'string', '&w_output='=>'array', '&w_result_code='=>'int'], -'exif_imagetype' => ['int|false', 'filename'=>'string'], -'exif_read_data' => ['array|false', 'file'=>'string|resource', 'required_sections='=>'?string', 'as_arrays='=>'bool', 'read_thumbnail='=>'bool'], -'exif_tagname' => ['string|false', 'index'=>'int'], -'exif_thumbnail' => ['string|false', 'file'=>'string', '&w_width='=>'int', '&w_height='=>'int', '&w_image_type='=>'int'], -'exit' => ['', 'status'=>'string|int'], -'exp' => ['float', 'num'=>'float'], -'expect_expectl' => ['int', 'expect'=>'resource', 'cases'=>'array', 'match='=>'array'], -'expect_popen' => ['resource|false', 'command'=>'string'], -'explode' => ['list', 'separator'=>'string', 'string'=>'string', 'limit='=>'int'], -'expm1' => ['float', 'num'=>'float'], -'extension_loaded' => ['bool', 'extension'=>'string'], -'extract' => ['int', '&rw_array'=>'array', 'flags='=>'int', 'prefix='=>'string'], -'ezmlm_hash' => ['int', 'addr'=>'string'], -'fam_cancel_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], -'fam_close' => ['void', 'fam'=>'resource'], -'fam_monitor_collection' => ['resource', 'fam'=>'resource', 'dirname'=>'string', 'depth'=>'int', 'mask'=>'string'], -'fam_monitor_directory' => ['resource', 'fam'=>'resource', 'dirname'=>'string'], -'fam_monitor_file' => ['resource', 'fam'=>'resource', 'filename'=>'string'], -'fam_next_event' => ['array', 'fam'=>'resource'], -'fam_open' => ['resource|false', 'appname='=>'string'], -'fam_pending' => ['int', 'fam'=>'resource'], -'fam_resume_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], -'fam_suspend_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], -'fann_cascadetrain_on_data' => ['bool', 'ann'=>'resource', 'data'=>'resource', 'max_neurons'=>'int', 'neurons_between_reports'=>'int', 'desired_error'=>'float'], -'fann_cascadetrain_on_file' => ['bool', 'ann'=>'resource', 'filename'=>'string', 'max_neurons'=>'int', 'neurons_between_reports'=>'int', 'desired_error'=>'float'], -'fann_clear_scaling_params' => ['bool', 'ann'=>'resource'], -'fann_copy' => ['resource|false', 'ann'=>'resource'], -'fann_create_from_file' => ['resource', 'configuration_file'=>'string'], -'fann_create_shortcut' => ['resource|false', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], -'fann_create_shortcut_array' => ['resource|false', 'num_layers'=>'int', 'layers'=>'array'], -'fann_create_sparse' => ['resource|false', 'connection_rate'=>'float', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], -'fann_create_sparse_array' => ['resource|false', 'connection_rate'=>'float', 'num_layers'=>'int', 'layers'=>'array'], -'fann_create_standard' => ['resource|false', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], -'fann_create_standard_array' => ['resource|false', 'num_layers'=>'int', 'layers'=>'array'], -'fann_create_train' => ['resource', 'num_data'=>'int', 'num_input'=>'int', 'num_output'=>'int'], -'fann_create_train_from_callback' => ['resource', 'num_data'=>'int', 'num_input'=>'int', 'num_output'=>'int', 'user_function'=>'callable'], -'fann_descale_input' => ['bool', 'ann'=>'resource', 'input_vector'=>'array'], -'fann_descale_output' => ['bool', 'ann'=>'resource', 'output_vector'=>'array'], -'fann_descale_train' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], -'fann_destroy' => ['bool', 'ann'=>'resource'], -'fann_destroy_train' => ['bool', 'train_data'=>'resource'], -'fann_duplicate_train_data' => ['resource', 'data'=>'resource'], -'fann_get_activation_function' => ['int|false', 'ann'=>'resource', 'layer'=>'int', 'neuron'=>'int'], -'fann_get_activation_steepness' => ['float|false', 'ann'=>'resource', 'layer'=>'int', 'neuron'=>'int'], -'fann_get_bias_array' => ['array', 'ann'=>'resource'], -'fann_get_bit_fail' => ['int|false', 'ann'=>'resource'], -'fann_get_bit_fail_limit' => ['float|false', 'ann'=>'resource'], -'fann_get_cascade_activation_functions' => ['array|false', 'ann'=>'resource'], -'fann_get_cascade_activation_functions_count' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_activation_steepnesses' => ['array|false', 'ann'=>'resource'], -'fann_get_cascade_activation_steepnesses_count' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_candidate_change_fraction' => ['float|false', 'ann'=>'resource'], -'fann_get_cascade_candidate_limit' => ['float|false', 'ann'=>'resource'], -'fann_get_cascade_candidate_stagnation_epochs' => ['float|false', 'ann'=>'resource'], -'fann_get_cascade_max_cand_epochs' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_max_out_epochs' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_min_cand_epochs' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_min_out_epochs' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_num_candidate_groups' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_num_candidates' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_output_change_fraction' => ['float|false', 'ann'=>'resource'], -'fann_get_cascade_output_stagnation_epochs' => ['int|false', 'ann'=>'resource'], -'fann_get_cascade_weight_multiplier' => ['float|false', 'ann'=>'resource'], -'fann_get_connection_array' => ['array', 'ann'=>'resource'], -'fann_get_connection_rate' => ['float|false', 'ann'=>'resource'], -'fann_get_errno' => ['int|false', 'errdat'=>'resource'], -'fann_get_errstr' => ['string|false', 'errdat'=>'resource'], -'fann_get_layer_array' => ['array', 'ann'=>'resource'], -'fann_get_learning_momentum' => ['float|false', 'ann'=>'resource'], -'fann_get_learning_rate' => ['float|false', 'ann'=>'resource'], -'fann_get_MSE' => ['float|false', 'ann'=>'resource'], -'fann_get_network_type' => ['int|false', 'ann'=>'resource'], -'fann_get_num_input' => ['int|false', 'ann'=>'resource'], -'fann_get_num_layers' => ['int|false', 'ann'=>'resource'], -'fann_get_num_output' => ['int|false', 'ann'=>'resource'], -'fann_get_quickprop_decay' => ['float|false', 'ann'=>'resource'], -'fann_get_quickprop_mu' => ['float|false', 'ann'=>'resource'], -'fann_get_rprop_decrease_factor' => ['float|false', 'ann'=>'resource'], -'fann_get_rprop_delta_max' => ['float|false', 'ann'=>'resource'], -'fann_get_rprop_delta_min' => ['float|false', 'ann'=>'resource'], -'fann_get_rprop_delta_zero' => ['float|false', 'ann'=>'resource'], -'fann_get_rprop_increase_factor' => ['float|false', 'ann'=>'resource'], -'fann_get_sarprop_step_error_shift' => ['float|false', 'ann'=>'resource'], -'fann_get_sarprop_step_error_threshold_factor' => ['float|false', 'ann'=>'resource'], -'fann_get_sarprop_temperature' => ['float|false', 'ann'=>'resource'], -'fann_get_sarprop_weight_decay_shift' => ['float|false', 'ann'=>'resource'], -'fann_get_total_connections' => ['int|false', 'ann'=>'resource'], -'fann_get_total_neurons' => ['int|false', 'ann'=>'resource'], -'fann_get_train_error_function' => ['int|false', 'ann'=>'resource'], -'fann_get_train_stop_function' => ['int|false', 'ann'=>'resource'], -'fann_get_training_algorithm' => ['int|false', 'ann'=>'resource'], -'fann_init_weights' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], -'fann_length_train_data' => ['int|false', 'data'=>'resource'], -'fann_merge_train_data' => ['resource|false', 'data1'=>'resource', 'data2'=>'resource'], -'fann_num_input_train_data' => ['int|false', 'data'=>'resource'], -'fann_num_output_train_data' => ['int|false', 'data'=>'resource'], -'fann_print_error' => ['void', 'errdat'=>'string'], -'fann_randomize_weights' => ['bool', 'ann'=>'resource', 'min_weight'=>'float', 'max_weight'=>'float'], -'fann_read_train_from_file' => ['resource', 'filename'=>'string'], -'fann_reset_errno' => ['void', 'errdat'=>'resource'], -'fann_reset_errstr' => ['void', 'errdat'=>'resource'], -'fann_reset_MSE' => ['bool', 'ann'=>'string'], -'fann_run' => ['array|false', 'ann'=>'resource', 'input'=>'array'], -'fann_save' => ['bool', 'ann'=>'resource', 'configuration_file'=>'string'], -'fann_save_train' => ['bool', 'data'=>'resource', 'file_name'=>'string'], -'fann_scale_input' => ['bool', 'ann'=>'resource', 'input_vector'=>'array'], -'fann_scale_input_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], -'fann_scale_output' => ['bool', 'ann'=>'resource', 'output_vector'=>'array'], -'fann_scale_output_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], -'fann_scale_train' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], -'fann_scale_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], -'fann_set_activation_function' => ['bool', 'ann'=>'resource', 'activation_function'=>'int', 'layer'=>'int', 'neuron'=>'int'], -'fann_set_activation_function_hidden' => ['bool', 'ann'=>'resource', 'activation_function'=>'int'], -'fann_set_activation_function_layer' => ['bool', 'ann'=>'resource', 'activation_function'=>'int', 'layer'=>'int'], -'fann_set_activation_function_output' => ['bool', 'ann'=>'resource', 'activation_function'=>'int'], -'fann_set_activation_steepness' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float', 'layer'=>'int', 'neuron'=>'int'], -'fann_set_activation_steepness_hidden' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float'], -'fann_set_activation_steepness_layer' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float', 'layer'=>'int'], -'fann_set_activation_steepness_output' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float'], -'fann_set_bit_fail_limit' => ['bool', 'ann'=>'resource', 'bit_fail_limit'=>'float'], -'fann_set_callback' => ['bool', 'ann'=>'resource', 'callback'=>'callable'], -'fann_set_cascade_activation_functions' => ['bool', 'ann'=>'resource', 'cascade_activation_functions'=>'array'], -'fann_set_cascade_activation_steepnesses' => ['bool', 'ann'=>'resource', 'cascade_activation_steepnesses_count'=>'array'], -'fann_set_cascade_candidate_change_fraction' => ['bool', 'ann'=>'resource', 'cascade_candidate_change_fraction'=>'float'], -'fann_set_cascade_candidate_limit' => ['bool', 'ann'=>'resource', 'cascade_candidate_limit'=>'float'], -'fann_set_cascade_candidate_stagnation_epochs' => ['bool', 'ann'=>'resource', 'cascade_candidate_stagnation_epochs'=>'int'], -'fann_set_cascade_max_cand_epochs' => ['bool', 'ann'=>'resource', 'cascade_max_cand_epochs'=>'int'], -'fann_set_cascade_max_out_epochs' => ['bool', 'ann'=>'resource', 'cascade_max_out_epochs'=>'int'], -'fann_set_cascade_min_cand_epochs' => ['bool', 'ann'=>'resource', 'cascade_min_cand_epochs'=>'int'], -'fann_set_cascade_min_out_epochs' => ['bool', 'ann'=>'resource', 'cascade_min_out_epochs'=>'int'], -'fann_set_cascade_num_candidate_groups' => ['bool', 'ann'=>'resource', 'cascade_num_candidate_groups'=>'int'], -'fann_set_cascade_output_change_fraction' => ['bool', 'ann'=>'resource', 'cascade_output_change_fraction'=>'float'], -'fann_set_cascade_output_stagnation_epochs' => ['bool', 'ann'=>'resource', 'cascade_output_stagnation_epochs'=>'int'], -'fann_set_cascade_weight_multiplier' => ['bool', 'ann'=>'resource', 'cascade_weight_multiplier'=>'float'], -'fann_set_error_log' => ['void', 'errdat'=>'resource', 'log_file'=>'string'], -'fann_set_input_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_input_min'=>'float', 'new_input_max'=>'float'], -'fann_set_learning_momentum' => ['bool', 'ann'=>'resource', 'learning_momentum'=>'float'], -'fann_set_learning_rate' => ['bool', 'ann'=>'resource', 'learning_rate'=>'float'], -'fann_set_output_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_output_min'=>'float', 'new_output_max'=>'float'], -'fann_set_quickprop_decay' => ['bool', 'ann'=>'resource', 'quickprop_decay'=>'float'], -'fann_set_quickprop_mu' => ['bool', 'ann'=>'resource', 'quickprop_mu'=>'float'], -'fann_set_rprop_decrease_factor' => ['bool', 'ann'=>'resource', 'rprop_decrease_factor'=>'float'], -'fann_set_rprop_delta_max' => ['bool', 'ann'=>'resource', 'rprop_delta_max'=>'float'], -'fann_set_rprop_delta_min' => ['bool', 'ann'=>'resource', 'rprop_delta_min'=>'float'], -'fann_set_rprop_delta_zero' => ['bool', 'ann'=>'resource', 'rprop_delta_zero'=>'float'], -'fann_set_rprop_increase_factor' => ['bool', 'ann'=>'resource', 'rprop_increase_factor'=>'float'], -'fann_set_sarprop_step_error_shift' => ['bool', 'ann'=>'resource', 'sarprop_step_error_shift'=>'float'], -'fann_set_sarprop_step_error_threshold_factor' => ['bool', 'ann'=>'resource', 'sarprop_step_error_threshold_factor'=>'float'], -'fann_set_sarprop_temperature' => ['bool', 'ann'=>'resource', 'sarprop_temperature'=>'float'], -'fann_set_sarprop_weight_decay_shift' => ['bool', 'ann'=>'resource', 'sarprop_weight_decay_shift'=>'float'], -'fann_set_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_input_min'=>'float', 'new_input_max'=>'float', 'new_output_min'=>'float', 'new_output_max'=>'float'], -'fann_set_train_error_function' => ['bool', 'ann'=>'resource', 'error_function'=>'int'], -'fann_set_train_stop_function' => ['bool', 'ann'=>'resource', 'stop_function'=>'int'], -'fann_set_training_algorithm' => ['bool', 'ann'=>'resource', 'training_algorithm'=>'int'], -'fann_set_weight' => ['bool', 'ann'=>'resource', 'from_neuron'=>'int', 'to_neuron'=>'int', 'weight'=>'float'], -'fann_set_weight_array' => ['bool', 'ann'=>'resource', 'connections'=>'array'], -'fann_shuffle_train_data' => ['bool', 'train_data'=>'resource'], -'fann_subset_train_data' => ['resource', 'data'=>'resource', 'pos'=>'int', 'length'=>'int'], -'fann_test' => ['bool', 'ann'=>'resource', 'input'=>'array', 'desired_output'=>'array'], -'fann_test_data' => ['float|false', 'ann'=>'resource', 'data'=>'resource'], -'fann_train' => ['bool', 'ann'=>'resource', 'input'=>'array', 'desired_output'=>'array'], -'fann_train_epoch' => ['float|false', 'ann'=>'resource', 'data'=>'resource'], -'fann_train_on_data' => ['bool', 'ann'=>'resource', 'data'=>'resource', 'max_epochs'=>'int', 'epochs_between_reports'=>'int', 'desired_error'=>'float'], -'fann_train_on_file' => ['bool', 'ann'=>'resource', 'filename'=>'string', 'max_epochs'=>'int', 'epochs_between_reports'=>'int', 'desired_error'=>'float'], -'FANNConnection::__construct' => ['void', 'from_neuron'=>'int', 'to_neuron'=>'int', 'weight'=>'float'], -'FANNConnection::getFromNeuron' => ['int'], -'FANNConnection::getToNeuron' => ['int'], -'FANNConnection::getWeight' => ['void'], -'FANNConnection::setWeight' => ['bool', 'weight'=>'float'], -'fastcgi_finish_request' => ['bool'], -'fbsql_affected_rows' => ['int', 'link_identifier='=>'?resource'], -'fbsql_autocommit' => ['bool', 'link_identifier'=>'resource', 'onoff='=>'bool'], -'fbsql_blob_size' => ['int', 'blob_handle'=>'string', 'link_identifier='=>'?resource'], -'fbsql_change_user' => ['bool', 'user'=>'string', 'password'=>'string', 'database='=>'string', 'link_identifier='=>'?resource'], -'fbsql_clob_size' => ['int', 'clob_handle'=>'string', 'link_identifier='=>'?resource'], -'fbsql_close' => ['bool', 'link_identifier='=>'?resource'], -'fbsql_commit' => ['bool', 'link_identifier='=>'?resource'], -'fbsql_connect' => ['resource', 'hostname='=>'string', 'username='=>'string', 'password='=>'string'], -'fbsql_create_blob' => ['string', 'blob_data'=>'string', 'link_identifier='=>'?resource'], -'fbsql_create_clob' => ['string', 'clob_data'=>'string', 'link_identifier='=>'?resource'], -'fbsql_create_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource', 'database_options='=>'string'], -'fbsql_data_seek' => ['bool', 'result'=>'resource', 'row_number'=>'int'], -'fbsql_database' => ['string', 'link_identifier'=>'resource', 'database='=>'string'], -'fbsql_database_password' => ['string', 'link_identifier'=>'resource', 'database_password='=>'string'], -'fbsql_db_query' => ['resource', 'database'=>'string', 'query'=>'string', 'link_identifier='=>'?resource'], -'fbsql_db_status' => ['int', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'fbsql_drop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'fbsql_errno' => ['int', 'link_identifier='=>'?resource'], -'fbsql_error' => ['string', 'link_identifier='=>'?resource'], -'fbsql_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], -'fbsql_fetch_assoc' => ['array', 'result'=>'resource'], -'fbsql_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_fetch_lengths' => ['array', 'result'=>'resource'], -'fbsql_fetch_object' => ['object', 'result'=>'resource'], -'fbsql_fetch_row' => ['array', 'result'=>'resource'], -'fbsql_field_flags' => ['string', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_field_len' => ['int', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_field_name' => ['string', 'result'=>'resource', 'field_index='=>'int'], -'fbsql_field_seek' => ['bool', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_field_table' => ['string', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_field_type' => ['string', 'result'=>'resource', 'field_offset='=>'int'], -'fbsql_free_result' => ['bool', 'result'=>'resource'], -'fbsql_get_autostart_info' => ['array', 'link_identifier='=>'?resource'], -'fbsql_hostname' => ['string', 'link_identifier'=>'resource', 'host_name='=>'string'], -'fbsql_insert_id' => ['int', 'link_identifier='=>'?resource'], -'fbsql_list_dbs' => ['resource', 'link_identifier='=>'?resource'], -'fbsql_list_fields' => ['resource', 'database_name'=>'string', 'table_name'=>'string', 'link_identifier='=>'?resource'], -'fbsql_list_tables' => ['resource', 'database'=>'string', 'link_identifier='=>'?resource'], -'fbsql_next_result' => ['bool', 'result'=>'resource'], -'fbsql_num_fields' => ['int', 'result'=>'resource'], -'fbsql_num_rows' => ['int', 'result'=>'resource'], -'fbsql_password' => ['string', 'link_identifier'=>'resource', 'password='=>'string'], -'fbsql_pconnect' => ['resource', 'hostname='=>'string', 'username='=>'string', 'password='=>'string'], -'fbsql_query' => ['resource', 'query'=>'string', 'link_identifier='=>'?resource', 'batch_size='=>'int'], -'fbsql_read_blob' => ['string', 'blob_handle'=>'string', 'link_identifier='=>'?resource'], -'fbsql_read_clob' => ['string', 'clob_handle'=>'string', 'link_identifier='=>'?resource'], -'fbsql_result' => ['mixed', 'result'=>'resource', 'row='=>'int', 'field='=>'mixed'], -'fbsql_rollback' => ['bool', 'link_identifier='=>'?resource'], -'fbsql_rows_fetched' => ['int', 'result'=>'resource'], -'fbsql_select_db' => ['bool', 'database_name='=>'string', 'link_identifier='=>'?resource'], -'fbsql_set_characterset' => ['void', 'link_identifier'=>'resource', 'characterset'=>'int', 'in_out_both='=>'int'], -'fbsql_set_lob_mode' => ['bool', 'result'=>'resource', 'lob_mode'=>'int'], -'fbsql_set_password' => ['bool', 'link_identifier'=>'resource', 'user'=>'string', 'password'=>'string', 'old_password'=>'string'], -'fbsql_set_transaction' => ['void', 'link_identifier'=>'resource', 'locking'=>'int', 'isolation'=>'int'], -'fbsql_start_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource', 'database_options='=>'string'], -'fbsql_stop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'fbsql_table_name' => ['string', 'result'=>'resource', 'index'=>'int'], -'fbsql_username' => ['string', 'link_identifier'=>'resource', 'username='=>'string'], -'fbsql_warnings' => ['bool', 'onoff='=>'bool'], -'fclose' => ['bool', 'stream'=>'resource'], -'fdf_add_doc_javascript' => ['bool', 'fdf_document'=>'resource', 'script_name'=>'string', 'script_code'=>'string'], -'fdf_add_template' => ['bool', 'fdf_document'=>'resource', 'newpage'=>'int', 'filename'=>'string', 'template'=>'string', 'rename'=>'int'], -'fdf_close' => ['void', 'fdf_document'=>'resource'], -'fdf_create' => ['resource'], -'fdf_enum_values' => ['bool', 'fdf_document'=>'resource', 'function'=>'callable', 'userdata='=>'mixed'], -'fdf_errno' => ['int'], -'fdf_error' => ['string', 'error_code='=>'int'], -'fdf_get_ap' => ['bool', 'fdf_document'=>'resource', 'field'=>'string', 'face'=>'int', 'filename'=>'string'], -'fdf_get_attachment' => ['array', 'fdf_document'=>'resource', 'fieldname'=>'string', 'savepath'=>'string'], -'fdf_get_encoding' => ['string', 'fdf_document'=>'resource'], -'fdf_get_file' => ['string', 'fdf_document'=>'resource'], -'fdf_get_flags' => ['int', 'fdf_document'=>'resource', 'fieldname'=>'string', 'whichflags'=>'int'], -'fdf_get_opt' => ['mixed', 'fdf_document'=>'resource', 'fieldname'=>'string', 'element='=>'int'], -'fdf_get_status' => ['string', 'fdf_document'=>'resource'], -'fdf_get_value' => ['mixed', 'fdf_document'=>'resource', 'fieldname'=>'string', 'which='=>'int'], -'fdf_get_version' => ['string', 'fdf_document='=>'resource'], -'fdf_header' => ['void'], -'fdf_next_field_name' => ['string', 'fdf_document'=>'resource', 'fieldname='=>'string'], -'fdf_open' => ['resource|false', 'filename'=>'string'], -'fdf_open_string' => ['resource', 'fdf_data'=>'string'], -'fdf_remove_item' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'item'=>'int'], -'fdf_save' => ['bool', 'fdf_document'=>'resource', 'filename='=>'string'], -'fdf_save_string' => ['string', 'fdf_document'=>'resource'], -'fdf_set_ap' => ['bool', 'fdf_document'=>'resource', 'field_name'=>'string', 'face'=>'int', 'filename'=>'string', 'page_number'=>'int'], -'fdf_set_encoding' => ['bool', 'fdf_document'=>'resource', 'encoding'=>'string'], -'fdf_set_file' => ['bool', 'fdf_document'=>'resource', 'url'=>'string', 'target_frame='=>'string'], -'fdf_set_flags' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'whichflags'=>'int', 'newflags'=>'int'], -'fdf_set_javascript_action' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'trigger'=>'int', 'script'=>'string'], -'fdf_set_on_import_javascript' => ['bool', 'fdf_document'=>'resource', 'script'=>'string', 'before_data_import'=>'bool'], -'fdf_set_opt' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'element'=>'int', 'string1'=>'string', 'string2'=>'string'], -'fdf_set_status' => ['bool', 'fdf_document'=>'resource', 'status'=>'string'], -'fdf_set_submit_form_action' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'trigger'=>'int', 'script'=>'string', 'flags'=>'int'], -'fdf_set_target_frame' => ['bool', 'fdf_document'=>'resource', 'frame_name'=>'string'], -'fdf_set_value' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'value'=>'mixed', 'isname='=>'int'], -'fdf_set_version' => ['bool', 'fdf_document'=>'resource', 'version'=>'string'], -'fdiv' => ['float', 'num1'=>'float', 'num2'=>'float'], -'feof' => ['bool', 'stream'=>'resource'], -'fflush' => ['bool', 'stream'=>'resource'], -'fsync' => ['bool', 'stream'=>'resource'], -'fdatasync' => ['bool', 'stream'=>'resource'], -'ffmpeg_animated_gif::__construct' => ['void', 'output_file_path'=>'string', 'width'=>'int', 'height'=>'int', 'frame_rate'=>'int', 'loop_count='=>'int'], -'ffmpeg_animated_gif::addFrame' => ['', 'frame_to_add'=>'ffmpeg_frame'], -'ffmpeg_frame::__construct' => ['void', 'gd_image'=>'resource'], -'ffmpeg_frame::crop' => ['', 'crop_top'=>'int', 'crop_bottom='=>'int', 'crop_left='=>'int', 'crop_right='=>'int'], -'ffmpeg_frame::getHeight' => ['int'], -'ffmpeg_frame::getPresentationTimestamp' => ['int'], -'ffmpeg_frame::getPTS' => ['int'], -'ffmpeg_frame::getWidth' => ['int'], -'ffmpeg_frame::resize' => ['', 'width'=>'int', 'height'=>'int', 'crop_top='=>'int', 'crop_bottom='=>'int', 'crop_left='=>'int', 'crop_right='=>'int'], -'ffmpeg_frame::toGDImage' => ['resource'], -'ffmpeg_movie::__construct' => ['void', 'path_to_media'=>'string', 'persistent'=>'bool'], -'ffmpeg_movie::getArtist' => ['string'], -'ffmpeg_movie::getAudioBitRate' => ['int'], -'ffmpeg_movie::getAudioChannels' => ['int'], -'ffmpeg_movie::getAudioCodec' => ['string'], -'ffmpeg_movie::getAudioSampleRate' => ['int'], -'ffmpeg_movie::getAuthor' => ['string'], -'ffmpeg_movie::getBitRate' => ['int'], -'ffmpeg_movie::getComment' => ['string'], -'ffmpeg_movie::getCopyright' => ['string'], -'ffmpeg_movie::getDuration' => ['int'], -'ffmpeg_movie::getFilename' => ['string'], -'ffmpeg_movie::getFrame' => ['ffmpeg_frame|false', 'framenumber'=>'int'], -'ffmpeg_movie::getFrameCount' => ['int'], -'ffmpeg_movie::getFrameHeight' => ['int'], -'ffmpeg_movie::getFrameNumber' => ['int'], -'ffmpeg_movie::getFrameRate' => ['int'], -'ffmpeg_movie::getFrameWidth' => ['int'], -'ffmpeg_movie::getGenre' => ['string'], -'ffmpeg_movie::getNextKeyFrame' => ['ffmpeg_frame|false'], -'ffmpeg_movie::getPixelFormat' => [''], -'ffmpeg_movie::getTitle' => ['string'], -'ffmpeg_movie::getTrackNumber' => ['int|string'], -'ffmpeg_movie::getVideoBitRate' => ['int'], -'ffmpeg_movie::getVideoCodec' => ['string'], -'ffmpeg_movie::getYear' => ['int|string'], -'ffmpeg_movie::hasAudio' => ['bool'], -'ffmpeg_movie::hasVideo' => ['bool'], -'fgetc' => ['string|false', 'stream'=>'resource'], -'fgetcsv' => ['list|array{0: null}|false', 'stream'=>'resource', 'length='=>'?int', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'fgets' => ['string|false', 'stream'=>'resource', 'length='=>'?int'], -'Fiber::__construct' => ['void', 'callback'=>'callable'], -'Fiber::start' => ['mixed', '...args'=>'mixed'], -'Fiber::resume' => ['mixed', 'value='=>'null|mixed'], -'Fiber::throw' => ['mixed', 'exception'=>'Throwable'], -'Fiber::isStarted' => ['bool'], -'Fiber::isSuspended' => ['bool'], -'Fiber::isRunning' => ['bool'], -'Fiber::isTerminated' => ['bool'], -'Fiber::getReturn' => ['mixed'], -'Fiber::getCurrent' => ['?self'], -'Fiber::suspend' => ['mixed', 'value='=>'null|mixed'], -'FiberError::__construct' => ['void'], -'file' => ['list|false', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], -'file_exists' => ['bool', 'filename'=>'string'], -'file_get_contents' => ['string|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'?resource', 'offset='=>'int', 'length='=>'?int'], -'file_put_contents' => ['int<0, max>|false', 'filename'=>'string', 'data'=>'string|resource|array', 'flags='=>'int', 'context='=>'resource'], -'fileatime' => ['int|false', 'filename'=>'string'], -'filectime' => ['int|false', 'filename'=>'string'], -'filegroup' => ['int|false', 'filename'=>'string'], -'fileinode' => ['int|false', 'filename'=>'string'], -'filemtime' => ['int|false', 'filename'=>'string'], -'fileowner' => ['int|false', 'filename'=>'string'], -'fileperms' => ['int|false', 'filename'=>'string'], -'filepro' => ['bool', 'directory'=>'string'], -'filepro_fieldcount' => ['int'], -'filepro_fieldname' => ['string', 'field_number'=>'int'], -'filepro_fieldtype' => ['string', 'field_number'=>'int'], -'filepro_fieldwidth' => ['int', 'field_number'=>'int'], -'filepro_retrieve' => ['string', 'row_number'=>'int', 'field_number'=>'int'], -'filepro_rowcount' => ['int'], -'filesize' => ['int|false', 'filename'=>'string'], -'FilesystemIterator::__construct' => ['void', 'directory'=>'string', 'flags='=>'int'], -'FilesystemIterator::__toString' => ['string'], -'FilesystemIterator::current' => ['SplFileInfo|FilesystemIterator|string'], -'FilesystemIterator::getATime' => ['int'], -'FilesystemIterator::getBasename' => ['string', 'suffix='=>'string'], -'FilesystemIterator::getCTime' => ['int'], -'FilesystemIterator::getExtension' => ['string'], -'FilesystemIterator::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'FilesystemIterator::getFilename' => ['string'], -'FilesystemIterator::getFlags' => ['int'], -'FilesystemIterator::getGroup' => ['int'], -'FilesystemIterator::getInode' => ['int'], -'FilesystemIterator::getLinkTarget' => ['string'], -'FilesystemIterator::getMTime' => ['int'], -'FilesystemIterator::getOwner' => ['int'], -'FilesystemIterator::getPath' => ['string'], -'FilesystemIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'?class-string'], -'FilesystemIterator::getPathname' => ['string'], -'FilesystemIterator::getPerms' => ['int'], -'FilesystemIterator::getRealPath' => ['non-falsy-string'], -'FilesystemIterator::getSize' => ['int'], -'FilesystemIterator::getType' => ['string'], -'FilesystemIterator::isDir' => ['bool'], -'FilesystemIterator::isDot' => ['bool'], -'FilesystemIterator::isExecutable' => ['bool'], -'FilesystemIterator::isFile' => ['bool'], -'FilesystemIterator::isLink' => ['bool'], -'FilesystemIterator::isReadable' => ['bool'], -'FilesystemIterator::isWritable' => ['bool'], -'FilesystemIterator::key' => ['string'], -'FilesystemIterator::next' => ['void'], -'FilesystemIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'FilesystemIterator::rewind' => ['void'], -'FilesystemIterator::seek' => ['void', 'offset'=>'int'], -'FilesystemIterator::setFileClass' => ['void', 'class='=>'class-string'], -'FilesystemIterator::setFlags' => ['void', 'flags'=>'int'], -'FilesystemIterator::setInfoClass' => ['void', 'class='=>'class-string'], -'FilesystemIterator::valid' => ['bool'], -'filetype' => ['string|false', 'filename'=>'string'], -'filter_has_var' => ['bool', 'input_type'=>'0|1|2|4|5', 'var_name'=>'string'], -'filter_id' => ['int|false', 'name'=>'string'], -'filter_input' => ['mixed|false|null', 'type'=>'0|1|2|4|5', 'var_name'=>'string', 'filter='=>'int', 'options='=>'array|int'], -'filter_input_array' => ['array|false|null', 'type'=>'0|1|2|4|5', 'options='=>'int|array', 'add_empty='=>'bool'], -'filter_list' => ['non-empty-list'], -'filter_var' => ['mixed|false', 'value'=>'mixed', 'filter='=>'int', 'options='=>'array|int'], -'filter_var_array' => ['array|false|null', 'array'=>'array', 'options='=>'array|int', 'add_empty='=>'bool'], -'FilterIterator::__construct' => ['void', 'iterator'=>'Iterator'], -'FilterIterator::accept' => ['bool'], -'FilterIterator::current' => ['mixed'], -'FilterIterator::getInnerIterator' => ['Iterator'], -'FilterIterator::key' => ['mixed'], -'FilterIterator::next' => ['void'], -'FilterIterator::rewind' => ['void'], -'FilterIterator::valid' => ['bool'], -'finfo::__construct' => ['void', 'flags='=>'int', 'magic_database='=>'?string'], -'finfo::buffer' => ['string|false', 'string'=>'string', 'flags='=>'int', 'context='=>'?resource'], -'finfo::file' => ['string|false', 'filename'=>'string', 'flags='=>'int', 'context='=>'?resource'], -'finfo::set_flags' => ['bool', 'flags'=>'int'], -'finfo_buffer' => ['string|false', 'finfo'=>'finfo', 'string'=>'string', 'flags='=>'int', 'context='=>'resource'], -'finfo_close' => ['bool', 'finfo'=>'finfo'], -'finfo_file' => ['string|false', 'finfo'=>'finfo', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], -'finfo_open' => ['finfo|false', 'flags='=>'int', 'magic_database='=>'?string'], -'finfo_set_flags' => ['bool', 'finfo'=>'finfo', 'flags'=>'int'], -'floatval' => ['float', 'value'=>'mixed'], -'flock' => ['bool', 'stream'=>'resource', 'operation'=>'int', '&w_would_block='=>'int'], -'floor' => ['float', 'num'=>'float|int'], -'flush' => ['void'], -'fmod' => ['float', 'num1'=>'float', 'num2'=>'float'], -'fnmatch' => ['bool', 'pattern'=>'string', 'filename'=>'string', 'flags='=>'int'], -'fopen' => ['resource|false', 'filename'=>'string', 'mode'=>'string', 'use_include_path='=>'bool', 'context='=>'resource|null'], -'forward_static_call' => ['mixed|false', 'callback'=>'callable', '...args='=>'mixed'], -'forward_static_call_array' => ['mixed|false', 'callback'=>'callable', 'args'=>'list'], -'fpassthru' => ['int', 'stream'=>'resource'], -'fpm_get_status' => ['array|false'], -'fprintf' => ['int', 'stream'=>'resource', 'format'=>'string', '...values='=>'string|int|float'], -'fputcsv' => ['int|false', 'stream'=>'resource', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string'], -'fputs' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], -'fread' => ['string|false', 'stream'=>'resource', 'length'=>'int'], -'frenchtojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'fribidi_log2vis' => ['string', 'string'=>'string', 'direction'=>'string', 'charset'=>'int'], -'fscanf' => ['list', 'stream'=>'resource', 'format'=>'string'], -'fscanf\'1' => ['int', 'stream'=>'resource', 'format'=>'string', '&...w_vars='=>'string|int|float'], -'fseek' => ['int', 'stream'=>'resource', 'offset'=>'int', 'whence='=>'int'], -'fsockopen' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float'], -'fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'stream'=>'resource'], -'ftell' => ['int|false', 'stream'=>'resource'], -'ftok' => ['int', 'filename'=>'string', 'project_id'=>'string'], -'ftp_alloc' => ['bool', 'ftp'=>'FTP\Connection', 'size'=>'int', '&w_response='=>'string'], -'ftp_append' => ['bool', 'ftp'=>'FTP\Connection', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int'], -'ftp_cdup' => ['bool', 'ftp'=>'FTP\Connection'], -'ftp_chdir' => ['bool', 'ftp'=>'FTP\Connection', 'directory'=>'string'], -'ftp_chmod' => ['int|false', 'ftp'=>'FTP\Connection', 'permissions'=>'int', 'filename'=>'string'], -'ftp_close' => ['bool', 'ftp'=>'FTP\Connection'], -'ftp_connect' => ['FTP\Connection|false', 'hostname'=>'string', 'port='=>'int', 'timeout='=>'int'], -'ftp_delete' => ['bool', 'ftp'=>'FTP\Connection', 'filename'=>'string'], -'ftp_exec' => ['bool', 'ftp'=>'FTP\Connection', 'command'=>'string'], -'ftp_fget' => ['bool', 'ftp'=>'FTP\Connection', 'stream'=>'resource', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_fput' => ['bool', 'ftp'=>'FTP\Connection', 'remote_filename'=>'string', 'stream'=>'resource', 'mode='=>'int', 'offset='=>'int'], -'ftp_get' => ['bool', 'ftp'=>'FTP\Connection', 'local_filename'=>'string', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_get_option' => ['int|false', 'ftp'=>'FTP\Connection', 'option'=>'int'], -'ftp_login' => ['bool', 'ftp'=>'FTP\Connection', 'username'=>'string', 'password'=>'string'], -'ftp_mdtm' => ['int', 'ftp'=>'FTP\Connection', 'filename'=>'string'], -'ftp_mkdir' => ['string|false', 'ftp'=>'FTP\Connection', 'directory'=>'string'], -'ftp_mlsd' => ['array|false', 'ftp'=>'FTP\Connection', 'directory'=>'string'], -'ftp_nb_continue' => ['int', 'ftp'=>'FTP\Connection'], -'ftp_nb_fget' => ['int', 'ftp'=>'FTP\Connection', 'stream'=>'resource', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_nb_fput' => ['int', 'ftp'=>'FTP\Connection', 'remote_filename'=>'string', 'stream'=>'resource', 'mode='=>'int', 'offset='=>'int'], -'ftp_nb_get' => ['int', 'ftp'=>'FTP\Connection', 'local_filename'=>'string', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_nb_put' => ['int', 'ftp'=>'FTP\Connection', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_nlist' => ['array|false', 'ftp'=>'FTP\Connection', 'directory'=>'string'], -'ftp_pasv' => ['bool', 'ftp'=>'FTP\Connection', 'enable'=>'bool'], -'ftp_put' => ['bool', 'ftp'=>'FTP\Connection', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], -'ftp_pwd' => ['string|false', 'ftp'=>'FTP\Connection'], -'ftp_quit' => ['bool', 'ftp'=>'FTP\Connection'], -'ftp_raw' => ['?array', 'ftp'=>'FTP\Connection', 'command'=>'string'], -'ftp_rawlist' => ['array|false', 'ftp'=>'FTP\Connection', 'directory'=>'string', 'recursive='=>'bool'], -'ftp_rename' => ['bool', 'ftp'=>'FTP\Connection', 'from'=>'string', 'to'=>'string'], -'ftp_rmdir' => ['bool', 'ftp'=>'FTP\Connection', 'directory'=>'string'], -'ftp_set_option' => ['bool', 'ftp'=>'FTP\Connection', 'option'=>'int', 'value'=>'mixed'], -'ftp_site' => ['bool', 'ftp'=>'FTP\Connection', 'command'=>'string'], -'ftp_size' => ['int', 'ftp'=>'FTP\Connection', 'filename'=>'string'], -'ftp_ssl_connect' => ['FTP\Connection|false', 'hostname'=>'string', 'port='=>'int', 'timeout='=>'int'], -'ftp_systype' => ['string|false', 'ftp'=>'FTP\Connection'], -'ftruncate' => ['bool', 'stream'=>'resource', 'size'=>'int'], -'func_get_arg' => ['mixed|false', 'position'=>'int'], -'func_get_args' => ['list'], -'func_num_args' => ['int'], -'function_exists' => ['bool', 'function'=>'string'], -'fwrite' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], -'gc_collect_cycles' => ['int'], -'gc_disable' => ['void'], -'gc_enable' => ['void'], -'gc_enabled' => ['bool'], -'gc_mem_caches' => ['int'], -'gc_status' => ['array{runs:int,collected:int,threshold:int,roots:int,running:bool,protected:bool,full:bool,buffer_size:int,application_time:float,collector_time:float,destructor_time:float,free_time:float}'], -'gd_info' => ['array'], -'gearman_bugreport' => [''], -'gearman_client_add_options' => ['', 'client_object'=>'', 'option'=>''], -'gearman_client_add_server' => ['', 'client_object'=>'', 'host'=>'', 'port'=>''], -'gearman_client_add_servers' => ['', 'client_object'=>'', 'servers'=>''], -'gearman_client_add_task' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_high' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_high_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_low' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_low_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], -'gearman_client_add_task_status' => ['', 'client_object'=>'', 'job_handle'=>'', 'context'=>''], -'gearman_client_clear_fn' => ['', 'client_object'=>''], -'gearman_client_clone' => ['', 'client_object'=>''], -'gearman_client_context' => ['', 'client_object'=>''], -'gearman_client_create' => ['', 'client_object'=>''], -'gearman_client_do' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_high' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_high_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_job_handle' => ['', 'client_object'=>''], -'gearman_client_do_low' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_low_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], -'gearman_client_do_normal' => ['', 'client_object'=>'', 'function_name'=>'string', 'workload'=>'string', 'unique'=>'string'], -'gearman_client_do_status' => ['', 'client_object'=>''], -'gearman_client_echo' => ['', 'client_object'=>'', 'workload'=>''], -'gearman_client_errno' => ['', 'client_object'=>''], -'gearman_client_error' => ['', 'client_object'=>''], -'gearman_client_job_status' => ['', 'client_object'=>'', 'job_handle'=>''], -'gearman_client_options' => ['', 'client_object'=>''], -'gearman_client_remove_options' => ['', 'client_object'=>'', 'option'=>''], -'gearman_client_return_code' => ['', 'client_object'=>''], -'gearman_client_run_tasks' => ['', 'data'=>''], -'gearman_client_set_complete_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_context' => ['', 'client_object'=>'', 'context'=>''], -'gearman_client_set_created_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_data_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_exception_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_fail_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_options' => ['', 'client_object'=>'', 'option'=>''], -'gearman_client_set_status_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_timeout' => ['', 'client_object'=>'', 'timeout'=>''], -'gearman_client_set_warning_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_set_workload_fn' => ['', 'client_object'=>'', 'callback'=>''], -'gearman_client_timeout' => ['', 'client_object'=>''], -'gearman_client_wait' => ['', 'client_object'=>''], -'gearman_job_function_name' => ['', 'job_object'=>''], -'gearman_job_handle' => ['string'], -'gearman_job_return_code' => ['', 'job_object'=>''], -'gearman_job_send_complete' => ['', 'job_object'=>'', 'result'=>''], -'gearman_job_send_data' => ['', 'job_object'=>'', 'data'=>''], -'gearman_job_send_exception' => ['', 'job_object'=>'', 'exception'=>''], -'gearman_job_send_fail' => ['', 'job_object'=>''], -'gearman_job_send_status' => ['', 'job_object'=>'', 'numerator'=>'', 'denominator'=>''], -'gearman_job_send_warning' => ['', 'job_object'=>'', 'warning'=>''], -'gearman_job_status' => ['array', 'job_handle'=>'string'], -'gearman_job_unique' => ['', 'job_object'=>''], -'gearman_job_workload' => ['', 'job_object'=>''], -'gearman_job_workload_size' => ['', 'job_object'=>''], -'gearman_task_data' => ['', 'task_object'=>''], -'gearman_task_data_size' => ['', 'task_object'=>''], -'gearman_task_denominator' => ['', 'task_object'=>''], -'gearman_task_function_name' => ['', 'task_object'=>''], -'gearman_task_is_known' => ['', 'task_object'=>''], -'gearman_task_is_running' => ['', 'task_object'=>''], -'gearman_task_job_handle' => ['', 'task_object'=>''], -'gearman_task_numerator' => ['', 'task_object'=>''], -'gearman_task_recv_data' => ['', 'task_object'=>'', 'data_len'=>''], -'gearman_task_return_code' => ['', 'task_object'=>''], -'gearman_task_send_workload' => ['', 'task_object'=>'', 'data'=>''], -'gearman_task_unique' => ['', 'task_object'=>''], -'gearman_verbose_name' => ['', 'verbose'=>''], -'gearman_version' => [''], -'gearman_worker_add_function' => ['', 'worker_object'=>'', 'function_name'=>'', 'function'=>'', 'data'=>'', 'timeout'=>''], -'gearman_worker_add_options' => ['', 'worker_object'=>'', 'option'=>''], -'gearman_worker_add_server' => ['', 'worker_object'=>'', 'host'=>'', 'port'=>''], -'gearman_worker_add_servers' => ['', 'worker_object'=>'', 'servers'=>''], -'gearman_worker_clone' => ['', 'worker_object'=>''], -'gearman_worker_create' => [''], -'gearman_worker_echo' => ['', 'worker_object'=>'', 'workload'=>''], -'gearman_worker_errno' => ['', 'worker_object'=>''], -'gearman_worker_error' => ['', 'worker_object'=>''], -'gearman_worker_grab_job' => ['', 'worker_object'=>''], -'gearman_worker_options' => ['', 'worker_object'=>''], -'gearman_worker_register' => ['', 'worker_object'=>'', 'function_name'=>'', 'timeout'=>''], -'gearman_worker_remove_options' => ['', 'worker_object'=>'', 'option'=>''], -'gearman_worker_return_code' => ['', 'worker_object'=>''], -'gearman_worker_set_options' => ['', 'worker_object'=>'', 'option'=>''], -'gearman_worker_set_timeout' => ['', 'worker_object'=>'', 'timeout'=>''], -'gearman_worker_timeout' => ['', 'worker_object'=>''], -'gearman_worker_unregister' => ['', 'worker_object'=>'', 'function_name'=>''], -'gearman_worker_unregister_all' => ['', 'worker_object'=>''], -'gearman_worker_wait' => ['', 'worker_object'=>''], -'gearman_worker_work' => ['', 'worker_object'=>''], -'GearmanClient::__construct' => ['void'], -'GearmanClient::addOptions' => ['bool', 'options'=>'int'], -'GearmanClient::addServer' => ['bool', 'host='=>'string', 'port='=>'int'], -'GearmanClient::addServers' => ['bool', 'servers='=>'string'], -'GearmanClient::addTask' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskHigh' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskHighBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskLow' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskLowBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], -'GearmanClient::addTaskStatus' => ['GearmanTask', 'job_handle'=>'string', 'context='=>'string'], -'GearmanClient::clearCallbacks' => ['bool'], -'GearmanClient::clone' => ['GearmanClient'], -'GearmanClient::context' => ['string'], -'GearmanClient::data' => ['string'], -'GearmanClient::do' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doHigh' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doHighBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doJobHandle' => ['string'], -'GearmanClient::doLow' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doLowBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doNormal' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], -'GearmanClient::doStatus' => ['array'], -'GearmanClient::echo' => ['bool', 'workload'=>'string'], -'GearmanClient::error' => ['string'], -'GearmanClient::getErrno' => ['int'], -'GearmanClient::jobStatus' => ['array', 'job_handle'=>'string'], -'GearmanClient::options' => [''], -'GearmanClient::ping' => ['bool', 'workload'=>'string'], -'GearmanClient::removeOptions' => ['bool', 'options'=>'int'], -'GearmanClient::returnCode' => ['int'], -'GearmanClient::runTasks' => ['bool'], -'GearmanClient::setClientCallback' => ['void', 'callback'=>'callable'], -'GearmanClient::setCompleteCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setContext' => ['bool', 'context'=>'string'], -'GearmanClient::setCreatedCallback' => ['bool', 'callback'=>'string'], -'GearmanClient::setData' => ['bool', 'data'=>'string'], -'GearmanClient::setDataCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setExceptionCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setFailCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setOptions' => ['bool', 'options'=>'int'], -'GearmanClient::setStatusCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setTimeout' => ['bool', 'timeout'=>'int'], -'GearmanClient::setWarningCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::setWorkloadCallback' => ['bool', 'callback'=>'callable'], -'GearmanClient::timeout' => ['int'], -'GearmanClient::wait' => [''], -'GearmanJob::__construct' => ['void'], -'GearmanJob::complete' => ['bool', 'result'=>'string'], -'GearmanJob::data' => ['bool', 'data'=>'string'], -'GearmanJob::exception' => ['bool', 'exception'=>'string'], -'GearmanJob::fail' => ['bool'], -'GearmanJob::functionName' => ['string'], -'GearmanJob::handle' => ['string'], -'GearmanJob::returnCode' => ['int'], -'GearmanJob::sendComplete' => ['bool', 'result'=>'string'], -'GearmanJob::sendData' => ['bool', 'data'=>'string'], -'GearmanJob::sendException' => ['bool', 'exception'=>'string'], -'GearmanJob::sendFail' => ['bool'], -'GearmanJob::sendStatus' => ['bool', 'numerator'=>'int', 'denominator'=>'int'], -'GearmanJob::sendWarning' => ['bool', 'warning'=>'string'], -'GearmanJob::setReturn' => ['bool', 'gearman_return_t'=>'string'], -'GearmanJob::status' => ['bool', 'numerator'=>'int', 'denominator'=>'int'], -'GearmanJob::unique' => ['string'], -'GearmanJob::warning' => ['bool', 'warning'=>'string'], -'GearmanJob::workload' => ['string'], -'GearmanJob::workloadSize' => ['int'], -'GearmanTask::__construct' => ['void'], -'GearmanTask::create' => ['GearmanTask'], -'GearmanTask::data' => ['string|false'], -'GearmanTask::dataSize' => ['int|false'], -'GearmanTask::function' => ['string'], -'GearmanTask::functionName' => ['string'], -'GearmanTask::isKnown' => ['bool'], -'GearmanTask::isRunning' => ['bool'], -'GearmanTask::jobHandle' => ['string'], -'GearmanTask::recvData' => ['array|false', 'data_len'=>'int'], -'GearmanTask::returnCode' => ['int'], -'GearmanTask::sendData' => ['int', 'data'=>'string'], -'GearmanTask::sendWorkload' => ['int|false', 'data'=>'string'], -'GearmanTask::taskDenominator' => ['int|false'], -'GearmanTask::taskNumerator' => ['int|false'], -'GearmanTask::unique' => ['string|false'], -'GearmanTask::uuid' => ['string'], -'GearmanWorker::__construct' => ['void'], -'GearmanWorker::addFunction' => ['bool', 'function_name'=>'string', 'function'=>'callable', 'context='=>'mixed', 'timeout='=>'int'], -'GearmanWorker::addOptions' => ['bool', 'option'=>'int'], -'GearmanWorker::addServer' => ['bool', 'host='=>'string', 'port='=>'int'], -'GearmanWorker::addServers' => ['bool', 'servers'=>'string'], -'GearmanWorker::clone' => ['void'], -'GearmanWorker::echo' => ['bool', 'workload'=>'string'], -'GearmanWorker::error' => ['string'], -'GearmanWorker::getErrno' => ['int'], -'GearmanWorker::grabJob' => [''], -'GearmanWorker::options' => ['int'], -'GearmanWorker::register' => ['bool', 'function_name'=>'string', 'timeout='=>'int'], -'GearmanWorker::removeOptions' => ['bool', 'option'=>'int'], -'GearmanWorker::returnCode' => ['int'], -'GearmanWorker::setId' => ['bool', 'id'=>'string'], -'GearmanWorker::setOptions' => ['bool', 'option'=>'int'], -'GearmanWorker::setTimeout' => ['bool', 'timeout'=>'int'], -'GearmanWorker::timeout' => ['int'], -'GearmanWorker::unregister' => ['bool', 'function_name'=>'string'], -'GearmanWorker::unregisterAll' => ['bool'], -'GearmanWorker::wait' => ['bool'], -'GearmanWorker::work' => ['bool'], -'Gender\Gender::__construct' => ['void', 'dsn='=>'string'], -'Gender\Gender::connect' => ['bool', 'dsn'=>'string'], -'Gender\Gender::country' => ['array', 'country'=>'int'], -'Gender\Gender::get' => ['int', 'name'=>'string', 'country='=>'int'], -'Gender\Gender::isNick' => ['array', 'name0'=>'string', 'name1'=>'string', 'country='=>'int'], -'Gender\Gender::similarNames' => ['array', 'name'=>'string', 'country='=>'int'], -'Generator::current' => ['mixed'], -'Generator::getReturn' => ['mixed'], -'Generator::key' => ['mixed'], -'Generator::next' => ['void'], -'Generator::rewind' => ['void'], -'Generator::send' => ['mixed', 'value'=>'mixed'], -'Generator::throw' => ['mixed', 'exception'=>'Throwable'], -'Generator::valid' => ['bool'], -'geoip_asnum_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_continent_code_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_country_code3_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_country_code_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_country_name_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_database_info' => ['string', 'database='=>'int'], -'geoip_db_avail' => ['bool', 'database'=>'int'], -'geoip_db_filename' => ['string', 'database'=>'int'], -'geoip_db_get_all_info' => ['array'], -'geoip_domain_by_name' => ['string', 'hostname'=>'string'], -'geoip_id_by_name' => ['int', 'hostname'=>'string'], -'geoip_isp_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_netspeedcell_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_org_by_name' => ['string|false', 'hostname'=>'string'], -'geoip_record_by_name' => ['array|false', 'hostname'=>'string'], -'geoip_region_by_name' => ['array|false', 'hostname'=>'string'], -'geoip_region_name_by_code' => ['string|false', 'country_code'=>'string', 'region_code'=>'string'], -'geoip_setup_custom_directory' => ['void', 'path'=>'string'], -'geoip_time_zone_by_country_and_region' => ['string|false', 'country_code'=>'string', 'region_code='=>'string'], -'GEOSGeometry::__toString' => ['string'], -'GEOSGeometry::project' => ['float', 'other'=>'GEOSGeometry', 'normalized'=>'bool'], -'GEOSGeometry::interpolate' => ['GEOSGeometry', 'dist'=>'float', 'normalized'=>'bool'], -'GEOSGeometry::buffer' => ['GEOSGeometry', 'dist'=>'float', 'styleArray='=>'array'], -'GEOSGeometry::offsetCurve' => ['GEOSGeometry', 'dist'=>'float', 'styleArray'=>'array'], -'GEOSGeometry::envelope' => ['GEOSGeometry'], -'GEOSGeometry::intersection' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::convexHull' => ['GEOSGeometry'], -'GEOSGeometry::difference' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::symDifference' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::boundary' => ['GEOSGeometry'], -'GEOSGeometry::union' => ['GEOSGeometry', 'otherGeom='=>'GEOSGeometry'], -'GEOSGeometry::pointOnSurface' => ['GEOSGeometry'], -'GEOSGeometry::centroid' => ['GEOSGeometry'], -'GEOSGeometry::relate' => ['string|bool', 'otherGeom'=>'GEOSGeometry', 'pattern'=>'string'], -'GEOSGeometry::relateBoundaryNodeRule' => ['string', 'otherGeom'=>'GEOSGeometry', 'rule'=>'int'], -'GEOSGeometry::simplify' => ['GEOSGeometry', 'tolerance'=>'float', 'preserveTopology='=>'bool'], -'GEOSGeometry::normalize' => ['GEOSGeometry'], -'GEOSGeometry::extractUniquePoints' => ['GEOSGeometry'], -'GEOSGeometry::disjoint' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::touches' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::intersects' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::crosses' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::within' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::contains' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::overlaps' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::covers' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::coveredBy' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::equals' => ['bool', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::equalsExact' => ['bool', 'geom'=>'GEOSGeometry', 'tolerance'=>'float'], -'GEOSGeometry::isEmpty' => ['bool'], -'GEOSGeometry::checkValidity' => ['array{valid: bool, reason?: string, location?: GEOSGeometry}'], -'GEOSGeometry::isSimple' => ['bool'], -'GEOSGeometry::isRing' => ['bool'], -'GEOSGeometry::hasZ' => ['bool'], -'GEOSGeometry::isClosed' => ['bool'], -'GEOSGeometry::typeName' => ['string'], -'GEOSGeometry::typeId' => ['int'], -'GEOSGeometry::getSRID' => ['int'], -'GEOSGeometry::setSRID' => ['void', 'srid'=>'int'], -'GEOSGeometry::numGeometries' => ['int'], -'GEOSGeometry::geometryN' => ['GEOSGeometry', 'num'=>'int'], -'GEOSGeometry::numInteriorRings' => ['int'], -'GEOSGeometry::numPoints' => ['int'], -'GEOSGeometry::getX' => ['float'], -'GEOSGeometry::getY' => ['float'], -'GEOSGeometry::interiorRingN' => ['GEOSGeometry', 'num'=>'int'], -'GEOSGeometry::exteriorRing' => ['GEOSGeometry'], -'GEOSGeometry::numCoordinates' => ['int'], -'GEOSGeometry::dimension' => ['int'], -'GEOSGeometry::coordinateDimension' => ['int'], -'GEOSGeometry::pointN' => ['GEOSGeometry', 'num'=>'int'], -'GEOSGeometry::startPoint' => ['GEOSGeometry'], -'GEOSGeometry::endPoint' => ['GEOSGeometry'], -'GEOSGeometry::area' => ['float'], -'GEOSGeometry::length' => ['float'], -'GEOSGeometry::distance' => ['float', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::hausdorffDistance' => ['float', 'geom'=>'GEOSGeometry'], -'GEOSGeometry::snapTo' => ['GEOSGeometry', 'geom'=>'GEOSGeometry', 'tolerance'=>'float'], -'GEOSGeometry::node' => ['GEOSGeometry'], -'GEOSGeometry::delaunayTriangulation' => ['GEOSGeometry', 'tolerance'=>'float', 'onlyEdges'=>'bool'], -'GEOSGeometry::voronoiDiagram' => ['GEOSGeometry', 'tolerance'=>'float', 'onlyEdges'=>'bool', 'extent'=>'GEOSGeometry|null'], -'GEOSLineMerge' => ['array', 'geom'=>'GEOSGeometry'], -'GEOSPolygonize' => ['array{rings: GEOSGeometry[], cut_edges?: GEOSGeometry[], dangles: GEOSGeometry[], invalid_rings: GEOSGeometry[]}', 'geom'=>'GEOSGeometry'], -'GEOSRelateMatch' => ['bool', 'matrix'=>'string', 'pattern'=>'string'], -'GEOSSharedPaths' => ['GEOSGeometry', 'geom1'=>'GEOSGeometry', 'geom2'=>'GEOSGeometry'], -'GEOSVersion' => ['string'], -'GEOSWKBReader::__construct' => ['void'], -'GEOSWKBReader::read' => ['GEOSGeometry', 'wkb'=>'string'], -'GEOSWKBReader::readHEX' => ['GEOSGeometry', 'wkb'=>'string'], -'GEOSWKBWriter::__construct' => ['void'], -'GEOSWKBWriter::getOutputDimension' => ['int'], -'GEOSWKBWriter::setOutputDimension' => ['void', 'dim'=>'int'], -'GEOSWKBWriter::getByteOrder' => ['int'], -'GEOSWKBWriter::setByteOrder' => ['void', 'byteOrder'=>'int'], -'GEOSWKBWriter::getIncludeSRID' => ['bool'], -'GEOSWKBWriter::setIncludeSRID' => ['void', 'inc'=>'bool'], -'GEOSWKBWriter::write' => ['string', 'geom'=>'GEOSGeometry'], -'GEOSWKBWriter::writeHEX' => ['string', 'geom'=>'GEOSGeometry'], -'GEOSWKTReader::__construct' => ['void'], -'GEOSWKTReader::read' => ['GEOSGeometry', 'wkt'=>'string'], -'GEOSWKTWriter::__construct' => ['void'], -'GEOSWKTWriter::write' => ['string', 'geom'=>'GEOSGeometry'], -'GEOSWKTWriter::setTrim' => ['void', 'trim'=>'bool'], -'GEOSWKTWriter::setRoundingPrecision' => ['void', 'prec'=>'int'], -'GEOSWKTWriter::setOutputDimension' => ['void', 'dim'=>'int'], -'GEOSWKTWriter::getOutputDimension' => ['int'], -'GEOSWKTWriter::setOld3D' => ['void', 'val'=>'bool'], -'get_browser' => ['array|object|false', 'user_agent='=>'?string', 'return_array='=>'bool'], -'get_call_stack' => [''], -'get_called_class' => ['class-string'], -'get_cfg_var' => ['string|false', 'option'=>'string'], -'get_class' => ['class-string', 'object'=>'object'], -'get_class_methods' => ['list', 'object_or_class'=>'object|class-string'], -'get_class_vars' => ['array', 'class'=>'string'], -'get_current_user' => ['string'], -'get_debug_type' => ['string', 'value'=>'mixed'], -'get_declared_classes' => ['list'], -'get_declared_interfaces' => ['list'], -'get_declared_traits' => ['list'], -'get_defined_constants' => ['array', 'categorize='=>'bool'], -'get_defined_functions' => ['array{internal: list, user: list}', 'exclude_disabled='=>'bool'], -'get_defined_vars' => ['array'], -'get_extension_funcs' => ['list|false', 'extension'=>'string'], -'get_headers' => ['array|false', 'url'=>'string', 'associative='=>'bool', 'context='=>'?resource'], -'get_html_translation_table' => ['array', 'table='=>'int', 'flags='=>'int', 'encoding='=>'string'], -'get_include_path' => ['string'], -'get_included_files' => ['list'], -'get_loaded_extensions' => ['list', 'zend_extensions='=>'bool'], -'get_magic_quotes_gpc' => ['int|false'], -'get_magic_quotes_runtime' => ['int|false'], -'get_meta_tags' => ['array', 'filename'=>'string', 'use_include_path='=>'bool'], -'get_object_vars' => ['array', 'object'=>'object'], -'get_parent_class' => ['class-string|false', 'object_or_class'=>'object|class-string'], -'get_required_files' => ['list'], -'get_resource_id' => ['int', 'resource'=>'resource'], -'get_resource_type' => ['string', 'resource'=>'resource'], -'get_resources' => ['array', 'type='=>'?string'], -'getallheaders' => ['array|false'], -'getcwd' => ['non-falsy-string|false'], -'getdate' => ['array{seconds: int<0, 59>, minutes: int<0, 59>, hours: int<0, 23>, mday: int<1, 31>, wday: int<0, 6>, mon: int<1, 12>, year: int, yday: int<0, 365>, weekday: "Monday"|"Tuesday"|"Wednesday"|"Thursday"|"Friday"|"Saturday"|"Sunday", month: "January"|"February"|"March"|"April"|"May"|"June"|"July"|"August"|"September"|"October"|"November"|"December", 0: int}', 'timestamp='=>'?int'], -'getenv' => ['string|false', 'name'=>'string', 'local_only='=>'bool'], -'getenv\'1' => ['array'], -'gethostbyaddr' => ['string|false', 'ip'=>'string'], -'gethostbyname' => ['string', 'hostname'=>'string'], -'gethostbynamel' => ['list|false', 'hostname'=>'string'], -'gethostname' => ['string|false'], -'getimagesize' => ['array{0:int, 1: int, 2: int, 3: string, mime: string, channels?: 3|4, bits?: int}|false', 'filename'=>'string', '&w_image_info='=>'array'], -'getimagesizefromstring' => ['array{0:int, 1: int, 2: int, 3: string, mime: string, channels?: 3|4, bits?: int}|false', 'string'=>'string', '&w_image_info='=>'array'], -'getlastmod' => ['int|false'], -'getmxrr' => ['bool', 'hostname'=>'string', '&w_hosts'=>'array', '&w_weights='=>'array'], -'getmygid' => ['int|false'], -'getmyinode' => ['int|false'], -'getmypid' => ['int|false'], -'getmyuid' => ['int|false'], -'getopt' => ['array>|false', 'short_options'=>'string', 'long_options='=>'array', '&w_rest_index='=>'int'], -'getprotobyname' => ['int|false', 'protocol'=>'string'], -'getprotobynumber' => ['string', 'protocol'=>'int'], -'getrandmax' => ['int<1, max>'], -'getrusage' => ['array', 'mode='=>'int'], -'getservbyname' => ['int|false', 'service'=>'string', 'protocol'=>'string'], -'getservbyport' => ['string|false', 'port'=>'int', 'protocol'=>'string'], -'gettext' => ['string', 'message'=>'string'], -'gettimeofday' => ['array'], -'gettimeofday\'1' => ['float', 'as_float='=>'true'], -'gettype' => ['string', 'value'=>'mixed'], -'glob' => ['false|list{0?:string, ...}', 'pattern'=>'string', 'flags='=>'int<0, max>'], -'GlobIterator::__construct' => ['void', 'pattern'=>'string', 'flags='=>'int'], -'GlobIterator::count' => ['int'], -'GlobIterator::current' => ['FilesystemIterator|SplFileInfo|string'], -'GlobIterator::getATime' => ['int'], -'GlobIterator::getBasename' => ['string', 'suffix='=>'string'], -'GlobIterator::getCTime' => ['int'], -'GlobIterator::getExtension' => ['string'], -'GlobIterator::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'GlobIterator::getFilename' => ['string'], -'GlobIterator::getFlags' => ['int'], -'GlobIterator::getGroup' => ['int'], -'GlobIterator::getInode' => ['int'], -'GlobIterator::getLinkTarget' => ['string|false'], -'GlobIterator::getMTime' => ['int'], -'GlobIterator::getOwner' => ['int'], -'GlobIterator::getPath' => ['string'], -'GlobIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'?class-string'], -'GlobIterator::getPathname' => ['string'], -'GlobIterator::getPerms' => ['int'], -'GlobIterator::getRealPath' => ['non-falsy-string|false'], -'GlobIterator::getSize' => ['int'], -'GlobIterator::getType' => ['string|false'], -'GlobIterator::isDir' => ['bool'], -'GlobIterator::isDot' => ['bool'], -'GlobIterator::isExecutable' => ['bool'], -'GlobIterator::isFile' => ['bool'], -'GlobIterator::isLink' => ['bool'], -'GlobIterator::isReadable' => ['bool'], -'GlobIterator::isWritable' => ['bool'], -'GlobIterator::key' => ['string'], -'GlobIterator::next' => ['void'], -'GlobIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'GlobIterator::rewind' => ['void'], -'GlobIterator::seek' => ['void', 'offset'=>'int'], -'GlobIterator::setFileClass' => ['void', 'class='=>'class-string'], -'GlobIterator::setFlags' => ['void', 'flags'=>'int'], -'GlobIterator::setInfoClass' => ['void', 'class='=>'class-string'], -'GlobIterator::valid' => ['bool'], -'Gmagick::__construct' => ['void', 'filename='=>'string'], -'Gmagick::addimage' => ['Gmagick', 'gmagick'=>'gmagick'], -'Gmagick::addnoiseimage' => ['Gmagick', 'noise'=>'int'], -'Gmagick::annotateimage' => ['Gmagick', 'gmagickdraw'=>'gmagickdraw', 'x'=>'float', 'y'=>'float', 'angle'=>'float', 'text'=>'string'], -'Gmagick::blurimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Gmagick::borderimage' => ['Gmagick', 'color'=>'gmagickpixel', 'width'=>'int', 'height'=>'int'], -'Gmagick::charcoalimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float'], -'Gmagick::chopimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Gmagick::clear' => ['Gmagick'], -'Gmagick::commentimage' => ['Gmagick', 'comment'=>'string'], -'Gmagick::compositeimage' => ['Gmagick', 'source'=>'gmagick', 'compose'=>'int', 'x'=>'int', 'y'=>'int'], -'Gmagick::cropimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Gmagick::cropthumbnailimage' => ['Gmagick', 'width'=>'int', 'height'=>'int'], -'Gmagick::current' => ['Gmagick'], -'Gmagick::cyclecolormapimage' => ['Gmagick', 'displace'=>'int'], -'Gmagick::deconstructimages' => ['Gmagick'], -'Gmagick::despeckleimage' => ['Gmagick'], -'Gmagick::destroy' => ['bool'], -'Gmagick::drawimage' => ['Gmagick', 'gmagickdraw'=>'gmagickdraw'], -'Gmagick::edgeimage' => ['Gmagick', 'radius'=>'float'], -'Gmagick::embossimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float'], -'Gmagick::enhanceimage' => ['Gmagick'], -'Gmagick::equalizeimage' => ['Gmagick'], -'Gmagick::flipimage' => ['Gmagick'], -'Gmagick::flopimage' => ['Gmagick'], -'Gmagick::frameimage' => ['Gmagick', 'color'=>'gmagickpixel', 'width'=>'int', 'height'=>'int', 'inner_bevel'=>'int', 'outer_bevel'=>'int'], -'Gmagick::gammaimage' => ['Gmagick', 'gamma'=>'float'], -'Gmagick::getcopyright' => ['string'], -'Gmagick::getfilename' => ['string'], -'Gmagick::getimagebackgroundcolor' => ['GmagickPixel'], -'Gmagick::getimageblueprimary' => ['array'], -'Gmagick::getimagebordercolor' => ['GmagickPixel'], -'Gmagick::getimagechanneldepth' => ['int', 'channel_type'=>'int'], -'Gmagick::getimagecolors' => ['int'], -'Gmagick::getimagecolorspace' => ['int'], -'Gmagick::getimagecompose' => ['int'], -'Gmagick::getimagedelay' => ['int'], -'Gmagick::getimagedepth' => ['int'], -'Gmagick::getimagedispose' => ['int'], -'Gmagick::getimageextrema' => ['array'], -'Gmagick::getimagefilename' => ['string'], -'Gmagick::getimageformat' => ['string'], -'Gmagick::getimagegamma' => ['float'], -'Gmagick::getimagegreenprimary' => ['array'], -'Gmagick::getimageheight' => ['int'], -'Gmagick::getimagehistogram' => ['array'], -'Gmagick::getimageindex' => ['int'], -'Gmagick::getimageinterlacescheme' => ['int'], -'Gmagick::getimageiterations' => ['int'], -'Gmagick::getimagematte' => ['int'], -'Gmagick::getimagemattecolor' => ['GmagickPixel'], -'Gmagick::getimageprofile' => ['string', 'name'=>'string'], -'Gmagick::getimageredprimary' => ['array'], -'Gmagick::getimagerenderingintent' => ['int'], -'Gmagick::getimageresolution' => ['array'], -'Gmagick::getimagescene' => ['int'], -'Gmagick::getimagesignature' => ['string'], -'Gmagick::getimagetype' => ['int'], -'Gmagick::getimageunits' => ['int'], -'Gmagick::getimagewhitepoint' => ['array'], -'Gmagick::getimagewidth' => ['int'], -'Gmagick::getpackagename' => ['string'], -'Gmagick::getquantumdepth' => ['array'], -'Gmagick::getreleasedate' => ['string'], -'Gmagick::getsamplingfactors' => ['array'], -'Gmagick::getsize' => ['array'], -'Gmagick::getversion' => ['array'], -'Gmagick::hasnextimage' => ['bool'], -'Gmagick::haspreviousimage' => ['bool'], -'Gmagick::implodeimage' => ['mixed', 'radius'=>'float'], -'Gmagick::labelimage' => ['mixed', 'label'=>'string'], -'Gmagick::levelimage' => ['mixed', 'blackpoint'=>'float', 'gamma'=>'float', 'whitepoint'=>'float', 'channel='=>'int'], -'Gmagick::magnifyimage' => ['mixed'], -'Gmagick::mapimage' => ['Gmagick', 'gmagick'=>'gmagick', 'dither'=>'bool'], -'Gmagick::medianfilterimage' => ['void', 'radius'=>'float'], -'Gmagick::minifyimage' => ['Gmagick'], -'Gmagick::modulateimage' => ['Gmagick', 'brightness'=>'float', 'saturation'=>'float', 'hue'=>'float'], -'Gmagick::motionblurimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float'], -'Gmagick::newimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'background'=>'string', 'format='=>'string'], -'Gmagick::nextimage' => ['bool'], -'Gmagick::normalizeimage' => ['Gmagick', 'channel='=>'int'], -'Gmagick::oilpaintimage' => ['Gmagick', 'radius'=>'float'], -'Gmagick::previousimage' => ['bool'], -'Gmagick::profileimage' => ['Gmagick', 'name'=>'string', 'profile'=>'string'], -'Gmagick::quantizeimage' => ['Gmagick', 'numcolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], -'Gmagick::quantizeimages' => ['Gmagick', 'numcolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], -'Gmagick::queryfontmetrics' => ['array', 'draw'=>'gmagickdraw', 'text'=>'string'], -'Gmagick::queryfonts' => ['array', 'pattern='=>'string'], -'Gmagick::queryformats' => ['array', 'pattern='=>'string'], -'Gmagick::radialblurimage' => ['Gmagick', 'angle'=>'float', 'channel='=>'int'], -'Gmagick::raiseimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int', 'raise'=>'bool'], -'Gmagick::read' => ['Gmagick', 'filename'=>'string'], -'Gmagick::readimage' => ['Gmagick', 'filename'=>'string'], -'Gmagick::readimageblob' => ['Gmagick', 'imagecontents'=>'string', 'filename='=>'string'], -'Gmagick::readimagefile' => ['Gmagick', 'fp'=>'resource', 'filename='=>'string'], -'Gmagick::reducenoiseimage' => ['Gmagick', 'radius'=>'float'], -'Gmagick::removeimage' => ['Gmagick'], -'Gmagick::removeimageprofile' => ['string', 'name'=>'string'], -'Gmagick::resampleimage' => ['Gmagick', 'xresolution'=>'float', 'yresolution'=>'float', 'filter'=>'int', 'blur'=>'float'], -'Gmagick::resizeimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'filter'=>'int', 'blur'=>'float', 'fit='=>'bool'], -'Gmagick::rollimage' => ['Gmagick', 'x'=>'int', 'y'=>'int'], -'Gmagick::rotateimage' => ['Gmagick', 'color'=>'mixed', 'degrees'=>'float'], -'Gmagick::scaleimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'fit='=>'bool'], -'Gmagick::separateimagechannel' => ['Gmagick', 'channel'=>'int'], -'Gmagick::setCompressionQuality' => ['Gmagick', 'quality'=>'int'], -'Gmagick::setfilename' => ['Gmagick', 'filename'=>'string'], -'Gmagick::setimagebackgroundcolor' => ['Gmagick', 'color'=>'gmagickpixel'], -'Gmagick::setimageblueprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], -'Gmagick::setimagebordercolor' => ['Gmagick', 'color'=>'gmagickpixel'], -'Gmagick::setimagechanneldepth' => ['Gmagick', 'channel'=>'int', 'depth'=>'int'], -'Gmagick::setimagecolorspace' => ['Gmagick', 'colorspace'=>'int'], -'Gmagick::setimagecompose' => ['Gmagick', 'composite'=>'int'], -'Gmagick::setimagedelay' => ['Gmagick', 'delay'=>'int'], -'Gmagick::setimagedepth' => ['Gmagick', 'depth'=>'int'], -'Gmagick::setimagedispose' => ['Gmagick', 'disposetype'=>'int'], -'Gmagick::setimagefilename' => ['Gmagick', 'filename'=>'string'], -'Gmagick::setimageformat' => ['Gmagick', 'imageformat'=>'string'], -'Gmagick::setimagegamma' => ['Gmagick', 'gamma'=>'float'], -'Gmagick::setimagegreenprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], -'Gmagick::setimageindex' => ['Gmagick', 'index'=>'int'], -'Gmagick::setimageinterlacescheme' => ['Gmagick', 'interlace'=>'int'], -'Gmagick::setimageiterations' => ['Gmagick', 'iterations'=>'int'], -'Gmagick::setimageprofile' => ['Gmagick', 'name'=>'string', 'profile'=>'string'], -'Gmagick::setimageredprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], -'Gmagick::setimagerenderingintent' => ['Gmagick', 'rendering_intent'=>'int'], -'Gmagick::setimageresolution' => ['Gmagick', 'xresolution'=>'float', 'yresolution'=>'float'], -'Gmagick::setimagescene' => ['Gmagick', 'scene'=>'int'], -'Gmagick::setimagetype' => ['Gmagick', 'imgtype'=>'int'], -'Gmagick::setimageunits' => ['Gmagick', 'resolution'=>'int'], -'Gmagick::setimagewhitepoint' => ['Gmagick', 'x'=>'float', 'y'=>'float'], -'Gmagick::setsamplingfactors' => ['Gmagick', 'factors'=>'array'], -'Gmagick::setsize' => ['Gmagick', 'columns'=>'int', 'rows'=>'int'], -'Gmagick::shearimage' => ['Gmagick', 'color'=>'mixed', 'xshear'=>'float', 'yshear'=>'float'], -'Gmagick::solarizeimage' => ['Gmagick', 'threshold'=>'int'], -'Gmagick::spreadimage' => ['Gmagick', 'radius'=>'float'], -'Gmagick::stripimage' => ['Gmagick'], -'Gmagick::swirlimage' => ['Gmagick', 'degrees'=>'float'], -'Gmagick::thumbnailimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'fit='=>'bool'], -'Gmagick::trimimage' => ['Gmagick', 'fuzz'=>'float'], -'Gmagick::write' => ['Gmagick', 'filename'=>'string'], -'Gmagick::writeimage' => ['Gmagick', 'filename'=>'string', 'all_frames='=>'bool'], -'GmagickDraw::annotate' => ['GmagickDraw', 'x'=>'float', 'y'=>'float', 'text'=>'string'], -'GmagickDraw::arc' => ['GmagickDraw', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float', 'sd'=>'float', 'ed'=>'float'], -'GmagickDraw::bezier' => ['GmagickDraw', 'coordinate_array'=>'array'], -'GmagickDraw::ellipse' => ['GmagickDraw', 'ox'=>'float', 'oy'=>'float', 'rx'=>'float', 'ry'=>'float', 'start'=>'float', 'end'=>'float'], -'GmagickDraw::getfillcolor' => ['GmagickPixel'], -'GmagickDraw::getfillopacity' => ['float'], -'GmagickDraw::getfont' => ['string|false'], -'GmagickDraw::getfontsize' => ['float'], -'GmagickDraw::getfontstyle' => ['int'], -'GmagickDraw::getfontweight' => ['int'], -'GmagickDraw::getstrokecolor' => ['GmagickPixel'], -'GmagickDraw::getstrokeopacity' => ['float'], -'GmagickDraw::getstrokewidth' => ['float'], -'GmagickDraw::gettextdecoration' => ['int'], -'GmagickDraw::gettextencoding' => ['string|false'], -'GmagickDraw::line' => ['GmagickDraw', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float'], -'GmagickDraw::point' => ['GmagickDraw', 'x'=>'float', 'y'=>'float'], -'GmagickDraw::polygon' => ['GmagickDraw', 'coordinates'=>'array'], -'GmagickDraw::polyline' => ['GmagickDraw', 'coordinate_array'=>'array'], -'GmagickDraw::rectangle' => ['GmagickDraw', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], -'GmagickDraw::rotate' => ['GmagickDraw', 'degrees'=>'float'], -'GmagickDraw::roundrectangle' => ['GmagickDraw', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'rx'=>'float', 'ry'=>'float'], -'GmagickDraw::scale' => ['GmagickDraw', 'x'=>'float', 'y'=>'float'], -'GmagickDraw::setfillcolor' => ['GmagickDraw', 'color'=>'string'], -'GmagickDraw::setfillopacity' => ['GmagickDraw', 'fill_opacity'=>'float'], -'GmagickDraw::setfont' => ['GmagickDraw', 'font'=>'string'], -'GmagickDraw::setfontsize' => ['GmagickDraw', 'pointsize'=>'float'], -'GmagickDraw::setfontstyle' => ['GmagickDraw', 'style'=>'int'], -'GmagickDraw::setfontweight' => ['GmagickDraw', 'weight'=>'int'], -'GmagickDraw::setstrokecolor' => ['GmagickDraw', 'color'=>'gmagickpixel'], -'GmagickDraw::setstrokeopacity' => ['GmagickDraw', 'stroke_opacity'=>'float'], -'GmagickDraw::setstrokewidth' => ['GmagickDraw', 'width'=>'float'], -'GmagickDraw::settextdecoration' => ['GmagickDraw', 'decoration'=>'int'], -'GmagickDraw::settextencoding' => ['GmagickDraw', 'encoding'=>'string'], -'GmagickPixel::__construct' => ['void', 'color='=>'string'], -'GmagickPixel::getcolor' => ['mixed', 'as_array='=>'bool', 'normalize_array='=>'bool'], -'GmagickPixel::getcolorcount' => ['int'], -'GmagickPixel::getcolorvalue' => ['float', 'color'=>'int'], -'GmagickPixel::setcolor' => ['GmagickPixel', 'color'=>'string'], -'GmagickPixel::setcolorvalue' => ['GmagickPixel', 'color'=>'int', 'value'=>'float'], -'gmdate' => ['string', 'format'=>'string', 'timestamp='=>'int|null'], -'gmmktime' => ['int|false', 'hour'=>'int', 'minute='=>'int|null', 'second='=>'int|null', 'month='=>'int|null', 'day='=>'int|null', 'year='=>'int|null'], -'GMP::__serialize' => ['array'], -'GMP::__unserialize' => ['void', 'data'=>'array'], -'gmp_abs' => ['GMP', 'num'=>'GMP|string|int'], -'gmp_add' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_and' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_binomial' => ['GMP', 'n'=>'GMP|string|int', 'k'=>'int'], -'gmp_clrbit' => ['void', 'num'=>'GMP', 'index'=>'int'], -'gmp_cmp' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_com' => ['GMP', 'num'=>'GMP|string|int'], -'gmp_div' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], -'gmp_div_q' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], -'gmp_div_qr' => ['array{0: GMP, 1: GMP}', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], -'gmp_div_r' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], -'gmp_divexact' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_export' => ['string', 'num'=>'GMP|string|int', 'word_size='=>'int', 'flags='=>'int'], -'gmp_fact' => ['GMP', 'num'=>'int'], -'gmp_gcd' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_gcdext' => ['array', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_hamdist' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_import' => ['GMP', 'data'=>'string', 'word_size='=>'int', 'flags='=>'int'], -'gmp_init' => ['GMP', 'num'=>'int|string', 'base='=>'int'], -'gmp_intval' => ['int', 'num'=>'GMP|string|int'], -'gmp_invert' => ['GMP|false', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_jacobi' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_kronecker' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_lcm' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_legendre' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_mod' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_mul' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_neg' => ['GMP', 'num'=>'GMP|string|int'], -'gmp_nextprime' => ['GMP', 'num'=>'GMP|string|int'], -'gmp_or' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_perfect_power' => ['bool', 'num'=>'GMP|string|int'], -'gmp_perfect_square' => ['bool', 'num'=>'GMP|string|int'], -'gmp_popcount' => ['int', 'num'=>'GMP|string|int'], -'gmp_pow' => ['GMP', 'num'=>'GMP|string|int', 'exponent'=>'int'], -'gmp_powm' => ['GMP', 'num'=>'GMP|string|int', 'exponent'=>'GMP|string|int', 'modulus'=>'GMP|string|int'], -'gmp_prob_prime' => ['int', 'num'=>'GMP|string|int', 'repetitions='=>'int'], -'gmp_random_bits' => ['GMP', 'bits'=>'int'], -'gmp_random_range' => ['GMP', 'min'=>'GMP|string|int', 'max'=>'GMP|string|int'], -'gmp_random_seed' => ['void', 'seed'=>'GMP|string|int'], -'gmp_root' => ['GMP', 'num'=>'GMP|string|int', 'nth'=>'int'], -'gmp_rootrem' => ['array{0: GMP, 1: GMP}', 'num'=>'GMP|string|int', 'nth'=>'int'], -'gmp_scan0' => ['int', 'num1'=>'GMP|string|int', 'start'=>'int'], -'gmp_scan1' => ['int', 'num1'=>'GMP|string|int', 'start'=>'int'], -'gmp_setbit' => ['void', 'num'=>'GMP', 'index'=>'int', 'value='=>'bool'], -'gmp_sign' => ['int', 'num'=>'GMP|string|int'], -'gmp_sqrt' => ['GMP', 'num'=>'GMP|string|int'], -'gmp_sqrtrem' => ['array{0: GMP, 1: GMP}', 'num'=>'GMP|string|int'], -'gmp_strval' => ['numeric-string', 'num'=>'GMP|string|int', 'base='=>'int'], -'gmp_sub' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmp_testbit' => ['bool', 'num'=>'GMP|string|int', 'index'=>'int'], -'gmp_xor' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], -'gmstrftime' => ['string|false', 'format'=>'string', 'timestamp='=>'?int'], -'gnupg::adddecryptkey' => ['bool', 'fingerprint'=>'string', 'passphrase'=>'string'], -'gnupg::addencryptkey' => ['bool', 'fingerprint'=>'string'], -'gnupg::addsignkey' => ['bool', 'fingerprint'=>'string', 'passphrase='=>'string'], -'gnupg::cleardecryptkeys' => ['bool'], -'gnupg::clearencryptkeys' => ['bool'], -'gnupg::clearsignkeys' => ['bool'], -'gnupg::decrypt' => ['string|false', 'text'=>'string'], -'gnupg::decryptverify' => ['array|false', 'text'=>'string', '&plaintext'=>'string'], -'gnupg::encrypt' => ['string|false', 'plaintext'=>'string'], -'gnupg::encryptsign' => ['string|false', 'plaintext'=>'string'], -'gnupg::export' => ['string|false', 'fingerprint'=>'string'], -'gnupg::geterror' => ['string|false'], -'gnupg::getprotocol' => ['int'], -'gnupg::import' => ['array|false', 'keydata'=>'string'], -'gnupg::keyinfo' => ['array', 'pattern'=>'string'], -'gnupg::setarmor' => ['bool', 'armor'=>'int'], -'gnupg::seterrormode' => ['void', 'errormode'=>'int'], -'gnupg::setsignmode' => ['bool', 'signmode'=>'int'], -'gnupg::sign' => ['string|false', 'plaintext'=>'string'], -'gnupg::verify' => ['array|false', 'signed_text'=>'string', 'signature'=>'string', '&plaintext='=>'string'], -'gnupg_adddecryptkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string', 'passphrase'=>'string'], -'gnupg_addencryptkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string'], -'gnupg_addsignkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string', 'passphrase='=>'string'], -'gnupg_cleardecryptkeys' => ['bool', 'identifier'=>'resource'], -'gnupg_clearencryptkeys' => ['bool', 'identifier'=>'resource'], -'gnupg_clearsignkeys' => ['bool', 'identifier'=>'resource'], -'gnupg_decrypt' => ['string', 'identifier'=>'resource', 'text'=>'string'], -'gnupg_decryptverify' => ['array', 'identifier'=>'resource', 'text'=>'string', 'plaintext'=>'string'], -'gnupg_encrypt' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], -'gnupg_encryptsign' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], -'gnupg_export' => ['string', 'identifier'=>'resource', 'fingerprint'=>'string'], -'gnupg_geterror' => ['string', 'identifier'=>'resource'], -'gnupg_getprotocol' => ['int', 'identifier'=>'resource'], -'gnupg_import' => ['array', 'identifier'=>'resource', 'keydata'=>'string'], -'gnupg_init' => ['resource'], -'gnupg_keyinfo' => ['array', 'identifier'=>'resource', 'pattern'=>'string'], -'gnupg_setarmor' => ['bool', 'identifier'=>'resource', 'armor'=>'int'], -'gnupg_seterrormode' => ['void', 'identifier'=>'resource', 'errormode'=>'int'], -'gnupg_setsignmode' => ['bool', 'identifier'=>'resource', 'signmode'=>'int'], -'gnupg_sign' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], -'gnupg_verify' => ['array', 'identifier'=>'resource', 'signed_text'=>'string', 'signature'=>'string', 'plaintext='=>'string'], -'gopher_parsedir' => ['array', 'dirent'=>'string'], -'grapheme_extract' => ['string|false', 'haystack'=>'string', 'size'=>'int', 'type='=>'int', 'offset='=>'int', '&w_next='=>'int'], -'grapheme_stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'grapheme_stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'beforeNeedle='=>'bool'], -'grapheme_strlen' => ['0|positive-int|false|null', 'string'=>'string'], -'grapheme_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'grapheme_strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'grapheme_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'grapheme_strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'beforeNeedle='=>'bool'], -'grapheme_substr' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'?int'], -'gregoriantojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'gridObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'Grpc\Call::__construct' => ['void', 'channel'=>'Grpc\Channel', 'method'=>'string', 'absolute_deadline'=>'Grpc\Timeval', 'host_override='=>'mixed'], -'Grpc\Call::cancel' => [''], -'Grpc\Call::getPeer' => ['string'], -'Grpc\Call::setCredentials' => ['int', 'creds_obj'=>'Grpc\CallCredentials'], -'Grpc\Call::startBatch' => ['object', 'batch'=>'array'], -'Grpc\CallCredentials::createComposite' => ['Grpc\CallCredentials', 'cred1'=>'Grpc\CallCredentials', 'cred2'=>'Grpc\CallCredentials'], -'Grpc\CallCredentials::createFromPlugin' => ['Grpc\CallCredentials', 'callback'=>'Closure'], -'Grpc\Channel::__construct' => ['void', 'target'=>'string', 'args='=>'array'], -'Grpc\Channel::close' => [''], -'Grpc\Channel::getConnectivityState' => ['int', 'try_to_connect='=>'bool'], -'Grpc\Channel::getTarget' => ['string'], -'Grpc\Channel::watchConnectivityState' => ['bool', 'last_state'=>'int', 'deadline_obj'=>'Grpc\Timeval'], -'Grpc\ChannelCredentials::createComposite' => ['Grpc\ChannelCredentials', 'cred1'=>'Grpc\ChannelCredentials', 'cred2'=>'Grpc\CallCredentials'], -'Grpc\ChannelCredentials::createDefault' => ['Grpc\ChannelCredentials'], -'Grpc\ChannelCredentials::createInsecure' => ['null'], -'Grpc\ChannelCredentials::createSsl' => ['Grpc\ChannelCredentials', 'pem_root_certs'=>'string', 'pem_private_key='=>'string', 'pem_cert_chain='=>'string'], -'Grpc\ChannelCredentials::setDefaultRootsPem' => ['', 'pem_roots'=>'string'], -'Grpc\Server::__construct' => ['void', 'args'=>'array'], -'Grpc\Server::addHttp2Port' => ['bool', 'addr'=>'string'], -'Grpc\Server::addSecureHttp2Port' => ['bool', 'addr'=>'string', 'creds_obj'=>'Grpc\ServerCredentials'], -'Grpc\Server::requestCall' => ['', 'tag_new'=>'int', 'tag_cancel'=>'int'], -'Grpc\Server::start' => [''], -'Grpc\ServerCredentials::createSsl' => ['object', 'pem_root_certs'=>'string', 'pem_private_key'=>'string', 'pem_cert_chain'=>'string'], -'Grpc\Timeval::__construct' => ['void', 'usec'=>'int'], -'Grpc\Timeval::add' => ['Grpc\Timeval', 'other'=>'Grpc\Timeval'], -'Grpc\Timeval::compare' => ['int', 'a'=>'Grpc\Timeval', 'b'=>'Grpc\Timeval'], -'Grpc\Timeval::infFuture' => ['Grpc\Timeval'], -'Grpc\Timeval::infPast' => ['Grpc\Timeval'], -'Grpc\Timeval::now' => ['Grpc\Timeval'], -'Grpc\Timeval::similar' => ['bool', 'a'=>'Grpc\Timeval', 'b'=>'Grpc\Timeval', 'threshold'=>'Grpc\Timeval'], -'Grpc\Timeval::sleepUntil' => [''], -'Grpc\Timeval::subtract' => ['Grpc\Timeval', 'other'=>'Grpc\Timeval'], -'Grpc\Timeval::zero' => ['Grpc\Timeval'], -'gupnp_context_get_host_ip' => ['string', 'context'=>'resource'], -'gupnp_context_get_port' => ['int', 'context'=>'resource'], -'gupnp_context_get_subscription_timeout' => ['int', 'context'=>'resource'], -'gupnp_context_host_path' => ['bool', 'context'=>'resource', 'local_path'=>'string', 'server_path'=>'string'], -'gupnp_context_new' => ['resource', 'host_ip='=>'string', 'port='=>'int'], -'gupnp_context_set_subscription_timeout' => ['void', 'context'=>'resource', 'timeout'=>'int'], -'gupnp_context_timeout_add' => ['bool', 'context'=>'resource', 'timeout'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], -'gupnp_context_unhost_path' => ['bool', 'context'=>'resource', 'server_path'=>'string'], -'gupnp_control_point_browse_start' => ['bool', 'cpoint'=>'resource'], -'gupnp_control_point_browse_stop' => ['bool', 'cpoint'=>'resource'], -'gupnp_control_point_callback_set' => ['bool', 'cpoint'=>'resource', 'signal'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], -'gupnp_control_point_new' => ['resource', 'context'=>'resource', 'target'=>'string'], -'gupnp_device_action_callback_set' => ['bool', 'root_device'=>'resource', 'signal'=>'int', 'action_name'=>'string', 'callback'=>'mixed', 'arg='=>'mixed'], -'gupnp_device_info_get' => ['array', 'root_device'=>'resource'], -'gupnp_device_info_get_service' => ['resource', 'root_device'=>'resource', 'type'=>'string'], -'gupnp_root_device_get_available' => ['bool', 'root_device'=>'resource'], -'gupnp_root_device_get_relative_location' => ['string', 'root_device'=>'resource'], -'gupnp_root_device_new' => ['resource', 'context'=>'resource', 'location'=>'string', 'description_dir'=>'string'], -'gupnp_root_device_set_available' => ['bool', 'root_device'=>'resource', 'available'=>'bool'], -'gupnp_root_device_start' => ['bool', 'root_device'=>'resource'], -'gupnp_root_device_stop' => ['bool', 'root_device'=>'resource'], -'gupnp_service_action_get' => ['mixed', 'action'=>'resource', 'name'=>'string', 'type'=>'int'], -'gupnp_service_action_return' => ['bool', 'action'=>'resource'], -'gupnp_service_action_return_error' => ['bool', 'action'=>'resource', 'error_code'=>'int', 'error_description='=>'string'], -'gupnp_service_action_set' => ['bool', 'action'=>'resource', 'name'=>'string', 'type'=>'int', 'value'=>'mixed'], -'gupnp_service_freeze_notify' => ['bool', 'service'=>'resource'], -'gupnp_service_info_get' => ['array', 'proxy'=>'resource'], -'gupnp_service_info_get_introspection' => ['mixed', 'proxy'=>'resource', 'callback='=>'mixed', 'arg='=>'mixed'], -'gupnp_service_introspection_get_state_variable' => ['array', 'introspection'=>'resource', 'variable_name'=>'string'], -'gupnp_service_notify' => ['bool', 'service'=>'resource', 'name'=>'string', 'type'=>'int', 'value'=>'mixed'], -'gupnp_service_proxy_action_get' => ['mixed', 'proxy'=>'resource', 'action'=>'string', 'name'=>'string', 'type'=>'int'], -'gupnp_service_proxy_action_set' => ['bool', 'proxy'=>'resource', 'action'=>'string', 'name'=>'string', 'value'=>'mixed', 'type'=>'int'], -'gupnp_service_proxy_add_notify' => ['bool', 'proxy'=>'resource', 'value'=>'string', 'type'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], -'gupnp_service_proxy_callback_set' => ['bool', 'proxy'=>'resource', 'signal'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], -'gupnp_service_proxy_get_subscribed' => ['bool', 'proxy'=>'resource'], -'gupnp_service_proxy_remove_notify' => ['bool', 'proxy'=>'resource', 'value'=>'string'], -'gupnp_service_proxy_send_action' => ['array', 'proxy'=>'resource', 'action'=>'string', 'in_params'=>'array', 'out_params'=>'array'], -'gupnp_service_proxy_set_subscribed' => ['bool', 'proxy'=>'resource', 'subscribed'=>'bool'], -'gupnp_service_thaw_notify' => ['bool', 'service'=>'resource'], -'gzclose' => ['bool', 'stream'=>'resource'], -'gzcompress' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], -'gzdecode' => ['string|false', 'data'=>'string', 'max_length='=>'int'], -'gzdeflate' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], -'gzencode' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], -'gzeof' => ['bool', 'stream'=>'resource'], -'gzfile' => ['list|false', 'filename'=>'string', 'use_include_path='=>'int'], -'gzgetc' => ['string|false', 'stream'=>'resource'], -'gzgets' => ['string|false', 'stream'=>'resource', 'length='=>'?int'], -'gzinflate' => ['string|false', 'data'=>'string', 'max_length='=>'int'], -'gzopen' => ['resource|false', 'filename'=>'string', 'mode'=>'string', 'use_include_path='=>'int'], -'gzpassthru' => ['int', 'stream'=>'resource'], -'gzputs' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], -'gzread' => ['string|false', 'stream'=>'resource', 'length'=>'int'], -'gzrewind' => ['bool', 'stream'=>'resource'], -'gzseek' => ['int', 'stream'=>'resource', 'offset'=>'int', 'whence='=>'int'], -'gztell' => ['int|false', 'stream'=>'resource'], -'gzuncompress' => ['string|false', 'data'=>'string', 'max_length='=>'int'], -'gzwrite' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], -'HaruAnnotation::setBorderStyle' => ['bool', 'width'=>'float', 'dash_on'=>'int', 'dash_off'=>'int'], -'HaruAnnotation::setHighlightMode' => ['bool', 'mode'=>'int'], -'HaruAnnotation::setIcon' => ['bool', 'icon'=>'int'], -'HaruAnnotation::setOpened' => ['bool', 'opened'=>'bool'], -'HaruDestination::setFit' => ['bool'], -'HaruDestination::setFitB' => ['bool'], -'HaruDestination::setFitBH' => ['bool', 'top'=>'float'], -'HaruDestination::setFitBV' => ['bool', 'left'=>'float'], -'HaruDestination::setFitH' => ['bool', 'top'=>'float'], -'HaruDestination::setFitR' => ['bool', 'left'=>'float', 'bottom'=>'float', 'right'=>'float', 'top'=>'float'], -'HaruDestination::setFitV' => ['bool', 'left'=>'float'], -'HaruDestination::setXYZ' => ['bool', 'left'=>'float', 'top'=>'float', 'zoom'=>'float'], -'HaruDoc::__construct' => ['void'], -'HaruDoc::addPage' => ['object'], -'HaruDoc::addPageLabel' => ['bool', 'first_page'=>'int', 'style'=>'int', 'first_num'=>'int', 'prefix='=>'string'], -'HaruDoc::createOutline' => ['object', 'title'=>'string', 'parent_outline='=>'object', 'encoder='=>'object'], -'HaruDoc::getCurrentEncoder' => ['object'], -'HaruDoc::getCurrentPage' => ['object'], -'HaruDoc::getEncoder' => ['object', 'encoding'=>'string'], -'HaruDoc::getFont' => ['object', 'fontname'=>'string', 'encoding='=>'string'], -'HaruDoc::getInfoAttr' => ['string', 'type'=>'int'], -'HaruDoc::getPageLayout' => ['int'], -'HaruDoc::getPageMode' => ['int'], -'HaruDoc::getStreamSize' => ['int'], -'HaruDoc::insertPage' => ['object', 'page'=>'object'], -'HaruDoc::loadJPEG' => ['object', 'filename'=>'string'], -'HaruDoc::loadPNG' => ['object', 'filename'=>'string', 'deferred='=>'bool'], -'HaruDoc::loadRaw' => ['object', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'color_space'=>'int'], -'HaruDoc::loadTTC' => ['string', 'fontfile'=>'string', 'index'=>'int', 'embed='=>'bool'], -'HaruDoc::loadTTF' => ['string', 'fontfile'=>'string', 'embed='=>'bool'], -'HaruDoc::loadType1' => ['string', 'afmfile'=>'string', 'pfmfile='=>'string'], -'HaruDoc::output' => ['bool'], -'HaruDoc::readFromStream' => ['string', 'bytes'=>'int'], -'HaruDoc::resetError' => ['bool'], -'HaruDoc::resetStream' => ['bool'], -'HaruDoc::save' => ['bool', 'file'=>'string'], -'HaruDoc::saveToStream' => ['bool'], -'HaruDoc::setCompressionMode' => ['bool', 'mode'=>'int'], -'HaruDoc::setCurrentEncoder' => ['bool', 'encoding'=>'string'], -'HaruDoc::setEncryptionMode' => ['bool', 'mode'=>'int', 'key_len='=>'int'], -'HaruDoc::setInfoAttr' => ['bool', 'type'=>'int', 'info'=>'string'], -'HaruDoc::setInfoDateAttr' => ['bool', 'type'=>'int', 'year'=>'int', 'month'=>'int', 'day'=>'int', 'hour'=>'int', 'min'=>'int', 'sec'=>'int', 'ind'=>'string', 'off_hour'=>'int', 'off_min'=>'int'], -'HaruDoc::setOpenAction' => ['bool', 'destination'=>'object'], -'HaruDoc::setPageLayout' => ['bool', 'layout'=>'int'], -'HaruDoc::setPageMode' => ['bool', 'mode'=>'int'], -'HaruDoc::setPagesConfiguration' => ['bool', 'page_per_pages'=>'int'], -'HaruDoc::setPassword' => ['bool', 'owner_password'=>'string', 'user_password'=>'string'], -'HaruDoc::setPermission' => ['bool', 'permission'=>'int'], -'HaruDoc::useCNSEncodings' => ['bool'], -'HaruDoc::useCNSFonts' => ['bool'], -'HaruDoc::useCNTEncodings' => ['bool'], -'HaruDoc::useCNTFonts' => ['bool'], -'HaruDoc::useJPEncodings' => ['bool'], -'HaruDoc::useJPFonts' => ['bool'], -'HaruDoc::useKREncodings' => ['bool'], -'HaruDoc::useKRFonts' => ['bool'], -'HaruEncoder::getByteType' => ['int', 'text'=>'string', 'index'=>'int'], -'HaruEncoder::getType' => ['int'], -'HaruEncoder::getUnicode' => ['int', 'character'=>'int'], -'HaruEncoder::getWritingMode' => ['int'], -'HaruFont::getAscent' => ['int'], -'HaruFont::getCapHeight' => ['int'], -'HaruFont::getDescent' => ['int'], -'HaruFont::getEncodingName' => ['string'], -'HaruFont::getFontName' => ['string'], -'HaruFont::getTextWidth' => ['array', 'text'=>'string'], -'HaruFont::getUnicodeWidth' => ['int', 'character'=>'int'], -'HaruFont::getXHeight' => ['int'], -'HaruFont::measureText' => ['int', 'text'=>'string', 'width'=>'float', 'font_size'=>'float', 'char_space'=>'float', 'word_space'=>'float', 'word_wrap='=>'bool'], -'HaruImage::getBitsPerComponent' => ['int'], -'HaruImage::getColorSpace' => ['string'], -'HaruImage::getHeight' => ['int'], -'HaruImage::getSize' => ['array'], -'HaruImage::getWidth' => ['int'], -'HaruImage::setColorMask' => ['bool', 'rmin'=>'int', 'rmax'=>'int', 'gmin'=>'int', 'gmax'=>'int', 'bmin'=>'int', 'bmax'=>'int'], -'HaruImage::setMaskImage' => ['bool', 'mask_image'=>'object'], -'HaruOutline::setDestination' => ['bool', 'destination'=>'object'], -'HaruOutline::setOpened' => ['bool', 'opened'=>'bool'], -'HaruPage::arc' => ['bool', 'x'=>'float', 'y'=>'float', 'ray'=>'float', 'ang1'=>'float', 'ang2'=>'float'], -'HaruPage::beginText' => ['bool'], -'HaruPage::circle' => ['bool', 'x'=>'float', 'y'=>'float', 'ray'=>'float'], -'HaruPage::closePath' => ['bool'], -'HaruPage::concat' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], -'HaruPage::createDestination' => ['object'], -'HaruPage::createLinkAnnotation' => ['object', 'rectangle'=>'array', 'destination'=>'object'], -'HaruPage::createTextAnnotation' => ['object', 'rectangle'=>'array', 'text'=>'string', 'encoder='=>'object'], -'HaruPage::createURLAnnotation' => ['object', 'rectangle'=>'array', 'url'=>'string'], -'HaruPage::curveTo' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'HaruPage::curveTo2' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'HaruPage::curveTo3' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x3'=>'float', 'y3'=>'float'], -'HaruPage::drawImage' => ['bool', 'image'=>'object', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'HaruPage::ellipse' => ['bool', 'x'=>'float', 'y'=>'float', 'xray'=>'float', 'yray'=>'float'], -'HaruPage::endPath' => ['bool'], -'HaruPage::endText' => ['bool'], -'HaruPage::eofill' => ['bool'], -'HaruPage::eoFillStroke' => ['bool', 'close_path='=>'bool'], -'HaruPage::fill' => ['bool'], -'HaruPage::fillStroke' => ['bool', 'close_path='=>'bool'], -'HaruPage::getCharSpace' => ['float'], -'HaruPage::getCMYKFill' => ['array'], -'HaruPage::getCMYKStroke' => ['array'], -'HaruPage::getCurrentFont' => ['object'], -'HaruPage::getCurrentFontSize' => ['float'], -'HaruPage::getCurrentPos' => ['array'], -'HaruPage::getCurrentTextPos' => ['array'], -'HaruPage::getDash' => ['array'], -'HaruPage::getFillingColorSpace' => ['int'], -'HaruPage::getFlatness' => ['float'], -'HaruPage::getGMode' => ['int'], -'HaruPage::getGrayFill' => ['float'], -'HaruPage::getGrayStroke' => ['float'], -'HaruPage::getHeight' => ['float'], -'HaruPage::getHorizontalScaling' => ['float'], -'HaruPage::getLineCap' => ['int'], -'HaruPage::getLineJoin' => ['int'], -'HaruPage::getLineWidth' => ['float'], -'HaruPage::getMiterLimit' => ['float'], -'HaruPage::getRGBFill' => ['array'], -'HaruPage::getRGBStroke' => ['array'], -'HaruPage::getStrokingColorSpace' => ['int'], -'HaruPage::getTextLeading' => ['float'], -'HaruPage::getTextMatrix' => ['array'], -'HaruPage::getTextRenderingMode' => ['int'], -'HaruPage::getTextRise' => ['float'], -'HaruPage::getTextWidth' => ['float', 'text'=>'string'], -'HaruPage::getTransMatrix' => ['array'], -'HaruPage::getWidth' => ['float'], -'HaruPage::getWordSpace' => ['float'], -'HaruPage::lineTo' => ['bool', 'x'=>'float', 'y'=>'float'], -'HaruPage::measureText' => ['int', 'text'=>'string', 'width'=>'float', 'wordwrap='=>'bool'], -'HaruPage::moveTextPos' => ['bool', 'x'=>'float', 'y'=>'float', 'set_leading='=>'bool'], -'HaruPage::moveTo' => ['bool', 'x'=>'float', 'y'=>'float'], -'HaruPage::moveToNextLine' => ['bool'], -'HaruPage::rectangle' => ['bool', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'HaruPage::setCharSpace' => ['bool', 'char_space'=>'float'], -'HaruPage::setCMYKFill' => ['bool', 'c'=>'float', 'm'=>'float', 'y'=>'float', 'k'=>'float'], -'HaruPage::setCMYKStroke' => ['bool', 'c'=>'float', 'm'=>'float', 'y'=>'float', 'k'=>'float'], -'HaruPage::setDash' => ['bool', 'pattern'=>'array', 'phase'=>'int'], -'HaruPage::setFlatness' => ['bool', 'flatness'=>'float'], -'HaruPage::setFontAndSize' => ['bool', 'font'=>'object', 'size'=>'float'], -'HaruPage::setGrayFill' => ['bool', 'value'=>'float'], -'HaruPage::setGrayStroke' => ['bool', 'value'=>'float'], -'HaruPage::setHeight' => ['bool', 'height'=>'float'], -'HaruPage::setHorizontalScaling' => ['bool', 'scaling'=>'float'], -'HaruPage::setLineCap' => ['bool', 'cap'=>'int'], -'HaruPage::setLineJoin' => ['bool', 'join'=>'int'], -'HaruPage::setLineWidth' => ['bool', 'width'=>'float'], -'HaruPage::setMiterLimit' => ['bool', 'limit'=>'float'], -'HaruPage::setRGBFill' => ['bool', 'r'=>'float', 'g'=>'float', 'b'=>'float'], -'HaruPage::setRGBStroke' => ['bool', 'r'=>'float', 'g'=>'float', 'b'=>'float'], -'HaruPage::setRotate' => ['bool', 'angle'=>'int'], -'HaruPage::setSize' => ['bool', 'size'=>'int', 'direction'=>'int'], -'HaruPage::setSlideShow' => ['bool', 'type'=>'int', 'disp_time'=>'float', 'trans_time'=>'float'], -'HaruPage::setTextLeading' => ['bool', 'text_leading'=>'float'], -'HaruPage::setTextMatrix' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], -'HaruPage::setTextRenderingMode' => ['bool', 'mode'=>'int'], -'HaruPage::setTextRise' => ['bool', 'rise'=>'float'], -'HaruPage::setWidth' => ['bool', 'width'=>'float'], -'HaruPage::setWordSpace' => ['bool', 'word_space'=>'float'], -'HaruPage::showText' => ['bool', 'text'=>'string'], -'HaruPage::showTextNextLine' => ['bool', 'text'=>'string', 'word_space='=>'float', 'char_space='=>'float'], -'HaruPage::stroke' => ['bool', 'close_path='=>'bool'], -'HaruPage::textOut' => ['bool', 'x'=>'float', 'y'=>'float', 'text'=>'string'], -'HaruPage::textRect' => ['bool', 'left'=>'float', 'top'=>'float', 'right'=>'float', 'bottom'=>'float', 'text'=>'string', 'align='=>'int'], -'hash' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool', 'options='=>'array{seed:scalar}'], -'hash_algos' => ['list'], -'hash_copy' => ['HashContext', 'context'=>'HashContext'], -'hash_equals' => ['bool', 'known_string'=>'string', 'user_string'=>'string'], -'hash_file' => ['non-empty-string|false', 'algo'=>'string', 'filename'=>'string', 'binary='=>'bool', 'options='=>'array{seed:scalar}'], -'hash_final' => ['non-empty-string', 'context'=>'HashContext', 'binary='=>'bool'], -'hash_hkdf' => ['non-empty-string', 'algo'=>'string', 'key'=>'string', 'length='=>'int', 'info='=>'string', 'salt='=>'string'], -'hash_hmac' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], -'hash_hmac_algos' => ['list'], -'hash_hmac_file' => ['non-empty-string', 'algo'=>'string', 'filename'=>'string', 'key'=>'string', 'binary='=>'bool'], -'hash_init' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string', 'options='=>'array{seed:scalar}'], -'hash_pbkdf2' => ['non-empty-string', 'algo'=>'string', 'password'=>'string', 'salt'=>'string', 'iterations'=>'int', 'length='=>'int', 'binary='=>'bool', 'options=' => 'array'], -'hash_update' => ['bool', 'context'=>'HashContext', 'data'=>'string'], -'hash_update_file' => ['bool', 'context'=>'HashContext', 'filename'=>'string', 'stream_context='=>'?resource'], -'hash_update_stream' => ['int', 'context'=>'HashContext', 'stream'=>'resource', 'length='=>'int'], -'hashTableObj::clear' => ['void'], -'hashTableObj::get' => ['string', 'key'=>'string'], -'hashTableObj::nextkey' => ['string', 'previousKey'=>'string'], -'hashTableObj::remove' => ['int', 'key'=>'string'], -'hashTableObj::set' => ['int', 'key'=>'string', 'value'=>'string'], -'header' => ['void', 'header'=>'string', 'replace='=>'bool', 'response_code='=>'int'], -'header_register_callback' => ['bool', 'callback'=>'callable():void'], -'header_remove' => ['void', 'name='=>'?string'], -'headers_list' => ['list'], -'headers_sent' => ['bool', '&w_filename='=>'string', '&w_line='=>'int'], -'hebrev' => ['string', 'string'=>'string', 'max_chars_per_line='=>'int'], -'hebrevc' => ['string', 'string'=>'string', 'max_chars_per_line='=>'int'], -'hex2bin' => ['string|false', 'string'=>'string'], -'hexdec' => ['int|float', 'hex_string'=>'string'], -'highlight_file' => ['string|bool', 'filename'=>'string', 'return='=>'bool'], -'highlight_string' => ['string|bool', 'string'=>'string', 'return='=>'bool'], -'hrtime' => ['array{0:int,1:int}|false', 'as_number='=>'false'], -'hrtime\'1' => ['int|float|false', 'as_number='=>'true'], -'HRTime\PerformanceCounter::getElapsedTicks' => ['int'], -'HRTime\PerformanceCounter::getFrequency' => ['int'], -'HRTime\PerformanceCounter::getLastElapsedTicks' => ['int'], -'HRTime\PerformanceCounter::getTicks' => ['int'], -'HRTime\PerformanceCounter::getTicksSince' => ['int', 'start'=>'int'], -'HRTime\PerformanceCounter::isRunning' => ['bool'], -'HRTime\PerformanceCounter::start' => ['void'], -'HRTime\PerformanceCounter::stop' => ['void'], -'HRTime\StopWatch::getElapsedTicks' => ['int'], -'HRTime\StopWatch::getElapsedTime' => ['float', 'unit='=>'int'], -'HRTime\StopWatch::getLastElapsedTicks' => ['int'], -'HRTime\StopWatch::getLastElapsedTime' => ['float', 'unit='=>'int'], -'HRTime\StopWatch::isRunning' => ['bool'], -'HRTime\StopWatch::start' => ['void'], -'HRTime\StopWatch::stop' => ['void'], -'html_entity_decode' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'?string'], -'htmlentities' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'?string', 'double_encode='=>'bool'], -'htmlspecialchars' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string|null', 'double_encode='=>'bool'], -'htmlspecialchars_decode' => ['string', 'string'=>'string', 'flags='=>'int'], -'http\Client::__construct' => ['void', 'driver='=>'string', 'persistent_handle_id='=>'string'], -'http\Client::addCookies' => ['http\Client', 'cookies='=>'?array'], -'http\Client::addSslOptions' => ['http\Client', 'ssl_options='=>'?array'], -'http\Client::attach' => ['void', 'observer'=>'SplObserver'], -'http\Client::configure' => ['http\Client', 'settings'=>'array'], -'http\Client::count' => ['int'], -'http\Client::dequeue' => ['http\Client', 'request'=>'http\Client\Request'], -'http\Client::detach' => ['void', 'observer'=>'SplObserver'], -'http\Client::enableEvents' => ['http\Client', 'enable='=>'mixed'], -'http\Client::enablePipelining' => ['http\Client', 'enable='=>'mixed'], -'http\Client::enqueue' => ['http\Client', 'request'=>'http\Client\Request', 'callable='=>'mixed'], -'http\Client::getAvailableConfiguration' => ['array'], -'http\Client::getAvailableDrivers' => ['array'], -'http\Client::getAvailableOptions' => ['array'], -'http\Client::getCookies' => ['array'], -'http\Client::getHistory' => ['http\Message'], -'http\Client::getObservers' => ['SplObjectStorage'], -'http\Client::getOptions' => ['array'], -'http\Client::getProgressInfo' => ['null|object', 'request'=>'http\Client\Request'], -'http\Client::getResponse' => ['http\Client\Response|null', 'request='=>'?http\Client\Request'], -'http\Client::getSslOptions' => ['array'], -'http\Client::getTransferInfo' => ['object', 'request'=>'http\Client\Request'], -'http\Client::notify' => ['void', 'request='=>'?http\Client\Request'], -'http\Client::once' => ['bool'], -'http\Client::requeue' => ['http\Client', 'request'=>'http\Client\Request', 'callable='=>'mixed'], -'http\Client::reset' => ['http\Client'], -'http\Client::send' => ['http\Client'], -'http\Client::setCookies' => ['http\Client', 'cookies='=>'?array'], -'http\Client::setDebug' => ['http\Client', 'callback'=>'callable'], -'http\Client::setOptions' => ['http\Client', 'options='=>'?array'], -'http\Client::setSslOptions' => ['http\Client', 'ssl_option='=>'?array'], -'http\Client::wait' => ['bool', 'timeout='=>'mixed'], -'http\Client\Curl\User::init' => ['', 'run'=>'callable'], -'http\Client\Curl\User::once' => [''], -'http\Client\Curl\User::send' => [''], -'http\Client\Curl\User::socket' => ['', 'socket'=>'resource', 'action'=>'int'], -'http\Client\Curl\User::timer' => ['', 'timeout_ms'=>'int'], -'http\Client\Curl\User::wait' => ['', 'timeout_ms='=>'mixed'], -'http\Client\Request::__construct' => ['void', 'method='=>'mixed', 'url='=>'mixed', 'headers='=>'?array', 'body='=>'?http\Message\Body'], -'http\Client\Request::__toString' => ['string'], -'http\Client\Request::addBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Client\Request::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], -'http\Client\Request::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], -'http\Client\Request::addQuery' => ['http\Client\Request', 'query_data'=>'mixed'], -'http\Client\Request::addSslOptions' => ['http\Client\Request', 'ssl_options='=>'?array'], -'http\Client\Request::count' => ['int'], -'http\Client\Request::current' => ['mixed'], -'http\Client\Request::detach' => ['http\Message'], -'http\Client\Request::getBody' => ['http\Message\Body'], -'http\Client\Request::getContentType' => ['null|string'], -'http\Client\Request::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], -'http\Client\Request::getHeaders' => ['array'], -'http\Client\Request::getHttpVersion' => ['string'], -'http\Client\Request::getInfo' => ['null|string'], -'http\Client\Request::getOptions' => ['array'], -'http\Client\Request::getParentMessage' => ['http\Message'], -'http\Client\Request::getQuery' => ['null|string'], -'http\Client\Request::getRequestMethod' => ['false|string'], -'http\Client\Request::getRequestUrl' => ['false|string'], -'http\Client\Request::getResponseCode' => ['false|int'], -'http\Client\Request::getResponseStatus' => ['false|string'], -'http\Client\Request::getSslOptions' => ['array'], -'http\Client\Request::getType' => ['int'], -'http\Client\Request::isMultipart' => ['bool', '&boundary='=>'mixed'], -'http\Client\Request::key' => ['int|string'], -'http\Client\Request::next' => ['void'], -'http\Client\Request::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], -'http\Client\Request::reverse' => ['http\Message'], -'http\Client\Request::rewind' => ['void'], -'http\Client\Request::serialize' => ['string'], -'http\Client\Request::setBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Client\Request::setContentType' => ['http\Client\Request', 'content_type'=>'string'], -'http\Client\Request::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], -'http\Client\Request::setHeaders' => ['http\Message', 'headers'=>'array'], -'http\Client\Request::setHttpVersion' => ['http\Message', 'http_version'=>'string'], -'http\Client\Request::setInfo' => ['http\Message', 'http_info'=>'string'], -'http\Client\Request::setOptions' => ['http\Client\Request', 'options='=>'?array'], -'http\Client\Request::setQuery' => ['http\Client\Request', 'query_data='=>'mixed'], -'http\Client\Request::setRequestMethod' => ['http\Message', 'request_method'=>'string'], -'http\Client\Request::setRequestUrl' => ['http\Message', 'url'=>'string'], -'http\Client\Request::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], -'http\Client\Request::setResponseStatus' => ['http\Message', 'response_status'=>'string'], -'http\Client\Request::setSslOptions' => ['http\Client\Request', 'ssl_options='=>'?array'], -'http\Client\Request::setType' => ['http\Message', 'type'=>'int'], -'http\Client\Request::splitMultipartBody' => ['http\Message'], -'http\Client\Request::toCallback' => ['http\Message', 'callback'=>'callable'], -'http\Client\Request::toStream' => ['http\Message', 'stream'=>'resource'], -'http\Client\Request::toString' => ['string', 'include_parent='=>'mixed'], -'http\Client\Request::unserialize' => ['void', 'serialized'=>'string'], -'http\Client\Request::valid' => ['bool'], -'http\Client\Response::__construct' => ['Iterator'], -'http\Client\Response::__toString' => ['string'], -'http\Client\Response::addBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Client\Response::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], -'http\Client\Response::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], -'http\Client\Response::count' => ['int'], -'http\Client\Response::current' => ['mixed'], -'http\Client\Response::detach' => ['http\Message'], -'http\Client\Response::getBody' => ['http\Message\Body'], -'http\Client\Response::getCookies' => ['array', 'flags='=>'mixed', 'allowed_extras='=>'mixed'], -'http\Client\Response::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], -'http\Client\Response::getHeaders' => ['array'], -'http\Client\Response::getHttpVersion' => ['string'], -'http\Client\Response::getInfo' => ['null|string'], -'http\Client\Response::getParentMessage' => ['http\Message'], -'http\Client\Response::getRequestMethod' => ['false|string'], -'http\Client\Response::getRequestUrl' => ['false|string'], -'http\Client\Response::getResponseCode' => ['false|int'], -'http\Client\Response::getResponseStatus' => ['false|string'], -'http\Client\Response::getTransferInfo' => ['mixed|object', 'element='=>'mixed'], -'http\Client\Response::getType' => ['int'], -'http\Client\Response::isMultipart' => ['bool', '&boundary='=>'mixed'], -'http\Client\Response::key' => ['int|string'], -'http\Client\Response::next' => ['void'], -'http\Client\Response::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], -'http\Client\Response::reverse' => ['http\Message'], -'http\Client\Response::rewind' => ['void'], -'http\Client\Response::serialize' => ['string'], -'http\Client\Response::setBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Client\Response::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], -'http\Client\Response::setHeaders' => ['http\Message', 'headers'=>'array'], -'http\Client\Response::setHttpVersion' => ['http\Message', 'http_version'=>'string'], -'http\Client\Response::setInfo' => ['http\Message', 'http_info'=>'string'], -'http\Client\Response::setRequestMethod' => ['http\Message', 'request_method'=>'string'], -'http\Client\Response::setRequestUrl' => ['http\Message', 'url'=>'string'], -'http\Client\Response::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], -'http\Client\Response::setResponseStatus' => ['http\Message', 'response_status'=>'string'], -'http\Client\Response::setType' => ['http\Message', 'type'=>'int'], -'http\Client\Response::splitMultipartBody' => ['http\Message'], -'http\Client\Response::toCallback' => ['http\Message', 'callback'=>'callable'], -'http\Client\Response::toStream' => ['http\Message', 'stream'=>'resource'], -'http\Client\Response::toString' => ['string', 'include_parent='=>'mixed'], -'http\Client\Response::unserialize' => ['void', 'serialized'=>'string'], -'http\Client\Response::valid' => ['bool'], -'http\Cookie::__construct' => ['void', 'cookie_string='=>'mixed', 'parser_flags='=>'int', 'allowed_extras='=>'array'], -'http\Cookie::__toString' => ['string'], -'http\Cookie::addCookie' => ['http\Cookie', 'cookie_name'=>'string', 'cookie_value'=>'string'], -'http\Cookie::addCookies' => ['http\Cookie', 'cookies'=>'array'], -'http\Cookie::addExtra' => ['http\Cookie', 'extra_name'=>'string', 'extra_value'=>'string'], -'http\Cookie::addExtras' => ['http\Cookie', 'extras'=>'array'], -'http\Cookie::getCookie' => ['null|string', 'name'=>'string'], -'http\Cookie::getCookies' => ['array'], -'http\Cookie::getDomain' => ['string'], -'http\Cookie::getExpires' => ['int'], -'http\Cookie::getExtra' => ['string', 'name'=>'string'], -'http\Cookie::getExtras' => ['array'], -'http\Cookie::getFlags' => ['int'], -'http\Cookie::getMaxAge' => ['int'], -'http\Cookie::getPath' => ['string'], -'http\Cookie::setCookie' => ['http\Cookie', 'cookie_name'=>'string', 'cookie_value='=>'mixed'], -'http\Cookie::setCookies' => ['http\Cookie', 'cookies='=>'mixed'], -'http\Cookie::setDomain' => ['http\Cookie', 'value='=>'mixed'], -'http\Cookie::setExpires' => ['http\Cookie', 'value='=>'mixed'], -'http\Cookie::setExtra' => ['http\Cookie', 'extra_name'=>'string', 'extra_value='=>'mixed'], -'http\Cookie::setExtras' => ['http\Cookie', 'extras='=>'mixed'], -'http\Cookie::setFlags' => ['http\Cookie', 'value='=>'mixed'], -'http\Cookie::setMaxAge' => ['http\Cookie', 'value='=>'mixed'], -'http\Cookie::setPath' => ['http\Cookie', 'value='=>'mixed'], -'http\Cookie::toArray' => ['array'], -'http\Cookie::toString' => ['string'], -'http\Encoding\Stream::__construct' => ['void', 'flags='=>'mixed'], -'http\Encoding\Stream::done' => ['bool'], -'http\Encoding\Stream::finish' => ['string'], -'http\Encoding\Stream::flush' => ['string'], -'http\Encoding\Stream::update' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Debrotli::__construct' => ['void', 'flags='=>'int'], -'http\Encoding\Stream\Debrotli::decode' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Debrotli::done' => ['bool'], -'http\Encoding\Stream\Debrotli::finish' => ['string'], -'http\Encoding\Stream\Debrotli::flush' => ['string'], -'http\Encoding\Stream\Debrotli::update' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Dechunk::__construct' => ['void', 'flags='=>'mixed'], -'http\Encoding\Stream\Dechunk::decode' => ['false|string', 'data'=>'string', '&decoded_len='=>'mixed'], -'http\Encoding\Stream\Dechunk::done' => ['bool'], -'http\Encoding\Stream\Dechunk::finish' => ['string'], -'http\Encoding\Stream\Dechunk::flush' => ['string'], -'http\Encoding\Stream\Dechunk::update' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Deflate::__construct' => ['void', 'flags='=>'mixed'], -'http\Encoding\Stream\Deflate::done' => ['bool'], -'http\Encoding\Stream\Deflate::encode' => ['string', 'data'=>'string', 'flags='=>'mixed'], -'http\Encoding\Stream\Deflate::finish' => ['string'], -'http\Encoding\Stream\Deflate::flush' => ['string'], -'http\Encoding\Stream\Deflate::update' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Enbrotli::__construct' => ['void', 'flags='=>'int'], -'http\Encoding\Stream\Enbrotli::done' => ['bool'], -'http\Encoding\Stream\Enbrotli::encode' => ['string', 'data'=>'string', 'flags='=>'int'], -'http\Encoding\Stream\Enbrotli::finish' => ['string'], -'http\Encoding\Stream\Enbrotli::flush' => ['string'], -'http\Encoding\Stream\Enbrotli::update' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Inflate::__construct' => ['void', 'flags='=>'mixed'], -'http\Encoding\Stream\Inflate::decode' => ['string', 'data'=>'string'], -'http\Encoding\Stream\Inflate::done' => ['bool'], -'http\Encoding\Stream\Inflate::finish' => ['string'], -'http\Encoding\Stream\Inflate::flush' => ['string'], -'http\Encoding\Stream\Inflate::update' => ['string', 'data'=>'string'], -'http\Env::getRequestBody' => ['http\Message\Body', 'body_class_name='=>'mixed'], -'http\Env::getRequestHeader' => ['array|null|string', 'header_name='=>'mixed'], -'http\Env::getResponseCode' => ['int'], -'http\Env::getResponseHeader' => ['array|null|string', 'header_name='=>'mixed'], -'http\Env::getResponseStatusForAllCodes' => ['array'], -'http\Env::getResponseStatusForCode' => ['string', 'code'=>'int'], -'http\Env::negotiate' => ['null|string', 'params'=>'string', 'supported'=>'array', 'primary_type_separator='=>'mixed', '&result_array='=>'mixed'], -'http\Env::negotiateCharset' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], -'http\Env::negotiateContentType' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], -'http\Env::negotiateEncoding' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], -'http\Env::negotiateLanguage' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], -'http\Env::setResponseCode' => ['bool', 'code'=>'int'], -'http\Env::setResponseHeader' => ['bool', 'header_name'=>'string', 'header_value='=>'mixed', 'response_code='=>'mixed', 'replace_header='=>'mixed'], -'http\Env\Request::__construct' => ['void'], -'http\Env\Request::__toString' => ['string'], -'http\Env\Request::addBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Env\Request::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], -'http\Env\Request::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], -'http\Env\Request::count' => ['int'], -'http\Env\Request::current' => ['mixed'], -'http\Env\Request::detach' => ['http\Message'], -'http\Env\Request::getBody' => ['http\Message\Body'], -'http\Env\Request::getCookie' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], -'http\Env\Request::getFiles' => ['array'], -'http\Env\Request::getForm' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], -'http\Env\Request::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], -'http\Env\Request::getHeaders' => ['array'], -'http\Env\Request::getHttpVersion' => ['string'], -'http\Env\Request::getInfo' => ['null|string'], -'http\Env\Request::getParentMessage' => ['http\Message'], -'http\Env\Request::getQuery' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], -'http\Env\Request::getRequestMethod' => ['false|string'], -'http\Env\Request::getRequestUrl' => ['false|string'], -'http\Env\Request::getResponseCode' => ['false|int'], -'http\Env\Request::getResponseStatus' => ['false|string'], -'http\Env\Request::getType' => ['int'], -'http\Env\Request::isMultipart' => ['bool', '&boundary='=>'mixed'], -'http\Env\Request::key' => ['int|string'], -'http\Env\Request::next' => ['void'], -'http\Env\Request::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], -'http\Env\Request::reverse' => ['http\Message'], -'http\Env\Request::rewind' => ['void'], -'http\Env\Request::serialize' => ['string'], -'http\Env\Request::setBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Env\Request::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], -'http\Env\Request::setHeaders' => ['http\Message', 'headers'=>'array'], -'http\Env\Request::setHttpVersion' => ['http\Message', 'http_version'=>'string'], -'http\Env\Request::setInfo' => ['http\Message', 'http_info'=>'string'], -'http\Env\Request::setRequestMethod' => ['http\Message', 'request_method'=>'string'], -'http\Env\Request::setRequestUrl' => ['http\Message', 'url'=>'string'], -'http\Env\Request::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], -'http\Env\Request::setResponseStatus' => ['http\Message', 'response_status'=>'string'], -'http\Env\Request::setType' => ['http\Message', 'type'=>'int'], -'http\Env\Request::splitMultipartBody' => ['http\Message'], -'http\Env\Request::toCallback' => ['http\Message', 'callback'=>'callable'], -'http\Env\Request::toStream' => ['http\Message', 'stream'=>'resource'], -'http\Env\Request::toString' => ['string', 'include_parent='=>'mixed'], -'http\Env\Request::unserialize' => ['void', 'serialized'=>'string'], -'http\Env\Request::valid' => ['bool'], -'http\Env\Response::__construct' => ['void'], -'http\Env\Response::__invoke' => ['bool', 'data'=>'string', 'ob_flags='=>'int'], -'http\Env\Response::__toString' => ['string'], -'http\Env\Response::addBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Env\Response::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], -'http\Env\Response::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], -'http\Env\Response::count' => ['int'], -'http\Env\Response::current' => ['mixed'], -'http\Env\Response::detach' => ['http\Message'], -'http\Env\Response::getBody' => ['http\Message\Body'], -'http\Env\Response::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], -'http\Env\Response::getHeaders' => ['array'], -'http\Env\Response::getHttpVersion' => ['string'], -'http\Env\Response::getInfo' => ['?string'], -'http\Env\Response::getParentMessage' => ['http\Message'], -'http\Env\Response::getRequestMethod' => ['false|string'], -'http\Env\Response::getRequestUrl' => ['false|string'], -'http\Env\Response::getResponseCode' => ['false|int'], -'http\Env\Response::getResponseStatus' => ['false|string'], -'http\Env\Response::getType' => ['int'], -'http\Env\Response::isCachedByETag' => ['int', 'header_name='=>'string'], -'http\Env\Response::isCachedByLastModified' => ['int', 'header_name='=>'string'], -'http\Env\Response::isMultipart' => ['bool', '&boundary='=>'mixed'], -'http\Env\Response::key' => ['int|string'], -'http\Env\Response::next' => ['void'], -'http\Env\Response::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], -'http\Env\Response::reverse' => ['http\Message'], -'http\Env\Response::rewind' => ['void'], -'http\Env\Response::send' => ['bool', 'stream='=>'resource'], -'http\Env\Response::serialize' => ['string'], -'http\Env\Response::setBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Env\Response::setCacheControl' => ['http\Env\Response', 'cache_control'=>'string'], -'http\Env\Response::setContentDisposition' => ['http\Env\Response', 'disposition_params'=>'array'], -'http\Env\Response::setContentEncoding' => ['http\Env\Response', 'content_encoding'=>'int'], -'http\Env\Response::setContentType' => ['http\Env\Response', 'content_type'=>'string'], -'http\Env\Response::setCookie' => ['http\Env\Response', 'cookie'=>'mixed'], -'http\Env\Response::setEnvRequest' => ['http\Env\Response', 'env_request'=>'http\Message'], -'http\Env\Response::setEtag' => ['http\Env\Response', 'etag'=>'string'], -'http\Env\Response::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], -'http\Env\Response::setHeaders' => ['http\Message', 'headers'=>'array'], -'http\Env\Response::setHttpVersion' => ['http\Message', 'http_version'=>'string'], -'http\Env\Response::setInfo' => ['http\Message', 'http_info'=>'string'], -'http\Env\Response::setLastModified' => ['http\Env\Response', 'last_modified'=>'int'], -'http\Env\Response::setRequestMethod' => ['http\Message', 'request_method'=>'string'], -'http\Env\Response::setRequestUrl' => ['http\Message', 'url'=>'string'], -'http\Env\Response::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], -'http\Env\Response::setResponseStatus' => ['http\Message', 'response_status'=>'string'], -'http\Env\Response::setThrottleRate' => ['http\Env\Response', 'chunk_size'=>'int', 'delay='=>'float|int'], -'http\Env\Response::setType' => ['http\Message', 'type'=>'int'], -'http\Env\Response::splitMultipartBody' => ['http\Message'], -'http\Env\Response::toCallback' => ['http\Message', 'callback'=>'callable'], -'http\Env\Response::toStream' => ['http\Message', 'stream'=>'resource'], -'http\Env\Response::toString' => ['string', 'include_parent='=>'mixed'], -'http\Env\Response::unserialize' => ['void', 'serialized'=>'string'], -'http\Env\Response::valid' => ['bool'], -'http\Header::__construct' => ['void', 'name='=>'mixed', 'value='=>'mixed'], -'http\Header::__toString' => ['string'], -'http\Header::getParams' => ['http\Params', 'param_sep='=>'mixed', 'arg_sep='=>'mixed', 'val_sep='=>'mixed', 'flags='=>'mixed'], -'http\Header::match' => ['bool', 'value'=>'string', 'flags='=>'mixed'], -'http\Header::negotiate' => ['null|string', 'supported'=>'array', '&result='=>'mixed'], -'http\Header::parse' => ['array|false', 'string'=>'string', 'header_class='=>'mixed'], -'http\Header::serialize' => ['string'], -'http\Header::toString' => ['string'], -'http\Header::unserialize' => ['void', 'serialized'=>'string'], -'http\Header\Parser::getState' => ['int'], -'http\Header\Parser::parse' => ['int', 'data'=>'string', 'flags'=>'int', '&headers'=>'array'], -'http\Header\Parser::stream' => ['int', 'stream'=>'resource', 'flags'=>'int', '&headers'=>'array'], -'http\Message::__construct' => ['void', 'message='=>'mixed', 'greedy='=>'bool'], -'http\Message::__toString' => ['string'], -'http\Message::addBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Message::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], -'http\Message::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], -'http\Message::count' => ['int'], -'http\Message::current' => ['mixed'], -'http\Message::detach' => ['http\Message'], -'http\Message::getBody' => ['http\Message\Body'], -'http\Message::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], -'http\Message::getHeaders' => ['array'], -'http\Message::getHttpVersion' => ['string'], -'http\Message::getInfo' => ['null|string'], -'http\Message::getParentMessage' => ['http\Message'], -'http\Message::getRequestMethod' => ['false|string'], -'http\Message::getRequestUrl' => ['false|string'], -'http\Message::getResponseCode' => ['false|int'], -'http\Message::getResponseStatus' => ['false|string'], -'http\Message::getType' => ['int'], -'http\Message::isMultipart' => ['bool', '&boundary='=>'mixed'], -'http\Message::key' => ['int|string'], -'http\Message::next' => ['void'], -'http\Message::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], -'http\Message::reverse' => ['http\Message'], -'http\Message::rewind' => ['void'], -'http\Message::serialize' => ['string'], -'http\Message::setBody' => ['http\Message', 'body'=>'http\Message\Body'], -'http\Message::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], -'http\Message::setHeaders' => ['http\Message', 'headers'=>'array'], -'http\Message::setHttpVersion' => ['http\Message', 'http_version'=>'string'], -'http\Message::setInfo' => ['http\Message', 'http_info'=>'string'], -'http\Message::setRequestMethod' => ['http\Message', 'request_method'=>'string'], -'http\Message::setRequestUrl' => ['http\Message', 'url'=>'string'], -'http\Message::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], -'http\Message::setResponseStatus' => ['http\Message', 'response_status'=>'string'], -'http\Message::setType' => ['http\Message', 'type'=>'int'], -'http\Message::splitMultipartBody' => ['http\Message'], -'http\Message::toCallback' => ['http\Message', 'callback'=>'callable'], -'http\Message::toStream' => ['http\Message', 'stream'=>'resource'], -'http\Message::toString' => ['string', 'include_parent='=>'mixed'], -'http\Message::unserialize' => ['void', 'serialized'=>'string'], -'http\Message::valid' => ['bool'], -'http\Message\Body::__construct' => ['void', 'stream='=>'resource'], -'http\Message\Body::__toString' => ['string'], -'http\Message\Body::addForm' => ['http\Message\Body', 'fields='=>'?array', 'files='=>'?array'], -'http\Message\Body::addPart' => ['http\Message\Body', 'message'=>'http\Message'], -'http\Message\Body::append' => ['http\Message\Body', 'string'=>'string'], -'http\Message\Body::etag' => ['false|string'], -'http\Message\Body::getBoundary' => ['null|string'], -'http\Message\Body::getResource' => ['resource'], -'http\Message\Body::serialize' => ['string'], -'http\Message\Body::stat' => ['int|object', 'field='=>'mixed'], -'http\Message\Body::toCallback' => ['http\Message\Body', 'callback'=>'callable', 'offset='=>'mixed', 'maxlen='=>'mixed'], -'http\Message\Body::toStream' => ['http\Message\Body', 'stream'=>'resource', 'offset='=>'mixed', 'maxlen='=>'mixed'], -'http\Message\Body::toString' => ['string'], -'http\Message\Body::unserialize' => ['void', 'serialized'=>'string'], -'http\Message\Parser::getState' => ['int'], -'http\Message\Parser::parse' => ['int', 'data'=>'string', 'flags'=>'int', '&message'=>'http\Message'], -'http\Message\Parser::stream' => ['int', 'stream'=>'resource', 'flags'=>'int', '&message'=>'http\Message'], -'http\Params::__construct' => ['void', 'params='=>'mixed', 'param_sep='=>'mixed', 'arg_sep='=>'mixed', 'val_sep='=>'mixed', 'flags='=>'mixed'], -'http\Params::__toString' => ['string'], -'http\Params::offsetExists' => ['bool', 'name'=>'int|string'], -'http\Params::offsetGet' => ['mixed', 'name'=>'int|string'], -'http\Params::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], -'http\Params::offsetUnset' => ['void', 'name'=>'int|string'], -'http\Params::toArray' => ['array'], -'http\Params::toString' => ['string'], -'http\QueryString::__construct' => ['void', 'querystring'=>'string'], -'http\QueryString::__toString' => ['string'], -'http\QueryString::get' => ['http\QueryString|string|mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getArray' => ['array|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getBool' => ['bool|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getFloat' => ['float|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getGlobalInstance' => ['http\QueryString'], -'http\QueryString::getInt' => ['int|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getIterator' => ['IteratorAggregate'], -'http\QueryString::getObject' => ['object|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::getString' => ['string|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], -'http\QueryString::mod' => ['http\QueryString', 'params='=>'mixed'], -'http\QueryString::offsetExists' => ['bool', 'offset'=>'int|string'], -'http\QueryString::offsetGet' => ['mixed|null', 'offset'=>'int|string'], -'http\QueryString::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'http\QueryString::offsetUnset' => ['void', 'offset'=>'int|string'], -'http\QueryString::serialize' => ['string'], -'http\QueryString::set' => ['http\QueryString', 'params'=>'mixed'], -'http\QueryString::toArray' => ['array'], -'http\QueryString::toString' => ['string'], -'http\QueryString::unserialize' => ['void', 'serialized'=>'string'], -'http\QueryString::xlate' => ['http\QueryString'], -'http\Url::__construct' => ['void', 'old_url='=>'mixed', 'new_url='=>'mixed', 'flags='=>'int'], -'http\Url::__toString' => ['string'], -'http\Url::mod' => ['http\Url', 'parts'=>'mixed', 'flags='=>'float|int|mixed'], -'http\Url::toArray' => ['string[]'], -'http\Url::toString' => ['string'], -'http_build_cookie' => ['string', 'cookie'=>'array'], -'http_build_query' => ['string', 'data'=>'array|object', 'numeric_prefix='=>'string', 'arg_separator='=>'?string', 'encoding_type='=>'int'], -'http_build_str' => ['string', 'query'=>'array', 'prefix='=>'?string', 'arg_separator='=>'string'], -'http_build_url' => ['string', 'url='=>'string|array', 'parts='=>'string|array', 'flags='=>'int', 'new_url='=>'array'], -'http_cache_etag' => ['bool', 'etag='=>'string'], -'http_cache_last_modified' => ['bool', 'timestamp_or_expires='=>'int'], -'http_chunked_decode' => ['string|false', 'encoded'=>'string'], -'http_date' => ['string', 'timestamp='=>'int'], -'http_deflate' => ['?string', 'data'=>'string', 'flags='=>'int'], -'http_get' => ['string', 'url'=>'string', 'options='=>'array', 'info='=>'array'], -'http_get_request_body' => ['?string'], -'http_get_request_body_stream' => ['?resource'], -'http_get_request_headers' => ['array'], -'http_head' => ['string', 'url'=>'string', 'options='=>'array', 'info='=>'array'], -'http_inflate' => ['?string', 'data'=>'string'], -'http_match_etag' => ['bool', 'etag'=>'string', 'for_range='=>'bool'], -'http_match_modified' => ['bool', 'timestamp='=>'int', 'for_range='=>'bool'], -'http_match_request_header' => ['bool', 'header'=>'string', 'value'=>'string', 'match_case='=>'bool'], -'http_negotiate_charset' => ['string', 'supported'=>'array', 'result='=>'array'], -'http_negotiate_content_type' => ['string', 'supported'=>'array', 'result='=>'array'], -'http_negotiate_language' => ['string', 'supported'=>'array', 'result='=>'array'], -'http_parse_cookie' => ['stdClass|false', 'cookie'=>'string', 'flags='=>'int', 'allowed_extras='=>'array'], -'http_parse_headers' => ['array|false', 'header'=>'string'], -'http_parse_message' => ['object', 'message'=>'string'], -'http_parse_params' => ['stdClass', 'param'=>'string', 'flags='=>'int'], -'http_persistent_handles_clean' => ['string', 'ident='=>'string'], -'http_persistent_handles_count' => ['stdClass|false'], -'http_persistent_handles_ident' => ['string|false', 'ident='=>'string'], -'http_post_data' => ['string', 'url'=>'string', 'data'=>'string', 'options='=>'array', 'info='=>'array'], -'http_post_fields' => ['string', 'url'=>'string', 'data'=>'array', 'files='=>'array', 'options='=>'array', 'info='=>'array'], -'http_put_data' => ['string', 'url'=>'string', 'data'=>'string', 'options='=>'array', 'info='=>'array'], -'http_put_file' => ['string', 'url'=>'string', 'file'=>'string', 'options='=>'array', 'info='=>'array'], -'http_put_stream' => ['string', 'url'=>'string', 'stream'=>'resource', 'options='=>'array', 'info='=>'array'], -'http_redirect' => ['int|false', 'url='=>'string', 'params='=>'array', 'session='=>'bool', 'status='=>'int'], -'http_request' => ['string', 'method'=>'int', 'url'=>'string', 'body='=>'string', 'options='=>'array', 'info='=>'array'], -'http_request_body_encode' => ['string|false', 'fields'=>'array', 'files'=>'array'], -'http_request_method_exists' => ['bool', 'method'=>'mixed'], -'http_request_method_name' => ['string|false', 'method'=>'int'], -'http_request_method_register' => ['int|false', 'method'=>'string'], -'http_request_method_unregister' => ['bool', 'method'=>'mixed'], -'http_response_code' => ['int|bool', 'response_code='=>'int'], -'http_send_content_disposition' => ['bool', 'filename'=>'string', 'inline='=>'bool'], -'http_send_content_type' => ['bool', 'content_type='=>'string'], -'http_send_data' => ['bool', 'data'=>'string'], -'http_send_file' => ['bool', 'file'=>'string'], -'http_send_last_modified' => ['bool', 'timestamp='=>'int'], -'http_send_status' => ['bool', 'status'=>'int'], -'http_send_stream' => ['bool', 'stream'=>'resource'], -'http_support' => ['int', 'feature='=>'int'], -'http_throttle' => ['void', 'sec'=>'float', 'bytes='=>'int'], -'HttpDeflateStream::__construct' => ['void', 'flags='=>'int'], -'HttpDeflateStream::factory' => ['HttpDeflateStream', 'flags='=>'int', 'class_name='=>'string'], -'HttpDeflateStream::finish' => ['string', 'data='=>'string'], -'HttpDeflateStream::flush' => ['string|false', 'data='=>'string'], -'HttpDeflateStream::update' => ['string|false', 'data'=>'string'], -'HttpInflateStream::__construct' => ['void', 'flags='=>'int'], -'HttpInflateStream::factory' => ['HttpInflateStream', 'flags='=>'int', 'class_name='=>'string'], -'HttpInflateStream::finish' => ['string', 'data='=>'string'], -'HttpInflateStream::flush' => ['string|false', 'data='=>'string'], -'HttpInflateStream::update' => ['string|false', 'data'=>'string'], -'HttpMessage::__construct' => ['void', 'message='=>'string'], -'HttpMessage::__toString' => ['string'], -'HttpMessage::addHeaders' => ['void', 'headers'=>'array', 'append='=>'bool'], -'HttpMessage::count' => ['int'], -'HttpMessage::current' => ['mixed'], -'HttpMessage::detach' => ['HttpMessage'], -'HttpMessage::factory' => ['?HttpMessage', 'raw_message='=>'string', 'class_name='=>'string'], -'HttpMessage::fromEnv' => ['?HttpMessage', 'message_type'=>'int', 'class_name='=>'string'], -'HttpMessage::fromString' => ['?HttpMessage', 'raw_message='=>'string', 'class_name='=>'string'], -'HttpMessage::getBody' => ['string'], -'HttpMessage::getHeader' => ['?string', 'header'=>'string'], -'HttpMessage::getHeaders' => ['array'], -'HttpMessage::getHttpVersion' => ['string'], -'HttpMessage::getInfo' => [''], -'HttpMessage::getParentMessage' => ['HttpMessage'], -'HttpMessage::getRequestMethod' => ['string|false'], -'HttpMessage::getRequestUrl' => ['string|false'], -'HttpMessage::getResponseCode' => ['int'], -'HttpMessage::getResponseStatus' => ['string'], -'HttpMessage::getType' => ['int'], -'HttpMessage::guessContentType' => ['string|false', 'magic_file'=>'string', 'magic_mode='=>'int'], -'HttpMessage::key' => ['int|string'], -'HttpMessage::next' => ['void'], -'HttpMessage::prepend' => ['void', 'message'=>'HttpMessage', 'top='=>'bool'], -'HttpMessage::reverse' => ['HttpMessage'], -'HttpMessage::rewind' => ['void'], -'HttpMessage::send' => ['bool'], -'HttpMessage::serialize' => ['string'], -'HttpMessage::setBody' => ['void', 'body'=>'string'], -'HttpMessage::setHeaders' => ['void', 'headers'=>'array'], -'HttpMessage::setHttpVersion' => ['bool', 'version'=>'string'], -'HttpMessage::setInfo' => ['', 'http_info'=>''], -'HttpMessage::setRequestMethod' => ['bool', 'method'=>'string'], -'HttpMessage::setRequestUrl' => ['bool', 'url'=>'string'], -'HttpMessage::setResponseCode' => ['bool', 'code'=>'int'], -'HttpMessage::setResponseStatus' => ['bool', 'status'=>'string'], -'HttpMessage::setType' => ['void', 'type'=>'int'], -'HttpMessage::toMessageTypeObject' => ['HttpRequest|HttpResponse|null'], -'HttpMessage::toString' => ['string', 'include_parent='=>'bool'], -'HttpMessage::unserialize' => ['void', 'serialized'=>'string'], -'HttpMessage::valid' => ['bool'], -'HttpQueryString::__construct' => ['void', 'global='=>'bool', 'add='=>'mixed'], -'HttpQueryString::__toString' => ['string'], -'HttpQueryString::factory' => ['', 'global'=>'', 'params'=>'', 'class_name'=>''], -'HttpQueryString::get' => ['mixed', 'key='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], -'HttpQueryString::getArray' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::getBool' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::getFloat' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::getInt' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::getObject' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::getString' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], -'HttpQueryString::mod' => ['HttpQueryString', 'params'=>'mixed'], -'HttpQueryString::offsetExists' => ['bool', 'offset'=>'int|string'], -'HttpQueryString::offsetGet' => ['mixed', 'offset'=>'int|string'], -'HttpQueryString::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'HttpQueryString::offsetUnset' => ['void', 'offset'=>'int|string'], -'HttpQueryString::serialize' => ['string'], -'HttpQueryString::set' => ['string', 'params'=>'mixed'], -'HttpQueryString::singleton' => ['HttpQueryString', 'global='=>'bool'], -'HttpQueryString::toArray' => ['array'], -'HttpQueryString::toString' => ['string'], -'HttpQueryString::unserialize' => ['void', 'serialized'=>'string'], -'HttpQueryString::xlate' => ['bool', 'ie'=>'string', 'oe'=>'string'], -'HttpRequest::__construct' => ['void', 'url='=>'string', 'request_method='=>'int', 'options='=>'array'], -'HttpRequest::addBody' => ['', 'request_body_data'=>''], -'HttpRequest::addCookies' => ['bool', 'cookies'=>'array'], -'HttpRequest::addHeaders' => ['bool', 'headers'=>'array'], -'HttpRequest::addPostFields' => ['bool', 'post_data'=>'array'], -'HttpRequest::addPostFile' => ['bool', 'name'=>'string', 'file'=>'string', 'content_type='=>'string'], -'HttpRequest::addPutData' => ['bool', 'put_data'=>'string'], -'HttpRequest::addQueryData' => ['bool', 'query_params'=>'array'], -'HttpRequest::addRawPostData' => ['bool', 'raw_post_data'=>'string'], -'HttpRequest::addSslOptions' => ['bool', 'options'=>'array'], -'HttpRequest::clearHistory' => ['void'], -'HttpRequest::enableCookies' => ['bool'], -'HttpRequest::encodeBody' => ['', 'fields'=>'', 'files'=>''], -'HttpRequest::factory' => ['', 'url'=>'', 'method'=>'', 'options'=>'', 'class_name'=>''], -'HttpRequest::flushCookies' => [''], -'HttpRequest::get' => ['', 'url'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::getBody' => [''], -'HttpRequest::getContentType' => ['string'], -'HttpRequest::getCookies' => ['array'], -'HttpRequest::getHeaders' => ['array'], -'HttpRequest::getHistory' => ['HttpMessage'], -'HttpRequest::getMethod' => ['int'], -'HttpRequest::getOptions' => ['array'], -'HttpRequest::getPostFields' => ['array'], -'HttpRequest::getPostFiles' => ['array'], -'HttpRequest::getPutData' => ['string'], -'HttpRequest::getPutFile' => ['string'], -'HttpRequest::getQueryData' => ['string'], -'HttpRequest::getRawPostData' => ['string'], -'HttpRequest::getRawRequestMessage' => ['string'], -'HttpRequest::getRawResponseMessage' => ['string'], -'HttpRequest::getRequestMessage' => ['HttpMessage'], -'HttpRequest::getResponseBody' => ['string'], -'HttpRequest::getResponseCode' => ['int'], -'HttpRequest::getResponseCookies' => ['stdClass[]', 'flags='=>'int', 'allowed_extras='=>'array'], -'HttpRequest::getResponseData' => ['array'], -'HttpRequest::getResponseHeader' => ['mixed', 'name='=>'string'], -'HttpRequest::getResponseInfo' => ['mixed', 'name='=>'string'], -'HttpRequest::getResponseMessage' => ['HttpMessage'], -'HttpRequest::getResponseStatus' => ['string'], -'HttpRequest::getSslOptions' => ['array'], -'HttpRequest::getUrl' => ['string'], -'HttpRequest::head' => ['', 'url'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::methodExists' => ['', 'method'=>''], -'HttpRequest::methodName' => ['', 'method_id'=>''], -'HttpRequest::methodRegister' => ['', 'method_name'=>''], -'HttpRequest::methodUnregister' => ['', 'method'=>''], -'HttpRequest::postData' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::postFields' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::putData' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::putFile' => ['', 'url'=>'', 'file'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::putStream' => ['', 'url'=>'', 'stream'=>'', 'options'=>'', '&info'=>''], -'HttpRequest::resetCookies' => ['bool', 'session_only='=>'bool'], -'HttpRequest::send' => ['HttpMessage'], -'HttpRequest::setBody' => ['bool', 'request_body_data='=>'string'], -'HttpRequest::setContentType' => ['bool', 'content_type'=>'string'], -'HttpRequest::setCookies' => ['bool', 'cookies='=>'array'], -'HttpRequest::setHeaders' => ['bool', 'headers='=>'array'], -'HttpRequest::setMethod' => ['bool', 'request_method'=>'int'], -'HttpRequest::setOptions' => ['bool', 'options='=>'array'], -'HttpRequest::setPostFields' => ['bool', 'post_data'=>'array'], -'HttpRequest::setPostFiles' => ['bool', 'post_files'=>'array'], -'HttpRequest::setPutData' => ['bool', 'put_data='=>'string'], -'HttpRequest::setPutFile' => ['bool', 'file='=>'string'], -'HttpRequest::setQueryData' => ['bool', 'query_data'=>'mixed'], -'HttpRequest::setRawPostData' => ['bool', 'raw_post_data='=>'string'], -'HttpRequest::setSslOptions' => ['bool', 'options='=>'array'], -'HttpRequest::setUrl' => ['bool', 'url'=>'string'], -'HttpRequestDataShare::__construct' => ['void'], -'HttpRequestDataShare::__destruct' => ['void'], -'HttpRequestDataShare::attach' => ['', 'request'=>'HttpRequest'], -'HttpRequestDataShare::count' => ['int'], -'HttpRequestDataShare::detach' => ['', 'request'=>'HttpRequest'], -'HttpRequestDataShare::factory' => ['', 'global'=>'', 'class_name'=>''], -'HttpRequestDataShare::reset' => [''], -'HttpRequestDataShare::singleton' => ['', 'global'=>''], -'HttpRequestPool::__construct' => ['void', 'request='=>'HttpRequest'], -'HttpRequestPool::__destruct' => ['void'], -'HttpRequestPool::attach' => ['bool', 'request'=>'HttpRequest'], -'HttpRequestPool::count' => ['int'], -'HttpRequestPool::current' => ['mixed'], -'HttpRequestPool::detach' => ['bool', 'request'=>'HttpRequest'], -'HttpRequestPool::enableEvents' => ['', 'enable'=>''], -'HttpRequestPool::enablePipelining' => ['', 'enable'=>''], -'HttpRequestPool::getAttachedRequests' => ['array'], -'HttpRequestPool::getFinishedRequests' => ['array'], -'HttpRequestPool::key' => ['int|string'], -'HttpRequestPool::next' => ['void'], -'HttpRequestPool::reset' => ['void'], -'HttpRequestPool::rewind' => ['void'], -'HttpRequestPool::send' => ['bool'], -'HttpRequestPool::socketPerform' => ['bool'], -'HttpRequestPool::socketSelect' => ['bool', 'timeout='=>'float'], -'HttpRequestPool::valid' => ['bool'], -'HttpResponse::capture' => ['void'], -'HttpResponse::getBufferSize' => ['int'], -'HttpResponse::getCache' => ['bool'], -'HttpResponse::getCacheControl' => ['string'], -'HttpResponse::getContentDisposition' => ['string'], -'HttpResponse::getContentType' => ['string'], -'HttpResponse::getData' => ['string'], -'HttpResponse::getETag' => ['string'], -'HttpResponse::getFile' => ['string'], -'HttpResponse::getGzip' => ['bool'], -'HttpResponse::getHeader' => ['mixed', 'name='=>'string'], -'HttpResponse::getLastModified' => ['int'], -'HttpResponse::getRequestBody' => ['string'], -'HttpResponse::getRequestBodyStream' => ['resource'], -'HttpResponse::getRequestHeaders' => ['array'], -'HttpResponse::getStream' => ['resource'], -'HttpResponse::getThrottleDelay' => ['float'], -'HttpResponse::guessContentType' => ['string|false', 'magic_file'=>'string', 'magic_mode='=>'int'], -'HttpResponse::redirect' => ['void', 'url='=>'string', 'params='=>'array', 'session='=>'bool', 'status='=>'int'], -'HttpResponse::send' => ['bool', 'clean_ob='=>'bool'], -'HttpResponse::setBufferSize' => ['bool', 'bytes'=>'int'], -'HttpResponse::setCache' => ['bool', 'cache'=>'bool'], -'HttpResponse::setCacheControl' => ['bool', 'control'=>'string', 'max_age='=>'int', 'must_revalidate='=>'bool'], -'HttpResponse::setContentDisposition' => ['bool', 'filename'=>'string', 'inline='=>'bool'], -'HttpResponse::setContentType' => ['bool', 'content_type'=>'string'], -'HttpResponse::setData' => ['bool', 'data'=>'mixed'], -'HttpResponse::setETag' => ['bool', 'etag'=>'string'], -'HttpResponse::setFile' => ['bool', 'file'=>'string'], -'HttpResponse::setGzip' => ['bool', 'gzip'=>'bool'], -'HttpResponse::setHeader' => ['bool', 'name'=>'string', 'value='=>'mixed', 'replace='=>'bool'], -'HttpResponse::setLastModified' => ['bool', 'timestamp'=>'int'], -'HttpResponse::setStream' => ['bool', 'stream'=>'resource'], -'HttpResponse::setThrottleDelay' => ['bool', 'seconds'=>'float'], -'HttpResponse::status' => ['bool', 'status'=>'int'], -'HttpUtil::buildCookie' => ['', 'cookie_array'=>''], -'HttpUtil::buildStr' => ['', 'query'=>'', 'prefix'=>'', 'arg_sep'=>''], -'HttpUtil::buildUrl' => ['', 'url'=>'', 'parts'=>'', 'flags'=>'', '&composed'=>''], -'HttpUtil::chunkedDecode' => ['', 'encoded_string'=>''], -'HttpUtil::date' => ['', 'timestamp'=>''], -'HttpUtil::deflate' => ['', 'plain'=>'', 'flags'=>''], -'HttpUtil::inflate' => ['', 'encoded'=>''], -'HttpUtil::matchEtag' => ['', 'plain_etag'=>'', 'for_range'=>''], -'HttpUtil::matchModified' => ['', 'last_modified'=>'', 'for_range'=>''], -'HttpUtil::matchRequestHeader' => ['', 'header_name'=>'', 'header_value'=>'', 'case_sensitive'=>''], -'HttpUtil::negotiateCharset' => ['', 'supported'=>'', '&result'=>''], -'HttpUtil::negotiateContentType' => ['', 'supported'=>'', '&result'=>''], -'HttpUtil::negotiateLanguage' => ['', 'supported'=>'', '&result'=>''], -'HttpUtil::parseCookie' => ['', 'cookie_string'=>''], -'HttpUtil::parseHeaders' => ['', 'headers_string'=>''], -'HttpUtil::parseMessage' => ['', 'message_string'=>''], -'HttpUtil::parseParams' => ['', 'param_string'=>'', 'flags'=>''], -'HttpUtil::support' => ['', 'feature'=>''], -'hw_api::checkin' => ['bool', 'parameter'=>'array'], -'hw_api::checkout' => ['bool', 'parameter'=>'array'], -'hw_api::children' => ['array', 'parameter'=>'array'], -'hw_api::content' => ['HW_API_Content', 'parameter'=>'array'], -'hw_api::copy' => ['hw_api_content', 'parameter'=>'array'], -'hw_api::dbstat' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::dcstat' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::dstanchors' => ['array', 'parameter'=>'array'], -'hw_api::dstofsrcanchor' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::find' => ['array', 'parameter'=>'array'], -'hw_api::ftstat' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::hwstat' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::identify' => ['bool', 'parameter'=>'array'], -'hw_api::info' => ['array', 'parameter'=>'array'], -'hw_api::insert' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::insertanchor' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::insertcollection' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::insertdocument' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::link' => ['bool', 'parameter'=>'array'], -'hw_api::lock' => ['bool', 'parameter'=>'array'], -'hw_api::move' => ['bool', 'parameter'=>'array'], -'hw_api::object' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::objectbyanchor' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::parents' => ['array', 'parameter'=>'array'], -'hw_api::remove' => ['bool', 'parameter'=>'array'], -'hw_api::replace' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::setcommittedversion' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::srcanchors' => ['array', 'parameter'=>'array'], -'hw_api::srcsofdst' => ['array', 'parameter'=>'array'], -'hw_api::unlock' => ['bool', 'parameter'=>'array'], -'hw_api::user' => ['hw_api_object', 'parameter'=>'array'], -'hw_api::userlist' => ['array', 'parameter'=>'array'], -'hw_api_attribute' => ['HW_API_Attribute', 'name='=>'string', 'value='=>'string'], -'hw_api_attribute::key' => ['string'], -'hw_api_attribute::langdepvalue' => ['string', 'language'=>'string'], -'hw_api_attribute::value' => ['string'], -'hw_api_attribute::values' => ['array'], -'hw_api_content' => ['HW_API_Content', 'content'=>'string', 'mimetype'=>'string'], -'hw_api_content::mimetype' => ['string'], -'hw_api_content::read' => ['string', 'buffer'=>'string', 'length'=>'int'], -'hw_api_error::count' => ['int'], -'hw_api_error::reason' => ['HW_API_Reason'], -'hw_api_object' => ['hw_api_object', 'parameter'=>'array'], -'hw_api_object::assign' => ['bool', 'parameter'=>'array'], -'hw_api_object::attreditable' => ['bool', 'parameter'=>'array'], -'hw_api_object::count' => ['int', 'parameter'=>'array'], -'hw_api_object::insert' => ['bool', 'attribute'=>'hw_api_attribute'], -'hw_api_object::remove' => ['bool', 'name'=>'string'], -'hw_api_object::title' => ['string', 'parameter'=>'array'], -'hw_api_object::value' => ['string', 'name'=>'string'], -'hw_api_reason::description' => ['string'], -'hw_api_reason::type' => ['HW_API_Reason'], -'hw_Array2Objrec' => ['string', 'object_array'=>'array'], -'hw_changeobject' => ['bool', 'link'=>'int', 'objid'=>'int', 'attributes'=>'array'], -'hw_Children' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_ChildrenObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_Close' => ['bool', 'connection'=>'int'], -'hw_Connect' => ['int', 'host'=>'string', 'port'=>'int', 'username='=>'string', 'password='=>'string'], -'hw_connection_info' => ['', 'link'=>'int'], -'hw_cp' => ['int', 'connection'=>'int', 'object_id_array'=>'array', 'destination_id'=>'int'], -'hw_Deleteobject' => ['bool', 'connection'=>'int', 'object_to_delete'=>'int'], -'hw_DocByAnchor' => ['int', 'connection'=>'int', 'anchorid'=>'int'], -'hw_DocByAnchorObj' => ['string', 'connection'=>'int', 'anchorid'=>'int'], -'hw_Document_Attributes' => ['string', 'hw_document'=>'int'], -'hw_Document_BodyTag' => ['string', 'hw_document'=>'int', 'prefix='=>'string'], -'hw_Document_Content' => ['string', 'hw_document'=>'int'], -'hw_Document_SetContent' => ['bool', 'hw_document'=>'int', 'content'=>'string'], -'hw_Document_Size' => ['int', 'hw_document'=>'int'], -'hw_dummy' => ['string', 'link'=>'int', 'id'=>'int', 'msgid'=>'int'], -'hw_EditText' => ['bool', 'connection'=>'int', 'hw_document'=>'int'], -'hw_Error' => ['int', 'connection'=>'int'], -'hw_ErrorMsg' => ['string', 'connection'=>'int'], -'hw_Free_Document' => ['bool', 'hw_document'=>'int'], -'hw_GetAnchors' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetAnchorsObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetAndLock' => ['string', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetChildColl' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetChildCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetChildDocColl' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetChildDocCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetObject' => ['', 'connection'=>'int', 'objectid'=>'', 'query='=>'string'], -'hw_GetObjectByQuery' => ['array', 'connection'=>'int', 'query'=>'string', 'max_hits'=>'int'], -'hw_GetObjectByQueryColl' => ['array', 'connection'=>'int', 'objectid'=>'int', 'query'=>'string', 'max_hits'=>'int'], -'hw_GetObjectByQueryCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int', 'query'=>'string', 'max_hits'=>'int'], -'hw_GetObjectByQueryObj' => ['array', 'connection'=>'int', 'query'=>'string', 'max_hits'=>'int'], -'hw_GetParents' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetParentsObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_getrellink' => ['string', 'link'=>'int', 'rootid'=>'int', 'sourceid'=>'int', 'destid'=>'int'], -'hw_GetRemote' => ['int', 'connection'=>'int', 'objectid'=>'int'], -'hw_getremotechildren' => ['', 'connection'=>'int', 'object_record'=>'string'], -'hw_GetSrcByDestObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], -'hw_GetText' => ['int', 'connection'=>'int', 'objectid'=>'int', 'prefix='=>''], -'hw_getusername' => ['string', 'connection'=>'int'], -'hw_Identify' => ['string', 'link'=>'int', 'username'=>'string', 'password'=>'string'], -'hw_InCollections' => ['array', 'connection'=>'int', 'object_id_array'=>'array', 'collection_id_array'=>'array', 'return_collections'=>'int'], -'hw_Info' => ['string', 'connection'=>'int'], -'hw_InsColl' => ['int', 'connection'=>'int', 'objectid'=>'int', 'object_array'=>'array'], -'hw_InsDoc' => ['int', 'connection'=>'', 'parentid'=>'int', 'object_record'=>'string', 'text='=>'string'], -'hw_insertanchors' => ['bool', 'hwdoc'=>'int', 'anchorecs'=>'array', 'dest'=>'array', 'urlprefixes='=>'array'], -'hw_InsertDocument' => ['int', 'connection'=>'int', 'parent_id'=>'int', 'hw_document'=>'int'], -'hw_InsertObject' => ['int', 'connection'=>'int', 'object_rec'=>'string', 'parameter'=>'string'], -'hw_mapid' => ['int', 'connection'=>'int', 'server_id'=>'int', 'object_id'=>'int'], -'hw_Modifyobject' => ['bool', 'connection'=>'int', 'object_to_change'=>'int', 'remove'=>'array', 'add'=>'array', 'mode='=>'int'], -'hw_mv' => ['int', 'connection'=>'int', 'object_id_array'=>'array', 'source_id'=>'int', 'destination_id'=>'int'], -'hw_New_Document' => ['int', 'object_record'=>'string', 'document_data'=>'string', 'document_size'=>'int'], -'hw_objrec2array' => ['array', 'object_record'=>'string', 'format='=>'array'], -'hw_Output_Document' => ['bool', 'hw_document'=>'int'], -'hw_pConnect' => ['int', 'host'=>'string', 'port'=>'int', 'username='=>'string', 'password='=>'string'], -'hw_PipeDocument' => ['int', 'connection'=>'int', 'objectid'=>'int', 'url_prefixes='=>'array'], -'hw_Root' => ['int'], -'hw_setlinkroot' => ['int', 'link'=>'int', 'rootid'=>'int'], -'hw_stat' => ['string', 'link'=>'int'], -'hw_Unlock' => ['bool', 'connection'=>'int', 'objectid'=>'int'], -'hw_Who' => ['array', 'connection'=>'int'], -'hwapi_attribute_new' => ['HW_API_Attribute', 'name='=>'string', 'value='=>'string'], -'hwapi_content_new' => ['HW_API_Content', 'content'=>'string', 'mimetype'=>'string'], -'hwapi_hgcsp' => ['HW_API', 'hostname'=>'string', 'port='=>'int'], -'hwapi_object_new' => ['hw_api_object', 'parameter'=>'array'], -'hypot' => ['float', 'x'=>'float', 'y'=>'float'], -'ibase_add_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password'=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], -'ibase_affected_rows' => ['int', 'link_identifier='=>'resource'], -'ibase_backup' => ['mixed', 'service_handle'=>'resource', 'source_db'=>'string', 'dest_file'=>'string', 'options='=>'int', 'verbose='=>'bool'], -'ibase_blob_add' => ['void', 'blob_handle'=>'resource', 'data'=>'string'], -'ibase_blob_cancel' => ['bool', 'blob_handle'=>'resource'], -'ibase_blob_close' => ['string|bool', 'blob_handle'=>'resource'], -'ibase_blob_create' => ['resource', 'link_identifier='=>'resource'], -'ibase_blob_echo' => ['bool', 'link_identifier'=>'', 'blob_id'=>'string'], -'ibase_blob_echo\'1' => ['bool', 'blob_id'=>'string'], -'ibase_blob_get' => ['string|false', 'blob_handle'=>'resource', 'length'=>'int'], -'ibase_blob_import' => ['string|false', 'link_identifier'=>'resource', 'file_handle'=>'resource'], -'ibase_blob_info' => ['array', 'link_identifier'=>'resource', 'blob_id'=>'string'], -'ibase_blob_info\'1' => ['array', 'blob_id'=>'string'], -'ibase_blob_open' => ['resource|false', 'link_identifier'=>'', 'blob_id'=>'string'], -'ibase_blob_open\'1' => ['resource', 'blob_id'=>'string'], -'ibase_close' => ['bool', 'link_identifier='=>'resource'], -'ibase_commit' => ['bool', 'link_identifier='=>'resource'], -'ibase_commit_ret' => ['bool', 'link_identifier='=>'resource'], -'ibase_connect' => ['resource|false', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'charset='=>'string', 'buffers='=>'int', 'dialect='=>'int', 'role='=>'string'], -'ibase_db_info' => ['string', 'service_handle'=>'resource', 'db'=>'string', 'action'=>'int', 'argument='=>'int'], -'ibase_delete_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password='=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], -'ibase_drop_db' => ['bool', 'link_identifier='=>'resource'], -'ibase_errcode' => ['int|false'], -'ibase_errmsg' => ['string|false'], -'ibase_execute' => ['resource|false', 'query'=>'resource', 'bind_arg='=>'mixed', '...args='=>'mixed'], -'ibase_fetch_assoc' => ['array|false', 'result'=>'resource', 'fetch_flags='=>'int'], -'ibase_fetch_object' => ['object|false', 'result'=>'resource', 'fetch_flags='=>'int'], -'ibase_fetch_row' => ['array|false', 'result'=>'resource', 'fetch_flags='=>'int'], -'ibase_field_info' => ['array', 'query_result'=>'resource', 'field_number'=>'int'], -'ibase_free_event_handler' => ['bool', 'event'=>'resource'], -'ibase_free_query' => ['bool', 'query'=>'resource'], -'ibase_free_result' => ['bool', 'result'=>'resource'], -'ibase_gen_id' => ['int|string', 'generator'=>'string', 'increment='=>'int', 'link_identifier='=>'resource'], -'ibase_maintain_db' => ['bool', 'service_handle'=>'resource', 'db'=>'string', 'action'=>'int', 'argument='=>'int'], -'ibase_modify_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password'=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], -'ibase_name_result' => ['bool', 'result'=>'resource', 'name'=>'string'], -'ibase_num_fields' => ['int', 'query_result'=>'resource'], -'ibase_num_params' => ['int', 'query'=>'resource'], -'ibase_num_rows' => ['int', 'result_identifier'=>''], -'ibase_param_info' => ['array', 'query'=>'resource', 'field_number'=>'int'], -'ibase_pconnect' => ['resource|false', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'charset='=>'string', 'buffers='=>'int', 'dialect='=>'int', 'role='=>'string'], -'ibase_prepare' => ['resource|false', 'link_identifier'=>'', 'query'=>'string', 'trans_identifier'=>''], -'ibase_query' => ['resource|false', 'link_identifier='=>'resource', 'string='=>'string', 'bind_arg='=>'int', '...args='=>''], -'ibase_restore' => ['mixed', 'service_handle'=>'resource', 'source_file'=>'string', 'dest_db'=>'string', 'options='=>'int', 'verbose='=>'bool'], -'ibase_rollback' => ['bool', 'link_identifier='=>'resource'], -'ibase_rollback_ret' => ['bool', 'link_identifier='=>'resource'], -'ibase_server_info' => ['string', 'service_handle'=>'resource', 'action'=>'int'], -'ibase_service_attach' => ['resource', 'host'=>'string', 'dba_username'=>'string', 'dba_password'=>'string'], -'ibase_service_detach' => ['bool', 'service_handle'=>'resource'], -'ibase_set_event_handler' => ['resource', 'link_identifier'=>'', 'callback'=>'callable', 'event='=>'string', '...args='=>''], -'ibase_set_event_handler\'1' => ['resource', 'callback'=>'callable', 'event'=>'string', '...args'=>''], -'ibase_timefmt' => ['bool', 'format'=>'string', 'columntype='=>'int'], -'ibase_trans' => ['resource|false', 'trans_args='=>'int', 'link_identifier='=>'', '...args='=>''], -'ibase_wait_event' => ['string', 'link_identifier'=>'', 'event='=>'string', '...args='=>''], -'ibase_wait_event\'1' => ['string', 'event'=>'string', '...args'=>''], -'iconv' => ['string|false', 'from_encoding'=>'string', 'to_encoding'=>'string', 'string'=>'string'], -'iconv_get_encoding' => ['array|string|false', 'type='=>'string'], -'iconv_mime_decode' => ['string|false', 'string'=>'string', 'mode='=>'int', 'encoding='=>'?string'], -'iconv_mime_decode_headers' => ['array|false', 'headers'=>'string', 'mode='=>'int', 'encoding='=>'?string'], -'iconv_mime_encode' => ['string|false', 'field_name'=>'string', 'field_value'=>'string', 'options='=>'array'], -'iconv_set_encoding' => ['bool', 'type'=>'string', 'encoding'=>'string'], -'iconv_strlen' => ['0|positive-int|false', 'string'=>'string', 'encoding='=>'?string'], -'iconv_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'?string'], -'iconv_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'?string'], -'iconv_substr' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'?int', 'encoding='=>'?string'], -'id3_get_frame_long_name' => ['string', 'frameid'=>'string'], -'id3_get_frame_short_name' => ['string', 'frameid'=>'string'], -'id3_get_genre_id' => ['int', 'genre'=>'string'], -'id3_get_genre_list' => ['array'], -'id3_get_genre_name' => ['string', 'genre_id'=>'int'], -'id3_get_tag' => ['array', 'filename'=>'string', 'version='=>'int'], -'id3_get_version' => ['int', 'filename'=>'string'], -'id3_remove_tag' => ['bool', 'filename'=>'string', 'version='=>'int'], -'id3_set_tag' => ['bool', 'filename'=>'string', 'tag'=>'array', 'version='=>'int'], -'idate' => ['int', 'format'=>'string', 'timestamp='=>'?int'], -'idn_strerror' => ['string', 'errorcode'=>'int'], -'idn_to_ascii' => ['string|false', 'domain'=>'string', 'flags='=>'int', 'variant='=>'int', '&w_idna_info='=>'array'], -'idn_to_utf8' => ['string|false', 'domain'=>'string', 'flags='=>'int', 'variant='=>'int', '&w_idna_info='=>'array'], -'ifx_affected_rows' => ['int', 'result_id'=>'resource'], -'ifx_blobinfile_mode' => ['bool', 'mode'=>'int'], -'ifx_byteasvarchar' => ['bool', 'mode'=>'int'], -'ifx_close' => ['bool', 'link_identifier='=>'resource'], -'ifx_connect' => ['resource', 'database='=>'string', 'userid='=>'string', 'password='=>'string'], -'ifx_copy_blob' => ['int', 'bid'=>'int'], -'ifx_create_blob' => ['int', 'type'=>'int', 'mode'=>'int', 'param'=>'string'], -'ifx_create_char' => ['int', 'param'=>'string'], -'ifx_do' => ['bool', 'result_id'=>'resource'], -'ifx_error' => ['string', 'link_identifier='=>'resource'], -'ifx_errormsg' => ['string', 'errorcode='=>'int'], -'ifx_fetch_row' => ['array', 'result_id'=>'resource', 'position='=>'mixed'], -'ifx_fieldproperties' => ['array', 'result_id'=>'resource'], -'ifx_fieldtypes' => ['array', 'result_id'=>'resource'], -'ifx_free_blob' => ['bool', 'bid'=>'int'], -'ifx_free_char' => ['bool', 'bid'=>'int'], -'ifx_free_result' => ['bool', 'result_id'=>'resource'], -'ifx_get_blob' => ['string', 'bid'=>'int'], -'ifx_get_char' => ['string', 'bid'=>'int'], -'ifx_getsqlca' => ['array', 'result_id'=>'resource'], -'ifx_htmltbl_result' => ['int', 'result_id'=>'resource', 'html_table_options='=>'string'], -'ifx_nullformat' => ['bool', 'mode'=>'int'], -'ifx_num_fields' => ['int', 'result_id'=>'resource'], -'ifx_num_rows' => ['int', 'result_id'=>'resource'], -'ifx_pconnect' => ['resource', 'database='=>'string', 'userid='=>'string', 'password='=>'string'], -'ifx_prepare' => ['resource', 'query'=>'string', 'link_identifier'=>'resource', 'cursor_def='=>'int', 'blobidarray='=>'mixed'], -'ifx_query' => ['resource', 'query'=>'string', 'link_identifier'=>'resource', 'cursor_type='=>'int', 'blobidarray='=>'mixed'], -'ifx_textasvarchar' => ['bool', 'mode'=>'int'], -'ifx_update_blob' => ['bool', 'bid'=>'int', 'content'=>'string'], -'ifx_update_char' => ['bool', 'bid'=>'int', 'content'=>'string'], -'ifxus_close_slob' => ['bool', 'bid'=>'int'], -'ifxus_create_slob' => ['int', 'mode'=>'int'], -'ifxus_free_slob' => ['bool', 'bid'=>'int'], -'ifxus_open_slob' => ['int', 'bid'=>'int', 'mode'=>'int'], -'ifxus_read_slob' => ['string', 'bid'=>'int', 'nbytes'=>'int'], -'ifxus_seek_slob' => ['int', 'bid'=>'int', 'mode'=>'int', 'offset'=>'int'], -'ifxus_tell_slob' => ['int', 'bid'=>'int'], -'ifxus_write_slob' => ['int', 'bid'=>'int', 'content'=>'string'], -'igbinary_serialize' => ['string|false', 'value'=>'mixed'], -'igbinary_unserialize' => ['mixed', 'str'=>'string'], -'ignore_user_abort' => ['int', 'enable='=>'?bool'], -'iis_add_server' => ['int', 'path'=>'string', 'comment'=>'string', 'server_ip'=>'string', 'port'=>'int', 'host_name'=>'string', 'rights'=>'int', 'start_server'=>'int'], -'iis_get_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'], -'iis_get_script_map' => ['string', 'server_instance'=>'int', 'virtual_path'=>'string', 'script_extension'=>'string'], -'iis_get_server_by_comment' => ['int', 'comment'=>'string'], -'iis_get_server_by_path' => ['int', 'path'=>'string'], -'iis_get_server_rights' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'], -'iis_get_service_state' => ['int', 'service_id'=>'string'], -'iis_remove_server' => ['int', 'server_instance'=>'int'], -'iis_set_app_settings' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'application_scope'=>'string'], -'iis_set_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'directory_flags'=>'int'], -'iis_set_script_map' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'script_extension'=>'string', 'engine_path'=>'string', 'allow_scripting'=>'int'], -'iis_set_server_rights' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'directory_flags'=>'int'], -'iis_start_server' => ['int', 'server_instance'=>'int'], -'iis_start_service' => ['int', 'service_id'=>'string'], -'iis_stop_server' => ['int', 'server_instance'=>'int'], -'iis_stop_service' => ['int', 'service_id'=>'string'], -'image_type_to_extension' => ['string', 'image_type'=>'int', 'include_dot='=>'bool'], -'image_type_to_mime_type' => ['string', 'image_type'=>'int'], -'imageaffine' => ['false|GdImage', 'image'=>'GdImage', 'affine'=>'array', 'clip='=>'?array'], -'imageaffinematrixconcat' => ['array{0:float,1:float,2:float,3:float,4:float,5:float}|false', 'matrix1'=>'array', 'matrix2'=>'array'], -'imageaffinematrixget' => ['array{0:float,1:float,2:float,3:float,4:float,5:float}|false', 'type'=>'int', 'options'=>'array|float'], -'imagealphablending' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], -'imageantialias' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], -'imagearc' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int'], -'imageavif' => ['bool', 'image'=>'GdImage', 'file='=>'resource|string|null', 'quality='=>'int', 'speed='=>'int'], -'imagebmp' => ['bool', 'image'=>'GdImage', 'file='=>'resource|string|null', 'compressed='=>'bool'], -'imagechar' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], -'imagecharup' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], -'imagecolorallocate' => ['int|false', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'imagecolorallocatealpha' => ['int|false', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], -'imagecolorat' => ['int|false', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int'], -'imagecolorclosest' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'imagecolorclosestalpha' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], -'imagecolorclosesthwb' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'imagecolordeallocate' => ['bool', 'image'=>'GdImage', 'color'=>'int'], -'imagecolorexact' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'imagecolorexactalpha' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], -'imagecolormatch' => ['bool', 'image1'=>'GdImage', 'image2'=>'GdImage'], -'imagecolorresolve' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'imagecolorresolvealpha' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], -'imagecolorset' => ['false|null', 'image'=>'GdImage', 'color'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], -'imagecolorsforindex' => ['array', 'image'=>'GdImage', 'color'=>'int'], -'imagecolorstotal' => ['int', 'image'=>'GdImage'], -'imagecolortransparent' => ['int', 'image'=>'GdImage', 'color='=>'?int'], -'imageconvolution' => ['bool', 'image'=>'GdImage', 'matrix'=>'array', 'divisor'=>'float', 'offset'=>'float'], -'imagecopy' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int'], -'imagecopymerge' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], -'imagecopymergegray' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], -'imagecopyresampled' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], -'imagecopyresized' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], -'imagecreate' => ['false|GdImage', 'width'=>'int', 'height'=>'int'], -'imagecreatefromavif' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefrombmp' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromgd' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromgd2' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromgd2part' => ['false|GdImage', 'filename'=>'string', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int'], -'imagecreatefromgif' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromjpeg' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefrompng' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromstring' => ['false|GdImage', 'data'=>'string'], -'imagecreatefromwbmp' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromwebp' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromxbm' => ['false|GdImage', 'filename'=>'string'], -'imagecreatefromxpm' => ['false|GdImage', 'filename'=>'string'], -'imagecreatetruecolor' => ['false|GdImage', 'width'=>'int', 'height'=>'int'], -'imagecrop' => ['false|GdImage', 'image'=>'GdImage', 'rectangle'=>'array'], -'imagecropauto' => ['false|GdImage', 'image'=>'GdImage', 'mode='=>'int', 'threshold='=>'float', 'color='=>'int'], -'imagedashedline' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], -'imagedestroy' => ['bool', 'image'=>'GdImage'], -'imageellipse' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], -'imagefill' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'color'=>'int'], -'imagefilledarc' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int', 'style'=>'int'], -'imagefilledellipse' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], -'imagefilledpolygon' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], -'imagefilledrectangle' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], -'imagefilltoborder' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'border_color'=>'int', 'color'=>'int'], -'imagefilter' => ['bool', 'image'=>'GdImage', 'filter'=>'int', '...args='=>'array|int|float|bool'], -'imageflip' => ['bool', 'image'=>'GdImage', 'mode'=>'int'], -'imagefontheight' => ['int', 'font'=>'int'], -'imagefontwidth' => ['int', 'font'=>'int'], -'imageftbbox' => ['array|false', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string', 'options='=>'array'], -'imagefttext' => ['array|false', 'image'=>'GdImage', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], -'imagegammacorrect' => ['bool', 'image'=>'GdImage', 'input_gamma'=>'float', 'output_gamma'=>'float'], -'imagegd' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null'], -'imagegd2' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'chunk_size='=>'int', 'mode='=>'int'], -'imagegetclip' => ['array', 'image'=>'GdImage'], -'imagegetinterpolation' => ['int', 'image'=>'GdImage'], -'imagegif' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null'], -'imagegrabscreen' => ['false|GdImage'], -'imagegrabwindow' => ['false|GdImage', 'handle'=>'int', 'client_area='=>'int'], -'imageinterlace' => ['bool', 'image'=>'GdImage', 'enable='=>'bool|null'], -'imageistruecolor' => ['bool', 'image'=>'GdImage'], -'imagejpeg' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int'], -'imagelayereffect' => ['bool', 'image'=>'GdImage', 'effect'=>'int'], -'imageline' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], -'imageloadfont' => ['GdFont|false', 'filename'=>'string'], -'imageObj::pasteImage' => ['void', 'srcImg'=>'imageObj', 'transparentColorHex'=>'int', 'dstX'=>'int', 'dstY'=>'int', 'angle'=>'int'], -'imageObj::saveImage' => ['int', 'filename'=>'string', 'oMap'=>'mapObj'], -'imageObj::saveWebImage' => ['string'], -'imageopenpolygon' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points'=>'int', 'color'=>'int'], -'imagepalettecopy' => ['void', 'dst'=>'GdImage', 'src'=>'GdImage'], -'imagepalettetotruecolor' => ['bool', 'image'=>'GdImage'], -'imagepng' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int', 'filters='=>'int'], -'imagepolygon' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], -'imagerectangle' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], -'imageresolution' => ['array|bool', 'image'=>'GdImage', 'resolution_x='=>'?int', 'resolution_y='=>'?int'], -'imagerotate' => ['false|GdImage', 'image'=>'GdImage', 'angle'=>'float', 'background_color'=>'int', 'ignore_transparent='=>'bool'], -'imagesavealpha' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], -'imagescale' => ['false|GdImage', 'image'=>'GdImage', 'width'=>'int', 'height='=>'int', 'mode='=>'int'], -'imagesetbrush' => ['bool', 'image'=>'GdImage', 'brush'=>'GdImage'], -'imagesetclip' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'x2'=>'int', 'y1'=>'int', 'y2'=>'int'], -'imagesetinterpolation' => ['bool', 'image'=>'GdImage', 'method='=>'int'], -'imagesetpixel' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'color'=>'int'], -'imagesetstyle' => ['bool', 'image'=>'GdImage', 'style'=>'non-empty-array'], -'imagesetthickness' => ['bool', 'image'=>'GdImage', 'thickness'=>'int'], -'imagesettile' => ['bool', 'image'=>'GdImage', 'tile'=>'GdImage'], -'imagestring' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], -'imagestringup' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], -'imagesx' => ['int', 'image'=>'GdImage'], -'imagesy' => ['int', 'image'=>'GdImage'], -'imagetruecolortopalette' => ['bool', 'image'=>'GdImage', 'dither'=>'bool', 'num_colors'=>'int'], -'imagettfbbox' => ['false|array', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string', 'options='=>'array'], -'imagettftext' => ['false|array', 'image'=>'GdImage', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], -'imagetypes' => ['int'], -'imagewbmp' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'foreground_color='=>'?int'], -'imagewebp' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int'], -'imagexbm' => ['bool', 'image'=>'GdImage', 'filename'=>'?string', 'foreground_color='=>'?int'], -'Imagick::__construct' => ['void', 'files='=>'string|string[]'], -'Imagick::__toString' => ['string'], -'Imagick::adaptiveBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Imagick::adaptiveResizeImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'bestfit='=>'bool'], -'Imagick::adaptiveSharpenImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Imagick::adaptiveThresholdImage' => ['bool', 'width'=>'int', 'height'=>'int', 'offset'=>'int'], -'Imagick::addImage' => ['bool', 'source'=>'Imagick'], -'Imagick::addNoiseImage' => ['bool', 'noise_type'=>'int', 'channel='=>'int'], -'Imagick::affineTransformImage' => ['bool', 'matrix'=>'ImagickDraw'], -'Imagick::animateImages' => ['bool', 'x_server'=>'string'], -'Imagick::annotateImage' => ['bool', 'draw_settings'=>'ImagickDraw', 'x'=>'float', 'y'=>'float', 'angle'=>'float', 'text'=>'string'], -'Imagick::appendImages' => ['Imagick', 'stack'=>'bool'], -'Imagick::autoGammaImage' => ['bool', 'channel='=>'int'], -'Imagick::autoLevelImage' => ['void', 'CHANNEL='=>'string'], -'Imagick::autoOrient' => ['bool'], -'Imagick::averageImages' => ['Imagick'], -'Imagick::blackThresholdImage' => ['bool', 'threshold'=>'mixed'], -'Imagick::blueShiftImage' => ['void', 'factor='=>'float'], -'Imagick::blurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Imagick::borderImage' => ['bool', 'bordercolor'=>'mixed', 'width'=>'int', 'height'=>'int'], -'Imagick::brightnessContrastImage' => ['void', 'brightness'=>'string', 'contrast'=>'string', 'CHANNEL='=>'string'], -'Imagick::charcoalImage' => ['bool', 'radius'=>'float', 'sigma'=>'float'], -'Imagick::chopImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::clampImage' => ['void', 'CHANNEL='=>'string'], -'Imagick::clear' => ['bool'], -'Imagick::clipImage' => ['bool'], -'Imagick::clipImagePath' => ['void', 'pathname'=>'string', 'inside'=>'string'], -'Imagick::clipPathImage' => ['bool', 'pathname'=>'string', 'inside'=>'bool'], -'Imagick::clone' => ['Imagick'], -'Imagick::clutImage' => ['bool', 'lookup_table'=>'Imagick', 'channel='=>'float'], -'Imagick::coalesceImages' => ['Imagick'], -'Imagick::colorFloodfillImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int'], -'Imagick::colorizeImage' => ['bool', 'colorize'=>'mixed', 'opacity'=>'mixed'], -'Imagick::colorMatrixImage' => ['void', 'color_matrix'=>'string'], -'Imagick::combineImages' => ['Imagick', 'channeltype'=>'int'], -'Imagick::commentImage' => ['bool', 'comment'=>'string'], -'Imagick::compareImageChannels' => ['array{Imagick, float}', 'image'=>'Imagick', 'channeltype'=>'int', 'metrictype'=>'int'], -'Imagick::compareImageLayers' => ['Imagick', 'method'=>'int'], -'Imagick::compareImages' => ['array{Imagick, float}', 'compare'=>'Imagick', 'metric'=>'int'], -'Imagick::compositeImage' => ['bool', 'composite_object'=>'Imagick', 'composite'=>'int', 'x'=>'int', 'y'=>'int', 'channel='=>'int'], -'Imagick::compositeImageGravity' => ['bool', 'Imagick'=>'Imagick', 'COMPOSITE_CONSTANT'=>'int', 'GRAVITY_CONSTANT'=>'int'], -'Imagick::contrastImage' => ['bool', 'sharpen'=>'bool'], -'Imagick::contrastStretchImage' => ['bool', 'black_point'=>'float', 'white_point'=>'float', 'channel='=>'int'], -'Imagick::convolveImage' => ['bool', 'kernel'=>'array', 'channel='=>'int'], -'Imagick::count' => ['void', 'mode='=>'string'], -'Imagick::cropImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::cropThumbnailImage' => ['bool', 'width'=>'int', 'height'=>'int', 'legacy='=>'bool'], -'Imagick::current' => ['Imagick'], -'Imagick::cycleColormapImage' => ['bool', 'displace'=>'int'], -'Imagick::decipherImage' => ['bool', 'passphrase'=>'string'], -'Imagick::deconstructImages' => ['Imagick'], -'Imagick::deleteImageArtifact' => ['bool', 'artifact'=>'string'], -'Imagick::deleteImageProperty' => ['void', 'name'=>'string'], -'Imagick::deskewImage' => ['bool', 'threshold'=>'float'], -'Imagick::despeckleImage' => ['bool'], -'Imagick::destroy' => ['bool'], -'Imagick::displayImage' => ['bool', 'servername'=>'string'], -'Imagick::displayImages' => ['bool', 'servername'=>'string'], -'Imagick::distortImage' => ['bool', 'method'=>'int', 'arguments'=>'array', 'bestfit'=>'bool'], -'Imagick::drawImage' => ['bool', 'draw'=>'ImagickDraw'], -'Imagick::edgeImage' => ['bool', 'radius'=>'float'], -'Imagick::embossImage' => ['bool', 'radius'=>'float', 'sigma'=>'float'], -'Imagick::encipherImage' => ['bool', 'passphrase'=>'string'], -'Imagick::enhanceImage' => ['bool'], -'Imagick::equalizeImage' => ['bool'], -'Imagick::evaluateImage' => ['bool', 'op'=>'int', 'constant'=>'float', 'channel='=>'int'], -'Imagick::evaluateImages' => ['bool', 'EVALUATE_CONSTANT'=>'int'], -'Imagick::exportImagePixels' => ['list', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int', 'map'=>'string', 'storage'=>'int'], -'Imagick::extentImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::filter' => ['void', 'ImagickKernel'=>'ImagickKernel', 'CHANNEL='=>'int'], -'Imagick::flattenImages' => ['Imagick'], -'Imagick::flipImage' => ['bool'], -'Imagick::floodFillPaintImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'target'=>'mixed', 'x'=>'int', 'y'=>'int', 'invert'=>'bool', 'channel='=>'int'], -'Imagick::flopImage' => ['bool'], -'Imagick::forwardFourierTransformimage' => ['void', 'magnitude'=>'bool'], -'Imagick::frameImage' => ['bool', 'matte_color'=>'mixed', 'width'=>'int', 'height'=>'int', 'inner_bevel'=>'int', 'outer_bevel'=>'int'], -'Imagick::functionImage' => ['bool', 'function'=>'int', 'arguments'=>'array', 'channel='=>'int'], -'Imagick::fxImage' => ['Imagick', 'expression'=>'string', 'channel='=>'int'], -'Imagick::gammaImage' => ['bool', 'gamma'=>'float', 'channel='=>'int'], -'Imagick::gaussianBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Imagick::getColorspace' => ['int'], -'Imagick::getCompression' => ['int'], -'Imagick::getCompressionQuality' => ['int'], -'Imagick::getConfigureOptions' => ['string'], -'Imagick::getCopyright' => ['string'], -'Imagick::getFeatures' => ['string'], -'Imagick::getFilename' => ['string'], -'Imagick::getFont' => ['string|false'], -'Imagick::getFormat' => ['string'], -'Imagick::getGravity' => ['int'], -'Imagick::getHDRIEnabled' => ['int'], -'Imagick::getHomeURL' => ['string'], -'Imagick::getImage' => ['Imagick'], -'Imagick::getImageAlphaChannel' => ['int'], -'Imagick::getImageArtifact' => ['string', 'artifact'=>'string'], -'Imagick::getImageAttribute' => ['string', 'key'=>'string'], -'Imagick::getImageBackgroundColor' => ['ImagickPixel'], -'Imagick::getImageBlob' => ['string'], -'Imagick::getImageBluePrimary' => ['array{x:float, y:float}'], -'Imagick::getImageBorderColor' => ['ImagickPixel'], -'Imagick::getImageChannelDepth' => ['int', 'channel'=>'int'], -'Imagick::getImageChannelDistortion' => ['float', 'reference'=>'Imagick', 'channel'=>'int', 'metric'=>'int'], -'Imagick::getImageChannelDistortions' => ['float', 'reference'=>'Imagick', 'metric'=>'int', 'channel='=>'int'], -'Imagick::getImageChannelExtrema' => ['array{minima:int, maxima:int}', 'channel'=>'int'], -'Imagick::getImageChannelKurtosis' => ['array{kurtosis:float, skewness:float}', 'channel='=>'int'], -'Imagick::getImageChannelMean' => ['array{mean:float, standardDeviation:float}', 'channel'=>'int'], -'Imagick::getImageChannelRange' => ['array{minima:float, maxima:float}', 'channel'=>'int'], -'Imagick::getImageChannelStatistics' => ['array'], -'Imagick::getImageClipMask' => ['Imagick'], -'Imagick::getImageColormapColor' => ['ImagickPixel', 'index'=>'int'], -'Imagick::getImageColors' => ['int'], -'Imagick::getImageColorspace' => ['int'], -'Imagick::getImageCompose' => ['int'], -'Imagick::getImageCompression' => ['int'], -'Imagick::getImageCompressionQuality' => ['int'], -'Imagick::getImageDelay' => ['int'], -'Imagick::getImageDepth' => ['int'], -'Imagick::getImageDispose' => ['int'], -'Imagick::getImageDistortion' => ['float', 'reference'=>'magickwand', 'metric'=>'int'], -'Imagick::getImageExtrema' => ['array{min:int, max:int}'], -'Imagick::getImageFilename' => ['string'], -'Imagick::getImageFormat' => ['string'], -'Imagick::getImageGamma' => ['float'], -'Imagick::getImageGeometry' => ['array{width:int, height:int}'], -'Imagick::getImageGravity' => ['int'], -'Imagick::getImageGreenPrimary' => ['array{x:float, y:float}'], -'Imagick::getImageHeight' => ['int'], -'Imagick::getImageHistogram' => ['list'], -'Imagick::getImageIndex' => ['int'], -'Imagick::getImageInterlaceScheme' => ['int'], -'Imagick::getImageInterpolateMethod' => ['int'], -'Imagick::getImageIterations' => ['int'], -'Imagick::getImageLength' => ['int'], -'Imagick::getImageMagickLicense' => ['string'], -'Imagick::getImageMatte' => ['bool'], -'Imagick::getImageMatteColor' => ['ImagickPixel'], -'Imagick::getImageMimeType' => ['string'], -'Imagick::getImageOrientation' => ['int'], -'Imagick::getImagePage' => ['array{width:int, height:int, x:int, y:int}'], -'Imagick::getImagePixelColor' => ['ImagickPixel', 'x'=>'int', 'y'=>'int'], -'Imagick::getImageProfile' => ['string', 'name'=>'string'], -'Imagick::getImageProfiles' => ['array', 'pattern='=>'string', 'only_names='=>'bool'], -'Imagick::getImageProperties' => ['array', 'pattern='=>'string', 'only_names='=>'bool'], -'Imagick::getImageProperty' => ['string|false', 'name'=>'string'], -'Imagick::getImageRedPrimary' => ['array{x:float, y:float}'], -'Imagick::getImageRegion' => ['Imagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::getImageRenderingIntent' => ['int'], -'Imagick::getImageResolution' => ['array{x:float, y:float}'], -'Imagick::getImagesBlob' => ['string'], -'Imagick::getImageScene' => ['int'], -'Imagick::getImageSignature' => ['string'], -'Imagick::getImageSize' => ['int'], -'Imagick::getImageTicksPerSecond' => ['int'], -'Imagick::getImageTotalInkDensity' => ['float'], -'Imagick::getImageType' => ['int'], -'Imagick::getImageUnits' => ['int'], -'Imagick::getImageVirtualPixelMethod' => ['int'], -'Imagick::getImageWhitePoint' => ['array{x:float, y:float}'], -'Imagick::getImageWidth' => ['int'], -'Imagick::getInterlaceScheme' => ['int'], -'Imagick::getIteratorIndex' => ['int'], -'Imagick::getNumberImages' => ['int'], -'Imagick::getOption' => ['string', 'key'=>'string'], -'Imagick::getPackageName' => ['string'], -'Imagick::getPage' => ['array{width:int, height:int, x:int, y:int}'], -'Imagick::getPixelIterator' => ['ImagickPixelIterator'], -'Imagick::getPixelRegionIterator' => ['ImagickPixelIterator', 'x'=>'int', 'y'=>'int', 'columns'=>'int', 'rows'=>'int'], -'Imagick::getPointSize' => ['float'], -'Imagick::getQuantum' => ['int'], -'Imagick::getQuantumDepth' => ['array{quantumDepthLong:int, quantumDepthString:string}'], -'Imagick::getQuantumRange' => ['array{quantumRangeLong:int, quantumRangeString:string}'], -'Imagick::getRegistry' => ['string|false', 'key'=>'string'], -'Imagick::getReleaseDate' => ['string'], -'Imagick::getResource' => ['int', 'type'=>'int'], -'Imagick::getResourceLimit' => ['int', 'type'=>'int'], -'Imagick::getSamplingFactors' => ['array'], -'Imagick::getSize' => ['array{columns:int, rows: int}'], -'Imagick::getSizeOffset' => ['int'], -'Imagick::getVersion' => ['array{versionNumber: int, versionString:string}'], -'Imagick::haldClutImage' => ['bool', 'clut'=>'Imagick', 'channel='=>'int'], -'Imagick::hasNextImage' => ['bool'], -'Imagick::hasPreviousImage' => ['bool'], -'Imagick::identifyFormat' => ['string|false', 'embedText'=>'string'], -'Imagick::identifyImage' => ['array', 'appendrawoutput='=>'bool'], -'Imagick::identifyImageType' => ['int'], -'Imagick::implodeImage' => ['bool', 'radius'=>'float'], -'Imagick::importImagePixels' => ['bool', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int', 'map'=>'string', 'storage'=>'int', 'pixels'=>'list'], -'Imagick::inverseFourierTransformImage' => ['void', 'complement'=>'string', 'magnitude'=>'string'], -'Imagick::key' => ['int|string'], -'Imagick::labelImage' => ['bool', 'label'=>'string'], -'Imagick::levelImage' => ['bool', 'blackpoint'=>'float', 'gamma'=>'float', 'whitepoint'=>'float', 'channel='=>'int'], -'Imagick::linearStretchImage' => ['bool', 'blackpoint'=>'float', 'whitepoint'=>'float'], -'Imagick::liquidRescaleImage' => ['bool', 'width'=>'int', 'height'=>'int', 'delta_x'=>'float', 'rigidity'=>'float'], -'Imagick::listRegistry' => ['array'], -'Imagick::localContrastImage' => ['bool', 'radius'=>'float', 'strength'=>'float'], -'Imagick::magnifyImage' => ['bool'], -'Imagick::mapImage' => ['bool', 'map'=>'Imagick', 'dither'=>'bool'], -'Imagick::matteFloodfillImage' => ['bool', 'alpha'=>'float', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int'], -'Imagick::medianFilterImage' => ['bool', 'radius'=>'float'], -'Imagick::mergeImageLayers' => ['Imagick', 'layer_method'=>'int'], -'Imagick::minifyImage' => ['bool'], -'Imagick::modulateImage' => ['bool', 'brightness'=>'float', 'saturation'=>'float', 'hue'=>'float'], -'Imagick::montageImage' => ['Imagick', 'draw'=>'ImagickDraw', 'tile_geometry'=>'string', 'thumbnail_geometry'=>'string', 'mode'=>'int', 'frame'=>'string'], -'Imagick::morphImages' => ['Imagick', 'number_frames'=>'int'], -'Imagick::morphology' => ['void', 'morphologyMethod'=>'int', 'iterations'=>'int', 'ImagickKernel'=>'ImagickKernel', 'CHANNEL='=>'string'], -'Imagick::mosaicImages' => ['Imagick'], -'Imagick::motionBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float', 'channel='=>'int'], -'Imagick::negateImage' => ['bool', 'gray'=>'bool', 'channel='=>'int'], -'Imagick::newImage' => ['bool', 'cols'=>'int', 'rows'=>'int', 'background'=>'mixed', 'format='=>'string'], -'Imagick::newPseudoImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'pseudostring'=>'string'], -'Imagick::next' => ['void'], -'Imagick::nextImage' => ['bool'], -'Imagick::normalizeImage' => ['bool', 'channel='=>'int'], -'Imagick::oilPaintImage' => ['bool', 'radius'=>'float'], -'Imagick::opaquePaintImage' => ['bool', 'target'=>'mixed', 'fill'=>'mixed', 'fuzz'=>'float', 'invert'=>'bool', 'channel='=>'int'], -'Imagick::optimizeImageLayers' => ['bool'], -'Imagick::orderedPosterizeImage' => ['bool', 'threshold_map'=>'string', 'channel='=>'int'], -'Imagick::paintFloodfillImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int', 'channel='=>'int'], -'Imagick::paintOpaqueImage' => ['bool', 'target'=>'mixed', 'fill'=>'mixed', 'fuzz'=>'float', 'channel='=>'int'], -'Imagick::paintTransparentImage' => ['bool', 'target'=>'mixed', 'alpha'=>'float', 'fuzz'=>'float'], -'Imagick::pingImage' => ['bool', 'filename'=>'string'], -'Imagick::pingImageBlob' => ['bool', 'image'=>'string'], -'Imagick::pingImageFile' => ['bool', 'filehandle'=>'resource', 'filename='=>'string'], -'Imagick::polaroidImage' => ['bool', 'properties'=>'ImagickDraw', 'angle'=>'float'], -'Imagick::posterizeImage' => ['bool', 'levels'=>'int', 'dither'=>'bool'], -'Imagick::previewImages' => ['bool', 'preview'=>'int'], -'Imagick::previousImage' => ['bool'], -'Imagick::profileImage' => ['bool', 'name'=>'string', 'profile'=>'string'], -'Imagick::quantizeImage' => ['bool', 'numbercolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], -'Imagick::quantizeImages' => ['bool', 'numbercolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], -'Imagick::queryFontMetrics' => ['array', 'properties'=>'ImagickDraw', 'text'=>'string', 'multiline='=>'bool'], -'Imagick::queryFonts' => ['array', 'pattern='=>'string'], -'Imagick::queryFormats' => ['list', 'pattern='=>'string'], -'Imagick::radialBlurImage' => ['bool', 'angle'=>'float', 'channel='=>'int'], -'Imagick::raiseImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int', 'raise'=>'bool'], -'Imagick::randomThresholdImage' => ['bool', 'low'=>'float', 'high'=>'float', 'channel='=>'int'], -'Imagick::readImage' => ['bool', 'filename'=>'string'], -'Imagick::readImageBlob' => ['bool', 'image'=>'string', 'filename='=>'string'], -'Imagick::readImageFile' => ['bool', 'filehandle'=>'resource', 'filename='=>'string'], -'Imagick::readImages' => ['Imagick', 'filenames'=>'string'], -'Imagick::recolorImage' => ['bool', 'matrix'=>'list'], -'Imagick::reduceNoiseImage' => ['bool', 'radius'=>'float'], -'Imagick::remapImage' => ['bool', 'replacement'=>'Imagick', 'dither'=>'int'], -'Imagick::removeImage' => ['bool'], -'Imagick::removeImageProfile' => ['string', 'name'=>'string'], -'Imagick::render' => ['bool'], -'Imagick::resampleImage' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float', 'filter'=>'int', 'blur'=>'float'], -'Imagick::resetImagePage' => ['bool', 'page'=>'string'], -'Imagick::resetIterator' => [''], -'Imagick::resizeImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'filter'=>'int', 'blur'=>'float', 'bestfit='=>'bool'], -'Imagick::rewind' => ['void'], -'Imagick::rollImage' => ['bool', 'x'=>'int', 'y'=>'int'], -'Imagick::rotateImage' => ['bool', 'background'=>'mixed', 'degrees'=>'float'], -'Imagick::rotationalBlurImage' => ['void', 'angle'=>'string', 'CHANNEL='=>'string'], -'Imagick::roundCorners' => ['bool', 'x_rounding'=>'float', 'y_rounding'=>'float', 'stroke_width='=>'float', 'displace='=>'float', 'size_correction='=>'float'], -'Imagick::roundCornersImage' => ['', 'xRounding'=>'', 'yRounding'=>'', 'strokeWidth'=>'', 'displace'=>'', 'sizeCorrection'=>''], -'Imagick::sampleImage' => ['bool', 'columns'=>'int', 'rows'=>'int'], -'Imagick::scaleImage' => ['bool', 'cols'=>'int', 'rows'=>'int', 'bestfit='=>'bool'], -'Imagick::segmentImage' => ['bool', 'colorspace'=>'int', 'cluster_threshold'=>'float', 'smooth_threshold'=>'float', 'verbose='=>'bool'], -'Imagick::selectiveBlurImage' => ['void', 'radius'=>'float', 'sigma'=>'float', 'threshold'=>'float', 'CHANNEL'=>'int'], -'Imagick::separateImageChannel' => ['bool', 'channel'=>'int'], -'Imagick::sepiaToneImage' => ['bool', 'threshold'=>'float'], -'Imagick::setAntiAlias' => ['int', 'antialias'=>'bool'], -'Imagick::setBackgroundColor' => ['bool', 'background'=>'mixed'], -'Imagick::setColorspace' => ['bool', 'colorspace'=>'int'], -'Imagick::setCompression' => ['bool', 'compression'=>'int'], -'Imagick::setCompressionQuality' => ['bool', 'quality'=>'int'], -'Imagick::setFilename' => ['bool', 'filename'=>'string'], -'Imagick::setFirstIterator' => ['bool'], -'Imagick::setFont' => ['bool', 'font'=>'string'], -'Imagick::setFormat' => ['bool', 'format'=>'string'], -'Imagick::setGravity' => ['bool', 'gravity'=>'int'], -'Imagick::setImage' => ['bool', 'replace'=>'Imagick'], -'Imagick::setImageAlpha' => ['bool', 'alpha'=>'float'], -'Imagick::setImageAlphaChannel' => ['bool', 'mode'=>'int'], -'Imagick::setImageArtifact' => ['bool', 'artifact'=>'string', 'value'=>'string'], -'Imagick::setImageAttribute' => ['void', 'key'=>'string', 'value'=>'string'], -'Imagick::setImageBackgroundColor' => ['bool', 'background'=>'mixed'], -'Imagick::setImageBias' => ['bool', 'bias'=>'float'], -'Imagick::setImageBiasQuantum' => ['void', 'bias'=>'string'], -'Imagick::setImageBluePrimary' => ['bool', 'x'=>'float', 'y'=>'float'], -'Imagick::setImageBorderColor' => ['bool', 'border'=>'mixed'], -'Imagick::setImageChannelDepth' => ['bool', 'channel'=>'int', 'depth'=>'int'], -'Imagick::setImageChannelMask' => ['', 'channel'=>'int'], -'Imagick::setImageClipMask' => ['bool', 'clip_mask'=>'Imagick'], -'Imagick::setImageColormapColor' => ['bool', 'index'=>'int', 'color'=>'ImagickPixel'], -'Imagick::setImageColorspace' => ['bool', 'colorspace'=>'int'], -'Imagick::setImageCompose' => ['bool', 'compose'=>'int'], -'Imagick::setImageCompression' => ['bool', 'compression'=>'int'], -'Imagick::setImageCompressionQuality' => ['bool', 'quality'=>'int'], -'Imagick::setImageDelay' => ['bool', 'delay'=>'int'], -'Imagick::setImageDepth' => ['bool', 'depth'=>'int'], -'Imagick::setImageDispose' => ['bool', 'dispose'=>'int'], -'Imagick::setImageExtent' => ['bool', 'columns'=>'int', 'rows'=>'int'], -'Imagick::setImageFilename' => ['bool', 'filename'=>'string'], -'Imagick::setImageFormat' => ['bool', 'format'=>'string'], -'Imagick::setImageGamma' => ['bool', 'gamma'=>'float'], -'Imagick::setImageGravity' => ['bool', 'gravity'=>'int'], -'Imagick::setImageGreenPrimary' => ['bool', 'x'=>'float', 'y'=>'float'], -'Imagick::setImageIndex' => ['bool', 'index'=>'int'], -'Imagick::setImageInterlaceScheme' => ['bool', 'interlace_scheme'=>'int'], -'Imagick::setImageInterpolateMethod' => ['bool', 'method'=>'int'], -'Imagick::setImageIterations' => ['bool', 'iterations'=>'int'], -'Imagick::setImageMatte' => ['bool', 'matte'=>'bool'], -'Imagick::setImageMatteColor' => ['bool', 'matte'=>'mixed'], -'Imagick::setImageOpacity' => ['bool', 'opacity'=>'float'], -'Imagick::setImageOrientation' => ['bool', 'orientation'=>'int'], -'Imagick::setImagePage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::setImageProfile' => ['bool', 'name'=>'string', 'profile'=>'string'], -'Imagick::setImageProgressMonitor' => ['', 'filename'=>''], -'Imagick::setImageProperty' => ['bool', 'name'=>'string', 'value'=>'string'], -'Imagick::setImageRedPrimary' => ['bool', 'x'=>'float', 'y'=>'float'], -'Imagick::setImageRenderingIntent' => ['bool', 'rendering_intent'=>'int'], -'Imagick::setImageResolution' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float'], -'Imagick::setImageScene' => ['bool', 'scene'=>'int'], -'Imagick::setImageTicksPerSecond' => ['bool', 'ticks_per_second'=>'int'], -'Imagick::setImageType' => ['bool', 'image_type'=>'int'], -'Imagick::setImageUnits' => ['bool', 'units'=>'int'], -'Imagick::setImageVirtualPixelMethod' => ['bool', 'method'=>'int'], -'Imagick::setImageWhitePoint' => ['bool', 'x'=>'float', 'y'=>'float'], -'Imagick::setInterlaceScheme' => ['bool', 'interlace_scheme'=>'int'], -'Imagick::setIteratorIndex' => ['bool', 'index'=>'int'], -'Imagick::setLastIterator' => ['bool'], -'Imagick::setOption' => ['bool', 'key'=>'string', 'value'=>'string'], -'Imagick::setPage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::setPointSize' => ['bool', 'point_size'=>'float'], -'Imagick::setProgressMonitor' => ['void', 'callback'=>'callable'], -'Imagick::setRegistry' => ['void', 'key'=>'string', 'value'=>'string'], -'Imagick::setResolution' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float'], -'Imagick::setResourceLimit' => ['bool', 'type'=>'int', 'limit'=>'int'], -'Imagick::setSamplingFactors' => ['bool', 'factors'=>'list'], -'Imagick::setSize' => ['bool', 'columns'=>'int', 'rows'=>'int'], -'Imagick::setSizeOffset' => ['bool', 'columns'=>'int', 'rows'=>'int', 'offset'=>'int'], -'Imagick::setType' => ['bool', 'image_type'=>'int'], -'Imagick::shadeImage' => ['bool', 'gray'=>'bool', 'azimuth'=>'float', 'elevation'=>'float'], -'Imagick::shadowImage' => ['bool', 'opacity'=>'float', 'sigma'=>'float', 'x'=>'int', 'y'=>'int'], -'Imagick::sharpenImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], -'Imagick::shaveImage' => ['bool', 'columns'=>'int', 'rows'=>'int'], -'Imagick::shearImage' => ['bool', 'background'=>'mixed', 'x_shear'=>'float', 'y_shear'=>'float'], -'Imagick::sigmoidalContrastImage' => ['bool', 'sharpen'=>'bool', 'alpha'=>'float', 'beta'=>'float', 'channel='=>'int'], -'Imagick::similarityImage' => ['Imagick', 'Imagick'=>'Imagick', '&bestMatch'=>'array', '&similarity'=>'float', 'similarity_threshold'=>'float', 'metric'=>'int'], -'Imagick::sketchImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float'], -'Imagick::smushImages' => ['Imagick', 'stack'=>'string', 'offset'=>'string'], -'Imagick::solarizeImage' => ['bool', 'threshold'=>'int'], -'Imagick::sparseColorImage' => ['bool', 'sparse_method'=>'int', 'arguments'=>'array', 'channel='=>'int'], -'Imagick::spliceImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], -'Imagick::spreadImage' => ['bool', 'radius'=>'float'], -'Imagick::statisticImage' => ['void', 'type'=>'int', 'width'=>'int', 'height'=>'int', 'CHANNEL='=>'string'], -'Imagick::steganoImage' => ['Imagick', 'watermark_wand'=>'Imagick', 'offset'=>'int'], -'Imagick::stereoImage' => ['bool', 'offset_wand'=>'Imagick'], -'Imagick::stripImage' => ['bool'], -'Imagick::subImageMatch' => ['Imagick', 'Imagick'=>'Imagick', '&w_offset='=>'array', '&w_similarity='=>'float'], -'Imagick::swirlImage' => ['bool', 'degrees'=>'float'], -'Imagick::textureImage' => ['bool', 'texture_wand'=>'Imagick'], -'Imagick::thresholdImage' => ['bool', 'threshold'=>'float', 'channel='=>'int'], -'Imagick::thumbnailImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'bestfit='=>'bool', 'fill='=>'bool', 'legacy='=>'bool'], -'Imagick::tintImage' => ['bool', 'tint'=>'mixed', 'opacity'=>'mixed'], -'Imagick::transformImage' => ['Imagick', 'crop'=>'string', 'geometry'=>'string'], -'Imagick::transformImageColorspace' => ['bool', 'colorspace'=>'int'], -'Imagick::transparentPaintImage' => ['bool', 'target'=>'mixed', 'alpha'=>'float', 'fuzz'=>'float', 'invert'=>'bool'], -'Imagick::transposeImage' => ['bool'], -'Imagick::transverseImage' => ['bool'], -'Imagick::trimImage' => ['bool', 'fuzz'=>'float'], -'Imagick::uniqueImageColors' => ['bool'], -'Imagick::unsharpMaskImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'amount'=>'float', 'threshold'=>'float', 'channel='=>'int'], -'Imagick::valid' => ['bool'], -'Imagick::vignetteImage' => ['bool', 'blackpoint'=>'float', 'whitepoint'=>'float', 'x'=>'int', 'y'=>'int'], -'Imagick::waveImage' => ['bool', 'amplitude'=>'float', 'length'=>'float'], -'Imagick::whiteThresholdImage' => ['bool', 'threshold'=>'mixed'], -'Imagick::writeImage' => ['bool', 'filename='=>'string'], -'Imagick::writeImageFile' => ['bool', 'filehandle'=>'resource'], -'Imagick::writeImages' => ['bool', 'filename'=>'string', 'adjoin'=>'bool'], -'Imagick::writeImagesFile' => ['bool', 'filehandle'=>'resource'], -'ImagickDraw::__construct' => ['void'], -'ImagickDraw::affine' => ['bool', 'affine'=>'array'], -'ImagickDraw::annotation' => ['bool', 'x'=>'float', 'y'=>'float', 'text'=>'string'], -'ImagickDraw::arc' => ['bool', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float', 'sd'=>'float', 'ed'=>'float'], -'ImagickDraw::bezier' => ['bool', 'coordinates'=>'list'], -'ImagickDraw::circle' => ['bool', 'ox'=>'float', 'oy'=>'float', 'px'=>'float', 'py'=>'float'], -'ImagickDraw::clear' => ['bool'], -'ImagickDraw::clone' => ['ImagickDraw'], -'ImagickDraw::color' => ['bool', 'x'=>'float', 'y'=>'float', 'paintmethod'=>'int'], -'ImagickDraw::comment' => ['bool', 'comment'=>'string'], -'ImagickDraw::composite' => ['bool', 'compose'=>'int', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float', 'compositewand'=>'Imagick'], -'ImagickDraw::destroy' => ['bool'], -'ImagickDraw::ellipse' => ['bool', 'ox'=>'float', 'oy'=>'float', 'rx'=>'float', 'ry'=>'float', 'start'=>'float', 'end'=>'float'], -'ImagickDraw::getBorderColor' => ['ImagickPixel'], -'ImagickDraw::getClipPath' => ['string|false'], -'ImagickDraw::getClipRule' => ['int'], -'ImagickDraw::getClipUnits' => ['int'], -'ImagickDraw::getDensity' => ['?string'], -'ImagickDraw::getFillColor' => ['ImagickPixel'], -'ImagickDraw::getFillOpacity' => ['float'], -'ImagickDraw::getFillRule' => ['int'], -'ImagickDraw::getFont' => ['string|false'], -'ImagickDraw::getFontFamily' => ['string|false'], -'ImagickDraw::getFontResolution' => ['array'], -'ImagickDraw::getFontSize' => ['float'], -'ImagickDraw::getFontStretch' => ['int'], -'ImagickDraw::getFontStyle' => ['int'], -'ImagickDraw::getFontWeight' => ['int'], -'ImagickDraw::getGravity' => ['int'], -'ImagickDraw::getOpacity' => ['float'], -'ImagickDraw::getStrokeAntialias' => ['bool'], -'ImagickDraw::getStrokeColor' => ['ImagickPixel'], -'ImagickDraw::getStrokeDashArray' => ['array'], -'ImagickDraw::getStrokeDashOffset' => ['float'], -'ImagickDraw::getStrokeLineCap' => ['int'], -'ImagickDraw::getStrokeLineJoin' => ['int'], -'ImagickDraw::getStrokeMiterLimit' => ['int'], -'ImagickDraw::getStrokeOpacity' => ['float'], -'ImagickDraw::getStrokeWidth' => ['float'], -'ImagickDraw::getTextAlignment' => ['int'], -'ImagickDraw::getTextAntialias' => ['bool'], -'ImagickDraw::getTextDecoration' => ['int'], -'ImagickDraw::getTextDirection' => ['bool'], -'ImagickDraw::getTextEncoding' => ['string'], -'ImagickDraw::getTextInterlineSpacing' => ['float'], -'ImagickDraw::getTextInterwordSpacing' => ['float'], -'ImagickDraw::getTextKerning' => ['float'], -'ImagickDraw::getTextUnderColor' => ['ImagickPixel'], -'ImagickDraw::getVectorGraphics' => ['string'], -'ImagickDraw::line' => ['bool', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float'], -'ImagickDraw::matte' => ['bool', 'x'=>'float', 'y'=>'float', 'paintmethod'=>'int'], -'ImagickDraw::pathClose' => ['bool'], -'ImagickDraw::pathCurveToAbsolute' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToQuadraticBezierRelative' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToRelative' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToSmoothAbsolute' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathCurveToSmoothRelative' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathEllipticArcAbsolute' => ['bool', 'rx'=>'float', 'ry'=>'float', 'x_axis_rotation'=>'float', 'large_arc_flag'=>'bool', 'sweep_flag'=>'bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathEllipticArcRelative' => ['bool', 'rx'=>'float', 'ry'=>'float', 'x_axis_rotation'=>'float', 'large_arc_flag'=>'bool', 'sweep_flag'=>'bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathFinish' => ['bool'], -'ImagickDraw::pathLineToAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathLineToHorizontalAbsolute' => ['bool', 'x'=>'float'], -'ImagickDraw::pathLineToHorizontalRelative' => ['bool', 'x'=>'float'], -'ImagickDraw::pathLineToRelative' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathLineToVerticalAbsolute' => ['bool', 'y'=>'float'], -'ImagickDraw::pathLineToVerticalRelative' => ['bool', 'y'=>'float'], -'ImagickDraw::pathMoveToAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathMoveToRelative' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::pathStart' => ['bool'], -'ImagickDraw::point' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::polygon' => ['bool', 'coordinates'=>'list'], -'ImagickDraw::polyline' => ['bool', 'coordinates'=>'list'], -'ImagickDraw::pop' => ['bool'], -'ImagickDraw::popClipPath' => ['bool'], -'ImagickDraw::popDefs' => ['bool'], -'ImagickDraw::popPattern' => ['bool'], -'ImagickDraw::push' => ['bool'], -'ImagickDraw::pushClipPath' => ['bool', 'clip_mask_id'=>'string'], -'ImagickDraw::pushDefs' => ['bool'], -'ImagickDraw::pushPattern' => ['bool', 'pattern_id'=>'string', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'ImagickDraw::rectangle' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], -'ImagickDraw::render' => ['bool'], -'ImagickDraw::resetVectorGraphics' => ['void'], -'ImagickDraw::rotate' => ['bool', 'degrees'=>'float'], -'ImagickDraw::roundRectangle' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'rx'=>'float', 'ry'=>'float'], -'ImagickDraw::scale' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::setBorderColor' => ['bool', 'color'=>'ImagickPixel|string'], -'ImagickDraw::setClipPath' => ['bool', 'clip_mask'=>'string'], -'ImagickDraw::setClipRule' => ['bool', 'fill_rule'=>'int'], -'ImagickDraw::setClipUnits' => ['bool', 'clip_units'=>'int'], -'ImagickDraw::setDensity' => ['bool', 'density_string'=>'string'], -'ImagickDraw::setFillAlpha' => ['bool', 'opacity'=>'float'], -'ImagickDraw::setFillColor' => ['bool', 'fill_pixel'=>'ImagickPixel|string'], -'ImagickDraw::setFillOpacity' => ['bool', 'fillopacity'=>'float'], -'ImagickDraw::setFillPatternURL' => ['bool', 'fill_url'=>'string'], -'ImagickDraw::setFillRule' => ['bool', 'fill_rule'=>'int'], -'ImagickDraw::setFont' => ['bool', 'font_name'=>'string'], -'ImagickDraw::setFontFamily' => ['bool', 'font_family'=>'string'], -'ImagickDraw::setFontResolution' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickDraw::setFontSize' => ['bool', 'pointsize'=>'float'], -'ImagickDraw::setFontStretch' => ['bool', 'fontstretch'=>'int'], -'ImagickDraw::setFontStyle' => ['bool', 'style'=>'int'], -'ImagickDraw::setFontWeight' => ['bool', 'font_weight'=>'int'], -'ImagickDraw::setGravity' => ['bool', 'gravity'=>'int'], -'ImagickDraw::setOpacity' => ['void', 'opacity'=>'float'], -'ImagickDraw::setResolution' => ['void', 'x_resolution'=>'float', 'y_resolution'=>'float'], -'ImagickDraw::setStrokeAlpha' => ['bool', 'opacity'=>'float'], -'ImagickDraw::setStrokeAntialias' => ['bool', 'stroke_antialias'=>'bool'], -'ImagickDraw::setStrokeColor' => ['bool', 'stroke_pixel'=>'ImagickPixel|string'], -'ImagickDraw::setStrokeDashArray' => ['bool', 'dasharray'=>'list'], -'ImagickDraw::setStrokeDashOffset' => ['bool', 'dash_offset'=>'float'], -'ImagickDraw::setStrokeLineCap' => ['bool', 'linecap'=>'int'], -'ImagickDraw::setStrokeLineJoin' => ['bool', 'linejoin'=>'int'], -'ImagickDraw::setStrokeMiterLimit' => ['bool', 'miterlimit'=>'int'], -'ImagickDraw::setStrokeOpacity' => ['bool', 'stroke_opacity'=>'float'], -'ImagickDraw::setStrokePatternURL' => ['bool', 'stroke_url'=>'string'], -'ImagickDraw::setStrokeWidth' => ['bool', 'stroke_width'=>'float'], -'ImagickDraw::setTextAlignment' => ['bool', 'alignment'=>'int'], -'ImagickDraw::setTextAntialias' => ['bool', 'antialias'=>'bool'], -'ImagickDraw::setTextDecoration' => ['bool', 'decoration'=>'int'], -'ImagickDraw::setTextDirection' => ['bool', 'direction'=>'int'], -'ImagickDraw::setTextEncoding' => ['bool', 'encoding'=>'string'], -'ImagickDraw::setTextInterlineSpacing' => ['void', 'spacing'=>'float'], -'ImagickDraw::setTextInterwordSpacing' => ['void', 'spacing'=>'float'], -'ImagickDraw::setTextKerning' => ['void', 'kerning'=>'float'], -'ImagickDraw::setTextUnderColor' => ['bool', 'under_color'=>'ImagickPixel|string'], -'ImagickDraw::setVectorGraphics' => ['bool', 'xml'=>'string'], -'ImagickDraw::setViewbox' => ['bool', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int'], -'ImagickDraw::skewX' => ['bool', 'degrees'=>'float'], -'ImagickDraw::skewY' => ['bool', 'degrees'=>'float'], -'ImagickDraw::translate' => ['bool', 'x'=>'float', 'y'=>'float'], -'ImagickKernel::addKernel' => ['void', 'ImagickKernel'=>'ImagickKernel'], -'ImagickKernel::addUnityKernel' => ['void'], -'ImagickKernel::fromBuiltin' => ['ImagickKernel', 'kernelType'=>'string', 'kernelString'=>'string'], -'ImagickKernel::fromMatrix' => ['ImagickKernel', 'matrix'=>'list>', 'origin='=>'array'], -'ImagickKernel::getMatrix' => ['list>'], -'ImagickKernel::scale' => ['void'], -'ImagickKernel::separate' => ['ImagickKernel[]'], -'ImagickKernel::seperate' => ['void'], -'ImagickPixel::__construct' => ['void', 'color='=>'string'], -'ImagickPixel::clear' => ['bool'], -'ImagickPixel::clone' => ['void'], -'ImagickPixel::destroy' => ['bool'], -'ImagickPixel::getColor' => ['array{r: int|float, g: int|float, b: int|float, a: int|float}', 'normalized='=>'0|1|2'], -'ImagickPixel::getColorAsString' => ['string'], -'ImagickPixel::getColorCount' => ['int'], -'ImagickPixel::getColorQuantum' => ['mixed'], -'ImagickPixel::getColorValue' => ['float', 'color'=>'int'], -'ImagickPixel::getColorValueQuantum' => ['mixed'], -'ImagickPixel::getHSL' => ['array{hue: float, saturation: float, luminosity: float}'], -'ImagickPixel::getIndex' => ['int'], -'ImagickPixel::isPixelSimilar' => ['bool', 'color'=>'ImagickPixel', 'fuzz'=>'float'], -'ImagickPixel::isPixelSimilarQuantum' => ['bool', 'color'=>'string', 'fuzz='=>'string'], -'ImagickPixel::isSimilar' => ['bool', 'color'=>'ImagickPixel', 'fuzz'=>'float'], -'ImagickPixel::setColor' => ['bool', 'color'=>'string'], -'ImagickPixel::setcolorcount' => ['void', 'colorCount'=>'string'], -'ImagickPixel::setColorFromPixel' => ['bool', 'srcPixel'=>'ImagickPixel'], -'ImagickPixel::setColorValue' => ['bool', 'color'=>'int', 'value'=>'float'], -'ImagickPixel::setColorValueQuantum' => ['void', 'color'=>'int', 'value'=>'mixed'], -'ImagickPixel::setHSL' => ['bool', 'hue'=>'float', 'saturation'=>'float', 'luminosity'=>'float'], -'ImagickPixel::setIndex' => ['void', 'index'=>'int'], -'ImagickPixelIterator::__construct' => ['void', 'wand'=>'Imagick'], -'ImagickPixelIterator::clear' => ['bool'], -'ImagickPixelIterator::current' => ['mixed'], -'ImagickPixelIterator::destroy' => ['bool'], -'ImagickPixelIterator::getCurrentIteratorRow' => ['array'], -'ImagickPixelIterator::getIteratorRow' => ['int'], -'ImagickPixelIterator::getNextIteratorRow' => ['array'], -'ImagickPixelIterator::getpixeliterator' => ['', 'Imagick'=>'Imagick'], -'ImagickPixelIterator::getpixelregioniterator' => ['', 'Imagick'=>'Imagick', 'x'=>'', 'y'=>'', 'columns'=>'', 'rows'=>''], -'ImagickPixelIterator::getPreviousIteratorRow' => ['array'], -'ImagickPixelIterator::key' => ['int|string'], -'ImagickPixelIterator::newPixelIterator' => ['bool', 'wand'=>'Imagick'], -'ImagickPixelIterator::newPixelRegionIterator' => ['bool', 'wand'=>'Imagick', 'x'=>'int', 'y'=>'int', 'columns'=>'int', 'rows'=>'int'], -'ImagickPixelIterator::next' => ['void'], -'ImagickPixelIterator::resetIterator' => ['bool'], -'ImagickPixelIterator::rewind' => ['void'], -'ImagickPixelIterator::setIteratorFirstRow' => ['bool'], -'ImagickPixelIterator::setIteratorLastRow' => ['bool'], -'ImagickPixelIterator::setIteratorRow' => ['bool', 'row'=>'int'], -'ImagickPixelIterator::syncIterator' => ['bool'], -'ImagickPixelIterator::valid' => ['bool'], -'imap_8bit' => ['string|false', 'string'=>'string'], -'imap_alerts' => ['array|false'], -'imap_append' => ['bool', 'imap'=>'IMAP\Connection', 'folder'=>'string', 'message'=>'string', 'options='=>'?string', 'internal_date='=>'?string'], -'imap_base64' => ['string|false', 'string'=>'string'], -'imap_binary' => ['string|false', 'string'=>'string'], -'imap_body' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], -'imap_bodystruct' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string'], -'imap_check' => ['stdClass|false', 'imap'=>'IMAP\Connection'], -'imap_clearflag_full' => ['true', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], -'imap_close' => ['true', 'imap'=>'IMAP\Connection', 'flags='=>'int'], -'imap_create' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_createmailbox' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_delete' => ['true', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], -'imap_deletemailbox' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_errors' => ['array|false'], -'imap_expunge' => ['true', 'imap'=>'IMAP\Connection'], -'imap_fetch_overview' => ['array|false', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flags='=>'int'], -'imap_fetchbody' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], -'imap_fetchheader' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], -'imap_fetchmime' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], -'imap_fetchstructure' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], -'imap_fetchtext' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], -'imap_gc' => ['true', 'imap'=>'IMAP\Connection', 'flags'=>'int'], -'imap_get_quota' => ['array|false', 'imap'=>'IMAP\Connection', 'quota_root'=>'string'], -'imap_get_quotaroot' => ['array|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_getacl' => ['array|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_getmailboxes' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_getsubscribed' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_header' => ['stdClass|false', 'stream_id'=>'resource', 'msg_no'=>'int', 'from_length='=>'int', 'subject_length='=>'int', 'default_host='=>'string'], -'imap_headerinfo' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int'], -'imap_headers' => ['array|false', 'imap'=>'IMAP\Connection'], -'imap_is_open' => ['bool', 'imap'=>'IMAP\Connection'], -'imap_last_error' => ['string|false'], -'imap_list' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_listmailbox' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_listscan' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], -'imap_listsubscribed' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_lsub' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], -'imap_mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'?string', 'cc='=>'?string', 'bcc='=>'?string', 'return_path='=>'?string'], -'imap_mail_compose' => ['string|false', 'envelope'=>'array', 'bodies'=>'array'], -'imap_mail_copy' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], -'imap_mail_move' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], -'imap_mailboxmsginfo' => ['stdClass', 'imap'=>'IMAP\Connection'], -'imap_mime_header_decode' => ['array|false', 'string'=>'string'], -'imap_msgno' => ['int', 'imap'=>'IMAP\Connection', 'message_uid'=>'int'], -'imap_mutf7_to_utf8' => ['string|false', 'string'=>'string'], -'imap_num_msg' => ['int|false', 'imap'=>'IMAP\Connection'], -'imap_num_recent' => ['int', 'imap'=>'IMAP\Connection'], -'imap_open' => ['IMAP\Connection|false', 'mailbox'=>'string', 'user'=>'string', 'password'=>'string', 'flags='=>'int', 'retries='=>'int', 'options='=>'array'], -'imap_ping' => ['bool', 'imap'=>'IMAP\Connection'], -'imap_qprint' => ['string|false', 'string'=>'string'], -'imap_rename' => ['bool', 'imap'=>'IMAP\Connection', 'from'=>'string', 'to'=>'string'], -'imap_renamemailbox' => ['bool', 'imap'=>'IMAP\Connection', 'from'=>'string', 'to'=>'string'], -'imap_reopen' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'flags='=>'int', 'retries='=>'int'], -'imap_rfc822_parse_adrlist' => ['array', 'string'=>'string', 'default_hostname'=>'string'], -'imap_rfc822_parse_headers' => ['stdClass', 'headers'=>'string', 'default_hostname='=>'string'], -'imap_rfc822_write_address' => ['string|false', 'mailbox'=>'string', 'hostname'=>'string', 'personal'=>'string'], -'imap_savebody' => ['bool', 'imap'=>'IMAP\Connection', 'file'=>'string|resource', 'message_num'=>'int', 'section='=>'string', 'flags='=>'int'], -'imap_scan' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], -'imap_scanmailbox' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], -'imap_search' => ['array|false', 'imap'=>'IMAP\Connection', 'criteria'=>'string', 'flags='=>'int', 'charset='=>'string'], -'imap_set_quota' => ['bool', 'imap'=>'IMAP\Connection', 'quota_root'=>'string', 'mailbox_size'=>'int'], -'imap_setacl' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'user_id'=>'string', 'rights'=>'string'], -'imap_setflag_full' => ['true', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], -'imap_sort' => ['array|false', 'imap'=>'IMAP\Connection', 'criteria'=>'int', 'reverse'=>'bool', 'flags='=>'int', 'search_criteria='=>'?string', 'charset='=>'?string'], -'imap_status' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'flags'=>'int'], -'imap_subscribe' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_thread' => ['array|false', 'imap'=>'IMAP\Connection', 'flags='=>'int'], -'imap_timeout' => ['int|bool', 'timeout_type'=>'int', 'timeout='=>'int'], -'imap_uid' => ['int|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int'], -'imap_undelete' => ['true', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], -'imap_unsubscribe' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], -'imap_utf7_decode' => ['string|false', 'string'=>'string'], -'imap_utf7_encode' => ['string', 'string'=>'string'], -'imap_utf8' => ['string', 'mime_encoded_text'=>'string'], -'imap_utf8_to_mutf7' => ['string|false', 'string'=>'string'], -'implode' => ['string', 'separator'=>'string', 'array'=>'array'], -'implode\'1' => ['string', 'separator'=>'array'], -'import_request_variables' => ['bool', 'types'=>'string', 'prefix='=>'string'], -'in_array' => ['bool', 'needle'=>'mixed', 'haystack'=>'array', 'strict='=>'bool'], -'inclued_get_data' => ['array'], -'inet_ntop' => ['string|false', 'ip'=>'string'], -'inet_pton' => ['string|false', 'ip'=>'string'], -'InfiniteIterator::__construct' => ['void', 'iterator'=>'Iterator'], -'InfiniteIterator::current' => ['mixed'], -'InfiniteIterator::getInnerIterator' => ['Iterator'], -'InfiniteIterator::key' => ['bool|float|int|string'], -'InfiniteIterator::next' => ['void'], -'InfiniteIterator::rewind' => ['void'], -'InfiniteIterator::valid' => ['bool'], -'inflate_add' => ['string|false', 'context'=>'InflateContext', 'data'=>'string', 'flush_mode='=>'int'], -'inflate_get_read_len' => ['int', 'context'=>'InflateContext'], -'inflate_get_status' => ['int', 'context'=>'InflateContext'], -'inflate_init' => ['InflateContext|false', 'encoding'=>'int', 'options='=>'array'], -'ingres_autocommit' => ['bool', 'link'=>'resource'], -'ingres_autocommit_state' => ['bool', 'link'=>'resource'], -'ingres_charset' => ['string', 'link'=>'resource'], -'ingres_close' => ['bool', 'link'=>'resource'], -'ingres_commit' => ['bool', 'link'=>'resource'], -'ingres_connect' => ['resource', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'options='=>'array'], -'ingres_cursor' => ['string', 'result'=>'resource'], -'ingres_errno' => ['int', 'link='=>'resource'], -'ingres_error' => ['string', 'link='=>'resource'], -'ingres_errsqlstate' => ['string', 'link='=>'resource'], -'ingres_escape_string' => ['string', 'link'=>'resource', 'source_string'=>'string'], -'ingres_execute' => ['bool', 'result'=>'resource', 'params='=>'array', 'types='=>'string'], -'ingres_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], -'ingres_fetch_assoc' => ['array', 'result'=>'resource'], -'ingres_fetch_object' => ['object', 'result'=>'resource', 'result_type='=>'int'], -'ingres_fetch_proc_return' => ['int', 'result'=>'resource'], -'ingres_fetch_row' => ['array', 'result'=>'resource'], -'ingres_field_length' => ['int', 'result'=>'resource', 'index'=>'int'], -'ingres_field_name' => ['string', 'result'=>'resource', 'index'=>'int'], -'ingres_field_nullable' => ['bool', 'result'=>'resource', 'index'=>'int'], -'ingres_field_precision' => ['int', 'result'=>'resource', 'index'=>'int'], -'ingres_field_scale' => ['int', 'result'=>'resource', 'index'=>'int'], -'ingres_field_type' => ['string', 'result'=>'resource', 'index'=>'int'], -'ingres_free_result' => ['bool', 'result'=>'resource'], -'ingres_next_error' => ['bool', 'link='=>'resource'], -'ingres_num_fields' => ['int', 'result'=>'resource'], -'ingres_num_rows' => ['int', 'result'=>'resource'], -'ingres_pconnect' => ['resource', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'options='=>'array'], -'ingres_prepare' => ['mixed', 'link'=>'resource', 'query'=>'string'], -'ingres_query' => ['mixed', 'link'=>'resource', 'query'=>'string', 'params='=>'array', 'types='=>'string'], -'ingres_result_seek' => ['bool', 'result'=>'resource', 'position'=>'int'], -'ingres_rollback' => ['bool', 'link'=>'resource'], -'ingres_set_environment' => ['bool', 'link'=>'resource', 'options'=>'array'], -'ingres_unbuffered_query' => ['mixed', 'link'=>'resource', 'query'=>'string', 'params='=>'array', 'types='=>'string'], -'ini_alter' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'], -'ini_get' => ['string|false', 'option'=>'string'], -'ini_get_all' => ['array|false', 'extension='=>'?string', 'details='=>'bool'], -'ini_restore' => ['void', 'option'=>'string'], -'ini_parse_quantity' => ['int', 'shorthand'=>'non-empty-string'], -'ini_set' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'], -'inotify_add_watch' => ['int|false', 'inotify_instance'=>'resource', 'pathname'=>'string', 'mask'=>'int'], -'inotify_init' => ['resource|false'], -'inotify_queue_len' => ['int', 'inotify_instance'=>'resource'], -'inotify_read' => ['array{wd: int, mask: int, cookie: int, name: string}[]|false', 'inotify_instance'=>'resource'], -'inotify_rm_watch' => ['bool', 'inotify_instance'=>'resource', 'watch_descriptor'=>'int'], -'intdiv' => ['int', 'num1'=>'int', 'num2'=>'int'], -'interface_exists' => ['bool', 'interface'=>'string', 'autoload='=>'bool'], -'intl_error_name' => ['string', 'errorCode'=>'int'], -'intl_get_error_code' => ['int'], -'intl_get_error_message' => ['string'], -'intl_is_failure' => ['bool', 'errorCode'=>'int'], -'IntlBreakIterator::__construct' => ['void'], -'IntlBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], -'IntlBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlBreakIterator::current' => ['int'], -'IntlBreakIterator::first' => ['int'], -'IntlBreakIterator::following' => ['int', 'offset'=>'int'], -'IntlBreakIterator::getErrorCode' => ['int'], -'IntlBreakIterator::getErrorMessage' => ['string'], -'IntlBreakIterator::getLocale' => ['string|false', 'type'=>'int'], -'IntlBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], -'IntlBreakIterator::getText' => ['?string'], -'IntlBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], -'IntlBreakIterator::last' => ['int'], -'IntlBreakIterator::next' => ['int', 'offset='=>'?int'], -'IntlBreakIterator::preceding' => ['int', 'offset'=>'int'], -'IntlBreakIterator::previous' => ['int'], -'IntlBreakIterator::setText' => ['bool', 'text'=>'string'], -'intlcal_add' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int', 'value'=>'int'], -'intlcal_after' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], -'intlcal_before' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], -'intlcal_clear' => ['true', 'calendar'=>'IntlCalendar', 'field='=>'?int'], -'intlcal_create_instance' => ['?IntlCalendar', 'timezone='=>'mixed', 'locale='=>'?string'], -'intlcal_equals' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], -'intlcal_field_difference' => ['int|false', 'calendar'=>'IntlCalendar', 'timestamp'=>'float', 'field'=>'int'], -'intlcal_from_date_time' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], -'intlcal_get' => ['int|false', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_actual_maximum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_actual_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_available_locales' => ['array'], -'intlcal_get_day_of_week_type' => ['int', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], -'intlcal_get_first_day_of_week' => ['int', 'calendar'=>'IntlCalendar'], -'intlcal_get_greatest_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_keyword_values_for_locale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], -'intlcal_get_least_maximum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_locale' => ['string', 'calendar'=>'IntlCalendar', 'type'=>'int'], -'intlcal_get_maximum' => ['int|false', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_minimal_days_in_first_week' => ['int', 'calendar'=>'IntlCalendar'], -'intlcal_get_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_get_now' => ['float'], -'intlcal_get_repeated_wall_time_option' => ['int', 'calendar'=>'IntlCalendar'], -'intlcal_get_skipped_wall_time_option' => ['int', 'calendar'=>'IntlCalendar'], -'intlcal_get_time' => ['float', 'calendar'=>'IntlCalendar'], -'intlcal_get_time_zone' => ['IntlTimeZone', 'calendar'=>'IntlCalendar'], -'intlcal_get_type' => ['string', 'calendar'=>'IntlCalendar'], -'intlcal_get_weekend_transition' => ['int|false', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], -'intlcal_in_daylight_time' => ['bool', 'calendar'=>'IntlCalendar'], -'intlcal_is_equivalent_to' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], -'intlcal_is_lenient' => ['bool', 'calendar'=>'IntlCalendar'], -'intlcal_is_set' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int'], -'intlcal_is_weekend' => ['bool', 'calendar'=>'IntlCalendar', 'timestamp='=>'?float'], -'intlcal_roll' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int', 'value'=>'mixed'], -'intlcal_set' => ['bool', 'calendar'=>'IntlCalendar', 'year'=>'int', 'month'=>'int'], -'intlcal_set\'1' => ['bool', 'calendar'=>'IntlCalendar', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], -'intlcal_set_first_day_of_week' => ['true', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], -'intlcal_set_lenient' => ['true', 'calendar'=>'IntlCalendar', 'lenient'=>'bool'], -'intlcal_set_repeated_wall_time_option' => ['true', 'calendar'=>'IntlCalendar', 'option'=>'int'], -'intlcal_set_skipped_wall_time_option' => ['true', 'calendar'=>'IntlCalendar', 'option'=>'int'], -'intlcal_set_time' => ['bool', 'calendar'=>'IntlCalendar', 'timestamp'=>'float'], -'intlcal_set_time_zone' => ['bool', 'calendar'=>'IntlCalendar', 'timezone'=>'mixed'], -'intlcal_to_date_time' => ['DateTime|false', 'calendar'=>'IntlCalendar'], -'IntlCalendar::__construct' => ['void'], -'IntlCalendar::add' => ['bool', 'field'=>'int', 'value'=>'int'], -'IntlCalendar::after' => ['bool', 'other'=>'IntlCalendar'], -'IntlCalendar::before' => ['bool', 'other'=>'IntlCalendar'], -'IntlCalendar::clear' => ['bool', 'field='=>'?int'], -'IntlCalendar::createInstance' => ['?IntlCalendar', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'locale='=>'?string'], -'IntlCalendar::equals' => ['bool', 'other'=>'IntlCalendar'], -'IntlCalendar::fieldDifference' => ['int|false', 'timestamp'=>'float', 'field'=>'int'], -'IntlCalendar::fromDateTime' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], -'IntlCalendar::get' => ['int', 'field'=>'int'], -'IntlCalendar::getActualMaximum' => ['int', 'field'=>'int'], -'IntlCalendar::getActualMinimum' => ['int', 'field'=>'int'], -'IntlCalendar::getAvailableLocales' => ['array'], -'IntlCalendar::getDayOfWeekType' => ['int', 'dayOfWeek'=>'int'], -'IntlCalendar::getErrorCode' => ['int'], -'IntlCalendar::getErrorMessage' => ['string'], -'IntlCalendar::getFirstDayOfWeek' => ['int'], -'IntlCalendar::getGreatestMinimum' => ['int', 'field'=>'int'], -'IntlCalendar::getKeywordValuesForLocale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], -'IntlCalendar::getLeastMaximum' => ['int', 'field'=>'int'], -'IntlCalendar::getLocale' => ['string|false', 'type'=>'int'], -'IntlCalendar::getMaximum' => ['int|false', 'field'=>'int'], -'IntlCalendar::getMinimalDaysInFirstWeek' => ['int'], -'IntlCalendar::getMinimum' => ['int', 'field'=>'int'], -'IntlCalendar::getNow' => ['float'], -'IntlCalendar::getRepeatedWallTimeOption' => ['int'], -'IntlCalendar::getSkippedWallTimeOption' => ['int'], -'IntlCalendar::getTime' => ['float'], -'IntlCalendar::getTimeZone' => ['IntlTimeZone'], -'IntlCalendar::getType' => ['string'], -'IntlCalendar::getWeekendTransition' => ['int|false', 'dayOfWeek'=>'int'], -'IntlCalendar::inDaylightTime' => ['bool'], -'IntlCalendar::isEquivalentTo' => ['bool', 'other'=>'IntlCalendar'], -'IntlCalendar::isLenient' => ['bool'], -'IntlCalendar::isSet' => ['bool', 'field'=>'int'], -'IntlCalendar::isWeekend' => ['bool', 'timestamp='=>'?float'], -'IntlCalendar::roll' => ['bool', 'field'=>'int', 'value'=>'int|bool'], -'IntlCalendar::set' => ['bool', 'field'=>'int', 'value'=>'int'], -'IntlCalendar::set\'1' => ['bool', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], -'IntlCalendar::setFirstDayOfWeek' => ['bool', 'dayOfWeek'=>'int'], -'IntlCalendar::setLenient' => ['true', 'lenient'=>'bool'], -'IntlCalendar::setMinimalDaysInFirstWeek' => ['bool', 'days'=>'int'], -'IntlCalendar::setRepeatedWallTimeOption' => ['true', 'option'=>'int'], -'IntlCalendar::setSkippedWallTimeOption' => ['true', 'option'=>'int'], -'IntlCalendar::setTime' => ['bool', 'timestamp'=>'float'], -'IntlCalendar::setTimeZone' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], -'IntlCalendar::toDateTime' => ['DateTime|false'], -'IntlChar::charAge' => ['?array', 'codepoint'=>'int|string'], -'IntlChar::charDigitValue' => ['?int', 'codepoint'=>'int|string'], -'IntlChar::charDirection' => ['?int', 'codepoint'=>'int|string'], -'IntlChar::charFromName' => ['?int', 'name'=>'string', 'type='=>'int'], -'IntlChar::charMirror' => ['int|string|null', 'codepoint'=>'int|string'], -'IntlChar::charName' => ['?string', 'codepoint'=>'int|string', 'type='=>'int'], -'IntlChar::charType' => ['?int', 'codepoint'=>'int|string'], -'IntlChar::chr' => ['?string', 'codepoint'=>'int|string'], -'IntlChar::digit' => ['int|false|null', 'codepoint'=>'int|string', 'base='=>'int'], -'IntlChar::enumCharNames' => ['bool', 'start'=>'string|int', 'end'=>'string|int', 'callback'=>'callable(int,int,int):void', 'type='=>'int'], -'IntlChar::enumCharTypes' => ['void', 'callback'=>'callable(int,int,int):void'], -'IntlChar::foldCase' => ['int|string|null', 'codepoint'=>'int|string', 'options='=>'int'], -'IntlChar::forDigit' => ['int', 'digit'=>'int', 'base='=>'int'], -'IntlChar::getBidiPairedBracket' => ['int|string|null', 'codepoint'=>'int|string'], -'IntlChar::getBlockCode' => ['?int', 'codepoint'=>'int|string'], -'IntlChar::getCombiningClass' => ['?int', 'codepoint'=>'int|string'], -'IntlChar::getFC_NFKC_Closure' => ['?string', 'codepoint'=>'int|string'], -'IntlChar::getIntPropertyMaxValue' => ['int', 'property'=>'int'], -'IntlChar::getIntPropertyMinValue' => ['int', 'property'=>'int'], -'IntlChar::getIntPropertyValue' => ['?int', 'codepoint'=>'int|string', 'property'=>'int'], -'IntlChar::getNumericValue' => ['?float', 'codepoint'=>'int|string'], -'IntlChar::getPropertyEnum' => ['int', 'alias'=>'string'], -'IntlChar::getPropertyName' => ['string|false', 'property'=>'int', 'type='=>'int'], -'IntlChar::getPropertyValueEnum' => ['int', 'property'=>'int', 'name'=>'string'], -'IntlChar::getPropertyValueName' => ['string|false', 'property'=>'int', 'value'=>'int', 'type='=>'int'], -'IntlChar::getUnicodeVersion' => ['array'], -'IntlChar::hasBinaryProperty' => ['?bool', 'codepoint'=>'int|string', 'property'=>'int'], -'IntlChar::isalnum' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isalpha' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isbase' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isblank' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::iscntrl' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isdefined' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isdigit' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isgraph' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isIDIgnorable' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isIDPart' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isIDStart' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isISOControl' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isJavaIDPart' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isJavaIDStart' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isJavaSpaceChar' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::islower' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isMirrored' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isprint' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::ispunct' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isspace' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::istitle' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isUAlphabetic' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isULowercase' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isupper' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isUUppercase' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isUWhiteSpace' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isWhitespace' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::isxdigit' => ['?bool', 'codepoint'=>'int|string'], -'IntlChar::ord' => ['?int', 'character'=>'int|string'], -'IntlChar::tolower' => ['int|string|null', 'codepoint'=>'int|string'], -'IntlChar::totitle' => ['int|string|null', 'codepoint'=>'int|string'], -'IntlChar::toupper' => ['int|string|null', 'codepoint'=>'int|string'], -'IntlCodePointBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlCodePointBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], -'IntlCodePointBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlCodePointBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlCodePointBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlCodePointBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlCodePointBreakIterator::current' => ['int'], -'IntlCodePointBreakIterator::first' => ['int'], -'IntlCodePointBreakIterator::following' => ['int', 'offset'=>'int'], -'IntlCodePointBreakIterator::getErrorCode' => ['int'], -'IntlCodePointBreakIterator::getErrorMessage' => ['string'], -'IntlCodePointBreakIterator::getLastCodePoint' => ['int'], -'IntlCodePointBreakIterator::getLocale' => ['string|false', 'type'=>'int'], -'IntlCodePointBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], -'IntlCodePointBreakIterator::getText' => ['?string'], -'IntlCodePointBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], -'IntlCodePointBreakIterator::last' => ['int'], -'IntlCodePointBreakIterator::next' => ['int', 'offset='=>'?int'], -'IntlCodePointBreakIterator::preceding' => ['int', 'offset'=>'int'], -'IntlCodePointBreakIterator::previous' => ['int'], -'IntlCodePointBreakIterator::setText' => ['bool', 'text'=>'string'], -'IntlDateFormatter::__construct' => ['void', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], -'IntlDateFormatter::create' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], -'IntlDateFormatter::format' => ['string|false', 'datetime'=>'IntlCalendar|DateTimeInterface|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], -'IntlDateFormatter::formatObject' => ['string|false', 'datetime'=>'IntlCalendar|DateTimeInterface', 'format='=>'array{0: int, 1: int}|int|string|null', 'locale='=>'?string'], -'IntlDateFormatter::getCalendar' => ['int|false'], -'IntlDateFormatter::getCalendarObject' => ['IntlCalendar|false|null'], -'IntlDateFormatter::getDateType' => ['int|false'], -'IntlDateFormatter::getErrorCode' => ['int'], -'IntlDateFormatter::getErrorMessage' => ['string'], -'IntlDateFormatter::getLocale' => ['string|false', 'type='=>'int'], -'IntlDateFormatter::getPattern' => ['string|false'], -'IntlDateFormatter::getTimeType' => ['int|false'], -'IntlDateFormatter::getTimeZone' => ['IntlTimeZone|false'], -'IntlDateFormatter::getTimeZoneId' => ['string|false'], -'IntlDateFormatter::isLenient' => ['bool'], -'IntlDateFormatter::localtime' => ['array|false', 'string'=>'string', '&rw_offset='=>'int'], -'IntlDateFormatter::parse' => ['int|float|false', 'string'=>'string', '&rw_offset='=>'int'], -'IntlDateFormatter::setCalendar' => ['bool', 'calendar'=>'IntlCalendar|int|null'], -'IntlDateFormatter::setLenient' => ['void', 'lenient'=>'bool'], -'IntlDateFormatter::setPattern' => ['bool', 'pattern'=>'string'], -'IntlDateFormatter::setTimeZone' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], -'IntlException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'IntlException::__toString' => ['string'], -'IntlException::__wakeup' => ['void'], -'IntlException::getCode' => ['int'], -'IntlException::getFile' => ['string'], -'IntlException::getLine' => ['int'], -'IntlException::getMessage' => ['string'], -'IntlException::getPrevious' => ['?Throwable'], -'IntlException::getTrace' => ['list\',args?:array}>'], -'IntlException::getTraceAsString' => ['string'], -'intlgregcal_create_instance' => ['?IntlGregorianCalendar', 'timezoneOrYear='=>'IntlTimeZone|DateTimeZone|string|null', 'localeOrMonth='=>'string|int|null', 'day='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], -'intlgregcal_get_gregorian_change' => ['float', 'calendar'=>'IntlGregorianCalendar'], -'intlgregcal_is_leap_year' => ['bool', 'calendar'=>'IntlGregorianCalendar', 'year'=>'int'], -'intlgregcal_set_gregorian_change' => ['bool', 'calendar'=>'IntlGregorianCalendar', 'timestamp'=>'float'], -'IntlGregorianCalendar::__construct' => ['void'], -'IntlGregorianCalendar::add' => ['bool', 'field'=>'int', 'value'=>'int'], -'IntlGregorianCalendar::after' => ['bool', 'other'=>'IntlCalendar'], -'IntlGregorianCalendar::before' => ['bool', 'other'=>'IntlCalendar'], -'IntlGregorianCalendar::clear' => ['bool', 'field='=>'?int'], -'IntlGregorianCalendar::createInstance' => ['?IntlGregorianCalendar', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'locale='=>'?string'], -'IntlGregorianCalendar::equals' => ['bool', 'other'=>'IntlCalendar'], -'IntlGregorianCalendar::fieldDifference' => ['int|false', 'timestamp'=>'float', 'field'=>'int'], -'IntlGregorianCalendar::fromDateTime' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], -'IntlGregorianCalendar::get' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getActualMaximum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getActualMinimum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getAvailableLocales' => ['array'], -'IntlGregorianCalendar::getDayOfWeekType' => ['int', 'dayOfWeek'=>'int'], -'IntlGregorianCalendar::getErrorCode' => ['int'], -'IntlGregorianCalendar::getErrorMessage' => ['string'], -'IntlGregorianCalendar::getFirstDayOfWeek' => ['int'], -'IntlGregorianCalendar::getGreatestMinimum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getGregorianChange' => ['float'], -'IntlGregorianCalendar::getKeywordValuesForLocale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], -'IntlGregorianCalendar::getLeastMaximum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getLocale' => ['string|false', 'type'=>'int'], -'IntlGregorianCalendar::getMaximum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => ['int'], -'IntlGregorianCalendar::getMinimum' => ['int', 'field'=>'int'], -'IntlGregorianCalendar::getNow' => ['float'], -'IntlGregorianCalendar::getRepeatedWallTimeOption' => ['int'], -'IntlGregorianCalendar::getSkippedWallTimeOption' => ['int'], -'IntlGregorianCalendar::getTime' => ['float'], -'IntlGregorianCalendar::getTimeZone' => ['IntlTimeZone'], -'IntlGregorianCalendar::getType' => ['string'], -'IntlGregorianCalendar::getWeekendTransition' => ['int|false', 'dayOfWeek'=>'int'], -'IntlGregorianCalendar::inDaylightTime' => ['bool'], -'IntlGregorianCalendar::isEquivalentTo' => ['bool', 'other'=>'IntlCalendar'], -'IntlGregorianCalendar::isLeapYear' => ['bool', 'year'=>'int'], -'IntlGregorianCalendar::isLenient' => ['bool'], -'IntlGregorianCalendar::isSet' => ['bool', 'field'=>'int'], -'IntlGregorianCalendar::isWeekend' => ['bool', 'timestamp='=>'?float'], -'IntlGregorianCalendar::roll' => ['bool', 'field'=>'int', 'value'=>'int|bool'], -'IntlGregorianCalendar::set' => ['bool', 'field'=>'int', 'value'=>'int'], -'IntlGregorianCalendar::set\'1' => ['bool', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], -'IntlGregorianCalendar::setFirstDayOfWeek' => ['bool', 'dayOfWeek'=>'int'], -'IntlGregorianCalendar::setGregorianChange' => ['bool', 'timestamp'=>'float'], -'IntlGregorianCalendar::setLenient' => ['true', 'lenient'=>'bool'], -'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => ['bool', 'days'=>'int'], -'IntlGregorianCalendar::setRepeatedWallTimeOption' => ['true', 'option'=>'int'], -'IntlGregorianCalendar::setSkippedWallTimeOption' => ['true', 'option'=>'int'], -'IntlGregorianCalendar::setTime' => ['bool', 'timestamp'=>'float'], -'IntlGregorianCalendar::setTimeZone' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], -'IntlGregorianCalendar::toDateTime' => ['DateTime'], -'IntlIterator::__construct' => ['void'], -'IntlIterator::current' => ['mixed'], -'IntlIterator::key' => ['string'], -'IntlIterator::next' => ['void'], -'IntlIterator::rewind' => ['void'], -'IntlIterator::valid' => ['bool'], -'IntlPartsIterator::getBreakIterator' => ['IntlBreakIterator'], -'IntlRuleBasedBreakIterator::__construct' => ['void', 'rules'=>'string', 'compiled='=>'bool'], -'IntlRuleBasedBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlRuleBasedBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], -'IntlRuleBasedBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlRuleBasedBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlRuleBasedBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlRuleBasedBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], -'IntlRuleBasedBreakIterator::current' => ['int'], -'IntlRuleBasedBreakIterator::first' => ['int'], -'IntlRuleBasedBreakIterator::following' => ['int', 'offset'=>'int'], -'IntlRuleBasedBreakIterator::getBinaryRules' => ['string'], -'IntlRuleBasedBreakIterator::getErrorCode' => ['int'], -'IntlRuleBasedBreakIterator::getErrorMessage' => ['string'], -'IntlRuleBasedBreakIterator::getLocale' => ['string|false', 'type'=>'int'], -'IntlRuleBasedBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], -'IntlRuleBasedBreakIterator::getRules' => ['string'], -'IntlRuleBasedBreakIterator::getRuleStatus' => ['int'], -'IntlRuleBasedBreakIterator::getRuleStatusVec' => ['array'], -'IntlRuleBasedBreakIterator::getText' => ['?string'], -'IntlRuleBasedBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], -'IntlRuleBasedBreakIterator::last' => ['int'], -'IntlRuleBasedBreakIterator::next' => ['int', 'offset='=>'?int'], -'IntlRuleBasedBreakIterator::preceding' => ['int', 'offset'=>'int'], -'IntlRuleBasedBreakIterator::previous' => ['int'], -'IntlRuleBasedBreakIterator::setText' => ['bool', 'text'=>'string'], -'IntlTimeZone::countEquivalentIDs' => ['int|false', 'timezoneId'=>'string'], -'IntlTimeZone::createDefault' => ['IntlTimeZone'], -'IntlTimeZone::createEnumeration' => ['IntlIterator|false', 'countryOrRawOffset='=>'IntlTimeZone|string|int|float|null'], -'IntlTimeZone::createTimeZone' => ['?IntlTimeZone', 'timezoneId'=>'string'], -'IntlTimeZone::createTimeZoneIDEnumeration' => ['IntlIterator|false', 'type'=>'int', 'region='=>'?string', 'rawOffset='=>'?int'], -'IntlTimeZone::fromDateTimeZone' => ['?IntlTimeZone', 'timezone'=>'DateTimeZone'], -'IntlTimeZone::getCanonicalID' => ['string|false', 'timezoneId'=>'string', '&w_isSystemId='=>'bool'], -'IntlTimeZone::getDisplayName' => ['string|false', 'dst='=>'bool', 'style='=>'int', 'locale='=>'?string'], -'IntlTimeZone::getDSTSavings' => ['int'], -'IntlTimeZone::getEquivalentID' => ['string|false', 'timezoneId'=>'string', 'offset'=>'int'], -'IntlTimeZone::getErrorCode' => ['int'], -'IntlTimeZone::getErrorMessage' => ['string'], -'IntlTimeZone::getGMT' => ['IntlTimeZone'], -'IntlTimeZone::getID' => ['string'], -'IntlTimeZone::getIDForWindowsID' => ['string|false', 'timezoneId'=>'string', 'region='=>'?string'], -'IntlTimeZone::getOffset' => ['bool', 'timestamp'=>'float', 'local'=>'bool', '&w_rawOffset'=>'int', '&w_dstOffset'=>'int'], -'IntlTimeZone::getRawOffset' => ['int'], -'IntlTimeZone::getRegion' => ['string|false', 'timezoneId'=>'string'], -'IntlTimeZone::getTZDataVersion' => ['string'], -'IntlTimeZone::getUnknown' => ['IntlTimeZone'], -'IntlTimeZone::getWindowsID' => ['string|false', 'timezoneId'=>'string'], -'IntlTimeZone::hasSameRules' => ['bool', 'other'=>'IntlTimeZone'], -'IntlTimeZone::toDateTimeZone' => ['DateTimeZone|false'], -'IntlTimeZone::useDaylightTime' => ['bool'], -'intltz_count_equivalent_ids' => ['int', 'timezoneId'=>'string'], -'intltz_create_enumeration' => ['IntlIterator|false', 'countryOrRawOffset='=>'IntlTimeZone|string|int|float|null'], -'intltz_create_time_zone' => ['?IntlTimeZone', 'timezoneId'=>'string'], -'intltz_from_date_time_zone' => ['?IntlTimeZone', 'timezone'=>'DateTimeZone'], -'intltz_get_canonical_id' => ['string|false', 'timezoneId'=>'string', '&isSystemId='=>'bool'], -'intltz_get_display_name' => ['string|false', 'timezone'=>'IntlTimeZone', 'dst='=>'bool', 'style='=>'int', 'locale='=>'?string'], -'intltz_get_dst_savings' => ['int', 'timezone'=>'IntlTimeZone'], -'intltz_get_equivalent_id' => ['string', 'timezoneId'=>'string', 'offset'=>'int'], -'intltz_get_error_code' => ['int', 'timezone'=>'IntlTimeZone'], -'intltz_get_error_message' => ['string', 'timezone'=>'IntlTimeZone'], -'intltz_get_id' => ['string', 'timezone'=>'IntlTimeZone'], -'intltz_get_offset' => ['bool', 'timezone'=>'IntlTimeZone', 'timestamp'=>'float', 'local'=>'bool', '&rawOffset'=>'int', '&dstOffset'=>'int'], -'intltz_get_raw_offset' => ['int', 'timezone'=>'IntlTimeZone'], -'intltz_get_tz_data_version' => ['string', 'object'=>'IntlTimeZone'], -'intltz_getGMT' => ['IntlTimeZone'], -'intltz_has_same_rules' => ['bool', 'timezone'=>'IntlTimeZone', 'other'=>'IntlTimeZone'], -'intltz_to_date_time_zone' => ['DateTimeZone', 'timezone'=>'IntlTimeZone'], -'intltz_use_daylight_time' => ['bool', 'timezone'=>'IntlTimeZone'], -'intlz_create_default' => ['IntlTimeZone'], -'intval' => ['int', 'value'=>'mixed', 'base='=>'int'], -'InvalidArgumentException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'InvalidArgumentException::__toString' => ['string'], -'InvalidArgumentException::getCode' => ['int'], -'InvalidArgumentException::getFile' => ['string'], -'InvalidArgumentException::getLine' => ['int'], -'InvalidArgumentException::getMessage' => ['string'], -'InvalidArgumentException::getPrevious' => ['?Throwable'], -'InvalidArgumentException::getTrace' => ['list\',args?:array}>'], -'InvalidArgumentException::getTraceAsString' => ['string'], -'ip2long' => ['int|false', 'ip'=>'string'], -'iptcembed' => ['string|bool', 'iptc_data'=>'string', 'filename'=>'string', 'spool='=>'int'], -'iptcparse' => ['array|false', 'iptc_block'=>'string'], -'is_a' => ['bool', 'object_or_class'=>'mixed', 'class'=>'string', 'allow_string='=>'bool'], -'is_array' => ['bool', 'value'=>'mixed'], -'is_bool' => ['bool', 'value'=>'mixed'], -'is_callable' => ['bool', 'value'=>'callable|mixed', 'syntax_only='=>'bool', '&w_callable_name='=>'string'], -'is_countable' => ['bool', 'value'=>'mixed'], -'is_dir' => ['bool', 'filename'=>'string'], -'is_double' => ['bool', 'value'=>'mixed'], -'is_executable' => ['bool', 'filename'=>'string'], -'is_file' => ['bool', 'filename'=>'string'], -'is_finite' => ['bool', 'num'=>'float'], -'is_float' => ['bool', 'value'=>'mixed'], -'is_infinite' => ['bool', 'num'=>'float'], -'is_int' => ['bool', 'value'=>'mixed'], -'is_integer' => ['bool', 'value'=>'mixed'], -'is_iterable' => ['bool', 'value'=>'mixed'], -'is_link' => ['bool', 'filename'=>'string'], -'is_long' => ['bool', 'value'=>'mixed'], -'is_nan' => ['bool', 'num'=>'float'], -'is_null' => ['bool', 'value'=>'mixed'], -'is_numeric' => ['bool', 'value'=>'mixed'], -'is_object' => ['bool', 'value'=>'mixed'], -'is_readable' => ['bool', 'filename'=>'string'], -'is_real' => ['bool', 'value'=>'mixed'], -'is_resource' => ['bool', 'value'=>'mixed'], -'is_scalar' => ['bool', 'value'=>'mixed'], -'is_soap_fault' => ['bool', 'object'=>'mixed'], -'is_string' => ['bool', 'value'=>'mixed'], -'is_subclass_of' => ['bool', 'object_or_class'=>'object|string', 'class'=>'class-string', 'allow_string='=>'bool'], -'is_tainted' => ['bool', 'string'=>'string'], -'is_uploaded_file' => ['bool', 'filename'=>'string'], -'is_writable' => ['bool', 'filename'=>'string'], -'is_writeable' => ['bool', 'filename'=>'string'], -'isset' => ['bool', 'value'=>'mixed', '...rest='=>'mixed'], -'Iterator::current' => ['mixed'], -'Iterator::key' => ['mixed'], -'Iterator::next' => ['void'], -'Iterator::rewind' => ['void'], -'Iterator::valid' => ['bool'], -'iterator_apply' => ['0|positive-int', 'iterator'=>'Traversable', 'callback'=>'callable(mixed):bool', 'args='=>'?array'], -'iterator_count' => ['0|positive-int', 'iterator'=>'Traversable|array'], -'iterator_to_array' => ['array', 'iterator'=>'Traversable|array', 'preserve_keys='=>'bool'], -'IteratorAggregate::getIterator' => ['Traversable'], -'IteratorIterator::__construct' => ['void', 'iterator'=>'Traversable', 'class='=>'?string'], -'IteratorIterator::current' => ['mixed'], -'IteratorIterator::getInnerIterator' => ['Iterator'], -'IteratorIterator::key' => ['mixed'], -'IteratorIterator::next' => ['void'], -'IteratorIterator::rewind' => ['void'], -'IteratorIterator::valid' => ['bool'], -'java_last_exception_clear' => ['void'], -'java_last_exception_get' => ['object'], -'java_reload' => ['array', 'new_jarpath'=>'string'], -'java_require' => ['array', 'new_classpath'=>'string'], -'java_set_encoding' => ['array', 'encoding'=>'string'], -'java_set_ignore_case' => ['void', 'ignore'=>'bool'], -'java_throw_exceptions' => ['void', 'throw'=>'bool'], -'JavaException::getCause' => ['object'], -'jddayofweek' => ['string|int', 'julian_day'=>'int', 'mode='=>'int'], -'jdmonthname' => ['string', 'julian_day'=>'int', 'mode'=>'int'], -'jdtofrench' => ['string', 'julian_day'=>'int'], -'jdtogregorian' => ['string', 'julian_day'=>'int'], -'jdtojewish' => ['string', 'julian_day'=>'int', 'hebrew='=>'bool', 'flags='=>'int'], -'jdtojulian' => ['string', 'julian_day'=>'int'], -'jdtounix' => ['int', 'julian_day'=>'int'], -'jewishtojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'jobqueue_license_info' => ['array'], -'join' => ['string', 'separator'=>'string', 'array'=>'array'], -'join\'1' => ['string', 'separator'=>'array'], -'json_decode' => ['mixed', 'json'=>'string', 'associative='=>'?bool', 'depth='=>'int', 'flags='=>'int'], -'json_encode' => ['non-empty-string|false', 'value'=>'mixed', 'flags='=>'int', 'depth='=>'int'], -'json_last_error' => ['int'], -'json_last_error_msg' => ['string'], -'json_validate' => ['bool', 'json'=>'string', 'depth='=>'positive-int', 'flags='=>'int'], -'JsonException::__construct' => ['void', "message="=>"string", 'code='=>'int', 'previous='=>'?Throwable'], -'JsonException::__toString' => ['string'], -'JsonException::__wakeup' => ['void'], -'JsonException::getCode' => ['int'], -'JsonException::getFile' => ['string'], -'JsonException::getLine' => ['int'], -'JsonException::getMessage' => ['string'], -'JsonException::getPrevious' => ['?Throwable'], -'JsonException::getTrace' => ['list\',args?:array}>'], -'JsonException::getTraceAsString' => ['string'], -'JsonIncrementalParser::__construct' => ['void', 'depth'=>'', 'options'=>''], -'JsonIncrementalParser::get' => ['', 'options'=>''], -'JsonIncrementalParser::getError' => [''], -'JsonIncrementalParser::parse' => ['', 'json'=>''], -'JsonIncrementalParser::parseFile' => ['', 'filename'=>''], -'JsonIncrementalParser::reset' => [''], -'JsonSerializable::jsonSerialize' => ['mixed'], -'Judy::__construct' => ['void', 'judy_type'=>'int'], -'Judy::__destruct' => ['void'], -'Judy::byCount' => ['int', 'nth_index'=>'int'], -'Judy::count' => ['int', 'index_start='=>'int', 'index_end='=>'int'], -'Judy::first' => ['mixed', 'index='=>'mixed'], -'Judy::firstEmpty' => ['mixed', 'index='=>'mixed'], -'Judy::free' => ['int'], -'Judy::getType' => ['int'], -'Judy::last' => ['mixed', 'index='=>'string'], -'Judy::lastEmpty' => ['mixed', 'index='=>'int'], -'Judy::memoryUsage' => ['int'], -'Judy::next' => ['mixed', 'index'=>'mixed'], -'Judy::nextEmpty' => ['mixed', 'index'=>'mixed'], -'Judy::offsetExists' => ['bool', 'offset'=>'int|string'], -'Judy::offsetGet' => ['mixed', 'offset'=>'int|string'], -'Judy::offsetSet' => ['bool', 'offset'=>'int|string|null', 'value'=>'mixed'], -'Judy::offsetUnset' => ['bool', 'offset'=>'int|string'], -'Judy::prev' => ['mixed', 'index'=>'mixed'], -'Judy::prevEmpty' => ['mixed', 'index'=>'mixed'], -'Judy::size' => ['int'], -'judy_type' => ['int', 'array'=>'judy'], -'judy_version' => ['string'], -'juliantojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], -'kadm5_chpass_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'password'=>'string'], -'kadm5_create_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'password='=>'string', 'options='=>'array'], -'kadm5_delete_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string'], -'kadm5_destroy' => ['bool', 'handle'=>'resource'], -'kadm5_flush' => ['bool', 'handle'=>'resource'], -'kadm5_get_policies' => ['array', 'handle'=>'resource'], -'kadm5_get_principal' => ['array', 'handle'=>'resource', 'principal'=>'string'], -'kadm5_get_principals' => ['array', 'handle'=>'resource'], -'kadm5_init_with_password' => ['resource', 'admin_server'=>'string', 'realm'=>'string', 'principal'=>'string', 'password'=>'string'], -'kadm5_modify_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'options'=>'array'], -'key' => ['int|string|null', 'array'=>'array'], -'key_exists' => ['bool', 'key'=>'string|int', 'array'=>'array'], -'krsort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'ksort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => ['string'], -'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => ['string'], -'KTaglib_ID3v2_AttachedPictureFrame::getType' => ['int'], -'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => ['bool', 'filename'=>'string'], -'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => ['string', 'type'=>'string'], -'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => ['', 'filename'=>'string'], -'KTaglib_ID3v2_AttachedPictureFrame::setType' => ['', 'type'=>'int'], -'KTaglib_ID3v2_Frame::__toString' => ['string'], -'KTaglib_ID3v2_Frame::getDescription' => ['string'], -'KTaglib_ID3v2_Frame::getMimeType' => ['string'], -'KTaglib_ID3v2_Frame::getSize' => ['int'], -'KTaglib_ID3v2_Frame::getType' => ['int'], -'KTaglib_ID3v2_Frame::savePicture' => ['bool', 'filename'=>'string'], -'KTaglib_ID3v2_Frame::setMimeType' => ['string', 'type'=>'string'], -'KTaglib_ID3v2_Frame::setPicture' => ['void', 'filename'=>'string'], -'KTaglib_ID3v2_Frame::setType' => ['void', 'type'=>'int'], -'KTaglib_ID3v2_Tag::addFrame' => ['bool', 'frame'=>'KTaglib_ID3v2_Frame'], -'KTaglib_ID3v2_Tag::getFrameList' => ['array'], -'KTaglib_MPEG_AudioProperties::getBitrate' => ['int'], -'KTaglib_MPEG_AudioProperties::getChannels' => ['int'], -'KTaglib_MPEG_AudioProperties::getLayer' => ['int'], -'KTaglib_MPEG_AudioProperties::getLength' => ['int'], -'KTaglib_MPEG_AudioProperties::getSampleBitrate' => ['int'], -'KTaglib_MPEG_AudioProperties::getVersion' => ['int'], -'KTaglib_MPEG_AudioProperties::isCopyrighted' => ['bool'], -'KTaglib_MPEG_AudioProperties::isOriginal' => ['bool'], -'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => ['bool'], -'KTaglib_MPEG_File::getAudioProperties' => ['KTaglib_MPEG_File'], -'KTaglib_MPEG_File::getID3v1Tag' => ['KTaglib_ID3v1_Tag', 'create='=>'bool'], -'KTaglib_MPEG_File::getID3v2Tag' => ['KTaglib_ID3v2_Tag', 'create='=>'bool'], -'KTaglib_Tag::getAlbum' => ['string'], -'KTaglib_Tag::getArtist' => ['string'], -'KTaglib_Tag::getComment' => ['string'], -'KTaglib_Tag::getGenre' => ['string'], -'KTaglib_Tag::getTitle' => ['string'], -'KTaglib_Tag::getTrack' => ['int'], -'KTaglib_Tag::getYear' => ['int'], -'KTaglib_Tag::isEmpty' => ['bool'], -'labelcacheObj::freeCache' => ['bool'], -'labelObj::__construct' => ['void'], -'labelObj::convertToString' => ['string'], -'labelObj::deleteStyle' => ['int', 'index'=>'int'], -'labelObj::free' => ['void'], -'labelObj::getBinding' => ['string', 'labelbinding'=>'mixed'], -'labelObj::getExpressionString' => ['string'], -'labelObj::getStyle' => ['styleObj', 'index'=>'int'], -'labelObj::getTextString' => ['string'], -'labelObj::moveStyleDown' => ['int', 'index'=>'int'], -'labelObj::moveStyleUp' => ['int', 'index'=>'int'], -'labelObj::removeBinding' => ['int', 'labelbinding'=>'mixed'], -'labelObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'labelObj::setBinding' => ['int', 'labelbinding'=>'mixed', 'value'=>'string'], -'labelObj::setExpression' => ['int', 'expression'=>'string'], -'labelObj::setText' => ['int', 'text'=>'string'], -'labelObj::updateFromString' => ['int', 'snippet'=>'string'], -'Lapack::eigenValues' => ['array', 'a'=>'array', 'left='=>'array', 'right='=>'array'], -'Lapack::identity' => ['array', 'n'=>'int'], -'Lapack::leastSquaresByFactorisation' => ['array', 'a'=>'array', 'b'=>'array'], -'Lapack::leastSquaresBySVD' => ['array', 'a'=>'array', 'b'=>'array'], -'Lapack::pseudoInverse' => ['array', 'a'=>'array'], -'Lapack::singularValues' => ['array', 'a'=>'array'], -'Lapack::solveLinearEquation' => ['array', 'a'=>'array', 'b'=>'array'], -'layerObj::addFeature' => ['int', 'shape'=>'shapeObj'], -'layerObj::applySLD' => ['int', 'sldxml'=>'string', 'namedlayer'=>'string'], -'layerObj::applySLDURL' => ['int', 'sldurl'=>'string', 'namedlayer'=>'string'], -'layerObj::clearProcessing' => ['void'], -'layerObj::close' => ['void'], -'layerObj::convertToString' => ['string'], -'layerObj::draw' => ['int', 'image'=>'imageObj'], -'layerObj::drawQuery' => ['int', 'image'=>'imageObj'], -'layerObj::free' => ['void'], -'layerObj::generateSLD' => ['string'], -'layerObj::getClass' => ['classObj', 'classIndex'=>'int'], -'layerObj::getClassIndex' => ['int', 'shape'=>'', 'classgroup'=>'', 'numclasses'=>''], -'layerObj::getExtent' => ['rectObj'], -'layerObj::getFilterString' => ['?string'], -'layerObj::getGridIntersectionCoordinates' => ['array'], -'layerObj::getItems' => ['array'], -'layerObj::getMetaData' => ['int', 'name'=>'string'], -'layerObj::getNumResults' => ['int'], -'layerObj::getProcessing' => ['array'], -'layerObj::getProjection' => ['string'], -'layerObj::getResult' => ['resultObj', 'index'=>'int'], -'layerObj::getResultsBounds' => ['rectObj'], -'layerObj::getShape' => ['shapeObj', 'result'=>'resultObj'], -'layerObj::getWMSFeatureInfoURL' => ['string', 'clickX'=>'int', 'clickY'=>'int', 'featureCount'=>'int', 'infoFormat'=>'string'], -'layerObj::isVisible' => ['bool'], -'layerObj::moveclassdown' => ['int', 'index'=>'int'], -'layerObj::moveclassup' => ['int', 'index'=>'int'], -'layerObj::ms_newLayerObj' => ['layerObj', 'map'=>'mapObj', 'layer'=>'layerObj'], -'layerObj::nextShape' => ['shapeObj'], -'layerObj::open' => ['int'], -'layerObj::queryByAttributes' => ['int', 'qitem'=>'string', 'qstring'=>'string', 'mode'=>'int'], -'layerObj::queryByFeatures' => ['int', 'slayer'=>'int'], -'layerObj::queryByPoint' => ['int', 'point'=>'pointObj', 'mode'=>'int', 'buffer'=>'float'], -'layerObj::queryByRect' => ['int', 'rect'=>'rectObj'], -'layerObj::queryByShape' => ['int', 'shape'=>'shapeObj'], -'layerObj::removeClass' => ['?classObj', 'index'=>'int'], -'layerObj::removeMetaData' => ['int', 'name'=>'string'], -'layerObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'layerObj::setConnectionType' => ['int', 'connectiontype'=>'int', 'plugin_library'=>'string'], -'layerObj::setFilter' => ['int', 'expression'=>'string'], -'layerObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], -'layerObj::setProjection' => ['int', 'proj_params'=>'string'], -'layerObj::setWKTProjection' => ['int', 'proj_params'=>'string'], -'layerObj::updateFromString' => ['int', 'snippet'=>'string'], -'lcfirst' => ['string', 'string'=>'string'], -'lcg_value' => ['float'], -'lchgrp' => ['bool', 'filename'=>'string', 'group'=>'string|int'], -'lchown' => ['bool', 'filename'=>'string', 'user'=>'string|int'], -'ldap_8859_to_t61' => ['string', 'value'=>'string'], -'ldap_add' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_add_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_bind' => ['bool', 'ldap'=>'LDAP\Connection', 'dn='=>'string|null', 'password='=>'string|null'], -'ldap_bind_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'?array'], -'ldap_close' => ['bool', 'ldap'=>'LDAP\Connection'], -'ldap_compare' => ['bool|int', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'?array'], -'ldap_connect' => ['LDAP\Connection|false', 'uri='=>'?string', 'port='=>'int', 'wallet='=>'string', 'password='=>'string', 'auth_mode='=>'int'], -'ldap_count_entries' => ['int', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], -'ldap_delete' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'controls='=>'?array'], -'ldap_delete_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'controls='=>'?array'], -'ldap_dn2ufn' => ['string|false', 'dn'=>'string'], -'ldap_err2str' => ['string', 'errno'=>'int'], -'ldap_errno' => ['int', 'ldap'=>'LDAP\Connection'], -'ldap_error' => ['string', 'ldap'=>'LDAP\Connection'], -'ldap_escape' => ['string', 'value'=>'string', 'ignore='=>'string', 'flags='=>'int'], -'ldap_exop' => ['LDAP\Result|bool', 'ldap'=>'LDAP\Connection', 'request_oid'=>'string', 'request_data='=>'?string', 'controls='=>'?array', '&w_response_data='=>'string', '&w_response_oid='=>'string'], -'ldap_exop_passwd' => ['bool|string', 'ldap'=>'LDAP\Connection', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array|null'], -'ldap_exop_refresh' => ['int|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'ttl'=>'int'], -'ldap_exop_whoami' => ['string|false', 'ldap'=>'LDAP\Connection'], -'ldap_explode_dn' => ['array|false', 'dn'=>'string', 'with_attrib'=>'int'], -'ldap_first_attribute' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_first_entry' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], -'ldap_first_reference' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], -'ldap_free_result' => ['bool', 'result'=>'LDAP\Result'], -'ldap_get_attributes' => ['array', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_get_dn' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_get_entries' => ['array|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], -'ldap_get_option' => ['bool', 'ldap'=>'LDAP\Connection', 'option'=>'int', '&w_value='=>'array|string|int'], -'ldap_get_values' => ['array|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', 'attribute'=>'string'], -'ldap_get_values_len' => ['array|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', 'attribute'=>'string'], -'ldap_list' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], -'ldap_mod_add' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_mod_add_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_mod_del' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_mod_del_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_mod_replace' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_mod_replace_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_modify' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], -'ldap_modify_batch' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'?array'], -'ldap_next_attribute' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_next_entry' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_next_reference' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], -'ldap_parse_exop' => ['bool', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result', '&w_response_data='=>'string', '&w_response_oid='=>'string'], -'ldap_parse_reference' => ['bool', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', '&w_referrals'=>'array'], -'ldap_parse_result' => ['bool', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result', '&w_error_code'=>'int', '&w_matched_dn='=>'string', '&w_error_message='=>'string', '&w_referrals='=>'array', '&w_controls='=>'array'], -'ldap_read' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], -'ldap_rename' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], -'ldap_rename_ext' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], -'ldap_sasl_bind' => ['bool', 'ldap'=>'LDAP\Connection', 'dn='=>'?string', 'password='=>'?string', 'mech='=>'?string', 'realm='=>'?string', 'authc_id='=>'?string', 'authz_id='=>'?string', 'props='=>'?string'], -'ldap_search' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], -'ldap_set_option' => ['bool', 'ldap'=>'LDAP\Connection|null', 'option'=>'int', 'value'=>'mixed'], -'ldap_set_rebind_proc' => ['bool', 'ldap'=>'LDAP\Connection', 'callback'=>'?callable'], -'ldap_start_tls' => ['bool', 'ldap'=>'LDAP\Connection'], -'ldap_t61_to_8859' => ['string', 'value'=>'string'], -'ldap_unbind' => ['bool', 'ldap'=>'LDAP\Connection'], -'leak' => ['', 'num_bytes'=>'int'], -'leak_variable' => ['', 'variable'=>'', 'leak_data'=>'bool'], -'legendObj::convertToString' => ['string'], -'legendObj::free' => ['void'], -'legendObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'legendObj::updateFromString' => ['int', 'snippet'=>'string'], -'LengthException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'LengthException::__toString' => ['string'], -'LengthException::getCode' => ['int'], -'LengthException::getFile' => ['string'], -'LengthException::getLine' => ['int'], -'LengthException::getMessage' => ['string'], -'LengthException::getPrevious' => ['?Throwable'], -'LengthException::getTrace' => ['list\',args?:array}>'], -'LengthException::getTraceAsString' => ['string'], -'LevelDB::__construct' => ['void', 'name'=>'string', 'options='=>'array', 'read_options='=>'array', 'write_options='=>'array'], -'LevelDB::close' => [''], -'LevelDB::compactRange' => ['', 'start'=>'', 'limit'=>''], -'LevelDB::delete' => ['bool', 'key'=>'string', 'write_options='=>'array'], -'LevelDB::destroy' => ['', 'name'=>'', 'options='=>'array'], -'LevelDB::get' => ['bool|string', 'key'=>'string', 'read_options='=>'array'], -'LevelDB::getApproximateSizes' => ['', 'start'=>'', 'limit'=>''], -'LevelDB::getIterator' => ['LevelDBIterator', 'options='=>'array'], -'LevelDB::getProperty' => ['mixed', 'name'=>'string'], -'LevelDB::getSnapshot' => ['LevelDBSnapshot'], -'LevelDB::put' => ['', 'key'=>'string', 'value'=>'string', 'write_options='=>'array'], -'LevelDB::repair' => ['', 'name'=>'', 'options='=>'array'], -'LevelDB::set' => ['', 'key'=>'string', 'value'=>'string', 'write_options='=>'array'], -'LevelDB::write' => ['', 'batch'=>'LevelDBWriteBatch', 'write_options='=>'array'], -'LevelDBIterator::__construct' => ['void', 'db'=>'LevelDB', 'read_options='=>'array'], -'LevelDBIterator::current' => ['mixed'], -'LevelDBIterator::destroy' => [''], -'LevelDBIterator::getError' => [''], -'LevelDBIterator::key' => ['int|string'], -'LevelDBIterator::last' => [''], -'LevelDBIterator::next' => ['void'], -'LevelDBIterator::prev' => [''], -'LevelDBIterator::rewind' => ['void'], -'LevelDBIterator::seek' => ['', 'key'=>''], -'LevelDBIterator::valid' => ['bool'], -'LevelDBSnapshot::__construct' => ['void', 'db'=>'LevelDB'], -'LevelDBSnapshot::release' => [''], -'LevelDBWriteBatch::__construct' => ['void', 'name'=>'', 'options='=>'array', 'read_options='=>'array', 'write_options='=>'array'], -'LevelDBWriteBatch::clear' => [''], -'LevelDBWriteBatch::delete' => ['', 'key'=>'', 'write_options='=>'array'], -'LevelDBWriteBatch::put' => ['', 'key'=>'', 'value'=>'', 'write_options='=>'array'], -'LevelDBWriteBatch::set' => ['', 'key'=>'', 'value'=>'', 'write_options='=>'array'], -'levenshtein' => ['int', 'string1'=>'string', 'string2'=>'string'], -'levenshtein\'1' => ['int', 'string1'=>'string', 'string2'=>'string', 'insertion_cost'=>'int', 'repetition_cost'=>'int', 'deletion_cost'=>'int'], -'libxml_clear_errors' => ['void'], -'libxml_disable_entity_loader' => ['bool', 'disable='=>'bool'], -'libxml_get_errors' => ['list'], -'libxml_get_last_error' => ['LibXMLError|false'], -'libxml_get_external_entity_loader' => ['(callable(string,string,array{directory:?string,intSubName:?string,extSubURI:?string,extSubSystem:?string}):(resource|string|null))|null'], -'libxml_set_external_entity_loader' => ['bool', 'resolver_function'=>'(callable(string,string,array{directory:?string,intSubName:?string,extSubURI:?string,extSubSystem:?string}):(resource|string|null))|null'], -'libxml_set_streams_context' => ['void', 'context'=>'resource'], -'libxml_use_internal_errors' => ['bool', 'use_errors='=>'?bool'], -'LimitIterator::__construct' => ['void', 'iterator'=>'Iterator', 'offset='=>'int', 'limit='=>'int'], -'LimitIterator::current' => ['mixed'], -'LimitIterator::getInnerIterator' => ['Iterator'], -'LimitIterator::getPosition' => ['int'], -'LimitIterator::key' => ['mixed'], -'LimitIterator::next' => ['void'], -'LimitIterator::rewind' => ['void'], -'LimitIterator::seek' => ['int', 'offset'=>'int'], -'LimitIterator::valid' => ['bool'], -'lineObj::__construct' => ['void'], -'lineObj::add' => ['int', 'point'=>'pointObj'], -'lineObj::addXY' => ['int', 'x'=>'float', 'y'=>'float', 'm'=>'float'], -'lineObj::addXYZ' => ['int', 'x'=>'float', 'y'=>'float', 'z'=>'float', 'm'=>'float'], -'lineObj::ms_newLineObj' => ['lineObj'], -'lineObj::point' => ['pointObj', 'i'=>'int'], -'lineObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], -'link' => ['bool', 'target'=>'string', 'link'=>'string'], -'linkinfo' => ['int|false', 'path'=>'string'], -'litespeed_request_headers' => ['array'], -'litespeed_response_headers' => ['array'], -'Locale::acceptFromHttp' => ['string|false', 'header'=>'string'], -'Locale::canonicalize' => ['?string', 'locale'=>'string'], -'Locale::composeLocale' => ['string', 'subtags'=>'array'], -'Locale::filterMatches' => ['?bool', 'languageTag'=>'string', 'locale'=>'string', 'canonicalize='=>'bool'], -'Locale::getAllVariants' => ['array', 'locale'=>'string'], -'Locale::getDefault' => ['string'], -'Locale::getDisplayLanguage' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'Locale::getDisplayName' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'Locale::getDisplayRegion' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'Locale::getDisplayScript' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'Locale::getDisplayVariant' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'Locale::getKeywords' => ['array|false', 'locale'=>'string'], -'Locale::getPrimaryLanguage' => ['string', 'locale'=>'string'], -'Locale::getRegion' => ['string', 'locale'=>'string'], -'Locale::getScript' => ['string', 'locale'=>'string'], -'Locale::lookup' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'?string'], -'Locale::parseLocale' => ['array', 'locale'=>'string'], -'Locale::setDefault' => ['bool', 'locale'=>'string'], -'locale_accept_from_http' => ['string|false', 'header'=>'string'], -'locale_canonicalize' => ['?string', 'locale'=>'string'], -'locale_compose' => ['string|false', 'subtags'=>'array'], -'locale_filter_matches' => ['?bool', 'languageTag'=>'string', 'locale'=>'string', 'canonicalize='=>'bool'], -'locale_get_all_variants' => ['?array', 'locale'=>'string'], -'locale_get_default' => ['string'], -'locale_get_display_language' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'locale_get_display_name' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'locale_get_display_region' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'locale_get_display_script' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'locale_get_display_variant' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], -'locale_get_keywords' => ['array|false|null', 'locale'=>'string'], -'locale_get_primary_language' => ['?string', 'locale'=>'string'], -'locale_get_region' => ['?string', 'locale'=>'string'], -'locale_get_script' => ['?string', 'locale'=>'string'], -'locale_lookup' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'?string'], -'locale_parse' => ['?array', 'locale'=>'string'], -'locale_set_default' => ['bool', 'locale'=>'string'], -'localeconv' => ['array'], -'localtime' => ['array', 'timestamp='=>'?int', 'associative='=>'bool'], -'log' => ['float', 'num'=>'float', 'base='=>'float'], -'log10' => ['float', 'num'=>'float'], -'log1p' => ['float', 'num'=>'float'], -'LogicException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'LogicException::__toString' => ['string'], -'LogicException::getCode' => ['int'], -'LogicException::getFile' => ['string'], -'LogicException::getLine' => ['int'], -'LogicException::getMessage' => ['string'], -'LogicException::getPrevious' => ['?Throwable'], -'LogicException::getTrace' => ['list\',args?:array}>'], -'LogicException::getTraceAsString' => ['string'], -'long2ip' => ['string', 'ip'=>'int'], -'lstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'filename'=>'string'], -'ltrim' => ['string', 'string'=>'string', 'characters='=>'string'], -'Lua::__call' => ['mixed', 'lua_func'=>'callable', 'args='=>'array', 'use_self='=>'int'], -'Lua::__construct' => ['void', 'lua_script_file'=>'string'], -'Lua::assign' => ['?Lua', 'name'=>'string', 'value'=>'mixed'], -'Lua::call' => ['mixed', 'lua_func'=>'callable', 'args='=>'array', 'use_self='=>'int'], -'Lua::eval' => ['mixed', 'statements'=>'string'], -'Lua::getVersion' => ['string'], -'Lua::include' => ['mixed', 'file'=>'string'], -'Lua::registerCallback' => ['Lua|null|false', 'name'=>'string', 'function'=>'callable'], -'LuaClosure::__invoke' => ['void', 'arg'=>'mixed', '...args='=>'mixed'], -'lzf_compress' => ['string', 'data'=>'string'], -'lzf_decompress' => ['string', 'data'=>'string'], -'lzf_optimized_for' => ['int'], -'magic_quotes_runtime' => ['bool', 'new_setting'=>'bool'], -'mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string'], -'mailparse_determine_best_xfer_encoding' => ['string', 'fp'=>'resource'], -'mailparse_msg_create' => ['resource'], -'mailparse_msg_extract_part' => ['void', 'mimemail'=>'resource', 'msgbody'=>'string', 'callbackfunc='=>'callable'], -'mailparse_msg_extract_part_file' => ['string', 'mimemail'=>'resource', 'filename'=>'mixed', 'callbackfunc='=>'callable'], -'mailparse_msg_extract_whole_part_file' => ['string', 'mimemail'=>'resource', 'filename'=>'string', 'callbackfunc='=>'callable'], -'mailparse_msg_free' => ['bool', 'mimemail'=>'resource'], -'mailparse_msg_get_part' => ['resource', 'mimemail'=>'resource', 'mimesection'=>'string'], -'mailparse_msg_get_part_data' => ['array', 'mimemail'=>'resource'], -'mailparse_msg_get_structure' => ['array', 'mimemail'=>'resource'], -'mailparse_msg_parse' => ['bool', 'mimemail'=>'resource', 'data'=>'string'], -'mailparse_msg_parse_file' => ['resource|false', 'filename'=>'string'], -'mailparse_rfc822_parse_addresses' => ['array', 'addresses'=>'string'], -'mailparse_stream_encode' => ['bool', 'sourcefp'=>'resource', 'destfp'=>'resource', 'encoding'=>'string'], -'mailparse_uudecode_all' => ['array', 'fp'=>'resource'], -'mapObj::__construct' => ['void', 'map_file_name'=>'string', 'new_map_path'=>'string'], -'mapObj::appendOutputFormat' => ['int', 'outputFormat'=>'outputformatObj'], -'mapObj::applyconfigoptions' => ['int'], -'mapObj::applySLD' => ['int', 'sldxml'=>'string'], -'mapObj::applySLDURL' => ['int', 'sldurl'=>'string'], -'mapObj::convertToString' => ['string'], -'mapObj::draw' => ['?imageObj'], -'mapObj::drawLabelCache' => ['int', 'image'=>'imageObj'], -'mapObj::drawLegend' => ['imageObj'], -'mapObj::drawQuery' => ['?imageObj'], -'mapObj::drawReferenceMap' => ['imageObj'], -'mapObj::drawScaleBar' => ['imageObj'], -'mapObj::embedLegend' => ['int', 'image'=>'imageObj'], -'mapObj::embedScalebar' => ['int', 'image'=>'imageObj'], -'mapObj::free' => ['void'], -'mapObj::generateSLD' => ['string'], -'mapObj::getAllGroupNames' => ['array'], -'mapObj::getAllLayerNames' => ['array'], -'mapObj::getColorbyIndex' => ['colorObj', 'iCloIndex'=>'int'], -'mapObj::getConfigOption' => ['string', 'key'=>'string'], -'mapObj::getLabel' => ['labelcacheMemberObj', 'index'=>'int'], -'mapObj::getLayer' => ['layerObj', 'index'=>'int'], -'mapObj::getLayerByName' => ['layerObj', 'layer_name'=>'string'], -'mapObj::getLayersDrawingOrder' => ['array'], -'mapObj::getLayersIndexByGroup' => ['array', 'groupname'=>'string'], -'mapObj::getMetaData' => ['int', 'name'=>'string'], -'mapObj::getNumSymbols' => ['int'], -'mapObj::getOutputFormat' => ['?outputformatObj', 'index'=>'int'], -'mapObj::getProjection' => ['string'], -'mapObj::getSymbolByName' => ['int', 'symbol_name'=>'string'], -'mapObj::getSymbolObjectById' => ['symbolObj', 'symbolid'=>'int'], -'mapObj::loadMapContext' => ['int', 'filename'=>'string', 'unique_layer_name'=>'bool'], -'mapObj::loadOWSParameters' => ['int', 'request'=>'OwsrequestObj', 'version'=>'string'], -'mapObj::moveLayerDown' => ['int', 'layerindex'=>'int'], -'mapObj::moveLayerUp' => ['int', 'layerindex'=>'int'], -'mapObj::ms_newMapObjFromString' => ['mapObj', 'map_file_string'=>'string', 'new_map_path'=>'string'], -'mapObj::offsetExtent' => ['int', 'x'=>'float', 'y'=>'float'], -'mapObj::owsDispatch' => ['int', 'request'=>'OwsrequestObj'], -'mapObj::prepareImage' => ['imageObj'], -'mapObj::prepareQuery' => ['void'], -'mapObj::processLegendTemplate' => ['string', 'params'=>'array'], -'mapObj::processQueryTemplate' => ['string', 'params'=>'array', 'generateimages'=>'bool'], -'mapObj::processTemplate' => ['string', 'params'=>'array', 'generateimages'=>'bool'], -'mapObj::queryByFeatures' => ['int', 'slayer'=>'int'], -'mapObj::queryByIndex' => ['int', 'layerindex'=>'', 'tileindex'=>'', 'shapeindex'=>'', 'addtoquery'=>''], -'mapObj::queryByPoint' => ['int', 'point'=>'pointObj', 'mode'=>'int', 'buffer'=>'float'], -'mapObj::queryByRect' => ['int', 'rect'=>'rectObj'], -'mapObj::queryByShape' => ['int', 'shape'=>'shapeObj'], -'mapObj::removeLayer' => ['layerObj', 'nIndex'=>'int'], -'mapObj::removeMetaData' => ['int', 'name'=>'string'], -'mapObj::removeOutputFormat' => ['int', 'name'=>'string'], -'mapObj::save' => ['int', 'filename'=>'string'], -'mapObj::saveMapContext' => ['int', 'filename'=>'string'], -'mapObj::saveQuery' => ['int', 'filename'=>'string', 'results'=>'int'], -'mapObj::scaleExtent' => ['int', 'zoomfactor'=>'float', 'minscaledenom'=>'float', 'maxscaledenom'=>'float'], -'mapObj::selectOutputFormat' => ['int', 'type'=>'string'], -'mapObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'mapObj::setCenter' => ['int', 'center'=>'pointObj'], -'mapObj::setConfigOption' => ['int', 'key'=>'string', 'value'=>'string'], -'mapObj::setExtent' => ['void', 'minx'=>'float', 'miny'=>'float', 'maxx'=>'float', 'maxy'=>'float'], -'mapObj::setFontSet' => ['int', 'fileName'=>'string'], -'mapObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], -'mapObj::setProjection' => ['int', 'proj_params'=>'string', 'bSetUnitsAndExtents'=>'bool'], -'mapObj::setRotation' => ['int', 'rotation_angle'=>'float'], -'mapObj::setSize' => ['int', 'width'=>'int', 'height'=>'int'], -'mapObj::setSymbolSet' => ['int', 'fileName'=>'string'], -'mapObj::setWKTProjection' => ['int', 'proj_params'=>'string', 'bSetUnitsAndExtents'=>'bool'], -'mapObj::zoomPoint' => ['int', 'nZoomFactor'=>'int', 'oPixelPos'=>'pointObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj'], -'mapObj::zoomRectangle' => ['int', 'oPixelExt'=>'rectObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj'], -'mapObj::zoomScale' => ['int', 'nScaleDenom'=>'float', 'oPixelPos'=>'pointObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj', 'oMaxGeorefExt'=>'rectObj'], -'max' => ['mixed', 'value'=>'non-empty-array'], -'max\'1' => ['mixed', 'value'=>'', 'values'=>'', '...args='=>''], -'mb_check_encoding' => ['bool', 'value'=>'array|string', 'encoding='=>'string|null'], -'mb_chr' => ['non-empty-string|false', 'codepoint'=>'int', 'encoding='=>'string|null'], -'mb_convert_case' => ['string', 'string'=>'string', 'mode'=>'int', 'encoding='=>'string|null'], -'mb_convert_encoding' => ['string|false', 'string'=>'string', 'to_encoding'=>'string', 'from_encoding='=>'array|string|null'], -'mb_convert_encoding\'1' => ['array', 'string'=>'array', 'to_encoding'=>'string', 'from_encoding='=>'array|string|null'], -'mb_convert_kana' => ['string', 'string'=>'string', 'mode='=>'string', 'encoding='=>'string|null'], -'mb_convert_variables' => ['string|false', 'to_encoding'=>'string', 'from_encoding'=>'array|string', '&rw_var'=>'string|array|object', '&...rw_vars='=>'string|array|object'], -'mb_decode_mimeheader' => ['string', 'string'=>'string'], -'mb_decode_numericentity' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string|null'], -'mb_detect_encoding' => ['string|false', 'string'=>'string', 'encodings='=>'array|string|null', 'strict='=>'bool'], -'mb_detect_order' => ['bool|list', 'encoding='=>'array|string|null'], -'mb_encode_mimeheader' => ['string', 'string'=>'string', 'charset='=>'string|null', 'transfer_encoding='=>'string|null', 'newline='=>'string', 'indent='=>'int'], -'mb_encode_numericentity' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string|null', 'hex='=>'bool'], -'mb_encoding_aliases' => ['list', 'encoding'=>'string'], -'mb_ereg' => ['bool', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], -'mb_ereg_match' => ['bool', 'pattern'=>'string', 'string'=>'string', 'options='=>'string|null'], -'mb_ereg_replace' => ['string|false|null', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string|null'], -'mb_ereg_replace_callback' => ['string|false|null', 'pattern'=>'string', 'callback'=>'callable', 'string'=>'string', 'options='=>'string|null'], -'mb_ereg_search' => ['bool', 'pattern='=>'string|null', 'options='=>'string|null'], -'mb_ereg_search_getpos' => ['int'], -'mb_ereg_search_getregs' => ['string[]|false'], -'mb_ereg_search_init' => ['bool', 'string'=>'string', 'pattern='=>'string|null', 'options='=>'string|null'], -'mb_ereg_search_pos' => ['int[]|false', 'pattern='=>'string|null', 'options='=>'string|null'], -'mb_ereg_search_regs' => ['string[]|false', 'pattern='=>'string|null', 'options='=>'string|null'], -'mb_ereg_search_setpos' => ['bool', 'offset'=>'int'], -'mb_eregi' => ['bool', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], -'mb_eregi_replace' => ['string|false|null', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string|null'], -'mb_get_info' => ['array|string|int|false|null', 'type='=>'string'], -'mb_http_input' => ['array|string|false', 'type='=>'string|null'], -'mb_http_output' => ['string|bool', 'encoding='=>'string|null'], -'mb_internal_encoding' => ['string|bool', 'encoding='=>'string|null'], -'mb_language' => ['string|bool', 'language='=>'string|null'], -'mb_list_encodings' => ['list'], -'mb_ord' => ['int|false', 'string'=>'string', 'encoding='=>'string|null'], -'mb_output_handler' => ['string', 'string'=>'string', 'status'=>'int'], -'mb_parse_str' => ['bool', 'string'=>'string', '&w_result'=>'array'], -'mb_preferred_mime_name' => ['string|false', 'encoding'=>'string'], -'mb_regex_encoding' => ['string|bool', 'encoding='=>'string|null'], -'mb_regex_set_options' => ['string', 'options='=>'string|null'], -'mb_scrub' => ['string', 'string'=>'string', 'encoding='=>'string|null'], -'mb_send_mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string|null'], -'mb_split' => ['list|false', 'pattern'=>'string', 'string'=>'string', 'limit='=>'int'], -'mb_str_split' => ['list', 'string'=>'string', 'length='=>'positive-int', 'encoding='=>'string|null'], -'mb_strcut' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string|null'], -'mb_strimwidth' => ['string', 'string'=>'string', 'start'=>'int', 'width'=>'int', 'trim_marker='=>'string', 'encoding='=>'string|null'], -'mb_stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], -'mb_stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], -'mb_strlen' => ['0|positive-int', 'string'=>'string', 'encoding='=>'string|null'], -'mb_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], -'mb_strrchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], -'mb_strrichr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], -'mb_strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], -'mb_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], -'mb_strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], -'mb_strtolower' => ['lowercase-string', 'string'=>'string', 'encoding='=>'string|null'], -'mb_strtoupper' => ['string', 'string'=>'string', 'encoding='=>'string|null'], -'mb_strwidth' => ['int', 'string'=>'string', 'encoding='=>'string|null'], -'mb_substitute_character' => ['bool|int|string', 'substitute_character='=>'int|string|null'], -'mb_substr' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string|null'], -'mb_substr_count' => ['int', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string|null'], -'mcrypt_cbc' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], -'mcrypt_cfb' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], -'mcrypt_create_iv' => ['string|false', 'size'=>'int', 'source='=>'int'], -'mcrypt_decrypt' => ['string', 'cipher'=>'string', 'key'=>'string', 'data'=>'string', 'mode'=>'string', 'iv='=>'string'], -'mcrypt_ecb' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], -'mcrypt_enc_get_algorithms_name' => ['string', 'td'=>'resource'], -'mcrypt_enc_get_block_size' => ['int', 'td'=>'resource'], -'mcrypt_enc_get_iv_size' => ['int', 'td'=>'resource'], -'mcrypt_enc_get_key_size' => ['int', 'td'=>'resource'], -'mcrypt_enc_get_modes_name' => ['string', 'td'=>'resource'], -'mcrypt_enc_get_supported_key_sizes' => ['array', 'td'=>'resource'], -'mcrypt_enc_is_block_algorithm' => ['bool', 'td'=>'resource'], -'mcrypt_enc_is_block_algorithm_mode' => ['bool', 'td'=>'resource'], -'mcrypt_enc_is_block_mode' => ['bool', 'td'=>'resource'], -'mcrypt_enc_self_test' => ['int|false', 'td'=>'resource'], -'mcrypt_encrypt' => ['string', 'cipher'=>'string', 'key'=>'string', 'data'=>'string', 'mode'=>'string', 'iv='=>'string'], -'mcrypt_generic' => ['string', 'td'=>'resource', 'data'=>'string'], -'mcrypt_generic_deinit' => ['bool', 'td'=>'resource'], -'mcrypt_generic_end' => ['bool', 'td'=>'resource'], -'mcrypt_generic_init' => ['int|false', 'td'=>'resource', 'key'=>'string', 'iv'=>'string'], -'mcrypt_get_block_size' => ['int', 'cipher'=>'int|string', 'module'=>'string'], -'mcrypt_get_cipher_name' => ['string|false', 'cipher'=>'int|string'], -'mcrypt_get_iv_size' => ['int|false', 'cipher'=>'int|string', 'module'=>'string'], -'mcrypt_get_key_size' => ['int', 'cipher'=>'int|string', 'module'=>'string'], -'mcrypt_list_algorithms' => ['array', 'lib_dir='=>'string'], -'mcrypt_list_modes' => ['array', 'lib_dir='=>'string'], -'mcrypt_module_close' => ['bool', 'td'=>'resource'], -'mcrypt_module_get_algo_block_size' => ['int', 'algorithm'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_get_algo_key_size' => ['int', 'algorithm'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_get_supported_key_sizes' => ['array', 'algorithm'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_is_block_algorithm' => ['bool', 'algorithm'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_is_block_algorithm_mode' => ['bool', 'mode'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_is_block_mode' => ['bool', 'mode'=>'string', 'lib_dir='=>'string'], -'mcrypt_module_open' => ['resource|false', 'cipher'=>'string', 'cipher_directory'=>'string', 'mode'=>'string', 'mode_directory'=>'string'], -'mcrypt_module_self_test' => ['bool', 'algorithm'=>'string', 'lib_dir='=>'string'], -'mcrypt_ofb' => ['string', 'cipher'=>'int|string', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], -'md5' => ['non-falsy-string', 'string'=>'string', 'binary='=>'bool'], -'md5_file' => ['non-falsy-string|false', 'filename'=>'string', 'binary='=>'bool'], -'mdecrypt_generic' => ['string', 'td'=>'resource', 'data'=>'string'], -'Memcache::add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'Memcache::addServer' => ['bool', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable', 'timeoutms='=>'int'], -'Memcache::append' => [''], -'Memcache::cas' => [''], -'Memcache::close' => ['bool'], -'Memcache::connect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], -'Memcache::decrement' => ['int', 'key'=>'string', 'value='=>'int'], -'Memcache::delete' => ['bool', 'key'=>'string', 'timeout='=>'int'], -'Memcache::findServer' => [''], -'Memcache::flush' => ['bool'], -'Memcache::get' => ['string|array|false', 'key'=>'string', 'flags='=>'array', 'keys='=>'array'], -'Memcache::get\'1' => ['array', 'key'=>'string[]', 'flags='=>'int[]'], -'Memcache::getExtendedStats' => ['false|array>', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'Memcache::getServerStatus' => ['int', 'host'=>'string', 'port='=>'int'], -'Memcache::getStats' => ['array', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'Memcache::getVersion' => ['string'], -'Memcache::increment' => ['int', 'key'=>'string', 'value='=>'int'], -'Memcache::pconnect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], -'Memcache::prepend' => ['string'], -'Memcache::replace' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'Memcache::set' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'Memcache::setCompressThreshold' => ['bool', 'threshold'=>'int', 'min_savings='=>'float'], -'Memcache::setFailureCallback' => [''], -'Memcache::setServerParams' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable'], -'memcache_add' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'memcache_add_server' => ['bool', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable', 'timeoutms='=>'int'], -'memcache_append' => ['', 'memcache_obj'=>'Memcache'], -'memcache_cas' => ['', 'memcache_obj'=>'Memcache'], -'memcache_close' => ['bool', 'memcache_obj'=>'Memcache'], -'memcache_connect' => ['Memcache|false', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], -'memcache_debug' => ['bool', 'on_off'=>'bool'], -'memcache_decrement' => ['int', 'memcache_obj'=>'Memcache', 'key'=>'string', 'value='=>'int'], -'memcache_delete' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'timeout='=>'int'], -'memcache_flush' => ['bool', 'memcache_obj'=>'Memcache'], -'memcache_get' => ['string', 'memcache_obj'=>'Memcache', 'key'=>'string', 'flags='=>'int'], -'memcache_get\'1' => ['array', 'memcache_obj'=>'Memcache', 'key'=>'string[]', 'flags='=>'int[]'], -'memcache_get_extended_stats' => ['array', 'memcache_obj'=>'Memcache', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'memcache_get_server_status' => ['int', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int'], -'memcache_get_stats' => ['array', 'memcache_obj'=>'Memcache', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'memcache_get_version' => ['string', 'memcache_obj'=>'Memcache'], -'memcache_increment' => ['int', 'memcache_obj'=>'Memcache', 'key'=>'string', 'value='=>'int'], -'memcache_pconnect' => ['Memcache|false', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], -'memcache_prepend' => ['string', 'memcache_obj'=>'Memcache'], -'memcache_replace' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'memcache_set' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'memcache_set_compress_threshold' => ['bool', 'memcache_obj'=>'Memcache', 'threshold'=>'int', 'min_savings='=>'float'], -'memcache_set_failure_callback' => ['', 'memcache_obj'=>'Memcache'], -'memcache_set_server_params' => ['bool', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable'], -'Memcached::__construct' => ['void', 'persistent_id='=>'?string', 'callback='=>'?callable', 'connection_str='=>'?string'], -'Memcached::add' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::addByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::addServer' => ['bool', 'host'=>'string', 'port'=>'int', 'weight='=>'int'], -'Memcached::addServers' => ['bool', 'servers'=>'array'], -'Memcached::append' => ['?bool', 'key'=>'string', 'value'=>'string'], -'Memcached::appendByKey' => ['?bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'string'], -'Memcached::cas' => ['bool', 'cas_token'=>'string|int|float', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::casByKey' => ['bool', 'cas_token'=>'string|int|float', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::decrement' => ['int|false', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], -'Memcached::decrementByKey' => ['int|false', 'server_key'=>'string', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], -'Memcached::delete' => ['bool', 'key'=>'string', 'time='=>'int'], -'Memcached::deleteByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'time='=>'int'], -'Memcached::deleteMulti' => ['array', 'keys'=>'array', 'time='=>'int'], -'Memcached::deleteMultiByKey' => ['array', 'server_key'=>'string', 'keys'=>'array', 'time='=>'int'], -'Memcached::fetch' => ['array|false'], -'Memcached::fetchAll' => ['array|false'], -'Memcached::flush' => ['bool', 'delay='=>'int'], -'Memcached::flushBuffers' => ['bool'], -'Memcached::get' => ['mixed|false', 'key'=>'string', 'cache_cb='=>'?callable', 'get_flags='=>'int'], -'Memcached::getAllKeys' => ['array|false'], -'Memcached::getByKey' => ['mixed|false', 'server_key'=>'string', 'key'=>'string', 'cache_cb='=>'?callable', 'get_flags='=>'int'], -'Memcached::getDelayed' => ['bool', 'keys'=>'array', 'with_cas='=>'bool', 'value_cb='=>'?callable'], -'Memcached::getDelayedByKey' => ['bool', 'server_key'=>'string', 'keys'=>'array', 'with_cas='=>'bool', 'value_cb='=>'?callable'], -'Memcached::getLastDisconnectedServer' => ['array|false'], -'Memcached::getLastErrorCode' => ['int'], -'Memcached::getLastErrorErrno' => ['int'], -'Memcached::getLastErrorMessage' => ['string'], -'Memcached::getMulti' => ['array|false', 'keys'=>'array', 'get_flags='=>'int'], -'Memcached::getMultiByKey' => ['array|false', 'server_key'=>'string', 'keys'=>'array', 'get_flags='=>'int'], -'Memcached::getOption' => ['mixed|false', 'option'=>'int'], -'Memcached::getResultCode' => ['int'], -'Memcached::getResultMessage' => ['string'], -'Memcached::getServerByKey' => ['array', 'server_key'=>'string'], -'Memcached::getServerList' => ['array'], -'Memcached::getStats' => ['false|array>', 'type='=>'?string'], -'Memcached::getVersion' => ['array'], -'Memcached::increment' => ['int|false', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], -'Memcached::incrementByKey' => ['int|false', 'server_key'=>'string', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], -'Memcached::isPersistent' => ['bool'], -'Memcached::isPristine' => ['bool'], -'Memcached::prepend' => ['?bool', 'key'=>'string', 'value'=>'string'], -'Memcached::prependByKey' => ['?bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'string'], -'Memcached::quit' => ['bool'], -'Memcached::replace' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::replaceByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::resetServerList' => ['bool'], -'Memcached::set' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::setBucket' => ['bool', 'host_map'=>'array', 'forward_map'=>'?array', 'replicas'=>'int'], -'Memcached::setByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], -'Memcached::setEncodingKey' => ['bool', 'key'=>'string'], -'Memcached::setMulti' => ['bool', 'items'=>'array', 'expiration='=>'int'], -'Memcached::setMultiByKey' => ['bool', 'server_key'=>'string', 'items'=>'array', 'expiration='=>'int'], -'Memcached::setOption' => ['bool', 'option'=>'int', 'value'=>'mixed'], -'Memcached::setOptions' => ['bool', 'options'=>'array'], -'Memcached::setSaslAuthData' => ['bool', 'username'=>'string', 'password'=>'string'], -'Memcached::touch' => ['bool', 'key'=>'string', 'expiration='=>'int'], -'Memcached::touchByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'expiration='=>'int'], -'MemcachePool::add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'MemcachePool::addServer' => ['bool', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'?callable', 'timeoutms='=>'int'], -'MemcachePool::append' => [''], -'MemcachePool::cas' => [''], -'MemcachePool::close' => ['bool'], -'MemcachePool::connect' => ['bool', 'host'=>'string', 'port'=>'int', 'timeout='=>'int'], -'MemcachePool::decrement' => ['int|false', 'key'=>'', 'value='=>'int|mixed'], -'MemcachePool::delete' => ['bool', 'key'=>'', 'timeout='=>'int|mixed'], -'MemcachePool::findServer' => [''], -'MemcachePool::flush' => ['bool'], -'MemcachePool::get' => ['array|string|false', 'key'=>'array|string', '&flags='=>'array|int'], -'MemcachePool::getExtendedStats' => ['false|array>', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'MemcachePool::getServerStatus' => ['int', 'host'=>'string', 'port='=>'int'], -'MemcachePool::getStats' => ['array|false', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], -'MemcachePool::getVersion' => ['string|false'], -'MemcachePool::increment' => ['int|false', 'key'=>'', 'value='=>'int|mixed'], -'MemcachePool::prepend' => ['string'], -'MemcachePool::replace' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'MemcachePool::set' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], -'MemcachePool::setCompressThreshold' => ['bool', 'thresold'=>'int', 'min_saving='=>'float'], -'MemcachePool::setFailureCallback' => [''], -'MemcachePool::setServerParams' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'?callable'], -'memory_get_peak_usage' => ['int', 'real_usage='=>'bool'], -'memory_get_usage' => ['int', 'real_usage='=>'bool'], -'memory_reset_peak_usage' => ['void'], -'MessageFormatter::__construct' => ['void', 'locale'=>'string', 'pattern'=>'string'], -'MessageFormatter::create' => ['MessageFormatter', 'locale'=>'string', 'pattern'=>'string'], -'MessageFormatter::format' => ['false|string', 'values'=>'array'], -'MessageFormatter::formatMessage' => ['false|string', 'locale'=>'string', 'pattern'=>'string', 'values'=>'array'], -'MessageFormatter::getErrorCode' => ['int'], -'MessageFormatter::getErrorMessage' => ['string'], -'MessageFormatter::getLocale' => ['string'], -'MessageFormatter::getPattern' => ['string'], -'MessageFormatter::parse' => ['array|false', 'string'=>'string'], -'MessageFormatter::parseMessage' => ['array|false', 'locale'=>'string', 'pattern'=>'string', 'message'=>'string'], -'MessageFormatter::setPattern' => ['bool', 'pattern'=>'string'], -'metaphone' => ['string', 'string'=>'string', 'max_phonemes='=>'int'], -'method_exists' => ['bool', 'object_or_class'=>'object|class-string|interface-string|enum-string', 'method'=>'string'], -'mhash' => ['string', 'algo'=>'int', 'data'=>'string', 'key='=>'?string'], -'mhash_count' => ['int'], -'mhash_get_block_size' => ['int|false', 'algo'=>'int'], -'mhash_get_hash_name' => ['string|false', 'algo'=>'int'], -'mhash_keygen_s2k' => ['string|false', 'algo'=>'int', 'password'=>'string', 'salt'=>'string', 'length'=>'int'], -'microtime' => ['string', 'as_float='=>'false'], -'microtime\'1' => ['float', 'as_float='=>'true'], -'mime_content_type' => ['string|false', 'filename'=>'string|resource'], -'min' => ['mixed', 'value'=>'non-empty-array'], -'min\'1' => ['mixed', 'value'=>'', 'values'=>'', '...args='=>''], -'ming_keypress' => ['int', 'char'=>'string'], -'ming_setcubicthreshold' => ['void', 'threshold'=>'int'], -'ming_setscale' => ['void', 'scale'=>'float'], -'ming_setswfcompression' => ['void', 'level'=>'int'], -'ming_useconstants' => ['void', 'use'=>'int'], -'ming_useswfversion' => ['void', 'version'=>'int'], -'mkdir' => ['bool', 'directory'=>'string', 'permissions='=>'int', 'recursive='=>'bool', 'context='=>'null|resource'], -'mktime' => ['int|false', 'hour'=>'int', 'minute='=>'int|null', 'second='=>'int|null', 'month='=>'int|null', 'day='=>'int|null', 'year='=>'int|null'], -'money_format' => ['string', 'format'=>'string', 'value'=>'float'], -'Mongo::__construct' => ['void', 'server='=>'string', 'options='=>'array', 'driver_options='=>'array'], -'Mongo::__get' => ['MongoDB', 'dbname'=>'string'], -'Mongo::__toString' => ['string'], -'Mongo::close' => ['bool'], -'Mongo::connect' => ['bool'], -'Mongo::connectUtil' => ['bool'], -'Mongo::dropDB' => ['array', 'db'=>'mixed'], -'Mongo::forceError' => ['bool'], -'Mongo::getConnections' => ['array'], -'Mongo::getHosts' => ['array'], -'Mongo::getPoolSize' => ['int'], -'Mongo::getReadPreference' => ['array'], -'Mongo::getSlave' => ['?string'], -'Mongo::getSlaveOkay' => ['bool'], -'Mongo::getWriteConcern' => ['array'], -'Mongo::killCursor' => ['', 'server_hash'=>'string', 'id'=>'MongoInt64|int'], -'Mongo::lastError' => ['?array'], -'Mongo::listDBs' => ['array'], -'Mongo::pairConnect' => ['bool'], -'Mongo::pairPersistConnect' => ['bool', 'username='=>'string', 'password='=>'string'], -'Mongo::persistConnect' => ['bool', 'username='=>'string', 'password='=>'string'], -'Mongo::poolDebug' => ['array'], -'Mongo::prevError' => ['array'], -'Mongo::resetError' => ['array'], -'Mongo::selectCollection' => ['MongoCollection', 'db'=>'string', 'collection'=>'string'], -'Mongo::selectDB' => ['MongoDB', 'name'=>'string'], -'Mongo::setPoolSize' => ['bool', 'size'=>'int'], -'Mongo::setReadPreference' => ['bool', 'readPreference'=>'string', 'tags='=>'array'], -'Mongo::setSlaveOkay' => ['bool', 'ok='=>'bool'], -'Mongo::switchSlave' => ['string'], -'MongoBinData::__construct' => ['void', 'data'=>'string', 'type='=>'int'], -'MongoBinData::__toString' => ['string'], -'MongoClient::__construct' => ['void', 'server='=>'string', 'options='=>'array', 'driver_options='=>'array'], -'MongoClient::__get' => ['MongoDB', 'dbname'=>'string'], -'MongoClient::__toString' => ['string'], -'MongoClient::close' => ['bool', 'connection='=>'bool|string'], -'MongoClient::connect' => ['bool'], -'MongoClient::dropDB' => ['array', 'db'=>'mixed'], -'MongoClient::getConnections' => ['array'], -'MongoClient::getHosts' => ['array'], -'MongoClient::getReadPreference' => ['array'], -'MongoClient::getWriteConcern' => ['array'], -'MongoClient::killCursor' => ['bool', 'server_hash'=>'string', 'id'=>'int|MongoInt64'], -'MongoClient::listDBs' => ['array'], -'MongoClient::selectCollection' => ['MongoCollection', 'db'=>'string', 'collection'=>'string'], -'MongoClient::selectDB' => ['MongoDB', 'name'=>'string'], -'MongoClient::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], -'MongoClient::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], -'MongoClient::switchSlave' => ['string'], -'MongoCode::__construct' => ['void', 'code'=>'string', 'scope='=>'array'], -'MongoCode::__toString' => ['string'], -'MongoCollection::__construct' => ['void', 'db'=>'MongoDB', 'name'=>'string'], -'MongoCollection::__get' => ['MongoCollection', 'name'=>'string'], -'MongoCollection::__toString' => ['string'], -'MongoCollection::aggregate' => ['array', 'op'=>'array', 'op='=>'array', '...args='=>'array'], -'MongoCollection::aggregate\'1' => ['array', 'pipeline'=>'array', 'options='=>'array'], -'MongoCollection::aggregateCursor' => ['MongoCommandCursor', 'command'=>'array', 'options='=>'array'], -'MongoCollection::batchInsert' => ['array|bool', 'a'=>'array', 'options='=>'array'], -'MongoCollection::count' => ['int', 'query='=>'array', 'limit='=>'int', 'skip='=>'int'], -'MongoCollection::createDBRef' => ['array', 'a'=>'array'], -'MongoCollection::createIndex' => ['array', 'keys'=>'array', 'options='=>'array'], -'MongoCollection::deleteIndex' => ['array', 'keys'=>'string|array'], -'MongoCollection::deleteIndexes' => ['array'], -'MongoCollection::distinct' => ['array|false', 'key'=>'string', 'query='=>'array'], -'MongoCollection::drop' => ['array'], -'MongoCollection::ensureIndex' => ['bool', 'keys'=>'array', 'options='=>'array'], -'MongoCollection::find' => ['MongoCursor', 'query='=>'array', 'fields='=>'array'], -'MongoCollection::findAndModify' => ['array', 'query'=>'array', 'update='=>'array', 'fields='=>'array', 'options='=>'array'], -'MongoCollection::findOne' => ['?array', 'query='=>'array', 'fields='=>'array'], -'MongoCollection::getDBRef' => ['array', 'ref'=>'array'], -'MongoCollection::getIndexInfo' => ['array'], -'MongoCollection::getName' => ['string'], -'MongoCollection::getReadPreference' => ['array'], -'MongoCollection::getSlaveOkay' => ['bool'], -'MongoCollection::getWriteConcern' => ['array'], -'MongoCollection::group' => ['array', 'keys'=>'mixed', 'initial'=>'array', 'reduce'=>'MongoCode', 'options='=>'array'], -'MongoCollection::insert' => ['bool|array', 'a'=>'array|object', 'options='=>'array'], -'MongoCollection::parallelCollectionScan' => ['MongoCommandCursor[]', 'num_cursors'=>'int'], -'MongoCollection::remove' => ['bool|array', 'criteria='=>'array', 'options='=>'array'], -'MongoCollection::save' => ['bool|array', 'a'=>'array|object', 'options='=>'array'], -'MongoCollection::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], -'MongoCollection::setSlaveOkay' => ['bool', 'ok='=>'bool'], -'MongoCollection::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], -'MongoCollection::toIndexString' => ['string', 'keys'=>'mixed'], -'MongoCollection::update' => ['bool', 'criteria'=>'array', 'newobj'=>'array', 'options='=>'array'], -'MongoCollection::validate' => ['array', 'scan_data='=>'bool'], -'MongoCommandCursor::__construct' => ['void', 'connection'=>'MongoClient', 'ns'=>'string', 'command'=>'array'], -'MongoCommandCursor::batchSize' => ['MongoCommandCursor', 'batchSize'=>'int'], -'MongoCommandCursor::createFromDocument' => ['MongoCommandCursor', 'connection'=>'MongoClient', 'hash'=>'string', 'document'=>'array'], -'MongoCommandCursor::current' => ['array'], -'MongoCommandCursor::dead' => ['bool'], -'MongoCommandCursor::getReadPreference' => ['array'], -'MongoCommandCursor::info' => ['array'], -'MongoCommandCursor::key' => ['int'], -'MongoCommandCursor::next' => ['void'], -'MongoCommandCursor::rewind' => ['array'], -'MongoCommandCursor::setReadPreference' => ['MongoCommandCursor', 'read_preference'=>'string', 'tags='=>'array'], -'MongoCommandCursor::timeout' => ['MongoCommandCursor', 'ms'=>'int'], -'MongoCommandCursor::valid' => ['bool'], -'MongoCursor::__construct' => ['void', 'connection'=>'MongoClient', 'ns'=>'string', 'query='=>'array', 'fields='=>'array'], -'MongoCursor::addOption' => ['MongoCursor', 'key'=>'string', 'value'=>'mixed'], -'MongoCursor::awaitData' => ['MongoCursor', 'wait='=>'bool'], -'MongoCursor::batchSize' => ['MongoCursor', 'num'=>'int'], -'MongoCursor::count' => ['int', 'foundonly='=>'bool'], -'MongoCursor::current' => ['array'], -'MongoCursor::dead' => ['bool'], -'MongoCursor::doQuery' => ['void'], -'MongoCursor::explain' => ['array'], -'MongoCursor::fields' => ['MongoCursor', 'f'=>'array'], -'MongoCursor::getNext' => ['array'], -'MongoCursor::getReadPreference' => ['array'], -'MongoCursor::hasNext' => ['bool'], -'MongoCursor::hint' => ['MongoCursor', 'key_pattern'=>'string|array|object'], -'MongoCursor::immortal' => ['MongoCursor', 'liveforever='=>'bool'], -'MongoCursor::info' => ['array'], -'MongoCursor::key' => ['string'], -'MongoCursor::limit' => ['MongoCursor', 'num'=>'int'], -'MongoCursor::maxTimeMS' => ['MongoCursor', 'ms'=>'int'], -'MongoCursor::next' => ['array'], -'MongoCursor::partial' => ['MongoCursor', 'okay='=>'bool'], -'MongoCursor::reset' => ['void'], -'MongoCursor::rewind' => ['void'], -'MongoCursor::setFlag' => ['MongoCursor', 'flag'=>'int', 'set='=>'bool'], -'MongoCursor::setReadPreference' => ['MongoCursor', 'read_preference'=>'string', 'tags='=>'array'], -'MongoCursor::skip' => ['MongoCursor', 'num'=>'int'], -'MongoCursor::slaveOkay' => ['MongoCursor', 'okay='=>'bool'], -'MongoCursor::snapshot' => ['MongoCursor'], -'MongoCursor::sort' => ['MongoCursor', 'fields'=>'array'], -'MongoCursor::tailable' => ['MongoCursor', 'tail='=>'bool'], -'MongoCursor::timeout' => ['MongoCursor', 'ms'=>'int'], -'MongoCursor::valid' => ['bool'], -'MongoCursorException::__clone' => ['void'], -'MongoCursorException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'MongoCursorException::__toString' => ['string'], -'MongoCursorException::__wakeup' => ['void'], -'MongoCursorException::getCode' => ['int'], -'MongoCursorException::getFile' => ['string'], -'MongoCursorException::getHost' => ['string'], -'MongoCursorException::getLine' => ['int'], -'MongoCursorException::getMessage' => ['string'], -'MongoCursorException::getPrevious' => ['Exception|Throwable'], -'MongoCursorException::getTrace' => ['list\',args?:array}>'], -'MongoCursorException::getTraceAsString' => ['string'], -'MongoCursorInterface::__construct' => ['void'], -'MongoCursorInterface::batchSize' => ['MongoCursorInterface', 'batchSize'=>'int'], -'MongoCursorInterface::current' => ['mixed'], -'MongoCursorInterface::dead' => ['bool'], -'MongoCursorInterface::getReadPreference' => ['array'], -'MongoCursorInterface::info' => ['array'], -'MongoCursorInterface::key' => ['int|string'], -'MongoCursorInterface::next' => ['void'], -'MongoCursorInterface::rewind' => ['void'], -'MongoCursorInterface::setReadPreference' => ['MongoCursorInterface', 'read_preference'=>'string', 'tags='=>'array'], -'MongoCursorInterface::timeout' => ['MongoCursorInterface', 'ms'=>'int'], -'MongoCursorInterface::valid' => ['bool'], -'MongoDate::__construct' => ['void', 'second='=>'int', 'usecond='=>'int'], -'MongoDate::__toString' => ['string'], -'MongoDate::toDateTime' => ['DateTime'], -'MongoDB::__construct' => ['void', 'conn'=>'MongoClient', 'name'=>'string'], -'MongoDB::__get' => ['MongoCollection', 'name'=>'string'], -'MongoDB::__toString' => ['string'], -'MongoDB::authenticate' => ['array', 'username'=>'string', 'password'=>'string'], -'MongoDB::command' => ['array', 'command'=>'array'], -'MongoDB::createCollection' => ['MongoCollection', 'name'=>'string', 'capped='=>'bool', 'size='=>'int', 'max='=>'int'], -'MongoDB::createDBRef' => ['array', 'collection'=>'string', 'a'=>'mixed'], -'MongoDB::drop' => ['array'], -'MongoDB::dropCollection' => ['array', 'coll'=>'MongoCollection|string'], -'MongoDB::execute' => ['array', 'code'=>'MongoCode|string', 'args='=>'array'], -'MongoDB::forceError' => ['bool'], -'MongoDB::getCollectionInfo' => ['array', 'options='=>'array'], -'MongoDB::getCollectionNames' => ['array', 'options='=>'array'], -'MongoDB::getDBRef' => ['array', 'ref'=>'array'], -'MongoDB::getGridFS' => ['MongoGridFS', 'prefix='=>'string'], -'MongoDB::getProfilingLevel' => ['int'], -'MongoDB::getReadPreference' => ['array'], -'MongoDB::getSlaveOkay' => ['bool'], -'MongoDB::getWriteConcern' => ['array'], -'MongoDB::lastError' => ['array'], -'MongoDB::listCollections' => ['array'], -'MongoDB::prevError' => ['array'], -'MongoDB::repair' => ['array', 'preserve_cloned_files='=>'bool', 'backup_original_files='=>'bool'], -'MongoDB::resetError' => ['array'], -'MongoDB::selectCollection' => ['MongoCollection', 'name'=>'string'], -'MongoDB::setProfilingLevel' => ['int', 'level'=>'int'], -'MongoDB::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], -'MongoDB::setSlaveOkay' => ['bool', 'ok='=>'bool'], -'MongoDB::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], -'MongoDB\BSON\fromJSON' => ['string', 'json' => 'string'], -'MongoDB\BSON\fromPHP' => ['string', 'value' => 'object|array'], -'MongoDB\BSON\toCanonicalExtendedJSON' => ['string', 'bson' => 'string'], -'MongoDB\BSON\toJSON' => ['string', 'bson' => 'string'], -'MongoDB\BSON\toPHP' => ['object|array', 'bson' => 'string', 'typemap=' => '?array'], -'MongoDB\BSON\toRelaxedExtendedJSON' => ['string', 'bson' => 'string'], -'MongoDB\Driver\Monitoring\addSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], -'MongoDB\Driver\Monitoring\removeSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], -'MongoDB\BSON\Binary::__construct' => ['void', 'data' => 'string', 'type=' => 'int'], -'MongoDB\BSON\Binary::getData' => ['string'], -'MongoDB\BSON\Binary::getType' => ['int'], -'MongoDB\BSON\Binary::__toString' => ['string'], -'MongoDB\BSON\Binary::serialize' => ['string'], -'MongoDB\BSON\Binary::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Binary::jsonSerialize' => ['mixed'], -'MongoDB\BSON\BinaryInterface::getData' => ['string'], -'MongoDB\BSON\BinaryInterface::getType' => ['int'], -'MongoDB\BSON\BinaryInterface::__toString' => ['string'], -'MongoDB\BSON\DBPointer::__toString' => ['string'], -'MongoDB\BSON\DBPointer::serialize' => ['string'], -'MongoDB\BSON\DBPointer::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\DBPointer::jsonSerialize' => ['mixed'], -'MongoDB\BSON\Decimal128::__construct' => ['void', 'value' => 'string'], -'MongoDB\BSON\Decimal128::__toString' => ['string'], -'MongoDB\BSON\Decimal128::serialize' => ['string'], -'MongoDB\BSON\Decimal128::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Decimal128::jsonSerialize' => ['mixed'], -'MongoDB\BSON\Decimal128Interface::__toString' => ['string'], -'MongoDB\BSON\Document::fromBSON' => ['MongoDB\BSON\Document', 'bson' => 'string'], -'MongoDB\BSON\Document::fromJSON' => ['MongoDB\BSON\Document', 'json' => 'string'], -'MongoDB\BSON\Document::fromPHP' => ['MongoDB\BSON\Document', 'value' => 'object|array'], -'MongoDB\BSON\Document::get' => ['mixed', 'key' => 'string'], -'MongoDB\BSON\Document::getIterator' => ['MongoDB\BSON\Iterator'], -'MongoDB\BSON\Document::has' => ['bool', 'key' => 'string'], -'MongoDB\BSON\Document::toPHP' => ['object|array', 'typeMap=' => '?array'], -'MongoDB\BSON\Document::toCanonicalExtendedJSON' => ['string'], -'MongoDB\BSON\Document::toRelaxedExtendedJSON' => ['string'], -'MongoDB\BSON\Document::offsetExists' => ['bool', 'offset' => 'mixed'], -'MongoDB\BSON\Document::offsetGet' => ['mixed', 'offset' => 'mixed'], -'MongoDB\BSON\Document::offsetSet' => ['void', 'offset' => 'mixed', 'value' => 'mixed'], -'MongoDB\BSON\Document::offsetUnset' => ['void', 'offset' => 'mixed'], -'MongoDB\BSON\Document::__toString' => ['string'], -'MongoDB\BSON\Document::serialize' => ['string'], -'MongoDB\BSON\Document::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Int64::__construct' => ['void', 'value' => 'string|int'], -'MongoDB\BSON\Int64::__toString' => ['string'], -'MongoDB\BSON\Int64::serialize' => ['string'], -'MongoDB\BSON\Int64::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Int64::jsonSerialize' => ['mixed'], -'MongoDB\BSON\Iterator::current' => ['mixed'], -'MongoDB\BSON\Iterator::key' => ['string|int'], -'MongoDB\BSON\Iterator::next' => ['void'], -'MongoDB\BSON\Iterator::rewind' => ['void'], -'MongoDB\BSON\Iterator::valid' => ['bool'], -'MongoDB\BSON\Javascript::__construct' => ['void', 'code' => 'string', 'scope=' => 'object|array|null'], -'MongoDB\BSON\Javascript::getCode' => ['string'], -'MongoDB\BSON\Javascript::getScope' => ['?object'], -'MongoDB\BSON\Javascript::__toString' => ['string'], -'MongoDB\BSON\Javascript::serialize' => ['string'], -'MongoDB\BSON\Javascript::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Javascript::jsonSerialize' => ['mixed'], -'MongoDB\BSON\JavascriptInterface::getCode' => ['string'], -'MongoDB\BSON\JavascriptInterface::getScope' => ['?object'], -'MongoDB\BSON\JavascriptInterface::__toString' => ['string'], -'MongoDB\BSON\MaxKey::serialize' => ['string'], -'MongoDB\BSON\MaxKey::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\MaxKey::jsonSerialize' => ['mixed'], -'MongoDB\BSON\MinKey::serialize' => ['string'], -'MongoDB\BSON\MinKey::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\MinKey::jsonSerialize' => ['mixed'], -'MongoDB\BSON\ObjectId::__construct' => ['void', 'id=' => '?string'], -'MongoDB\BSON\ObjectId::getTimestamp' => ['int'], -'MongoDB\BSON\ObjectId::__toString' => ['string'], -'MongoDB\BSON\ObjectId::serialize' => ['string'], -'MongoDB\BSON\ObjectId::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\ObjectId::jsonSerialize' => ['mixed'], -'MongoDB\BSON\ObjectIdInterface::getTimestamp' => ['int'], -'MongoDB\BSON\ObjectIdInterface::__toString' => ['string'], -'MongoDB\BSON\PackedArray::fromPHP' => ['MongoDB\BSON\PackedArray', 'value' => 'array'], -'MongoDB\BSON\PackedArray::get' => ['mixed', 'index' => 'int'], -'MongoDB\BSON\PackedArray::getIterator' => ['MongoDB\BSON\Iterator'], -'MongoDB\BSON\PackedArray::has' => ['bool', 'index' => 'int'], -'MongoDB\BSON\PackedArray::toPHP' => ['object|array', 'typeMap=' => '?array'], -'MongoDB\BSON\PackedArray::offsetExists' => ['bool', 'offset' => 'mixed'], -'MongoDB\BSON\PackedArray::offsetGet' => ['mixed', 'offset' => 'mixed'], -'MongoDB\BSON\PackedArray::offsetSet' => ['void', 'offset' => 'mixed', 'value' => 'mixed'], -'MongoDB\BSON\PackedArray::offsetUnset' => ['void', 'offset' => 'mixed'], -'MongoDB\BSON\PackedArray::__toString' => ['string'], -'MongoDB\BSON\PackedArray::serialize' => ['string'], -'MongoDB\BSON\PackedArray::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Persistable::bsonSerialize' => ['stdClass|MongoDB\BSON\Document|array'], -'MongoDB\BSON\Regex::__construct' => ['void', 'pattern' => 'string', 'flags=' => 'string'], -'MongoDB\BSON\Regex::getPattern' => ['string'], -'MongoDB\BSON\Regex::getFlags' => ['string'], -'MongoDB\BSON\Regex::__toString' => ['string'], -'MongoDB\BSON\Regex::serialize' => ['string'], -'MongoDB\BSON\Regex::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Regex::jsonSerialize' => ['mixed'], -'MongoDB\BSON\RegexInterface::getPattern' => ['string'], -'MongoDB\BSON\RegexInterface::getFlags' => ['string'], -'MongoDB\BSON\RegexInterface::__toString' => ['string'], -'MongoDB\BSON\Serializable::bsonSerialize' => ['stdClass|MongoDB\BSON\Document|MongoDB\BSON\PackedArray|array'], -'MongoDB\BSON\Symbol::__toString' => ['string'], -'MongoDB\BSON\Symbol::serialize' => ['string'], -'MongoDB\BSON\Symbol::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Symbol::jsonSerialize' => ['mixed'], -'MongoDB\BSON\Timestamp::__construct' => ['void', 'increment' => 'string|int', 'timestamp' => 'string|int'], -'MongoDB\BSON\Timestamp::getTimestamp' => ['int'], -'MongoDB\BSON\Timestamp::getIncrement' => ['int'], -'MongoDB\BSON\Timestamp::__toString' => ['string'], -'MongoDB\BSON\Timestamp::serialize' => ['string'], -'MongoDB\BSON\Timestamp::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Timestamp::jsonSerialize' => ['mixed'], -'MongoDB\BSON\TimestampInterface::getTimestamp' => ['int'], -'MongoDB\BSON\TimestampInterface::getIncrement' => ['int'], -'MongoDB\BSON\TimestampInterface::__toString' => ['string'], -'MongoDB\BSON\UTCDateTime::__construct' => ['void', 'milliseconds=' => 'DateTimeInterface|string|int|float|null'], -'MongoDB\BSON\UTCDateTime::toDateTime' => ['DateTime'], -'MongoDB\BSON\UTCDateTime::__toString' => ['string'], -'MongoDB\BSON\UTCDateTime::serialize' => ['string'], -'MongoDB\BSON\UTCDateTime::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\UTCDateTime::jsonSerialize' => ['mixed'], -'MongoDB\BSON\UTCDateTimeInterface::toDateTime' => ['DateTime'], -'MongoDB\BSON\UTCDateTimeInterface::__toString' => ['string'], -'MongoDB\BSON\Undefined::__toString' => ['string'], -'MongoDB\BSON\Undefined::serialize' => ['string'], -'MongoDB\BSON\Undefined::unserialize' => ['void', 'data' => 'string'], -'MongoDB\BSON\Undefined::jsonSerialize' => ['mixed'], -'MongoDB\BSON\Unserializable::bsonUnserialize' => ['void', 'data' => 'array'], -'MongoDB\Driver\BulkWrite::__construct' => ['void', 'options=' => '?array'], -'MongoDB\Driver\BulkWrite::count' => ['int'], -'MongoDB\Driver\BulkWrite::delete' => ['void', 'filter' => 'object|array', 'deleteOptions=' => '?array'], -'MongoDB\Driver\BulkWrite::insert' => ['mixed', 'document' => 'object|array'], -'MongoDB\Driver\BulkWrite::update' => ['void', 'filter' => 'object|array', 'newObj' => 'object|array', 'updateOptions=' => '?array'], -'MongoDB\Driver\ClientEncryption::__construct' => ['void', 'options' => 'array'], -'MongoDB\Driver\ClientEncryption::addKeyAltName' => ['?object', 'keyId' => 'MongoDB\BSON\Binary', 'keyAltName' => 'string'], -'MongoDB\Driver\ClientEncryption::createDataKey' => ['MongoDB\BSON\Binary', 'kmsProvider' => 'string', 'options=' => '?array'], -'MongoDB\Driver\ClientEncryption::decrypt' => ['mixed', 'value' => 'MongoDB\BSON\Binary'], -'MongoDB\Driver\ClientEncryption::deleteKey' => ['object', 'keyId' => 'MongoDB\BSON\Binary'], -'MongoDB\Driver\ClientEncryption::encrypt' => ['MongoDB\BSON\Binary', 'value' => 'mixed', 'options=' => '?array'], -'MongoDB\Driver\ClientEncryption::encryptExpression' => ['object', 'expr' => 'object|array', 'options=' => '?array'], -'MongoDB\Driver\ClientEncryption::getKey' => ['?object', 'keyId' => 'MongoDB\BSON\Binary'], -'MongoDB\Driver\ClientEncryption::getKeyByAltName' => ['?object', 'keyAltName' => 'string'], -'MongoDB\Driver\ClientEncryption::getKeys' => ['MongoDB\Driver\Cursor'], -'MongoDB\Driver\ClientEncryption::removeKeyAltName' => ['?object', 'keyId' => 'MongoDB\BSON\Binary', 'keyAltName' => 'string'], -'MongoDB\Driver\ClientEncryption::rewrapManyDataKey' => ['object', 'filter' => 'object|array', 'options=' => '?array'], -'MongoDB\Driver\Command::__construct' => ['void', 'document' => 'object|array', 'commandOptions=' => '?array'], -'MongoDB\Driver\Cursor::current' => ['object|array|null'], -'MongoDB\Driver\Cursor::getId' => ['MongoDB\Driver\CursorId'], -'MongoDB\Driver\Cursor::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\Cursor::isDead' => ['bool'], -'MongoDB\Driver\Cursor::key' => ['?int'], -'MongoDB\Driver\Cursor::next' => ['void'], -'MongoDB\Driver\Cursor::rewind' => ['void'], -'MongoDB\Driver\Cursor::setTypeMap' => ['void', 'typemap' => 'array'], -'MongoDB\Driver\Cursor::toArray' => ['array'], -'MongoDB\Driver\Cursor::valid' => ['bool'], -'MongoDB\Driver\CursorId::__toString' => ['string'], -'MongoDB\Driver\CursorId::serialize' => ['string'], -'MongoDB\Driver\CursorId::unserialize' => ['void', 'data' => 'string'], -'MongoDB\Driver\CursorInterface::getId' => ['MongoDB\Driver\CursorId'], -'MongoDB\Driver\CursorInterface::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\CursorInterface::isDead' => ['bool'], -'MongoDB\Driver\CursorInterface::setTypeMap' => ['void', 'typemap' => 'array'], -'MongoDB\Driver\CursorInterface::toArray' => ['array'], -'MongoDB\Driver\Exception\AuthenticationException::__toString' => ['string'], -'MongoDB\Driver\Exception\BulkWriteException::__toString' => ['string'], -'MongoDB\Driver\Exception\CommandException::getResultDocument' => ['object'], -'MongoDB\Driver\Exception\CommandException::__toString' => ['string'], -'MongoDB\Driver\Exception\ConnectionException::__toString' => ['string'], -'MongoDB\Driver\Exception\ConnectionTimeoutException::__toString' => ['string'], -'MongoDB\Driver\Exception\EncryptionException::__toString' => ['string'], -'MongoDB\Driver\Exception\Exception::__toString' => ['string'], -'MongoDB\Driver\Exception\ExecutionTimeoutException::__toString' => ['string'], -'MongoDB\Driver\Exception\InvalidArgumentException::__toString' => ['string'], -'MongoDB\Driver\Exception\LogicException::__toString' => ['string'], -'MongoDB\Driver\Exception\RuntimeException::hasErrorLabel' => ['bool', 'errorLabel' => 'string'], -'MongoDB\Driver\Exception\RuntimeException::__toString' => ['string'], -'MongoDB\Driver\Exception\SSLConnectionException::__toString' => ['string'], -'MongoDB\Driver\Exception\ServerException::__toString' => ['string'], -'MongoDB\Driver\Exception\UnexpectedValueException::__toString' => ['string'], -'MongoDB\Driver\Exception\WriteException::getWriteResult' => ['MongoDB\Driver\WriteResult'], -'MongoDB\Driver\Exception\WriteException::__toString' => ['string'], -'MongoDB\Driver\Manager::__construct' => ['void', 'uri=' => '?string', 'uriOptions=' => '?array', 'driverOptions=' => '?array'], -'MongoDB\Driver\Manager::addSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], -'MongoDB\Driver\Manager::createClientEncryption' => ['MongoDB\Driver\ClientEncryption', 'options' => 'array'], -'MongoDB\Driver\Manager::executeBulkWrite' => ['MongoDB\Driver\WriteResult', 'namespace' => 'string', 'bulk' => 'MongoDB\Driver\BulkWrite', 'options=' => 'MongoDB\Driver\WriteConcern|array|null'], -'MongoDB\Driver\Manager::executeCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], -'MongoDB\Driver\Manager::executeQuery' => ['MongoDB\Driver\Cursor', 'namespace' => 'string', 'query' => 'MongoDB\Driver\Query', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], -'MongoDB\Driver\Manager::executeReadCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Manager::executeReadWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Manager::executeWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Manager::getEncryptedFieldsMap' => ['object|array|null'], -'MongoDB\Driver\Manager::getReadConcern' => ['MongoDB\Driver\ReadConcern'], -'MongoDB\Driver\Manager::getReadPreference' => ['MongoDB\Driver\ReadPreference'], -'MongoDB\Driver\Manager::getServers' => ['array'], -'MongoDB\Driver\Manager::getWriteConcern' => ['MongoDB\Driver\WriteConcern'], -'MongoDB\Driver\Manager::removeSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], -'MongoDB\Driver\Manager::selectServer' => ['MongoDB\Driver\Server', 'readPreference=' => '?MongoDB\Driver\ReadPreference'], -'MongoDB\Driver\Manager::startSession' => ['MongoDB\Driver\Session', 'options=' => '?array'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getCommandName' => ['string'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getDurationMicros' => ['int'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getError' => ['Exception'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getOperationId' => ['string'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getReply' => ['object'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getRequestId' => ['string'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\CommandFailedEvent::getServerConnectionId' => ['?int'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getCommand' => ['object'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getCommandName' => ['string'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getDatabaseName' => ['string'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getOperationId' => ['string'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getRequestId' => ['string'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\CommandStartedEvent::getServerConnectionId' => ['?int'], -'MongoDB\Driver\Monitoring\CommandSubscriber::commandStarted' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandStartedEvent'], -'MongoDB\Driver\Monitoring\CommandSubscriber::commandSucceeded' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandSucceededEvent'], -'MongoDB\Driver\Monitoring\CommandSubscriber::commandFailed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandFailedEvent'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getCommandName' => ['string'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getDurationMicros' => ['int'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId' => ['string'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getReply' => ['object'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId' => ['string'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServerConnectionId' => ['?int'], -'MongoDB\Driver\Monitoring\LogSubscriber::log' => ['void', 'level' => 'int', 'domain' => 'string', 'message' => 'string'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverChanged' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerChangedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverClosed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerClosedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverOpening' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerOpeningEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatFailed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatStarted' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatSucceeded' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyChanged' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyChangedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyClosed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyClosedEvent'], -'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyOpening' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyOpeningEvent'], -'MongoDB\Driver\Monitoring\ServerChangedEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerChangedEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerChangedEvent::getNewDescription' => ['MongoDB\Driver\ServerDescription'], -'MongoDB\Driver\Monitoring\ServerChangedEvent::getPreviousDescription' => ['MongoDB\Driver\ServerDescription'], -'MongoDB\Driver\Monitoring\ServerChangedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\ServerClosedEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerClosedEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerClosedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getDurationMicros' => ['int'], -'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getError' => ['Exception'], -'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::isAwaited' => ['bool'], -'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::isAwaited' => ['bool'], -'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getDurationMicros' => ['int'], -'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getReply' => ['object'], -'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::isAwaited' => ['bool'], -'MongoDB\Driver\Monitoring\ServerOpeningEvent::getPort' => ['int'], -'MongoDB\Driver\Monitoring\ServerOpeningEvent::getHost' => ['string'], -'MongoDB\Driver\Monitoring\ServerOpeningEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\TopologyChangedEvent::getNewDescription' => ['MongoDB\Driver\TopologyDescription'], -'MongoDB\Driver\Monitoring\TopologyChangedEvent::getPreviousDescription' => ['MongoDB\Driver\TopologyDescription'], -'MongoDB\Driver\Monitoring\TopologyChangedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\TopologyClosedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Monitoring\TopologyOpeningEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], -'MongoDB\Driver\Query::__construct' => ['void', 'filter' => 'object|array', 'queryOptions=' => '?array'], -'MongoDB\Driver\ReadConcern::__construct' => ['void', 'level=' => '?string'], -'MongoDB\Driver\ReadConcern::getLevel' => ['?string'], -'MongoDB\Driver\ReadConcern::isDefault' => ['bool'], -'MongoDB\Driver\ReadConcern::bsonSerialize' => ['stdClass'], -'MongoDB\Driver\ReadConcern::serialize' => ['string'], -'MongoDB\Driver\ReadConcern::unserialize' => ['void', 'data' => 'string'], -'MongoDB\Driver\ReadPreference::__construct' => ['void', 'mode' => 'string|int', 'tagSets=' => '?array', 'options=' => '?array'], -'MongoDB\Driver\ReadPreference::getHedge' => ['?object'], -'MongoDB\Driver\ReadPreference::getMaxStalenessSeconds' => ['int'], -'MongoDB\Driver\ReadPreference::getMode' => ['int'], -'MongoDB\Driver\ReadPreference::getModeString' => ['string'], -'MongoDB\Driver\ReadPreference::getTagSets' => ['array'], -'MongoDB\Driver\ReadPreference::bsonSerialize' => ['stdClass'], -'MongoDB\Driver\ReadPreference::serialize' => ['string'], -'MongoDB\Driver\ReadPreference::unserialize' => ['void', 'data' => 'string'], -'MongoDB\Driver\Server::executeBulkWrite' => ['MongoDB\Driver\WriteResult', 'namespace' => 'string', 'bulkWrite' => 'MongoDB\Driver\BulkWrite', 'options=' => 'MongoDB\Driver\WriteConcern|array|null'], -'MongoDB\Driver\Server::executeCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], -'MongoDB\Driver\Server::executeQuery' => ['MongoDB\Driver\Cursor', 'namespace' => 'string', 'query' => 'MongoDB\Driver\Query', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], -'MongoDB\Driver\Server::executeReadCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Server::executeReadWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Server::executeWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], -'MongoDB\Driver\Server::getHost' => ['string'], -'MongoDB\Driver\Server::getInfo' => ['array'], -'MongoDB\Driver\Server::getLatency' => ['?int'], -'MongoDB\Driver\Server::getPort' => ['int'], -'MongoDB\Driver\Server::getServerDescription' => ['MongoDB\Driver\ServerDescription'], -'MongoDB\Driver\Server::getTags' => ['array'], -'MongoDB\Driver\Server::getType' => ['int'], -'MongoDB\Driver\Server::isArbiter' => ['bool'], -'MongoDB\Driver\Server::isHidden' => ['bool'], -'MongoDB\Driver\Server::isPassive' => ['bool'], -'MongoDB\Driver\Server::isPrimary' => ['bool'], -'MongoDB\Driver\Server::isSecondary' => ['bool'], -'MongoDB\Driver\ServerApi::__construct' => ['void', 'version' => 'string', 'strict=' => '?bool', 'deprecationErrors=' => '?bool'], -'MongoDB\Driver\ServerApi::bsonSerialize' => ['stdClass'], -'MongoDB\Driver\ServerApi::serialize' => ['string'], -'MongoDB\Driver\ServerApi::unserialize' => ['void', 'data' => 'string'], -'MongoDB\Driver\ServerDescription::getHelloResponse' => ['array'], -'MongoDB\Driver\ServerDescription::getHost' => ['string'], -'MongoDB\Driver\ServerDescription::getLastUpdateTime' => ['int'], -'MongoDB\Driver\ServerDescription::getPort' => ['int'], -'MongoDB\Driver\ServerDescription::getRoundTripTime' => ['?int'], -'MongoDB\Driver\ServerDescription::getType' => ['string'], -'MongoDB\Driver\Session::abortTransaction' => ['void'], -'MongoDB\Driver\Session::advanceClusterTime' => ['void', 'clusterTime' => 'object|array'], -'MongoDB\Driver\Session::advanceOperationTime' => ['void', 'operationTime' => 'MongoDB\BSON\TimestampInterface'], -'MongoDB\Driver\Session::commitTransaction' => ['void'], -'MongoDB\Driver\Session::endSession' => ['void'], -'MongoDB\Driver\Session::getClusterTime' => ['?object'], -'MongoDB\Driver\Session::getLogicalSessionId' => ['object'], -'MongoDB\Driver\Session::getOperationTime' => ['?MongoDB\BSON\Timestamp'], -'MongoDB\Driver\Session::getServer' => ['?MongoDB\Driver\Server'], -'MongoDB\Driver\Session::getTransactionOptions' => ['?array'], -'MongoDB\Driver\Session::getTransactionState' => ['string'], -'MongoDB\Driver\Session::isDirty' => ['bool'], -'MongoDB\Driver\Session::isInTransaction' => ['bool'], -'MongoDB\Driver\Session::startTransaction' => ['void', 'options=' => '?array'], -'MongoDB\Driver\TopologyDescription::getServers' => ['array'], -'MongoDB\Driver\TopologyDescription::getType' => ['string'], -'MongoDB\Driver\TopologyDescription::hasReadableServer' => ['bool', 'readPreference=' => '?MongoDB\Driver\ReadPreference'], -'MongoDB\Driver\TopologyDescription::hasWritableServer' => ['bool'], -'MongoDB\Driver\WriteConcern::__construct' => ['void', 'w' => 'string|int', 'wtimeout=' => '?int', 'journal=' => '?bool'], -'MongoDB\Driver\WriteConcern::getJournal' => ['?bool'], -'MongoDB\Driver\WriteConcern::getW' => ['string|int|null'], -'MongoDB\Driver\WriteConcern::getWtimeout' => ['int'], -'MongoDB\Driver\WriteConcern::isDefault' => ['bool'], -'MongoDB\Driver\WriteConcern::bsonSerialize' => ['stdClass'], -'MongoDB\Driver\WriteConcern::serialize' => ['string'], -'MongoDB\Driver\WriteConcern::unserialize' => ['void', 'data' => 'string'], -'MongoDB\Driver\WriteConcernError::getCode' => ['int'], -'MongoDB\Driver\WriteConcernError::getInfo' => ['?object'], -'MongoDB\Driver\WriteConcernError::getMessage' => ['string'], -'MongoDB\Driver\WriteError::getCode' => ['int'], -'MongoDB\Driver\WriteError::getIndex' => ['int'], -'MongoDB\Driver\WriteError::getInfo' => ['?object'], -'MongoDB\Driver\WriteError::getMessage' => ['string'], -'MongoDB\Driver\WriteResult::getInsertedCount' => ['?int'], -'MongoDB\Driver\WriteResult::getMatchedCount' => ['?int'], -'MongoDB\Driver\WriteResult::getModifiedCount' => ['?int'], -'MongoDB\Driver\WriteResult::getDeletedCount' => ['?int'], -'MongoDB\Driver\WriteResult::getUpsertedCount' => ['?int'], -'MongoDB\Driver\WriteResult::getServer' => ['MongoDB\Driver\Server'], -'MongoDB\Driver\WriteResult::getUpsertedIds' => ['array'], -'MongoDB\Driver\WriteResult::getWriteConcernError' => ['?MongoDB\Driver\WriteConcernError'], -'MongoDB\Driver\WriteResult::getWriteErrors' => ['array'], -'MongoDB\Driver\WriteResult::getErrorReplies' => ['array'], -'MongoDB\Driver\WriteResult::isAcknowledged' => ['bool'], -'MongoDBRef::create' => ['array', 'collection'=>'string', 'id'=>'mixed', 'database='=>'string'], -'MongoDBRef::get' => ['?array', 'db'=>'MongoDB', 'ref'=>'array'], -'MongoDBRef::isRef' => ['bool', 'ref'=>'mixed'], -'MongoDeleteBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], -'MongoException::__clone' => ['void'], -'MongoException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'MongoException::__toString' => ['string'], -'MongoException::__wakeup' => ['void'], -'MongoException::getCode' => ['int'], -'MongoException::getFile' => ['string'], -'MongoException::getLine' => ['int'], -'MongoException::getMessage' => ['string'], -'MongoException::getPrevious' => ['Exception|Throwable'], -'MongoException::getTrace' => ['list\',args?:array}>'], -'MongoException::getTraceAsString' => ['string'], -'MongoGridFS::__construct' => ['void', 'db'=>'MongoDB', 'prefix='=>'string', 'chunks='=>'mixed'], -'MongoGridFS::__get' => ['MongoCollection', 'name'=>'string'], -'MongoGridFS::__toString' => ['string'], -'MongoGridFS::aggregate' => ['array', 'pipeline'=>'array', 'op'=>'array', 'pipelineOperators'=>'array'], -'MongoGridFS::aggregateCursor' => ['MongoCommandCursor', 'pipeline'=>'array', 'options'=>'array'], -'MongoGridFS::batchInsert' => ['mixed', 'a'=>'array', 'options='=>'array'], -'MongoGridFS::count' => ['int', 'query='=>'stdClass|array'], -'MongoGridFS::createDBRef' => ['array', 'a'=>'array'], -'MongoGridFS::createIndex' => ['array', 'keys'=>'array', 'options='=>'array'], -'MongoGridFS::delete' => ['bool', 'id'=>'mixed'], -'MongoGridFS::deleteIndex' => ['array', 'keys'=>'array|string'], -'MongoGridFS::deleteIndexes' => ['array'], -'MongoGridFS::distinct' => ['array|bool', 'key'=>'string', 'query='=>'?array'], -'MongoGridFS::drop' => ['array'], -'MongoGridFS::ensureIndex' => ['bool', 'keys'=>'array', 'options='=>'array'], -'MongoGridFS::find' => ['MongoGridFSCursor', 'query='=>'array', 'fields='=>'array'], -'MongoGridFS::findAndModify' => ['array', 'query'=>'array', 'update='=>'?array', 'fields='=>'?array', 'options='=>'?array'], -'MongoGridFS::findOne' => ['?MongoGridFSFile', 'query='=>'mixed', 'fields='=>'mixed'], -'MongoGridFS::get' => ['?MongoGridFSFile', 'id'=>'mixed'], -'MongoGridFS::getDBRef' => ['array', 'ref'=>'array'], -'MongoGridFS::getIndexInfo' => ['array'], -'MongoGridFS::getName' => ['string'], -'MongoGridFS::getReadPreference' => ['array'], -'MongoGridFS::getSlaveOkay' => ['bool'], -'MongoGridFS::group' => ['array', 'keys'=>'mixed', 'initial'=>'array', 'reduce'=>'MongoCode', 'condition='=>'array'], -'MongoGridFS::insert' => ['array|bool', 'a'=>'array|object', 'options='=>'array'], -'MongoGridFS::put' => ['mixed', 'filename'=>'string', 'extra='=>'array'], -'MongoGridFS::remove' => ['bool', 'criteria='=>'array', 'options='=>'array'], -'MongoGridFS::save' => ['array|bool', 'a'=>'array|object', 'options='=>'array'], -'MongoGridFS::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags'=>'array'], -'MongoGridFS::setSlaveOkay' => ['bool', 'ok='=>'bool'], -'MongoGridFS::storeBytes' => ['mixed', 'bytes'=>'string', 'extra='=>'array', 'options='=>'array'], -'MongoGridFS::storeFile' => ['mixed', 'filename'=>'string', 'extra='=>'array', 'options='=>'array'], -'MongoGridFS::storeUpload' => ['mixed', 'name'=>'string', 'filename='=>'string'], -'MongoGridFS::toIndexString' => ['string', 'keys'=>'mixed'], -'MongoGridFS::update' => ['bool', 'criteria'=>'array', 'newobj'=>'array', 'options='=>'array'], -'MongoGridFS::validate' => ['array', 'scan_data='=>'bool'], -'MongoGridFSCursor::__construct' => ['void', 'gridfs'=>'MongoGridFS', 'connection'=>'resource', 'ns'=>'string', 'query'=>'array', 'fields'=>'array'], -'MongoGridFSCursor::addOption' => ['MongoCursor', 'key'=>'string', 'value'=>'mixed'], -'MongoGridFSCursor::awaitData' => ['MongoCursor', 'wait='=>'bool'], -'MongoGridFSCursor::batchSize' => ['MongoCursor', 'batchSize'=>'int'], -'MongoGridFSCursor::count' => ['int', 'all='=>'bool'], -'MongoGridFSCursor::current' => ['MongoGridFSFile'], -'MongoGridFSCursor::dead' => ['bool'], -'MongoGridFSCursor::doQuery' => ['void'], -'MongoGridFSCursor::explain' => ['array'], -'MongoGridFSCursor::fields' => ['MongoCursor', 'f'=>'array'], -'MongoGridFSCursor::getNext' => ['MongoGridFSFile'], -'MongoGridFSCursor::getReadPreference' => ['array'], -'MongoGridFSCursor::hasNext' => ['bool'], -'MongoGridFSCursor::hint' => ['MongoCursor', 'key_pattern'=>'mixed'], -'MongoGridFSCursor::immortal' => ['MongoCursor', 'liveForever='=>'bool'], -'MongoGridFSCursor::info' => ['array'], -'MongoGridFSCursor::key' => ['string'], -'MongoGridFSCursor::limit' => ['MongoCursor', 'num'=>'int'], -'MongoGridFSCursor::maxTimeMS' => ['MongoCursor', 'ms'=>'int'], -'MongoGridFSCursor::next' => ['void'], -'MongoGridFSCursor::partial' => ['MongoCursor', 'okay='=>'bool'], -'MongoGridFSCursor::reset' => ['void'], -'MongoGridFSCursor::rewind' => ['void'], -'MongoGridFSCursor::setFlag' => ['MongoCursor', 'flag'=>'int', 'set='=>'bool'], -'MongoGridFSCursor::setReadPreference' => ['MongoCursor', 'read_preference'=>'string', 'tags'=>'array'], -'MongoGridFSCursor::skip' => ['MongoCursor', 'num'=>'int'], -'MongoGridFSCursor::slaveOkay' => ['MongoCursor', 'okay='=>'bool'], -'MongoGridFSCursor::snapshot' => ['MongoCursor'], -'MongoGridFSCursor::sort' => ['MongoCursor', 'fields'=>'array'], -'MongoGridFSCursor::tailable' => ['MongoCursor', 'tail='=>'bool'], -'MongoGridFSCursor::timeout' => ['MongoCursor', 'ms'=>'int'], -'MongoGridFSCursor::valid' => ['bool'], -'MongoGridfsFile::__construct' => ['void', 'gridfs'=>'MongoGridFS', 'file'=>'array'], -'MongoGridFSFile::getBytes' => ['string'], -'MongoGridFSFile::getFilename' => ['string'], -'MongoGridFSFile::getResource' => ['resource'], -'MongoGridFSFile::getSize' => ['int'], -'MongoGridFSFile::write' => ['int', 'filename='=>'string'], -'MongoId::__construct' => ['void', 'id='=>'string|MongoId'], -'MongoId::__set_state' => ['MongoId', 'props'=>'array'], -'MongoId::__toString' => ['string'], -'MongoId::getHostname' => ['string'], -'MongoId::getInc' => ['int'], -'MongoId::getPID' => ['int'], -'MongoId::getTimestamp' => ['int'], -'MongoId::isValid' => ['bool', 'value'=>'mixed'], -'MongoInsertBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], -'MongoInt32::__construct' => ['void', 'value'=>'string'], -'MongoInt32::__toString' => ['string'], -'MongoInt64::__construct' => ['void', 'value'=>'string'], -'MongoInt64::__toString' => ['string'], -'MongoLog::getCallback' => ['callable'], -'MongoLog::getLevel' => ['int'], -'MongoLog::getModule' => ['int'], -'MongoLog::setCallback' => ['void', 'log_function'=>'callable'], -'MongoLog::setLevel' => ['void', 'level'=>'int'], -'MongoLog::setModule' => ['void', 'module'=>'int'], -'MongoPool::getSize' => ['int'], -'MongoPool::info' => ['array'], -'MongoPool::setSize' => ['bool', 'size'=>'int'], -'MongoRegex::__construct' => ['void', 'regex'=>'string'], -'MongoRegex::__toString' => ['string'], -'MongoResultException::__clone' => ['void'], -'MongoResultException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'MongoResultException::__toString' => ['string'], -'MongoResultException::__wakeup' => ['void'], -'MongoResultException::getCode' => ['int'], -'MongoResultException::getDocument' => ['array'], -'MongoResultException::getFile' => ['string'], -'MongoResultException::getLine' => ['int'], -'MongoResultException::getMessage' => ['string'], -'MongoResultException::getPrevious' => ['Exception|Throwable'], -'MongoResultException::getTrace' => ['list\',args?:array}>'], -'MongoResultException::getTraceAsString' => ['string'], -'MongoTimestamp::__construct' => ['void', 'second='=>'int', 'inc='=>'int'], -'MongoTimestamp::__toString' => ['string'], -'MongoUpdateBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], -'MongoUpdateBatch::add' => ['bool', 'item'=>'array'], -'MongoUpdateBatch::execute' => ['array', 'write_options'=>'array'], -'MongoWriteBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'batch_type'=>'string', 'write_options'=>'array'], -'MongoWriteBatch::add' => ['bool', 'item'=>'array'], -'MongoWriteBatch::execute' => ['array', 'write_options'=>'array'], -'MongoWriteConcernException::__clone' => ['void'], -'MongoWriteConcernException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'MongoWriteConcernException::__toString' => ['string'], -'MongoWriteConcernException::__wakeup' => ['void'], -'MongoWriteConcernException::getCode' => ['int'], -'MongoWriteConcernException::getDocument' => ['array'], -'MongoWriteConcernException::getFile' => ['string'], -'MongoWriteConcernException::getLine' => ['int'], -'MongoWriteConcernException::getMessage' => ['string'], -'MongoWriteConcernException::getPrevious' => ['Exception|Throwable'], -'MongoWriteConcernException::getTrace' => ['list\',args?:array}>'], -'MongoWriteConcernException::getTraceAsString' => ['string'], -'monitor_custom_event' => ['void', 'class'=>'string', 'text'=>'string', 'severe='=>'int', 'user_data='=>'mixed'], -'monitor_httperror_event' => ['void', 'error_code'=>'int', 'url'=>'string', 'severe='=>'int'], -'monitor_license_info' => ['array'], -'monitor_pass_error' => ['void', 'errno'=>'int', 'errstr'=>'string', 'errfile'=>'string', 'errline'=>'int'], -'monitor_set_aggregation_hint' => ['void', 'hint'=>'string'], -'move_uploaded_file' => ['bool', 'from'=>'string', 'to'=>'string'], -'mqseries_back' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_begin' => ['void', 'hconn'=>'resource', 'beginoptions'=>'array', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_close' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'options'=>'int', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_cmit' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_conn' => ['void', 'qmanagername'=>'string', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_connx' => ['void', 'qmanagername'=>'string', 'connoptions'=>'array', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_disc' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_get' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'md'=>'array', 'gmo'=>'array', 'bufferlength'=>'int', 'msg'=>'string', 'data_length'=>'int', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_inq' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'selectorcount'=>'int', 'selectors'=>'array', 'intattrcount'=>'int', 'intattr'=>'resource', 'charattrlength'=>'int', 'charattr'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_open' => ['void', 'hconn'=>'resource', 'objdesc'=>'array', 'option'=>'int', 'hobj'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_put' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'md'=>'array', 'pmo'=>'array', 'message'=>'string', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_put1' => ['void', 'hconn'=>'resource', 'objdesc'=>'resource', 'msgdesc'=>'resource', 'pmo'=>'resource', 'buffer'=>'string', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_set' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'selectorcount'=>'int', 'selectors'=>'array', 'intattrcount'=>'int', 'intattrs'=>'array', 'charattrlength'=>'int', 'charattrs'=>'array', 'compcode'=>'resource', 'reason'=>'resource'], -'mqseries_strerror' => ['string', 'reason'=>'int'], -'ms_GetErrorObj' => ['errorObj'], -'ms_GetVersion' => ['string'], -'ms_GetVersionInt' => ['int'], -'ms_iogetStdoutBufferBytes' => ['int'], -'ms_iogetstdoutbufferstring' => ['void'], -'ms_ioinstallstdinfrombuffer' => ['void'], -'ms_ioinstallstdouttobuffer' => ['void'], -'ms_ioresethandlers' => ['void'], -'ms_iostripstdoutbuffercontentheaders' => ['void'], -'ms_iostripstdoutbuffercontenttype' => ['string'], -'ms_ResetErrorList' => ['void'], -'ms_TokenizeMap' => ['array', 'map_file_name'=>'string'], -'msession_connect' => ['bool', 'host'=>'string', 'port'=>'string'], -'msession_count' => ['int'], -'msession_create' => ['bool', 'session'=>'string', 'classname='=>'string', 'data='=>'string'], -'msession_destroy' => ['bool', 'name'=>'string'], -'msession_disconnect' => ['void'], -'msession_find' => ['array', 'name'=>'string', 'value'=>'string'], -'msession_get' => ['string', 'session'=>'string', 'name'=>'string', 'value'=>'string'], -'msession_get_array' => ['array', 'session'=>'string'], -'msession_get_data' => ['string', 'session'=>'string'], -'msession_inc' => ['string', 'session'=>'string', 'name'=>'string'], -'msession_list' => ['array'], -'msession_listvar' => ['array', 'name'=>'string'], -'msession_lock' => ['int', 'name'=>'string'], -'msession_plugin' => ['string', 'session'=>'string', 'value'=>'string', 'param='=>'string'], -'msession_randstr' => ['string', 'param'=>'int'], -'msession_set' => ['bool', 'session'=>'string', 'name'=>'string', 'value'=>'string'], -'msession_set_array' => ['void', 'session'=>'string', 'tuples'=>'array'], -'msession_set_data' => ['bool', 'session'=>'string', 'value'=>'string'], -'msession_timeout' => ['int', 'session'=>'string', 'param='=>'int'], -'msession_uniq' => ['string', 'param'=>'int', 'classname='=>'string', 'data='=>'string'], -'msession_unlock' => ['int', 'session'=>'string', 'key'=>'int'], -'msg_get_queue' => ['SysvMessageQueue|false', 'key'=>'int', 'permissions='=>'int'], -'msg_queue_exists' => ['bool', 'key'=>'int'], -'msg_receive' => ['bool', 'queue'=>'SysvMessageQueue', 'desired_message_type'=>'int', '&w_received_message_type'=>'int', 'max_message_size'=>'int', '&w_message'=>'mixed', 'unserialize='=>'bool', 'flags='=>'int', '&w_error_code='=>'int'], -'msg_remove_queue' => ['bool', 'queue'=>'SysvMessageQueue'], -'msg_send' => ['bool', 'queue'=>'SysvMessageQueue', 'message_type'=>'int', 'message'=>'mixed', 'serialize='=>'bool', 'blocking='=>'bool', '&w_error_code='=>'int'], -'msg_set_queue' => ['bool', 'queue'=>'SysvMessageQueue', 'data'=>'array'], -'msg_stat_queue' => ['array', 'queue'=>'SysvMessageQueue'], -'msgfmt_create' => ['?MessageFormatter', 'locale'=>'string', 'pattern'=>'string'], -'msgfmt_format' => ['string|false', 'formatter'=>'MessageFormatter', 'values'=>'array'], -'msgfmt_format_message' => ['string|false', 'locale'=>'string', 'pattern'=>'string', 'values'=>'array'], -'msgfmt_get_error_code' => ['int', 'formatter'=>'MessageFormatter'], -'msgfmt_get_error_message' => ['string', 'formatter'=>'MessageFormatter'], -'msgfmt_get_locale' => ['string', 'formatter'=>'MessageFormatter'], -'msgfmt_get_pattern' => ['string', 'formatter'=>'MessageFormatter'], -'msgfmt_parse' => ['array|false', 'formatter'=>'MessageFormatter', 'string'=>'string'], -'msgfmt_parse_message' => ['array|false', 'locale'=>'string', 'pattern'=>'string', 'message'=>'string'], -'msgfmt_set_pattern' => ['bool', 'formatter'=>'MessageFormatter', 'pattern'=>'string'], -'msql_affected_rows' => ['int', 'result'=>'resource'], -'msql_close' => ['bool', 'link_identifier='=>'?resource'], -'msql_connect' => ['resource', 'hostname='=>'string'], -'msql_create_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'msql_data_seek' => ['bool', 'result'=>'resource', 'row_number'=>'int'], -'msql_db_query' => ['resource', 'database'=>'string', 'query'=>'string', 'link_identifier='=>'?resource'], -'msql_drop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'msql_error' => ['string'], -'msql_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], -'msql_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], -'msql_fetch_object' => ['object', 'result'=>'resource'], -'msql_fetch_row' => ['array', 'result'=>'resource'], -'msql_field_flags' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'msql_field_len' => ['int', 'result'=>'resource', 'field_offset'=>'int'], -'msql_field_name' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'msql_field_seek' => ['bool', 'result'=>'resource', 'field_offset'=>'int'], -'msql_field_table' => ['int', 'result'=>'resource', 'field_offset'=>'int'], -'msql_field_type' => ['string', 'result'=>'resource', 'field_offset'=>'int'], -'msql_free_result' => ['bool', 'result'=>'resource'], -'msql_list_dbs' => ['resource', 'link_identifier='=>'?resource'], -'msql_list_fields' => ['resource', 'database'=>'string', 'tablename'=>'string', 'link_identifier='=>'?resource'], -'msql_list_tables' => ['resource', 'database'=>'string', 'link_identifier='=>'?resource'], -'msql_num_fields' => ['int', 'result'=>'resource'], -'msql_num_rows' => ['int', 'query_identifier'=>'resource'], -'msql_pconnect' => ['resource', 'hostname='=>'string'], -'msql_query' => ['resource', 'query'=>'string', 'link_identifier='=>'?resource'], -'msql_result' => ['string', 'result'=>'resource', 'row'=>'int', 'field='=>'mixed'], -'msql_select_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], -'mt_getrandmax' => ['int<1, max>'], -'mt_rand' => ['int', 'min'=>'int', 'max'=>'int'], -'mt_rand\'1' => ['int'], -'mt_srand' => ['void', 'seed='=>'?int', 'mode='=>'int'], -'MultipleIterator::__construct' => ['void', 'flags='=>'int'], -'MultipleIterator::attachIterator' => ['void', 'iterator'=>'Iterator', 'info='=>'string|int|null'], -'MultipleIterator::containsIterator' => ['bool', 'iterator'=>'Iterator'], -'MultipleIterator::countIterators' => ['int'], -'MultipleIterator::current' => ['array|false'], -'MultipleIterator::detachIterator' => ['void', 'iterator'=>'Iterator'], -'MultipleIterator::getFlags' => ['int'], -'MultipleIterator::key' => ['array'], -'MultipleIterator::next' => ['void'], -'MultipleIterator::rewind' => ['void'], -'MultipleIterator::setFlags' => ['void', 'flags'=>'int'], -'MultipleIterator::valid' => ['bool'], -'Mutex::create' => ['long', 'lock='=>'bool'], -'Mutex::destroy' => ['bool', 'mutex'=>'long'], -'Mutex::lock' => ['bool', 'mutex'=>'long'], -'Mutex::trylock' => ['bool', 'mutex'=>'long'], -'Mutex::unlock' => ['bool', 'mutex'=>'long', 'destroy='=>'bool'], -'mysql_xdevapi\baseresult::getWarnings' => ['array'], -'mysql_xdevapi\baseresult::getWarningsCount' => ['integer'], -'mysql_xdevapi\collection::add' => ['mysql_xdevapi\CollectionAdd', 'document'=>'mixed'], -'mysql_xdevapi\collection::addOrReplaceOne' => ['mysql_xdevapi\Result', 'id'=>'string', 'doc'=>'string'], -'mysql_xdevapi\collection::count' => ['integer'], -'mysql_xdevapi\collection::createIndex' => ['void', 'index_name'=>'string', 'index_desc_json'=>'string'], -'mysql_xdevapi\collection::dropIndex' => ['bool', 'index_name'=>'string'], -'mysql_xdevapi\collection::existsInDatabase' => ['bool'], -'mysql_xdevapi\collection::find' => ['mysql_xdevapi\CollectionFind', 'search_condition='=>'string'], -'mysql_xdevapi\collection::getName' => ['string'], -'mysql_xdevapi\collection::getOne' => ['Document', 'id'=>'string'], -'mysql_xdevapi\collection::getSchema' => ['mysql_xdevapi\schema'], -'mysql_xdevapi\collection::getSession' => ['Session'], -'mysql_xdevapi\collection::modify' => ['mysql_xdevapi\CollectionModify', 'search_condition'=>'string'], -'mysql_xdevapi\collection::remove' => ['mysql_xdevapi\CollectionRemove', 'search_condition'=>'string'], -'mysql_xdevapi\collection::removeOne' => ['mysql_xdevapi\Result', 'id'=>'string'], -'mysql_xdevapi\collection::replaceOne' => ['mysql_xdevapi\Result', 'id'=>'string', 'doc'=>'string'], -'mysql_xdevapi\collectionadd::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\collectionfind::bind' => ['mysql_xdevapi\CollectionFind', 'placeholder_values'=>'array'], -'mysql_xdevapi\collectionfind::execute' => ['mysql_xdevapi\DocResult'], -'mysql_xdevapi\collectionfind::fields' => ['mysql_xdevapi\CollectionFind', 'projection'=>'string'], -'mysql_xdevapi\collectionfind::groupBy' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], -'mysql_xdevapi\collectionfind::having' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], -'mysql_xdevapi\collectionfind::limit' => ['mysql_xdevapi\CollectionFind', 'rows'=>'integer'], -'mysql_xdevapi\collectionfind::lockExclusive' => ['mysql_xdevapi\CollectionFind', 'lock_waiting_option='=>'integer'], -'mysql_xdevapi\collectionfind::lockShared' => ['mysql_xdevapi\CollectionFind', 'lock_waiting_option='=>'integer'], -'mysql_xdevapi\collectionfind::offset' => ['mysql_xdevapi\CollectionFind', 'position'=>'integer'], -'mysql_xdevapi\collectionfind::sort' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], -'mysql_xdevapi\collectionmodify::arrayAppend' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], -'mysql_xdevapi\collectionmodify::arrayInsert' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], -'mysql_xdevapi\collectionmodify::bind' => ['mysql_xdevapi\CollectionModify', 'placeholder_values'=>'array'], -'mysql_xdevapi\collectionmodify::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\collectionmodify::limit' => ['mysql_xdevapi\CollectionModify', 'rows'=>'integer'], -'mysql_xdevapi\collectionmodify::patch' => ['mysql_xdevapi\CollectionModify', 'document'=>'string'], -'mysql_xdevapi\collectionmodify::replace' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], -'mysql_xdevapi\collectionmodify::set' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], -'mysql_xdevapi\collectionmodify::skip' => ['mysql_xdevapi\CollectionModify', 'position'=>'integer'], -'mysql_xdevapi\collectionmodify::sort' => ['mysql_xdevapi\CollectionModify', 'sort_expr'=>'string'], -'mysql_xdevapi\collectionmodify::unset' => ['mysql_xdevapi\CollectionModify', 'fields'=>'array'], -'mysql_xdevapi\collectionremove::bind' => ['mysql_xdevapi\CollectionRemove', 'placeholder_values'=>'array'], -'mysql_xdevapi\collectionremove::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\collectionremove::limit' => ['mysql_xdevapi\CollectionRemove', 'rows'=>'integer'], -'mysql_xdevapi\collectionremove::sort' => ['mysql_xdevapi\CollectionRemove', 'sort_expr'=>'string'], -'mysql_xdevapi\columnresult::getCharacterSetName' => ['string'], -'mysql_xdevapi\columnresult::getCollationName' => ['string'], -'mysql_xdevapi\columnresult::getColumnLabel' => ['string'], -'mysql_xdevapi\columnresult::getColumnName' => ['string'], -'mysql_xdevapi\columnresult::getFractionalDigits' => ['integer'], -'mysql_xdevapi\columnresult::getLength' => ['integer'], -'mysql_xdevapi\columnresult::getSchemaName' => ['string'], -'mysql_xdevapi\columnresult::getTableLabel' => ['string'], -'mysql_xdevapi\columnresult::getTableName' => ['string'], -'mysql_xdevapi\columnresult::getType' => ['integer'], -'mysql_xdevapi\columnresult::isNumberSigned' => ['integer'], -'mysql_xdevapi\columnresult::isPadded' => ['integer'], -'mysql_xdevapi\crudoperationbindable::bind' => ['mysql_xdevapi\CrudOperationBindable', 'placeholder_values'=>'array'], -'mysql_xdevapi\crudoperationlimitable::limit' => ['mysql_xdevapi\CrudOperationLimitable', 'rows'=>'integer'], -'mysql_xdevapi\crudoperationskippable::skip' => ['mysql_xdevapi\CrudOperationSkippable', 'skip'=>'integer'], -'mysql_xdevapi\crudoperationsortable::sort' => ['mysql_xdevapi\CrudOperationSortable', 'sort_expr'=>'string'], -'mysql_xdevapi\databaseobject::existsInDatabase' => ['bool'], -'mysql_xdevapi\databaseobject::getName' => ['string'], -'mysql_xdevapi\databaseobject::getSession' => ['mysql_xdevapi\Session'], -'mysql_xdevapi\docresult::fetchAll' => ['Array'], -'mysql_xdevapi\docresult::fetchOne' => ['Object'], -'mysql_xdevapi\docresult::getWarnings' => ['Array'], -'mysql_xdevapi\docresult::getWarningsCount' => ['integer'], -'mysql_xdevapi\executable::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\getsession' => ['mysql_xdevapi\Session', 'uri'=>'string'], -'mysql_xdevapi\result::getAutoIncrementValue' => ['int'], -'mysql_xdevapi\result::getGeneratedIds' => ['ArrayOfInt'], -'mysql_xdevapi\result::getWarnings' => ['array'], -'mysql_xdevapi\result::getWarningsCount' => ['integer'], -'mysql_xdevapi\rowresult::fetchAll' => ['array'], -'mysql_xdevapi\rowresult::fetchOne' => ['object'], -'mysql_xdevapi\rowresult::getColumnCount' => ['integer'], -'mysql_xdevapi\rowresult::getColumnNames' => ['array'], -'mysql_xdevapi\rowresult::getColumns' => ['array'], -'mysql_xdevapi\rowresult::getWarnings' => ['array'], -'mysql_xdevapi\rowresult::getWarningsCount' => ['integer'], -'mysql_xdevapi\schema::createCollection' => ['mysql_xdevapi\Collection', 'name'=>'string'], -'mysql_xdevapi\schema::dropCollection' => ['bool', 'collection_name'=>'string'], -'mysql_xdevapi\schema::existsInDatabase' => ['bool'], -'mysql_xdevapi\schema::getCollection' => ['mysql_xdevapi\Collection', 'name'=>'string'], -'mysql_xdevapi\schema::getCollectionAsTable' => ['mysql_xdevapi\Table', 'name'=>'string'], -'mysql_xdevapi\schema::getCollections' => ['array'], -'mysql_xdevapi\schema::getName' => ['string'], -'mysql_xdevapi\schema::getSession' => ['mysql_xdevapi\Session'], -'mysql_xdevapi\schema::getTable' => ['mysql_xdevapi\Table', 'name'=>'string'], -'mysql_xdevapi\schema::getTables' => ['array'], -'mysql_xdevapi\schemaobject::getSchema' => ['mysql_xdevapi\Schema'], -'mysql_xdevapi\session::close' => ['bool'], -'mysql_xdevapi\session::commit' => ['Object'], -'mysql_xdevapi\session::createSchema' => ['mysql_xdevapi\Schema', 'schema_name'=>'string'], -'mysql_xdevapi\session::dropSchema' => ['bool', 'schema_name'=>'string'], -'mysql_xdevapi\session::executeSql' => ['Object', 'statement'=>'string'], -'mysql_xdevapi\session::generateUUID' => ['string'], -'mysql_xdevapi\session::getClientId' => ['integer'], -'mysql_xdevapi\session::getSchema' => ['mysql_xdevapi\Schema', 'schema_name'=>'string'], -'mysql_xdevapi\session::getSchemas' => ['array'], -'mysql_xdevapi\session::getServerVersion' => ['integer'], -'mysql_xdevapi\session::killClient' => ['object', 'client_id'=>'integer'], -'mysql_xdevapi\session::listClients' => ['array'], -'mysql_xdevapi\session::quoteName' => ['string', 'name'=>'string'], -'mysql_xdevapi\session::releaseSavepoint' => ['void', 'name'=>'string'], -'mysql_xdevapi\session::rollback' => ['void'], -'mysql_xdevapi\session::rollbackTo' => ['void', 'name'=>'string'], -'mysql_xdevapi\session::setSavepoint' => ['string', 'name='=>'string'], -'mysql_xdevapi\session::sql' => ['mysql_xdevapi\SqlStatement', 'query'=>'string'], -'mysql_xdevapi\session::startTransaction' => ['void'], -'mysql_xdevapi\sqlstatement::bind' => ['mysql_xdevapi\SqlStatement', 'param'=>'string'], -'mysql_xdevapi\sqlstatement::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\sqlstatement::getNextResult' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\sqlstatement::getResult' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\sqlstatement::hasMoreResults' => ['bool'], -'mysql_xdevapi\sqlstatementresult::fetchAll' => ['array'], -'mysql_xdevapi\sqlstatementresult::fetchOne' => ['object'], -'mysql_xdevapi\sqlstatementresult::getAffectedItemsCount' => ['integer'], -'mysql_xdevapi\sqlstatementresult::getColumnCount' => ['integer'], -'mysql_xdevapi\sqlstatementresult::getColumnNames' => ['array'], -'mysql_xdevapi\sqlstatementresult::getColumns' => ['Array'], -'mysql_xdevapi\sqlstatementresult::getGeneratedIds' => ['array'], -'mysql_xdevapi\sqlstatementresult::getLastInsertId' => ['String'], -'mysql_xdevapi\sqlstatementresult::getWarnings' => ['array'], -'mysql_xdevapi\sqlstatementresult::getWarningsCount' => ['integer'], -'mysql_xdevapi\sqlstatementresult::hasData' => ['bool'], -'mysql_xdevapi\sqlstatementresult::nextResult' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\statement::getNextResult' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\statement::getResult' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\statement::hasMoreResults' => ['bool'], -'mysql_xdevapi\table::count' => ['integer'], -'mysql_xdevapi\table::delete' => ['mysql_xdevapi\TableDelete'], -'mysql_xdevapi\table::existsInDatabase' => ['bool'], -'mysql_xdevapi\table::getName' => ['string'], -'mysql_xdevapi\table::getSchema' => ['mysql_xdevapi\Schema'], -'mysql_xdevapi\table::getSession' => ['mysql_xdevapi\Session'], -'mysql_xdevapi\table::insert' => ['mysql_xdevapi\TableInsert', 'columns'=>'mixed', '...args='=>'mixed'], -'mysql_xdevapi\table::isView' => ['bool'], -'mysql_xdevapi\table::select' => ['mysql_xdevapi\TableSelect', 'columns'=>'mixed', '...args='=>'mixed'], -'mysql_xdevapi\table::update' => ['mysql_xdevapi\TableUpdate'], -'mysql_xdevapi\tabledelete::bind' => ['mysql_xdevapi\TableDelete', 'placeholder_values'=>'array'], -'mysql_xdevapi\tabledelete::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\tabledelete::limit' => ['mysql_xdevapi\TableDelete', 'rows'=>'integer'], -'mysql_xdevapi\tabledelete::offset' => ['mysql_xdevapi\TableDelete', 'position'=>'integer'], -'mysql_xdevapi\tabledelete::orderby' => ['mysql_xdevapi\TableDelete', 'orderby_expr'=>'string'], -'mysql_xdevapi\tabledelete::where' => ['mysql_xdevapi\TableDelete', 'where_expr'=>'string'], -'mysql_xdevapi\tableinsert::execute' => ['mysql_xdevapi\Result'], -'mysql_xdevapi\tableinsert::values' => ['mysql_xdevapi\TableInsert', 'row_values'=>'array'], -'mysql_xdevapi\tableselect::bind' => ['mysql_xdevapi\TableSelect', 'placeholder_values'=>'array'], -'mysql_xdevapi\tableselect::execute' => ['mysql_xdevapi\RowResult'], -'mysql_xdevapi\tableselect::groupBy' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'mixed'], -'mysql_xdevapi\tableselect::having' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'string'], -'mysql_xdevapi\tableselect::limit' => ['mysql_xdevapi\TableSelect', 'rows'=>'integer'], -'mysql_xdevapi\tableselect::lockExclusive' => ['mysql_xdevapi\TableSelect', 'lock_waiting_option='=>'integer'], -'mysql_xdevapi\tableselect::lockShared' => ['mysql_xdevapi\TableSelect', 'lock_waiting_option='=>'integer'], -'mysql_xdevapi\tableselect::offset' => ['mysql_xdevapi\TableSelect', 'position'=>'integer'], -'mysql_xdevapi\tableselect::orderby' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'mixed', '...args='=>'mixed'], -'mysql_xdevapi\tableselect::where' => ['mysql_xdevapi\TableSelect', 'where_expr'=>'string'], -'mysql_xdevapi\tableupdate::bind' => ['mysql_xdevapi\TableUpdate', 'placeholder_values'=>'array'], -'mysql_xdevapi\tableupdate::execute' => ['mysql_xdevapi\TableUpdate'], -'mysql_xdevapi\tableupdate::limit' => ['mysql_xdevapi\TableUpdate', 'rows'=>'integer'], -'mysql_xdevapi\tableupdate::orderby' => ['mysql_xdevapi\TableUpdate', 'orderby_expr'=>'mixed', '...args='=>'mixed'], -'mysql_xdevapi\tableupdate::set' => ['mysql_xdevapi\TableUpdate', 'table_field'=>'string', 'expression_or_literal'=>'string'], -'mysql_xdevapi\tableupdate::where' => ['mysql_xdevapi\TableUpdate', 'where_expr'=>'string'], -'mysqli::__construct' => ['void', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], -'mysqli::autocommit' => ['bool', 'enable'=>'bool'], -'mysqli::begin_transaction' => ['bool', 'flags='=>'int', 'name='=>'?string'], -'mysqli::change_user' => ['bool', 'username'=>'string', 'password'=>'string', 'database'=>'?string'], -'mysqli::character_set_name' => ['string'], -'mysqli::close' => ['true'], -'mysqli::commit' => ['bool', 'flags='=>'int', 'name='=>'?string'], -'mysqli::connect' => ['bool', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], -'mysqli::debug' => ['true', 'options'=>'string'], -'mysqli::dump_debug_info' => ['bool'], -'mysqli::escape_string' => ['string', 'string'=>'string'], -'mysqli::execute_query' => ['mysqli_result|bool', 'query'=>'non-empty-string', 'params='=>'list|null'], -'mysqli::get_charset' => ['object'], -'mysqli::get_client_info' => ['string'], -'mysqli::get_connection_stats' => ['array'], -'mysqli::get_warnings' => ['mysqli_warning'], -'mysqli::init' => ['false|null'], -'mysqli::kill' => ['bool', 'process_id'=>'int'], -'mysqli::more_results' => ['bool'], -'mysqli::multi_query' => ['bool', 'query'=>'string'], -'mysqli::next_result' => ['bool'], -'mysqli::options' => ['bool', 'option'=>'int', 'value'=>'string|int'], -'mysqli::ping' => ['bool'], -'mysqli::poll' => ['int|false', '&w_read'=>'?array', '&w_error'=>'?array', '&w_reject'=>'array', 'seconds'=>'int', 'microseconds='=>'int'], -'mysqli::prepare' => ['mysqli_stmt|false', 'query'=>'string'], -'mysqli::query' => ['bool|mysqli_result', 'query'=>'string', 'result_mode='=>'int'], -'mysqli::real_connect' => ['bool', 'hostname='=>'?string', 'username='=>'?string', 'password='=>'?string', 'database='=>'?string', 'port='=>'?int', 'socket='=>'?string', 'flags='=>'int'], -'mysqli::real_escape_string' => ['string', 'string'=>'string'], -'mysqli::real_query' => ['bool', 'query'=>'string'], -'mysqli::reap_async_query' => ['mysqli_result|false'], -'mysqli::refresh' => ['bool', 'flags'=>'int'], -'mysqli::release_savepoint' => ['bool', 'name'=>'string'], -'mysqli::rollback' => ['bool', 'flags='=>'int', 'name='=>'?string'], -'mysqli::savepoint' => ['bool', 'name'=>'string'], -'mysqli::select_db' => ['bool', 'database'=>'string'], -'mysqli::set_charset' => ['bool', 'charset'=>'string'], -'mysqli::set_opt' => ['bool', 'option'=>'int', 'value'=>'string|int'], -'mysqli::ssl_set' => ['true', 'key'=>'?string', 'certificate'=>'?string', 'ca_certificate'=>'?string', 'ca_path'=>'?string', 'cipher_algos'=>'?string'], -'mysqli::stat' => ['string|false'], -'mysqli::stmt_init' => ['mysqli_stmt'], -'mysqli::store_result' => ['mysqli_result|false', 'mode='=>'int'], -'mysqli::thread_safe' => ['bool'], -'mysqli::use_result' => ['mysqli_result|false'], -'mysqli_affected_rows' => ['int<-1, max>|numeric-string', 'mysql'=>'mysqli'], -'mysqli_autocommit' => ['bool', 'mysql'=>'mysqli', 'enable'=>'bool'], -'mysqli_begin_transaction' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], -'mysqli_change_user' => ['bool', 'mysql'=>'mysqli', 'username'=>'string', 'password'=>'string', 'database'=>'?string'], -'mysqli_character_set_name' => ['string', 'mysql'=>'mysqli'], -'mysqli_close' => ['true', 'mysql'=>'mysqli'], -'mysqli_commit' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], -'mysqli_connect' => ['mysqli|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], -'mysqli_connect_errno' => ['int'], -'mysqli_connect_error' => ['?string'], -'mysqli_data_seek' => ['bool', 'result'=>'mysqli_result', 'offset'=>'int'], -'mysqli_debug' => ['true', 'options'=>'string'], -'mysqli_disable_reads_from_master' => ['bool', 'link'=>'mysqli'], -'mysqli_disable_rpl_parse' => ['bool', 'link'=>'mysqli'], -'mysqli_dump_debug_info' => ['bool', 'mysql'=>'mysqli'], -'mysqli_embedded_server_end' => ['void'], -'mysqli_embedded_server_start' => ['bool', 'start'=>'int', 'arguments'=>'array', 'groups'=>'array'], -'mysqli_enable_reads_from_master' => ['bool', 'link'=>'mysqli'], -'mysqli_enable_rpl_parse' => ['bool', 'link'=>'mysqli'], -'mysqli_errno' => ['int', 'mysql'=>'mysqli'], -'mysqli_error' => ['string', 'mysql'=>'mysqli'], -'mysqli_error_list' => ['array', 'mysql'=>'mysqli'], -'mysqli_escape_string' => ['string', 'mysql'=>'mysqli', 'string'=>'string'], -'mysqli_execute' => ['bool', 'statement'=>'mysqli_stmt', 'params='=>'list|null'], -'mysqli_execute_query' => ['mysqli_result|bool', 'mysql'=>'mysqli', 'query'=>'non-empty-string', 'params='=>'list|null'], -'mysqli_fetch_all' => ['list>', 'result'=>'mysqli_result', 'mode='=>'3'], -'mysqli_fetch_all\'1' => ['list>', 'result'=>'mysqli_result', 'mode='=>'1'], -'mysqli_fetch_all\'2' => ['list>', 'result'=>'mysqli_result', 'mode='=>'2'], -'mysqli_fetch_array' => ['array|false|null', 'result'=>'mysqli_result', 'mode='=>'3'], -'mysqli_fetch_array\'1' => ['array|false|null', 'result'=>'mysqli_result', 'mode='=>'1'], -'mysqli_fetch_array\'2' => ['list|false|null', 'result'=>'mysqli_result', 'mode='=>'2'], -'mysqli_fetch_assoc' => ['array|false|null', 'result'=>'mysqli_result'], -'mysqli_fetch_column' => ['null|int|float|string|false', 'result'=>'mysqli_result', 'column='=>'int'], -'mysqli_fetch_field' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result'], -'mysqli_fetch_field_direct' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result', 'index'=>'int'], -'mysqli_fetch_fields' => ['list', 'result'=>'mysqli_result'], -'mysqli_fetch_lengths' => ['array|false', 'result'=>'mysqli_result'], -'mysqli_fetch_object' => ['object|false|null', 'result'=>'mysqli_result', 'class='=>'string', 'constructor_args='=>'array'], -'mysqli_fetch_row' => ['list|false|null', 'result'=>'mysqli_result'], -'mysqli_field_count' => ['int', 'mysql'=>'mysqli'], -'mysqli_field_seek' => ['true', 'result'=>'mysqli_result', 'index'=>'int'], -'mysqli_field_tell' => ['int', 'result'=>'mysqli_result'], -'mysqli_free_result' => ['void', 'result'=>'mysqli_result'], -'mysqli_get_cache_stats' => ['array|false'], -'mysqli_get_charset' => ['?object', 'mysql'=>'mysqli'], -'mysqli_get_client_info' => ['string', 'mysql='=>'?mysqli'], -'mysqli_get_client_stats' => ['array'], -'mysqli_get_client_version' => ['int'], -'mysqli_get_connection_stats' => ['array', 'mysql'=>'mysqli'], -'mysqli_get_host_info' => ['string', 'mysql'=>'mysqli'], -'mysqli_get_links_stats' => ['array'], -'mysqli_get_proto_info' => ['int', 'mysql'=>'mysqli'], -'mysqli_get_server_info' => ['string', 'mysql'=>'mysqli'], -'mysqli_get_server_version' => ['int', 'mysql'=>'mysqli'], -'mysqli_get_warnings' => ['mysqli_warning', 'mysql'=>'mysqli'], -'mysqli_info' => ['?string', 'mysql'=>'mysqli'], -'mysqli_init' => ['mysqli|false'], -'mysqli_insert_id' => ['int|string', 'mysql'=>'mysqli'], -'mysqli_kill' => ['bool', 'mysql'=>'mysqli', 'process_id'=>'int'], -'mysqli_link_construct' => ['object'], -'mysqli_master_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], -'mysqli_more_results' => ['bool', 'mysql'=>'mysqli'], -'mysqli_multi_query' => ['bool', 'mysql'=>'mysqli', 'query'=>'string'], -'mysqli_next_result' => ['bool', 'mysql'=>'mysqli'], -'mysqli_num_fields' => ['int', 'result'=>'mysqli_result'], -'mysqli_num_rows' => ['int<0, max>|numeric-string', 'result'=>'mysqli_result'], -'mysqli_options' => ['bool', 'mysql'=>'mysqli', 'option'=>'int', 'value'=>'string|int'], -'mysqli_ping' => ['bool', 'mysql'=>'mysqli'], -'mysqli_poll' => ['int|false', '&w_read'=>'?array', '&w_error'=>'?array', '&w_reject'=>'array', 'seconds'=>'int', 'microseconds='=>'int'], -'mysqli_prepare' => ['mysqli_stmt|false', 'mysql'=>'mysqli', 'query'=>'string'], -'mysqli_query' => ['mysqli_result|bool', 'mysql'=>'mysqli', 'query'=>'string', 'result_mode='=>'int'], -'mysqli_real_connect' => ['bool', 'mysql'=>'mysqli', 'hostname='=>'?string', 'username='=>'?string', 'password='=>'?string', 'database='=>'?string', 'port='=>'?int', 'socket='=>'?string', 'flags='=>'int'], -'mysqli_real_escape_string' => ['string', 'mysql'=>'mysqli', 'string'=>'string'], -'mysqli_real_query' => ['bool', 'mysql'=>'mysqli', 'query'=>'string'], -'mysqli_reap_async_query' => ['mysqli_result|false', 'mysql'=>'mysqli'], -'mysqli_refresh' => ['bool', 'mysql'=>'mysqli', 'flags'=>'int'], -'mysqli_release_savepoint' => ['bool', 'mysql'=>'mysqli', 'name'=>'string'], -'mysqli_report' => ['bool', 'flags'=>'int'], -'mysqli_result::__construct' => ['void', 'mysql'=>'mysqli', 'result_mode='=>'int'], -'mysqli_result::close' => ['void'], -'mysqli_result::data_seek' => ['bool', 'offset'=>'int'], -'mysqli_result::fetch_all' => ['list>', 'mode='=>'3'], -'mysqli_result::fetch_all\'1' => ['list>', 'mode='=>'1'], -'mysqli_result::fetch_all\'2' => ['list>', 'mode='=>'2'], -'mysqli_result::fetch_array' => ['array|false|null', 'mode='=>'3'], -'mysqli_result::fetch_array\'1' => ['array|false|null', 'mode='=>'1'], -'mysqli_result::fetch_array\'2' => ['list|false|null', 'mode='=>'2'], -'mysqli_result::fetch_assoc' => ['array|false|null'], -'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column='=>'int'], -'mysqli_result::fetch_field' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false'], -'mysqli_result::fetch_field_direct' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'index'=>'int'], -'mysqli_result::fetch_fields' => ['list'], -'mysqli_result::fetch_object' => ['object|false|null', 'class='=>'string', 'constructor_args='=>'array'], -'mysqli_result::fetch_row' => ['list|false|null'], -'mysqli_result::field_seek' => ['true', 'index'=>'int'], -'mysqli_result::free' => ['void'], -'mysqli_result::free_result' => ['void'], -'mysqli_rollback' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], -'mysqli_rpl_parse_enabled' => ['int', 'link'=>'mysqli'], -'mysqli_rpl_probe' => ['bool', 'link'=>'mysqli'], -'mysqli_rpl_query_type' => ['int', 'link'=>'mysqli', 'query'=>'string'], -'mysqli_savepoint' => ['bool', 'mysql'=>'mysqli', 'name'=>'string'], -'mysqli_savepoint_libmysql' => ['bool'], -'mysqli_select_db' => ['bool', 'mysql'=>'mysqli', 'database'=>'string'], -'mysqli_send_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], -'mysqli_set_charset' => ['bool', 'mysql'=>'mysqli', 'charset'=>'string'], -'mysqli_set_local_infile_default' => ['void', 'link'=>'mysqli'], -'mysqli_set_local_infile_handler' => ['bool', 'link'=>'mysqli', 'read_func'=>'callable'], -'mysqli_set_opt' => ['bool', 'mysql'=>'mysqli', 'option'=>'int', 'value'=>'string|int'], -'mysqli_slave_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], -'mysqli_sqlstate' => ['string', 'mysql'=>'mysqli'], -'mysqli_ssl_set' => ['true', 'mysql'=>'mysqli', 'key'=>'?string', 'certificate'=>'?string', 'ca_certificate'=>'?string', 'ca_path'=>'?string', 'cipher_algos'=>'?string'], -'mysqli_stat' => ['string|false', 'mysql'=>'mysqli'], -'mysqli_stmt::__construct' => ['void', 'mysql'=>'mysqli', 'query='=>'?string'], -'mysqli_stmt::attr_get' => ['int', 'attribute'=>'int'], -'mysqli_stmt::attr_set' => ['bool', 'attribute'=>'int', 'value'=>'int'], -'mysqli_stmt::bind_param' => ['bool', 'types'=>'string', '&var'=>'mixed', '&...vars='=>'mixed'], -'mysqli_stmt::bind_result' => ['bool', '&w_var1'=>'', '&...w_vars='=>''], -'mysqli_stmt::close' => ['true'], -'mysqli_stmt::data_seek' => ['void', 'offset'=>'int'], -'mysqli_stmt::execute' => ['bool', 'params='=>'list|null'], -'mysqli_stmt::fetch' => ['bool|null'], -'mysqli_stmt::free_result' => ['void'], -'mysqli_stmt::get_result' => ['mysqli_result|false'], -'mysqli_stmt::get_warnings' => ['object'], -'mysqli_stmt::more_results' => ['bool'], -'mysqli_stmt::next_result' => ['bool'], -'mysqli_stmt::num_rows' => ['int<0, max>|numeric-string'], -'mysqli_stmt::prepare' => ['bool', 'query'=>'string'], -'mysqli_stmt::reset' => ['bool'], -'mysqli_stmt::result_metadata' => ['mysqli_result|false'], -'mysqli_stmt::send_long_data' => ['bool', 'param_num'=>'int', 'data'=>'string'], -'mysqli_stmt::store_result' => ['bool'], -'mysqli_stmt_affected_rows' => ['int<-1, max>|numeric-string', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_attr_get' => ['int', 'statement'=>'mysqli_stmt', 'attribute'=>'int'], -'mysqli_stmt_attr_set' => ['bool', 'statement'=>'mysqli_stmt', 'attribute'=>'int', 'value'=>'int'], -'mysqli_stmt_bind_param' => ['bool', 'statement'=>'mysqli_stmt', 'types'=>'string', '&var'=>'mixed', '&...vars='=>'mixed'], -'mysqli_stmt_bind_result' => ['bool', 'statement'=>'mysqli_stmt', '&w_var1'=>'', '&...w_vars='=>''], -'mysqli_stmt_close' => ['true', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_data_seek' => ['void', 'statement'=>'mysqli_stmt', 'offset'=>'int'], -'mysqli_stmt_errno' => ['int', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_error' => ['string', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_error_list' => ['array', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_execute' => ['bool', 'statement'=>'mysqli_stmt', 'params='=>'list|null'], -'mysqli_stmt_fetch' => ['bool|null', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_field_count' => ['int', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_free_result' => ['void', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_get_result' => ['mysqli_result|false', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_get_warnings' => ['object', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_init' => ['mysqli_stmt', 'mysql'=>'mysqli'], -'mysqli_stmt_insert_id' => ['mixed', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_more_results' => ['bool', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_next_result' => ['bool', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_num_rows' => ['int', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_param_count' => ['int', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_prepare' => ['bool', 'statement'=>'mysqli_stmt', 'query'=>'string'], -'mysqli_stmt_reset' => ['bool', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_result_metadata' => ['mysqli_result|false', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_send_long_data' => ['bool', 'statement'=>'mysqli_stmt', 'param_num'=>'int', 'data'=>'string'], -'mysqli_stmt_sqlstate' => ['string', 'statement'=>'mysqli_stmt'], -'mysqli_stmt_store_result' => ['bool', 'statement'=>'mysqli_stmt'], -'mysqli_store_result' => ['mysqli_result|false', 'mysql'=>'mysqli', 'mode='=>'int'], -'mysqli_thread_id' => ['int', 'mysql'=>'mysqli'], -'mysqli_thread_safe' => ['bool'], -'mysqli_use_result' => ['mysqli_result|false', 'mysql'=>'mysqli'], -'mysqli_warning::__construct' => ['void'], -'mysqli_warning::next' => ['bool'], -'mysqli_warning_count' => ['int', 'mysql'=>'mysqli'], -'mysqlnd_memcache_get_config' => ['array', 'connection'=>'mixed'], -'mysqlnd_memcache_set' => ['bool', 'mysql_connection'=>'mixed', 'memcache_connection='=>'Memcached', 'pattern='=>'string', 'callback='=>'callable'], -'mysqlnd_ms_dump_servers' => ['array', 'connection'=>'mixed'], -'mysqlnd_ms_fabric_select_global' => ['array', 'connection'=>'mixed', 'table_name'=>'mixed'], -'mysqlnd_ms_fabric_select_shard' => ['array', 'connection'=>'mixed', 'table_name'=>'mixed', 'shard_key'=>'mixed'], -'mysqlnd_ms_get_last_gtid' => ['string', 'connection'=>'mixed'], -'mysqlnd_ms_get_last_used_connection' => ['array', 'connection'=>'mixed'], -'mysqlnd_ms_get_stats' => ['array'], -'mysqlnd_ms_match_wild' => ['bool', 'table_name'=>'string', 'wildcard'=>'string'], -'mysqlnd_ms_query_is_select' => ['int', 'query'=>'string'], -'mysqlnd_ms_set_qos' => ['bool', 'connection'=>'mixed', 'service_level'=>'int', 'service_level_option='=>'int', 'option_value='=>'mixed'], -'mysqlnd_ms_set_user_pick_server' => ['bool', 'function'=>'string'], -'mysqlnd_ms_xa_begin' => ['int', 'connection'=>'mixed', 'gtrid'=>'string', 'timeout='=>'int'], -'mysqlnd_ms_xa_commit' => ['int', 'connection'=>'mixed', 'gtrid'=>'string'], -'mysqlnd_ms_xa_gc' => ['int', 'connection'=>'mixed', 'gtrid='=>'string', 'ignore_max_retries='=>'bool'], -'mysqlnd_ms_xa_rollback' => ['int', 'connection'=>'mixed', 'gtrid'=>'string'], -'mysqlnd_qc_change_handler' => ['bool', 'handler'=>''], -'mysqlnd_qc_clear_cache' => ['bool'], -'mysqlnd_qc_get_available_handlers' => ['array'], -'mysqlnd_qc_get_cache_info' => ['array'], -'mysqlnd_qc_get_core_stats' => ['array'], -'mysqlnd_qc_get_handler' => ['array'], -'mysqlnd_qc_get_normalized_query_trace_log' => ['array'], -'mysqlnd_qc_get_query_trace_log' => ['array'], -'mysqlnd_qc_set_cache_condition' => ['bool', 'condition_type'=>'int', 'condition'=>'mixed', 'condition_option'=>'mixed'], -'mysqlnd_qc_set_is_select' => ['mixed', 'callback'=>'string'], -'mysqlnd_qc_set_storage_handler' => ['bool', 'handler'=>'string'], -'mysqlnd_qc_set_user_handlers' => ['bool', 'get_hash'=>'string', 'find_query_in_cache'=>'string', 'return_to_cache'=>'string', 'add_query_to_cache_if_not_exists'=>'string', 'query_is_select'=>'string', 'update_query_run_time_stats'=>'string', 'get_stats'=>'string', 'clear_cache'=>'string'], -'mysqlnd_uh_convert_to_mysqlnd' => ['resource', '&rw_mysql_connection'=>'mysqli'], -'mysqlnd_uh_set_connection_proxy' => ['bool', '&rw_connection_proxy'=>'MysqlndUhConnection', '&rw_mysqli_connection='=>'mysqli'], -'mysqlnd_uh_set_statement_proxy' => ['bool', '&rw_statement_proxy'=>'MysqlndUhStatement'], -'MysqlndUhConnection::__construct' => ['void'], -'MysqlndUhConnection::changeUser' => ['bool', 'connection'=>'mysqlnd_connection', 'user'=>'string', 'password'=>'string', 'database'=>'string', 'silent'=>'bool', 'passwd_len'=>'int'], -'MysqlndUhConnection::charsetName' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::close' => ['bool', 'connection'=>'mysqlnd_connection', 'close_type'=>'int'], -'MysqlndUhConnection::connect' => ['bool', 'connection'=>'mysqlnd_connection', 'host'=>'string', 'use'=>'string', 'password'=>'string', 'database'=>'string', 'port'=>'int', 'socket'=>'string', 'mysql_flags'=>'int'], -'MysqlndUhConnection::endPSession' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::escapeString' => ['string', 'connection'=>'mysqlnd_connection', 'escape_string'=>'string'], -'MysqlndUhConnection::getAffectedRows' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getErrorNumber' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getErrorString' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getFieldCount' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getHostInformation' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getLastInsertId' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getLastMessage' => ['void', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getProtocolInformation' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getServerInformation' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getServerStatistics' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getServerVersion' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getSqlstate' => ['string', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getStatistics' => ['array', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getThreadId' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::getWarningCount' => ['int', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::init' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::killConnection' => ['bool', 'connection'=>'mysqlnd_connection', 'pid'=>'int'], -'MysqlndUhConnection::listFields' => ['array', 'connection'=>'mysqlnd_connection', 'table'=>'string', 'achtung_wild'=>'string'], -'MysqlndUhConnection::listMethod' => ['void', 'connection'=>'mysqlnd_connection', 'query'=>'string', 'achtung_wild'=>'string', 'par1'=>'string'], -'MysqlndUhConnection::moreResults' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::nextResult' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::ping' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::query' => ['bool', 'connection'=>'mysqlnd_connection', 'query'=>'string'], -'MysqlndUhConnection::queryReadResultsetHeader' => ['bool', 'connection'=>'mysqlnd_connection', 'mysqlnd_stmt'=>'mysqlnd_statement'], -'MysqlndUhConnection::reapQuery' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::refreshServer' => ['bool', 'connection'=>'mysqlnd_connection', 'options'=>'int'], -'MysqlndUhConnection::restartPSession' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::selectDb' => ['bool', 'connection'=>'mysqlnd_connection', 'database'=>'string'], -'MysqlndUhConnection::sendClose' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::sendQuery' => ['bool', 'connection'=>'mysqlnd_connection', 'query'=>'string'], -'MysqlndUhConnection::serverDumpDebugInformation' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::setAutocommit' => ['bool', 'connection'=>'mysqlnd_connection', 'mode'=>'int'], -'MysqlndUhConnection::setCharset' => ['bool', 'connection'=>'mysqlnd_connection', 'charset'=>'string'], -'MysqlndUhConnection::setClientOption' => ['bool', 'connection'=>'mysqlnd_connection', 'option'=>'int', 'value'=>'int'], -'MysqlndUhConnection::setServerOption' => ['void', 'connection'=>'mysqlnd_connection', 'option'=>'int'], -'MysqlndUhConnection::shutdownServer' => ['void', 'MYSQLND_UH_RES_MYSQLND_NAME'=>'string', 'level'=>'string'], -'MysqlndUhConnection::simpleCommand' => ['bool', 'connection'=>'mysqlnd_connection', 'command'=>'int', 'arg'=>'string', 'ok_packet'=>'int', 'silent'=>'bool', 'ignore_upsert_status'=>'bool'], -'MysqlndUhConnection::simpleCommandHandleResponse' => ['bool', 'connection'=>'mysqlnd_connection', 'ok_packet'=>'int', 'silent'=>'bool', 'command'=>'int', 'ignore_upsert_status'=>'bool'], -'MysqlndUhConnection::sslSet' => ['bool', 'connection'=>'mysqlnd_connection', 'key'=>'string', 'cert'=>'string', 'ca'=>'string', 'capath'=>'string', 'cipher'=>'string'], -'MysqlndUhConnection::stmtInit' => ['resource', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::storeResult' => ['resource', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::txCommit' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::txRollback' => ['bool', 'connection'=>'mysqlnd_connection'], -'MysqlndUhConnection::useResult' => ['resource', 'connection'=>'mysqlnd_connection'], -'MysqlndUhPreparedStatement::__construct' => ['void'], -'MysqlndUhPreparedStatement::execute' => ['bool', 'statement'=>'mysqlnd_prepared_statement'], -'MysqlndUhPreparedStatement::prepare' => ['bool', 'statement'=>'mysqlnd_prepared_statement', 'query'=>'string'], -'natcasesort' => ['true', '&rw_array'=>'array'], -'natsort' => ['true', '&rw_array'=>'array'], -'net_get_interfaces' => ['array>|false'], -'newrelic_add_custom_parameter' => ['bool', 'key'=>'string', 'value'=>'bool|float|int|string'], -'newrelic_add_custom_tracer' => ['bool', 'function_name'=>'string'], -'newrelic_background_job' => ['void', 'flag='=>'bool'], -'newrelic_capture_params' => ['void', 'enable='=>'bool'], -'newrelic_custom_metric' => ['bool', 'metric_name'=>'string', 'value'=>'float'], -'newrelic_disable_autorum' => ['true'], -'newrelic_end_of_transaction' => ['void'], -'newrelic_end_transaction' => ['bool', 'ignore='=>'bool'], -'newrelic_get_browser_timing_footer' => ['string', 'include_tags='=>'bool'], -'newrelic_get_browser_timing_header' => ['string', 'include_tags='=>'bool'], -'newrelic_ignore_apdex' => ['void'], -'newrelic_ignore_transaction' => ['void'], -'newrelic_name_transaction' => ['bool', 'name'=>'string'], -'newrelic_notice_error' => ['void', 'message'=>'string', 'exception='=>'Exception|Throwable'], -'newrelic_notice_error\'1' => ['void', 'unused_1'=>'string', 'message'=>'string', 'unused_2'=>'string', 'unused_3'=>'int', 'unused_4='=>''], -'newrelic_record_custom_event' => ['void', 'name'=>'string', 'attributes'=>'array'], -'newrelic_record_datastore_segment' => ['mixed', 'func'=>'callable', 'parameters'=>'array'], -'newrelic_set_appname' => ['bool', 'name'=>'string', 'license='=>'string', 'xmit='=>'bool'], -'newrelic_set_user_attributes' => ['bool', 'user'=>'string', 'account'=>'string', 'product'=>'string'], -'newrelic_start_transaction' => ['bool', 'appname'=>'string', 'license='=>'string'], -'next' => ['mixed', '&r_array'=>'array'], -'ngettext' => ['string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int'], -'nl2br' => ['string', 'string'=>'string', 'use_xhtml='=>'bool'], -'nl_langinfo' => ['string|false', 'item'=>'int'], -'NoRewindIterator::__construct' => ['void', 'iterator'=>'Iterator'], -'NoRewindIterator::current' => ['mixed'], -'NoRewindIterator::getInnerIterator' => ['Iterator'], -'NoRewindIterator::key' => ['mixed'], -'NoRewindIterator::next' => ['void'], -'NoRewindIterator::rewind' => ['void'], -'NoRewindIterator::valid' => ['bool'], -'Normalizer::getRawDecomposition' => ['?string', 'string'=>'string', 'form='=>'int'], -'Normalizer::isNormalized' => ['bool', 'string'=>'string', 'form='=>'int'], -'Normalizer::normalize' => ['string|false', 'string'=>'string', 'form='=>'int'], -'normalizer_get_raw_decomposition' => ['string|null', 'string'=>'string', 'form='=>'int'], -'normalizer_is_normalized' => ['bool', 'string'=>'string', 'form='=>'int'], -'normalizer_normalize' => ['string|false', 'string'=>'string', 'form='=>'int'], -'notes_body' => ['array', 'server'=>'string', 'mailbox'=>'string', 'msg_number'=>'int'], -'notes_copy_db' => ['bool', 'from_database_name'=>'string', 'to_database_name'=>'string'], -'notes_create_db' => ['bool', 'database_name'=>'string'], -'notes_create_note' => ['bool', 'database_name'=>'string', 'form_name'=>'string'], -'notes_drop_db' => ['bool', 'database_name'=>'string'], -'notes_find_note' => ['int', 'database_name'=>'string', 'name'=>'string', 'type='=>'string'], -'notes_header_info' => ['object', 'server'=>'string', 'mailbox'=>'string', 'msg_number'=>'int'], -'notes_list_msgs' => ['bool', 'db'=>'string'], -'notes_mark_read' => ['bool', 'database_name'=>'string', 'user_name'=>'string', 'note_id'=>'string'], -'notes_mark_unread' => ['bool', 'database_name'=>'string', 'user_name'=>'string', 'note_id'=>'string'], -'notes_nav_create' => ['bool', 'database_name'=>'string', 'name'=>'string'], -'notes_search' => ['array', 'database_name'=>'string', 'keywords'=>'string'], -'notes_unread' => ['array', 'database_name'=>'string', 'user_name'=>'string'], -'notes_version' => ['float', 'database_name'=>'string'], -'nsapi_request_headers' => ['array'], -'nsapi_response_headers' => ['array'], -'nsapi_virtual' => ['bool', 'uri'=>'string'], -'nthmac' => ['string', 'clent'=>'string', 'data'=>'string'], -'number_format' => ['string', 'num'=>'float', 'decimals='=>'int', 'decimal_separator='=>'?string', 'thousands_separator='=>'?string'], -'NumberFormatter::__construct' => ['void', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], -'NumberFormatter::create' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], -'NumberFormatter::format' => ['string|false', 'num'=>'', 'type='=>'int'], -'NumberFormatter::formatCurrency' => ['string|false', 'amount'=>'float', 'currency'=>'string'], -'NumberFormatter::getAttribute' => ['int|float|false', 'attribute'=>'int'], -'NumberFormatter::getErrorCode' => ['int'], -'NumberFormatter::getErrorMessage' => ['string'], -'NumberFormatter::getLocale' => ['string', 'type='=>'int'], -'NumberFormatter::getPattern' => ['string|false'], -'NumberFormatter::getSymbol' => ['string|false', 'symbol'=>'int'], -'NumberFormatter::getTextAttribute' => ['string|false', 'attribute'=>'int'], -'NumberFormatter::parse' => ['int|float|false', 'string'=>'string', 'type='=>'int', '&rw_offset='=>'int'], -'NumberFormatter::parseCurrency' => ['float|false', 'string'=>'string', '&w_currency'=>'string', '&rw_offset='=>'int'], -'NumberFormatter::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'int|float'], -'NumberFormatter::setPattern' => ['bool', 'pattern'=>'string'], -'NumberFormatter::setSymbol' => ['bool', 'symbol'=>'int', 'value'=>'string'], -'NumberFormatter::setTextAttribute' => ['bool', 'attribute'=>'int', 'value'=>'string'], -'numfmt_create' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], -'numfmt_format' => ['string|false', 'formatter'=>'NumberFormatter', 'num'=>'int|float', 'type='=>'int'], -'numfmt_format_currency' => ['string|false', 'formatter'=>'NumberFormatter', 'amount'=>'float', 'currency'=>'string'], -'numfmt_get_attribute' => ['float|int|false', 'formatter'=>'NumberFormatter', 'attribute'=>'int'], -'numfmt_get_error_code' => ['int', 'formatter'=>'NumberFormatter'], -'numfmt_get_error_message' => ['string', 'formatter'=>'NumberFormatter'], -'numfmt_get_locale' => ['string', 'formatter'=>'NumberFormatter', 'type='=>'int'], -'numfmt_get_pattern' => ['string|false', 'formatter'=>'NumberFormatter'], -'numfmt_get_symbol' => ['string|false', 'formatter'=>'NumberFormatter', 'symbol'=>'int'], -'numfmt_get_text_attribute' => ['string|false', 'formatter'=>'NumberFormatter', 'attribute'=>'int'], -'numfmt_parse' => ['float|int|false', 'formatter'=>'NumberFormatter', 'string'=>'string', 'type='=>'int', '&rw_offset='=>'int'], -'numfmt_parse_currency' => ['float|false', 'formatter'=>'NumberFormatter', 'string'=>'string', '&w_currency'=>'string', '&rw_offset='=>'int'], -'numfmt_set_attribute' => ['bool', 'formatter'=>'NumberFormatter', 'attribute'=>'int', 'value'=>'float|int'], -'numfmt_set_pattern' => ['bool', 'formatter'=>'NumberFormatter', 'pattern'=>'string'], -'numfmt_set_symbol' => ['bool', 'formatter'=>'NumberFormatter', 'symbol'=>'int', 'value'=>'string'], -'numfmt_set_text_attribute' => ['bool', 'formatter'=>'NumberFormatter', 'attribute'=>'int', 'value'=>'string'], -'OAuth::__construct' => ['void', 'consumer_key'=>'string', 'consumer_secret'=>'string', 'signature_method='=>'string', 'auth_type='=>'int'], -'OAuth::disableDebug' => ['bool'], -'OAuth::disableRedirects' => ['bool'], -'OAuth::disableSSLChecks' => ['bool'], -'OAuth::enableDebug' => ['bool'], -'OAuth::enableRedirects' => ['bool'], -'OAuth::enableSSLChecks' => ['bool'], -'OAuth::fetch' => ['mixed', 'protected_resource_url'=>'string', 'extra_parameters='=>'array', 'http_method='=>'string', 'http_headers='=>'array'], -'OAuth::generateSignature' => ['string', 'http_method'=>'string', 'url'=>'string', 'extra_parameters='=>'mixed'], -'OAuth::getAccessToken' => ['array|false', 'access_token_url'=>'string', 'auth_session_handle='=>'string', 'verifier_token='=>'string', 'http_method='=>'string'], -'OAuth::getCAPath' => ['array'], -'OAuth::getLastResponse' => ['string'], -'OAuth::getLastResponseHeaders' => ['string|false'], -'OAuth::getLastResponseInfo' => ['array'], -'OAuth::getRequestHeader' => ['string|false', 'http_method'=>'string', 'url'=>'string', 'extra_parameters='=>'mixed'], -'OAuth::getRequestToken' => ['array|false', 'request_token_url'=>'string', 'callback_url='=>'string', 'http_method='=>'string'], -'OAuth::setAuthType' => ['bool', 'auth_type'=>'int'], -'OAuth::setCAPath' => ['mixed', 'ca_path='=>'string', 'ca_info='=>'string'], -'OAuth::setNonce' => ['mixed', 'nonce'=>'string'], -'OAuth::setRequestEngine' => ['void', 'reqengine'=>'int'], -'OAuth::setRSACertificate' => ['mixed', 'cert'=>'string'], -'OAuth::setSSLChecks' => ['bool', 'sslcheck'=>'int'], -'OAuth::setTimeout' => ['void', 'timeout'=>'int'], -'OAuth::setTimestamp' => ['mixed', 'timestamp'=>'string'], -'OAuth::setToken' => ['bool', 'token'=>'string', 'token_secret'=>'string'], -'OAuth::setVersion' => ['bool', 'version'=>'string'], -'oauth_get_sbs' => ['string', 'http_method'=>'string', 'uri'=>'string', 'parameters'=>'array'], -'oauth_urlencode' => ['string', 'uri'=>'string'], -'OAuthProvider::__construct' => ['void', 'params_array='=>'array'], -'OAuthProvider::addRequiredParameter' => ['bool', 'req_params'=>'string'], -'OAuthProvider::callconsumerHandler' => ['void'], -'OAuthProvider::callTimestampNonceHandler' => ['void'], -'OAuthProvider::calltokenHandler' => ['void'], -'OAuthProvider::checkOAuthRequest' => ['void', 'uri='=>'string', 'method='=>'string'], -'OAuthProvider::consumerHandler' => ['void', 'callback_function'=>'callable'], -'OAuthProvider::generateToken' => ['string', 'size'=>'int', 'strong='=>'bool'], -'OAuthProvider::is2LeggedEndpoint' => ['void', 'params_array'=>'mixed'], -'OAuthProvider::isRequestTokenEndpoint' => ['void', 'will_issue_request_token'=>'bool'], -'OAuthProvider::removeRequiredParameter' => ['bool', 'req_params'=>'string'], -'OAuthProvider::reportProblem' => ['string', 'oauthexception'=>'string', 'send_headers='=>'bool'], -'OAuthProvider::setParam' => ['bool', 'param_key'=>'string', 'param_val='=>'mixed'], -'OAuthProvider::setRequestTokenPath' => ['bool', 'path'=>'string'], -'OAuthProvider::timestampNonceHandler' => ['void', 'callback_function'=>'callable'], -'OAuthProvider::tokenHandler' => ['void', 'callback_function'=>'callable'], -'ob_clean' => ['bool'], -'ob_deflatehandler' => ['string', 'data'=>'string', 'mode'=>'int'], -'ob_end_clean' => ['bool'], -'ob_end_flush' => ['bool'], -'ob_etaghandler' => ['string', 'data'=>'string', 'mode'=>'int'], -'ob_flush' => ['bool'], -'ob_get_clean' => ['string|false'], -'ob_get_contents' => ['string|false'], -'ob_get_flush' => ['string|false'], -'ob_get_length' => ['int|false'], -'ob_get_level' => ['int'], -'ob_get_status' => ['array', 'full_status='=>'bool'], -'ob_gzhandler' => ['string|false', 'data'=>'string', 'flags'=>'int'], -'ob_iconv_handler' => ['string', 'contents'=>'string', 'status'=>'int'], -'ob_implicit_flush' => ['void', 'enable='=>'bool'], -'ob_inflatehandler' => ['string', 'data'=>'string', 'mode'=>'int'], -'ob_list_handlers' => ['list'], -'ob_start' => ['bool', 'callback='=>'string|array|?callable', 'chunk_size='=>'int', 'flags='=>'int'], -'ob_tidyhandler' => ['string', 'input'=>'string', 'mode='=>'int'], -'oci_bind_array_by_name' => ['bool', 'statement'=>'resource', 'param'=>'string', '&rw_var'=>'array', 'max_array_length'=>'int', 'max_item_length='=>'int', 'type='=>'int'], -'oci_bind_by_name' => ['bool', 'statement'=>'resource', 'param'=>'string', '&rw_var'=>'mixed', 'max_length='=>'int', 'type='=>'int'], -'oci_cancel' => ['bool', 'statement'=>'resource'], -'oci_client_version' => ['string'], -'oci_close' => ['bool', 'connection'=>'resource'], -'OCICollection::append' => ['bool', 'value'=>'mixed'], -'OCICollection::assign' => ['bool', 'from'=>'OCI_Collection'], -'OCICollection::assignElem' => ['bool', 'index'=>'int', 'value'=>'mixed'], -'OCICollection::free' => ['bool'], -'OCICollection::getElem' => ['mixed', 'index'=>'int'], -'OCICollection::max' => ['int|false'], -'OCICollection::size' => ['int|false'], -'OCICollection::trim' => ['bool', 'num'=>'int'], -'oci_collection_append' => ['bool', 'collection'=>'string'], -'oci_collection_assign' => ['bool', 'to'=>'object'], -'oci_collection_element_assign' => ['bool', 'collection'=>'int', 'index'=>'string'], -'oci_collection_element_get' => ['string', 'collection'=>'int'], -'oci_collection_max' => ['int'], -'oci_collection_size' => ['int'], -'oci_collection_trim' => ['bool', 'collection'=>'int'], -'oci_commit' => ['bool', 'connection'=>'resource'], -'oci_connect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], -'oci_define_by_name' => ['bool', 'statement'=>'resource', 'column'=>'string', '&w_var'=>'mixed', 'type='=>'int'], -'oci_error' => ['array|false', 'connection_or_statement='=>'resource'], -'oci_execute' => ['bool', 'statement'=>'resource', 'mode='=>'int'], -'oci_fetch' => ['bool', 'statement'=>'resource'], -'oci_fetch_all' => ['int|false', 'statement'=>'resource', '&w_output'=>'array', 'offset='=>'int', 'limit='=>'int', 'flags='=>'int'], -'oci_fetch_array' => ['array|false', 'statement'=>'resource', 'mode='=>'int'], -'oci_fetch_assoc' => ['array|false', 'statement'=>'resource'], -'oci_fetch_object' => ['object|false', 'statement'=>'resource'], -'oci_fetch_row' => ['array|false', 'statement'=>'resource'], -'oci_field_is_null' => ['bool', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_name' => ['string|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_precision' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_scale' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_size' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_type' => ['mixed|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_field_type_raw' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_free_collection' => ['bool'], -'oci_free_cursor' => ['bool', 'statement'=>'resource'], -'oci_free_descriptor' => ['bool'], -'oci_free_statement' => ['bool', 'statement'=>'resource'], -'oci_get_implicit' => ['bool', 'stmt'=>''], -'oci_get_implicit_resultset' => ['resource|false', 'statement'=>'resource'], -'oci_internal_debug' => ['void', 'onoff'=>'bool'], -'OCILob::append' => ['bool', 'lob_from'=>'OCILob'], -'OCILob::close' => ['bool'], -'OCILob::eof' => ['bool'], -'OCILob::erase' => ['int|false', 'offset='=>'int', 'length='=>'int'], -'OCILob::export' => ['bool', 'filename'=>'string', 'start='=>'int', 'length='=>'int'], -'OCILob::flush' => ['bool', 'flag='=>'int'], -'OCILob::free' => ['bool'], -'OCILob::getbuffering' => ['bool'], -'OCILob::import' => ['bool', 'filename'=>'string'], -'OCILob::load' => ['string|false'], -'OCILob::read' => ['string|false', 'length'=>'int'], -'OCILob::rewind' => ['bool'], -'OCILob::save' => ['bool', 'data'=>'string', 'offset='=>'int'], -'OCILob::savefile' => ['bool', 'filename'=>''], -'OCILob::seek' => ['bool', 'offset'=>'int', 'whence='=>'int'], -'OCILob::setbuffering' => ['bool', 'on_off'=>'bool'], -'OCILob::size' => ['int|false'], -'OCILob::tell' => ['int|false'], -'OCILob::truncate' => ['bool', 'length='=>'int'], -'OCILob::write' => ['int|false', 'data'=>'string', 'length='=>'int'], -'OCILob::writeTemporary' => ['bool', 'data'=>'string', 'lob_type='=>'int'], -'OCILob::writetofile' => ['bool', 'filename'=>'', 'start'=>'', 'length'=>''], -'oci_lob_append' => ['bool', 'to'=>'object'], -'oci_lob_close' => ['bool'], -'oci_lob_copy' => ['bool', 'to'=>'OCILob', 'from'=>'OCILob', 'length='=>'int'], -'oci_lob_eof' => ['bool'], -'oci_lob_erase' => ['int', 'lob'=>'int', 'offset'=>'int'], -'oci_lob_export' => ['bool', 'lob'=>'string', 'filename'=>'int', 'offset'=>'int'], -'oci_lob_flush' => ['bool', 'lob'=>'int'], -'oci_lob_import' => ['bool', 'lob'=>'string'], -'oci_lob_is_equal' => ['bool', 'lob1'=>'OCILob', 'lob2'=>'OCILob'], -'oci_lob_load' => ['string'], -'oci_lob_read' => ['string', 'lob'=>'int'], -'oci_lob_rewind' => ['bool'], -'oci_lob_save' => ['bool', 'lob'=>'string', 'data'=>'int'], -'oci_lob_seek' => ['bool', 'lob'=>'int', 'offset'=>'int'], -'oci_lob_size' => ['int'], -'oci_lob_tell' => ['int'], -'oci_lob_truncate' => ['bool', 'lob'=>'int'], -'oci_lob_write' => ['int', 'lob'=>'string', 'data'=>'int'], -'oci_lob_write_temporary' => ['bool', 'value'=>'string', 'lob_type'=>'int'], -'oci_new_collection' => ['OCICollection|false', 'connection'=>'resource', 'type_name'=>'string', 'schema='=>'string'], -'oci_new_connect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], -'oci_new_cursor' => ['resource|false', 'connection'=>'resource'], -'oci_new_descriptor' => ['OCILob|false', 'connection'=>'resource', 'type='=>'int'], -'oci_num_fields' => ['int|false', 'statement'=>'resource'], -'oci_num_rows' => ['int|false', 'statement'=>'resource'], -'oci_parse' => ['resource|false', 'connection'=>'resource', 'sql'=>'string'], -'oci_password_change' => ['bool', 'connection'=>'resource', 'username'=>'string', 'old_password'=>'string', 'new_password'=>'string'], -'oci_pconnect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], -'oci_register_taf_callback' => ['bool', 'connection'=>'resource', 'callback='=>'callable'], -'oci_result' => ['mixed|false', 'statement'=>'resource', 'column'=>'mixed'], -'oci_rollback' => ['bool', 'connection'=>'resource'], -'oci_server_version' => ['string|false', 'connection'=>'resource'], -'oci_set_action' => ['bool', 'connection'=>'resource', 'action'=>'string'], -'oci_set_call_timeout' => ['bool', 'connection'=>'resource', 'timeout'=>'int'], -'oci_set_client_identifier' => ['bool', 'connection'=>'resource', 'client_id'=>'string'], -'oci_set_client_info' => ['bool', 'connection'=>'resource', 'client_info'=>'string'], -'oci_set_db_operation' => ['bool', 'connection'=>'resource', 'action'=>'string'], -'oci_set_edition' => ['bool', 'edition'=>'string'], -'oci_set_module_name' => ['bool', 'connection'=>'resource', 'name'=>'string'], -'oci_set_prefetch' => ['bool', 'statement'=>'resource', 'rows'=>'int'], -'oci_statement_type' => ['string|false', 'statement'=>'resource'], -'oci_unregister_taf_callback' => ['bool', 'connection'=>'resource'], -'ocifetchinto' => ['int|bool', 'statement'=>'resource', '&w_result'=>'array', 'mode='=>'int'], -'ocigetbufferinglob' => ['bool'], -'ocisetbufferinglob' => ['bool', 'lob'=>'bool'], -'octdec' => ['int|float', 'octal_string'=>'string'], -'odbc_autocommit' => ['int|bool', 'odbc'=>'resource', 'enable='=>'bool'], -'odbc_binmode' => ['bool', 'statement'=>'resource', 'mode'=>'int'], -'odbc_close' => ['void', 'odbc'=>'resource'], -'odbc_close_all' => ['void'], -'odbc_columnprivileges' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'column'=>'string'], -'odbc_columns' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'table='=>'?string', 'column='=>'?string'], -'odbc_commit' => ['bool', 'odbc'=>'resource'], -'odbc_connect' => ['resource|false', 'dsn'=>'string', 'user'=>'string', 'password'=>'string', 'cursor_option='=>'int'], -'odbc_cursor' => ['string', 'statement'=>'resource'], -'odbc_data_source' => ['array|false', 'odbc'=>'resource', 'fetch_type'=>'int'], -'odbc_do' => ['resource', 'odbc'=>'resource', 'query'=>'string'], -'odbc_error' => ['string', 'odbc='=>'resource'], -'odbc_errormsg' => ['string', 'odbc='=>'resource'], -'odbc_exec' => ['resource', 'odbc'=>'resource', 'query'=>'string'], -'odbc_execute' => ['bool', 'statement'=>'resource', 'params='=>'array'], -'odbc_fetch_array' => ['array|false', 'statement'=>'resource', 'row='=>'int'], -'odbc_fetch_into' => ['int', 'statement'=>'resource', '&w_array'=>'array', 'row='=>'int'], -'odbc_fetch_object' => ['stdClass|false', 'statement'=>'resource', 'row='=>'int'], -'odbc_fetch_row' => ['bool', 'statement'=>'resource', 'row='=>'?int'], -'odbc_field_len' => ['int|false', 'statement'=>'resource', 'field'=>'int'], -'odbc_field_name' => ['string|false', 'statement'=>'resource', 'field'=>'int'], -'odbc_field_num' => ['int|false', 'statement'=>'resource', 'field'=>'string'], -'odbc_field_precision' => ['int', 'statement'=>'resource', 'field'=>'int'], -'odbc_field_scale' => ['int|false', 'statement'=>'resource', 'field'=>'int'], -'odbc_field_type' => ['string|false', 'statement'=>'resource', 'field'=>'int'], -'odbc_foreignkeys' => ['resource|false', 'odbc'=>'resource', 'pk_catalog'=>'?string', 'pk_schema'=>'string', 'pk_table'=>'string', 'fk_catalog'=>'string', 'fk_schema'=>'string', 'fk_table'=>'string'], -'odbc_free_result' => ['bool', 'statement'=>'resource'], -'odbc_gettypeinfo' => ['resource', 'odbc'=>'resource', 'data_type='=>'int'], -'odbc_longreadlen' => ['bool', 'statement'=>'resource', 'length'=>'int'], -'odbc_next_result' => ['bool', 'statement'=>'resource'], -'odbc_num_fields' => ['int', 'statement'=>'resource'], -'odbc_num_rows' => ['int', 'statement'=>'resource'], -'odbc_pconnect' => ['resource|false', 'dsn'=>'string', 'user'=>'string', 'password'=>'string', 'cursor_option='=>'int'], -'odbc_prepare' => ['resource|false', 'odbc'=>'resource', 'query'=>'string'], -'odbc_primarykeys' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string'], -'odbc_procedurecolumns' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'procedure='=>'?string', 'column='=>'?string'], -'odbc_procedures' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'procedure='=>'?string'], -'odbc_result' => ['string|bool|null', 'statement'=>'resource', 'field'=>'string|int'], -'odbc_result_all' => ['int|false', 'statement'=>'resource', 'format='=>'string'], -'odbc_rollback' => ['bool', 'odbc'=>'resource'], -'odbc_setoption' => ['bool', 'odbc'=>'resource', 'which'=>'int', 'option'=>'int', 'value'=>'int'], -'odbc_specialcolumns' => ['resource|false', 'odbc'=>'resource', 'type'=>'int', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'scope'=>'int', 'nullable'=>'int'], -'odbc_statistics' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'unique'=>'int', 'accuracy'=>'int'], -'odbc_tableprivileges' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string'], -'odbc_tables' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'table='=>'?string', 'types='=>'?string'], -'opcache_compile_file' => ['bool', 'filename'=>'string'], -'opcache_get_configuration' => ['array'], -'opcache_get_status' => ['array|false', 'include_scripts='=>'bool'], -'opcache_invalidate' => ['bool', 'filename'=>'string', 'force='=>'bool'], -'opcache_is_script_cached' => ['bool', 'filename'=>'string'], -'opcache_reset' => ['bool'], -'openal_buffer_create' => ['resource'], -'openal_buffer_data' => ['bool', 'buffer'=>'resource', 'format'=>'int', 'data'=>'string', 'freq'=>'int'], -'openal_buffer_destroy' => ['bool', 'buffer'=>'resource'], -'openal_buffer_get' => ['int', 'buffer'=>'resource', 'property'=>'int'], -'openal_buffer_loadwav' => ['bool', 'buffer'=>'resource', 'wavfile'=>'string'], -'openal_context_create' => ['resource', 'device'=>'resource'], -'openal_context_current' => ['bool', 'context'=>'resource'], -'openal_context_destroy' => ['bool', 'context'=>'resource'], -'openal_context_process' => ['bool', 'context'=>'resource'], -'openal_context_suspend' => ['bool', 'context'=>'resource'], -'openal_device_close' => ['bool', 'device'=>'resource'], -'openal_device_open' => ['resource|false', 'device_desc='=>'string'], -'openal_listener_get' => ['mixed', 'property'=>'int'], -'openal_listener_set' => ['bool', 'property'=>'int', 'setting'=>'mixed'], -'openal_source_create' => ['resource'], -'openal_source_destroy' => ['bool', 'source'=>'resource'], -'openal_source_get' => ['mixed', 'source'=>'resource', 'property'=>'int'], -'openal_source_pause' => ['bool', 'source'=>'resource'], -'openal_source_play' => ['bool', 'source'=>'resource'], -'openal_source_rewind' => ['bool', 'source'=>'resource'], -'openal_source_set' => ['bool', 'source'=>'resource', 'property'=>'int', 'setting'=>'mixed'], -'openal_source_stop' => ['bool', 'source'=>'resource'], -'openal_stream' => ['resource', 'source'=>'resource', 'format'=>'int', 'rate'=>'int'], -'opendir' => ['resource|false', 'directory'=>'string', 'context='=>'resource'], -'openlog' => ['true', 'prefix'=>'string', 'flags'=>'int', 'facility'=>'int'], -'openssl_cipher_iv_length' => ['int|false', 'cipher_algo'=>'string'], -'openssl_cipher_key_length' => ['positive-int|false', 'cipher_algo'=>'non-empty-string'], -'openssl_csr_export' => ['bool', 'csr'=>'OpenSSLCertificateSigningRequest|string', '&w_output'=>'string', 'no_text='=>'bool'], -'openssl_csr_export_to_file' => ['bool', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'output_filename'=>'string', 'no_text='=>'bool'], -'openssl_csr_get_public_key' => ['OpenSSLAsymmetricKey|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'short_names='=>'bool'], -'openssl_csr_get_subject' => ['array|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'short_names='=>'bool'], -'openssl_csr_new' => ['OpenSSLCertificateSigningRequest|false', 'distinguished_names'=>'array', '&w_private_key'=>'OpenSSLAsymmetricKey', 'options='=>'array|null', 'extra_attributes='=>'array|null'], -'openssl_csr_sign' => ['OpenSSLCertificate|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'ca_certificate'=>'OpenSSLCertificate|string|null', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'days'=>'int', 'options='=>'array|null', 'serial='=>'int'], -'openssl_decrypt' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', 'tag='=>'?string', 'aad='=>'string'], -'openssl_dh_compute_key' => ['string|false', 'public_key'=>'string', 'private_key'=>'OpenSSLAsymmetricKey'], -'openssl_digest' => ['string|false', 'data'=>'string', 'digest_algo'=>'string', 'binary='=>'bool'], -'openssl_encrypt' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', '&w_tag='=>'string', 'aad='=>'string', 'tag_length='=>'int'], -'openssl_error_string' => ['string|false'], -'openssl_free_key' => ['void', 'key'=>'OpenSSLAsymmetricKey'], -'openssl_get_cert_locations' => ['array'], -'openssl_get_cipher_methods' => ['array', 'aliases='=>'bool'], -'openssl_get_curve_names' => ['list'], -'openssl_get_md_methods' => ['array', 'aliases='=>'bool'], -'openssl_get_privatekey' => ['OpenSSLAsymmetricKey|false', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase='=>'?string'], -'openssl_get_publickey' => ['OpenSSLAsymmetricKey|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], -'openssl_open' => ['bool', 'data'=>'string', '&w_output'=>'string', 'encrypted_key'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'cipher_algo'=>'string', 'iv='=>'string|null'], -'openssl_pbkdf2' => ['string|false', 'password'=>'string', 'salt'=>'string', 'key_length'=>'int', 'iterations'=>'int', 'digest_algo='=>'string'], -'openssl_pkcs12_export' => ['bool', 'certificate'=>'OpenSSLCertificate|string', '&w_output'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase'=>'string', 'options='=>'array'], -'openssl_pkcs12_export_to_file' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'output_filename'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase'=>'string', 'options='=>'array'], -'openssl_pkcs12_read' => ['bool', 'pkcs12'=>'string', '&w_certificates'=>'array', 'passphrase'=>'string'], -'openssl_pkcs7_decrypt' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|string', 'private_key='=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string|null'], -'openssl_pkcs7_encrypt' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|list|string', 'headers'=>'array|null', 'flags='=>'int', 'cipher_algo='=>'int'], -'openssl_pkcs7_read' => ['bool', 'data'=>'string', '&w_certificates'=>'array'], -'openssl_pkcs7_sign' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'headers'=>'array|null', 'flags='=>'int', 'untrusted_certificates_filename='=>'string|null'], -'openssl_pkcs7_verify' => ['bool|int', 'input_filename'=>'string', 'flags'=>'int', 'signers_certificates_filename='=>'?string', 'ca_info='=>'array', 'untrusted_certificates_filename='=>'?string', 'content='=>'?string', 'output_filename='=>'?string'], -'openssl_pkey_derive' => ['string|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'key_length='=>'int'], -'openssl_pkey_export' => ['bool', 'key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', '&w_output'=>'string', 'passphrase='=>'string|null', 'options='=>'array|null'], -'openssl_pkey_export_to_file' => ['bool', 'key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'output_filename'=>'string', 'passphrase='=>'string|null', 'options='=>'array|null'], -'openssl_pkey_free' => ['void', 'key'=>'OpenSSLAsymmetricKey'], -'openssl_pkey_get_details' => ['array|false', 'key'=>'OpenSSLAsymmetricKey'], -'openssl_pkey_get_private' => ['OpenSSLAsymmetricKey|false', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', 'passphrase='=>'?string'], -'openssl_pkey_get_public' => ['OpenSSLAsymmetricKey|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], -'openssl_pkey_new' => ['OpenSSLAsymmetricKey|false', 'options='=>'array|null'], -'openssl_private_decrypt' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], -'openssl_private_encrypt' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], -'openssl_public_decrypt' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], -'openssl_public_encrypt' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], -'openssl_random_pseudo_bytes' => ['string', 'length'=>'int', '&w_strong_result='=>'bool'], -'openssl_seal' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_encrypted_keys'=>'array', 'public_key'=>'list', 'cipher_algo'=>'string', '&rw_iv='=>'string'], -'openssl_sign' => ['bool', 'data'=>'string', '&w_signature'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'algorithm='=>'int|string'], -'openssl_spki_export' => ['string|false', 'spki'=>'string'], -'openssl_spki_export_challenge' => ['string|false', 'spki'=>'string'], -'openssl_spki_new' => ['string|false', 'private_key'=>'OpenSSLAsymmetricKey', 'challenge'=>'string', 'digest_algo='=>'int'], -'openssl_spki_verify' => ['bool', 'spki'=>'string'], -'openssl_verify' => ['-1|0|1|false', 'data'=>'string', 'signature'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'algorithm='=>'int|string'], -'openssl_x509_check_private_key' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], -'openssl_x509_checkpurpose' => ['bool|int', 'certificate'=>'OpenSSLCertificate|string', 'purpose'=>'int', 'ca_info='=>'array', 'untrusted_certificates_file='=>'string|null'], -'openssl_x509_export' => ['bool', 'certificate'=>'OpenSSLCertificate|string', '&w_output'=>'string', 'no_text='=>'bool'], -'openssl_x509_export_to_file' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'output_filename'=>'string', 'no_text='=>'bool'], -'openssl_x509_fingerprint' => ['string|false', 'certificate'=>'OpenSSLCertificate|string', 'digest_algo='=>'string', 'binary='=>'bool'], -'openssl_x509_free' => ['void', 'certificate'=>'OpenSSLCertificate'], -'openssl_x509_parse' => ['array|false', 'certificate'=>'OpenSSLCertificate|string', 'short_names='=>'bool'], -'openssl_x509_read' => ['OpenSSLCertificate|false', 'certificate'=>'OpenSSLCertificate|string'], -'openssl_x509_verify' => ['int', 'certificate'=>'string|OpenSSLCertificate', 'public_key'=>'string|OpenSSLCertificate|OpenSSLAsymmetricKey|array'], -'ord' => ['int<0,255>', 'character'=>'string'], -'OuterIterator::current' => ['mixed'], -'OuterIterator::getInnerIterator' => ['Iterator'], -'OuterIterator::key' => ['int|string'], -'OuterIterator::next' => ['void'], -'OuterIterator::rewind' => ['void'], -'OuterIterator::valid' => ['bool'], -'OutOfBoundsException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'OutOfBoundsException::__toString' => ['string'], -'OutOfBoundsException::getCode' => ['int'], -'OutOfBoundsException::getFile' => ['string'], -'OutOfBoundsException::getLine' => ['int'], -'OutOfBoundsException::getMessage' => ['string'], -'OutOfBoundsException::getPrevious' => ['?Throwable'], -'OutOfBoundsException::getTrace' => ['list\',args?:array}>'], -'OutOfBoundsException::getTraceAsString' => ['string'], -'OutOfRangeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'OutOfRangeException::__toString' => ['string'], -'OutOfRangeException::getCode' => ['int'], -'OutOfRangeException::getFile' => ['string'], -'OutOfRangeException::getLine' => ['int'], -'OutOfRangeException::getMessage' => ['string'], -'OutOfRangeException::getPrevious' => ['?Throwable'], -'OutOfRangeException::getTrace' => ['list\',args?:array}>'], -'OutOfRangeException::getTraceAsString' => ['string'], -'output_add_rewrite_var' => ['bool', 'name'=>'string', 'value'=>'string'], -'output_cache_disable' => ['void'], -'output_cache_disable_compression' => ['void'], -'output_cache_exists' => ['bool', 'key'=>'string', 'lifetime'=>'int'], -'output_cache_fetch' => ['string', 'key'=>'string', 'function'=>'', 'lifetime'=>'int'], -'output_cache_get' => ['mixed|false', 'key'=>'string', 'lifetime'=>'int'], -'output_cache_output' => ['string', 'key'=>'string', 'function'=>'', 'lifetime'=>'int'], -'output_cache_put' => ['bool', 'key'=>'string', 'data'=>'mixed'], -'output_cache_remove' => ['bool', 'filename'=>''], -'output_cache_remove_key' => ['bool', 'key'=>'string'], -'output_cache_remove_url' => ['bool', 'url'=>'string'], -'output_cache_stop' => ['void'], -'output_reset_rewrite_vars' => ['bool'], -'outputformatObj::getOption' => ['string', 'property_name'=>'string'], -'outputformatObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'outputformatObj::setOption' => ['void', 'property_name'=>'string', 'new_value'=>'string'], -'outputformatObj::validate' => ['int'], -'OverflowException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'OverflowException::__toString' => ['string'], -'OverflowException::getCode' => ['int'], -'OverflowException::getFile' => ['string'], -'OverflowException::getLine' => ['int'], -'OverflowException::getMessage' => ['string'], -'OverflowException::getPrevious' => ['?Throwable'], -'OverflowException::getTrace' => ['list\',args?:array}>'], -'OverflowException::getTraceAsString' => ['string'], -'overload' => ['', 'class_name'=>'string'], -'override_function' => ['bool', 'function_name'=>'string', 'function_args'=>'string', 'function_code'=>'string'], -'OwsrequestObj::__construct' => ['void'], -'OwsrequestObj::addParameter' => ['int', 'name'=>'string', 'value'=>'string'], -'OwsrequestObj::getName' => ['string', 'index'=>'int'], -'OwsrequestObj::getValue' => ['string', 'index'=>'int'], -'OwsrequestObj::getValueByName' => ['string', 'name'=>'string'], -'OwsrequestObj::loadParams' => ['int'], -'OwsrequestObj::setParameter' => ['int', 'name'=>'string', 'value'=>'string'], -'pack' => ['string', 'format'=>'string', '...values='=>'mixed'], -'parallel\Future::done' => ['bool'], -'parallel\Future::select' => ['mixed', '&resolving'=>'parallel\Future[]', '&w_resolved'=>'parallel\Future[]', '&w_errored'=>'parallel\Future[]', '&w_timedout='=>'parallel\Future[]', 'timeout='=>'int'], -'parallel\Future::value' => ['mixed', 'timeout='=>'int'], -'parallel\Runtime::__construct' => ['void', 'arg'=>'string|array'], -'parallel\Runtime::__construct\'1' => ['void', 'bootstrap'=>'string', 'configuration'=>'array'], -'parallel\Runtime::close' => ['void'], -'parallel\Runtime::kill' => ['void'], -'parallel\Runtime::run' => ['?parallel\Future', 'closure'=>'Closure', 'args='=>'array'], -'ParentIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator'], -'ParentIterator::accept' => ['bool'], -'ParentIterator::getChildren' => ['?ParentIterator'], -'ParentIterator::hasChildren' => ['bool'], -'ParentIterator::next' => ['void'], -'ParentIterator::rewind' => ['void'], -'ParentIterator::valid' => ['bool'], -'Parle\Lexer::advance' => ['void'], -'Parle\Lexer::build' => ['void'], -'Parle\Lexer::callout' => ['void', 'id'=>'int', 'callback'=>'callable'], -'Parle\Lexer::consume' => ['void', 'data'=>'string'], -'Parle\Lexer::dump' => ['void'], -'Parle\Lexer::getToken' => ['Parle\Token'], -'Parle\Lexer::insertMacro' => ['void', 'name'=>'string', 'regex'=>'string'], -'Parle\Lexer::push' => ['void', 'regex'=>'string', 'id'=>'int'], -'Parle\Lexer::reset' => ['void', 'pos'=>'int'], -'Parle\Parser::advance' => ['void'], -'Parle\Parser::build' => ['void'], -'Parle\Parser::consume' => ['void', 'data'=>'string', 'lexer'=>'Parle\Lexer'], -'Parle\Parser::dump' => ['void'], -'Parle\Parser::errorInfo' => ['Parle\ErrorInfo'], -'Parle\Parser::left' => ['void', 'token'=>'string'], -'Parle\Parser::nonassoc' => ['void', 'token'=>'string'], -'Parle\Parser::precedence' => ['void', 'token'=>'string'], -'Parle\Parser::push' => ['int', 'name'=>'string', 'rule'=>'string'], -'Parle\Parser::reset' => ['void', 'tokenId'=>'int'], -'Parle\Parser::right' => ['void', 'token'=>'string'], -'Parle\Parser::sigil' => ['string', 'idx'=>'array'], -'Parle\Parser::token' => ['void', 'token'=>'string'], -'Parle\Parser::tokenId' => ['int', 'token'=>'string'], -'Parle\Parser::trace' => ['string'], -'Parle\Parser::validate' => ['bool', 'data'=>'string', 'lexer'=>'Parle\Lexer'], -'Parle\RLexer::advance' => ['void'], -'Parle\RLexer::build' => ['void'], -'Parle\RLexer::callout' => ['void', 'id'=>'int', 'callback'=>'callable'], -'Parle\RLexer::consume' => ['void', 'data'=>'string'], -'Parle\RLexer::dump' => ['void'], -'Parle\RLexer::getToken' => ['Parle\Token'], -'parle\rlexer::insertMacro' => ['void', 'name'=>'string', 'regex'=>'string'], -'Parle\RLexer::push' => ['void', 'state'=>'string', 'regex'=>'string', 'newState'=>'string'], -'Parle\RLexer::pushState' => ['int', 'state'=>'string'], -'Parle\RLexer::reset' => ['void', 'pos'=>'int'], -'Parle\RParser::advance' => ['void'], -'Parle\RParser::build' => ['void'], -'Parle\RParser::consume' => ['void', 'data'=>'string', 'lexer'=>'Parle\Lexer'], -'Parle\RParser::dump' => ['void'], -'Parle\RParser::errorInfo' => ['Parle\ErrorInfo'], -'Parle\RParser::left' => ['void', 'token'=>'string'], -'Parle\RParser::nonassoc' => ['void', 'token'=>'string'], -'Parle\RParser::precedence' => ['void', 'token'=>'string'], -'Parle\RParser::push' => ['int', 'name'=>'string', 'rule'=>'string'], -'Parle\RParser::reset' => ['void', 'tokenId'=>'int'], -'Parle\RParser::right' => ['void', 'token'=>'string'], -'Parle\RParser::sigil' => ['string', 'idx'=>'array'], -'Parle\RParser::token' => ['void', 'token'=>'string'], -'Parle\RParser::tokenId' => ['int', 'token'=>'string'], -'Parle\RParser::trace' => ['string'], -'Parle\RParser::validate' => ['bool', 'data'=>'string', 'lexer'=>'Parle\Lexer'], -'Parle\Stack::pop' => ['void'], -'Parle\Stack::push' => ['void', 'item'=>'mixed'], -'parse_ini_file' => ['array|false', 'filename'=>'string', 'process_sections='=>'bool', 'scanner_mode='=>'int'], -'parse_ini_string' => ['array|false', 'ini_string'=>'string', 'process_sections='=>'bool', 'scanner_mode='=>'int'], -'parse_str' => ['void', 'string'=>'string', '&w_result'=>'array'], -'parse_url' => ['int|string|array|null|false', 'url'=>'string', 'component='=>'int'], -'ParseError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'ParseError::__toString' => ['string'], -'ParseError::getCode' => ['int'], -'ParseError::getFile' => ['string'], -'ParseError::getLine' => ['int'], -'ParseError::getMessage' => ['string'], -'ParseError::getPrevious' => ['?Throwable'], -'ParseError::getTrace' => ['list\',args?:array}>'], -'ParseError::getTraceAsString' => ['string'], -'parsekit_compile_file' => ['array', 'filename'=>'string', 'errors='=>'array', 'options='=>'int'], -'parsekit_compile_string' => ['array', 'phpcode'=>'string', 'errors='=>'array', 'options='=>'int'], -'parsekit_func_arginfo' => ['array', 'function'=>'mixed'], -'passthru' => ['void', 'command'=>'string', '&w_result_code='=>'int'], -'password_get_info' => ['array', 'hash'=>'string'], -'password_hash' => ['string', 'password'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], -'password_make_salt' => ['bool', 'password'=>'string', 'hash'=>'string'], -'password_needs_rehash' => ['bool', 'hash'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], -'password_verify' => ['bool', 'password'=>'string', 'hash'=>'string'], -'pathinfo' => ['array|string', 'path'=>'string', 'flags='=>'int'], -'pclose' => ['int', 'handle'=>'resource'], -'pcnlt_sigwaitinfo' => ['int', 'set'=>'array', '&w_siginfo'=>'array'], -'pcntl_alarm' => ['int', 'seconds'=>'int'], -'pcntl_async_signals' => ['bool', 'enable='=>'?bool'], -'pcntl_errno' => ['int'], -'pcntl_exec' => ['false', 'path'=>'string', 'args='=>'array', 'env_vars='=>'array'], -'pcntl_fork' => ['int'], -'pcntl_get_last_error' => ['int'], -'pcntl_getpriority' => ['int', 'process_id='=>'?int', 'mode='=>'int'], -'pcntl_setpriority' => ['bool', 'priority'=>'int', 'process_id='=>'?int', 'mode='=>'int'], -'pcntl_signal' => ['bool', 'signal'=>'int', 'handler'=>'callable():void|callable(int):void|callable(int,array):void|int', 'restart_syscalls='=>'bool'], -'pcntl_signal_dispatch' => ['bool'], -'pcntl_signal_get_handler' => ['int|string', 'signal'=>'int'], -'pcntl_sigprocmask' => ['bool', 'mode'=>'int', 'signals'=>'array', '&w_old_signals='=>'array'], -'pcntl_sigtimedwait' => ['int', 'signals'=>'array', '&w_info='=>'array', 'seconds='=>'int', 'nanoseconds='=>'int'], -'pcntl_sigwaitinfo' => ['int', 'signals'=>'array', '&w_info='=>'array'], -'pcntl_strerror' => ['string', 'error_code'=>'int'], -'pcntl_wait' => ['int', '&w_status'=>'int', 'flags='=>'int', '&w_resource_usage='=>'array'], -'pcntl_waitpid' => ['int', 'process_id'=>'int', '&w_status'=>'int', 'flags='=>'int', '&w_resource_usage='=>'array'], -'pcntl_wexitstatus' => ['int', 'status'=>'int'], -'pcntl_wifcontinued' => ['bool', 'status'=>'int'], -'pcntl_wifexited' => ['bool', 'status'=>'int'], -'pcntl_wifsignaled' => ['bool', 'status'=>'int'], -'pcntl_wifstopped' => ['bool', 'status'=>'int'], -'pcntl_wstopsig' => ['int', 'status'=>'int'], -'pcntl_wtermsig' => ['int', 'status'=>'int'], -'PDF_activate_item' => ['bool', 'pdfdoc'=>'resource', 'id'=>'int'], -'PDF_add_launchlink' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], -'PDF_add_locallink' => ['bool', 'pdfdoc'=>'resource', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'page'=>'int', 'dest'=>'string'], -'PDF_add_nameddest' => ['bool', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], -'PDF_add_note' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], -'PDF_add_pdflink' => ['bool', 'pdfdoc'=>'resource', 'bottom_left_x'=>'float', 'bottom_left_y'=>'float', 'up_right_x'=>'float', 'up_right_y'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], -'PDF_add_table_cell' => ['int', 'pdfdoc'=>'resource', 'table'=>'int', 'column'=>'int', 'row'=>'int', 'text'=>'string', 'optlist'=>'string'], -'PDF_add_textflow' => ['int', 'pdfdoc'=>'resource', 'textflow'=>'int', 'text'=>'string', 'optlist'=>'string'], -'PDF_add_thumbnail' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int'], -'PDF_add_weblink' => ['bool', 'pdfdoc'=>'resource', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'url'=>'string'], -'PDF_arc' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'PDF_arcn' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'PDF_attach_file' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'description'=>'string', 'author'=>'string', 'mimetype'=>'string', 'icon'=>'string'], -'PDF_begin_document' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string'], -'PDF_begin_font' => ['bool', 'pdfdoc'=>'resource', 'filename'=>'string', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float', 'optlist'=>'string'], -'PDF_begin_glyph' => ['bool', 'pdfdoc'=>'resource', 'glyphname'=>'string', 'wx'=>'float', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float'], -'PDF_begin_item' => ['int', 'pdfdoc'=>'resource', 'tag'=>'string', 'optlist'=>'string'], -'PDF_begin_layer' => ['bool', 'pdfdoc'=>'resource', 'layer'=>'int'], -'PDF_begin_page' => ['bool', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float'], -'PDF_begin_page_ext' => ['bool', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], -'PDF_begin_pattern' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], -'PDF_begin_template' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float'], -'PDF_begin_template_ext' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], -'PDF_circle' => ['bool', 'pdfdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float'], -'PDF_clip' => ['bool', 'p'=>'resource'], -'PDF_close' => ['bool', 'p'=>'resource'], -'PDF_close_image' => ['bool', 'p'=>'resource', 'image'=>'int'], -'PDF_close_pdi' => ['bool', 'p'=>'resource', 'doc'=>'int'], -'PDF_close_pdi_page' => ['bool', 'p'=>'resource', 'page'=>'int'], -'PDF_closepath' => ['bool', 'p'=>'resource'], -'PDF_closepath_fill_stroke' => ['bool', 'p'=>'resource'], -'PDF_closepath_stroke' => ['bool', 'p'=>'resource'], -'PDF_concat' => ['bool', 'p'=>'resource', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], -'PDF_continue_text' => ['bool', 'p'=>'resource', 'text'=>'string'], -'PDF_create_3dview' => ['int', 'pdfdoc'=>'resource', 'username'=>'string', 'optlist'=>'string'], -'PDF_create_action' => ['int', 'pdfdoc'=>'resource', 'type'=>'string', 'optlist'=>'string'], -'PDF_create_annotation' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'type'=>'string', 'optlist'=>'string'], -'PDF_create_bookmark' => ['int', 'pdfdoc'=>'resource', 'text'=>'string', 'optlist'=>'string'], -'PDF_create_field' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'name'=>'string', 'type'=>'string', 'optlist'=>'string'], -'PDF_create_fieldgroup' => ['bool', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], -'PDF_create_gstate' => ['int', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_create_pvf' => ['bool', 'pdfdoc'=>'resource', 'filename'=>'string', 'data'=>'string', 'optlist'=>'string'], -'PDF_create_textflow' => ['int', 'pdfdoc'=>'resource', 'text'=>'string', 'optlist'=>'string'], -'PDF_curveto' => ['bool', 'p'=>'resource', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'PDF_define_layer' => ['int', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], -'PDF_delete' => ['bool', 'pdfdoc'=>'resource'], -'PDF_delete_pvf' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string'], -'PDF_delete_table' => ['bool', 'pdfdoc'=>'resource', 'table'=>'int', 'optlist'=>'string'], -'PDF_delete_textflow' => ['bool', 'pdfdoc'=>'resource', 'textflow'=>'int'], -'PDF_encoding_set_char' => ['bool', 'pdfdoc'=>'resource', 'encoding'=>'string', 'slot'=>'int', 'glyphname'=>'string', 'uv'=>'int'], -'PDF_end_document' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_end_font' => ['bool', 'pdfdoc'=>'resource'], -'PDF_end_glyph' => ['bool', 'pdfdoc'=>'resource'], -'PDF_end_item' => ['bool', 'pdfdoc'=>'resource', 'id'=>'int'], -'PDF_end_layer' => ['bool', 'pdfdoc'=>'resource'], -'PDF_end_page' => ['bool', 'p'=>'resource'], -'PDF_end_page_ext' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_end_pattern' => ['bool', 'p'=>'resource'], -'PDF_end_template' => ['bool', 'p'=>'resource'], -'PDF_endpath' => ['bool', 'p'=>'resource'], -'PDF_fill' => ['bool', 'p'=>'resource'], -'PDF_fill_imageblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'image'=>'int', 'optlist'=>'string'], -'PDF_fill_pdfblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'contents'=>'int', 'optlist'=>'string'], -'PDF_fill_stroke' => ['bool', 'p'=>'resource'], -'PDF_fill_textblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'text'=>'string', 'optlist'=>'string'], -'PDF_findfont' => ['int', 'p'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'embed'=>'int'], -'PDF_fit_image' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDF_fit_pdi_page' => ['bool', 'pdfdoc'=>'resource', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDF_fit_table' => ['string', 'pdfdoc'=>'resource', 'table'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], -'PDF_fit_textflow' => ['string', 'pdfdoc'=>'resource', 'textflow'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], -'PDF_fit_textline' => ['bool', 'pdfdoc'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDF_get_apiname' => ['string', 'pdfdoc'=>'resource'], -'PDF_get_buffer' => ['string', 'p'=>'resource'], -'PDF_get_errmsg' => ['string', 'pdfdoc'=>'resource'], -'PDF_get_errnum' => ['int', 'pdfdoc'=>'resource'], -'PDF_get_majorversion' => ['int'], -'PDF_get_minorversion' => ['int'], -'PDF_get_parameter' => ['string', 'p'=>'resource', 'key'=>'string', 'modifier'=>'float'], -'PDF_get_pdi_parameter' => ['string', 'p'=>'resource', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], -'PDF_get_pdi_value' => ['float', 'p'=>'resource', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], -'PDF_get_value' => ['float', 'p'=>'resource', 'key'=>'string', 'modifier'=>'float'], -'PDF_info_font' => ['float', 'pdfdoc'=>'resource', 'font'=>'int', 'keyword'=>'string', 'optlist'=>'string'], -'PDF_info_matchbox' => ['float', 'pdfdoc'=>'resource', 'boxname'=>'string', 'num'=>'int', 'keyword'=>'string'], -'PDF_info_table' => ['float', 'pdfdoc'=>'resource', 'table'=>'int', 'keyword'=>'string'], -'PDF_info_textflow' => ['float', 'pdfdoc'=>'resource', 'textflow'=>'int', 'keyword'=>'string'], -'PDF_info_textline' => ['float', 'pdfdoc'=>'resource', 'text'=>'string', 'keyword'=>'string', 'optlist'=>'string'], -'PDF_initgraphics' => ['bool', 'p'=>'resource'], -'PDF_lineto' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], -'PDF_load_3ddata' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string'], -'PDF_load_font' => ['int', 'pdfdoc'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'optlist'=>'string'], -'PDF_load_iccprofile' => ['int', 'pdfdoc'=>'resource', 'profilename'=>'string', 'optlist'=>'string'], -'PDF_load_image' => ['int', 'pdfdoc'=>'resource', 'imagetype'=>'string', 'filename'=>'string', 'optlist'=>'string'], -'PDF_makespotcolor' => ['int', 'p'=>'resource', 'spotname'=>'string'], -'PDF_moveto' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], -'PDF_new' => ['resource'], -'PDF_open_ccitt' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'bitreverse'=>'int', 'k'=>'int', 'blackls1'=>'int'], -'PDF_open_file' => ['bool', 'p'=>'resource', 'filename'=>'string'], -'PDF_open_image' => ['int', 'p'=>'resource', 'imagetype'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], -'PDF_open_image_file' => ['int', 'p'=>'resource', 'imagetype'=>'string', 'filename'=>'string', 'stringparam'=>'string', 'intparam'=>'int'], -'PDF_open_memory_image' => ['int', 'p'=>'resource', 'image'=>'resource'], -'PDF_open_pdi' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string', 'length'=>'int'], -'PDF_open_pdi_document' => ['int', 'p'=>'resource', 'filename'=>'string', 'optlist'=>'string'], -'PDF_open_pdi_page' => ['int', 'p'=>'resource', 'doc'=>'int', 'pagenumber'=>'int', 'optlist'=>'string'], -'PDF_pcos_get_number' => ['float', 'p'=>'resource', 'doc'=>'int', 'path'=>'string'], -'PDF_pcos_get_stream' => ['string', 'p'=>'resource', 'doc'=>'int', 'optlist'=>'string', 'path'=>'string'], -'PDF_pcos_get_string' => ['string', 'p'=>'resource', 'doc'=>'int', 'path'=>'string'], -'PDF_place_image' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], -'PDF_place_pdi_page' => ['bool', 'pdfdoc'=>'resource', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'sx'=>'float', 'sy'=>'float'], -'PDF_process_pdi' => ['int', 'pdfdoc'=>'resource', 'doc'=>'int', 'page'=>'int', 'optlist'=>'string'], -'PDF_rect' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'PDF_restore' => ['bool', 'p'=>'resource'], -'PDF_resume_page' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_rotate' => ['bool', 'p'=>'resource', 'phi'=>'float'], -'PDF_save' => ['bool', 'p'=>'resource'], -'PDF_scale' => ['bool', 'p'=>'resource', 'sx'=>'float', 'sy'=>'float'], -'PDF_set_border_color' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDF_set_border_dash' => ['bool', 'pdfdoc'=>'resource', 'black'=>'float', 'white'=>'float'], -'PDF_set_border_style' => ['bool', 'pdfdoc'=>'resource', 'style'=>'string', 'width'=>'float'], -'PDF_set_gstate' => ['bool', 'pdfdoc'=>'resource', 'gstate'=>'int'], -'PDF_set_info' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], -'PDF_set_layer_dependency' => ['bool', 'pdfdoc'=>'resource', 'type'=>'string', 'optlist'=>'string'], -'PDF_set_parameter' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], -'PDF_set_text_pos' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], -'PDF_set_value' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'float'], -'PDF_setcolor' => ['bool', 'p'=>'resource', 'fstype'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], -'PDF_setdash' => ['bool', 'pdfdoc'=>'resource', 'b'=>'float', 'w'=>'float'], -'PDF_setdashpattern' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_setflat' => ['bool', 'pdfdoc'=>'resource', 'flatness'=>'float'], -'PDF_setfont' => ['bool', 'pdfdoc'=>'resource', 'font'=>'int', 'fontsize'=>'float'], -'PDF_setgray' => ['bool', 'p'=>'resource', 'g'=>'float'], -'PDF_setgray_fill' => ['bool', 'p'=>'resource', 'g'=>'float'], -'PDF_setgray_stroke' => ['bool', 'p'=>'resource', 'g'=>'float'], -'PDF_setlinecap' => ['bool', 'p'=>'resource', 'linecap'=>'int'], -'PDF_setlinejoin' => ['bool', 'p'=>'resource', 'value'=>'int'], -'PDF_setlinewidth' => ['bool', 'p'=>'resource', 'width'=>'float'], -'PDF_setmatrix' => ['bool', 'p'=>'resource', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], -'PDF_setmiterlimit' => ['bool', 'pdfdoc'=>'resource', 'miter'=>'float'], -'PDF_setrgbcolor' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDF_setrgbcolor_fill' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDF_setrgbcolor_stroke' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDF_shading' => ['int', 'pdfdoc'=>'resource', 'shtype'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], -'PDF_shading_pattern' => ['int', 'pdfdoc'=>'resource', 'shading'=>'int', 'optlist'=>'string'], -'PDF_shfill' => ['bool', 'pdfdoc'=>'resource', 'shading'=>'int'], -'PDF_show' => ['bool', 'pdfdoc'=>'resource', 'text'=>'string'], -'PDF_show_boxed' => ['int', 'p'=>'resource', 'text'=>'string', 'left'=>'float', 'top'=>'float', 'width'=>'float', 'height'=>'float', 'mode'=>'string', 'feature'=>'string'], -'PDF_show_xy' => ['bool', 'p'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float'], -'PDF_skew' => ['bool', 'p'=>'resource', 'alpha'=>'float', 'beta'=>'float'], -'PDF_stringwidth' => ['float', 'p'=>'resource', 'text'=>'string', 'font'=>'int', 'fontsize'=>'float'], -'PDF_stroke' => ['bool', 'p'=>'resource'], -'PDF_suspend_page' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], -'PDF_translate' => ['bool', 'p'=>'resource', 'tx'=>'float', 'ty'=>'float'], -'PDF_utf16_to_utf8' => ['string', 'pdfdoc'=>'resource', 'utf16string'=>'string'], -'PDF_utf32_to_utf16' => ['string', 'pdfdoc'=>'resource', 'utf32string'=>'string', 'ordering'=>'string'], -'PDF_utf8_to_utf16' => ['string', 'pdfdoc'=>'resource', 'utf8string'=>'string', 'ordering'=>'string'], -'PDFlib::activate_item' => ['bool', 'id'=>''], -'PDFlib::add_launchlink' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], -'PDFlib::add_locallink' => ['bool', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'page'=>'int', 'dest'=>'string'], -'PDFlib::add_nameddest' => ['bool', 'name'=>'string', 'optlist'=>'string'], -'PDFlib::add_note' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], -'PDFlib::add_pdflink' => ['bool', 'bottom_left_x'=>'float', 'bottom_left_y'=>'float', 'up_right_x'=>'float', 'up_right_y'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], -'PDFlib::add_table_cell' => ['int', 'table'=>'int', 'column'=>'int', 'row'=>'int', 'text'=>'string', 'optlist'=>'string'], -'PDFlib::add_textflow' => ['int', 'textflow'=>'int', 'text'=>'string', 'optlist'=>'string'], -'PDFlib::add_thumbnail' => ['bool', 'image'=>'int'], -'PDFlib::add_weblink' => ['bool', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'url'=>'string'], -'PDFlib::arc' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'PDFlib::arcn' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'PDFlib::attach_file' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'description'=>'string', 'author'=>'string', 'mimetype'=>'string', 'icon'=>'string'], -'PDFlib::begin_document' => ['int', 'filename'=>'string', 'optlist'=>'string'], -'PDFlib::begin_font' => ['bool', 'filename'=>'string', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float', 'optlist'=>'string'], -'PDFlib::begin_glyph' => ['bool', 'glyphname'=>'string', 'wx'=>'float', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float'], -'PDFlib::begin_item' => ['int', 'tag'=>'string', 'optlist'=>'string'], -'PDFlib::begin_layer' => ['bool', 'layer'=>'int'], -'PDFlib::begin_page' => ['bool', 'width'=>'float', 'height'=>'float'], -'PDFlib::begin_page_ext' => ['bool', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], -'PDFlib::begin_pattern' => ['int', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], -'PDFlib::begin_template' => ['int', 'width'=>'float', 'height'=>'float'], -'PDFlib::begin_template_ext' => ['int', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], -'PDFlib::circle' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float'], -'PDFlib::clip' => ['bool'], -'PDFlib::close' => ['bool'], -'PDFlib::close_image' => ['bool', 'image'=>'int'], -'PDFlib::close_pdi' => ['bool', 'doc'=>'int'], -'PDFlib::close_pdi_page' => ['bool', 'page'=>'int'], -'PDFlib::closepath' => ['bool'], -'PDFlib::closepath_fill_stroke' => ['bool'], -'PDFlib::closepath_stroke' => ['bool'], -'PDFlib::concat' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], -'PDFlib::continue_text' => ['bool', 'text'=>'string'], -'PDFlib::create_3dview' => ['int', 'username'=>'string', 'optlist'=>'string'], -'PDFlib::create_action' => ['int', 'type'=>'string', 'optlist'=>'string'], -'PDFlib::create_annotation' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'type'=>'string', 'optlist'=>'string'], -'PDFlib::create_bookmark' => ['int', 'text'=>'string', 'optlist'=>'string'], -'PDFlib::create_field' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'name'=>'string', 'type'=>'string', 'optlist'=>'string'], -'PDFlib::create_fieldgroup' => ['bool', 'name'=>'string', 'optlist'=>'string'], -'PDFlib::create_gstate' => ['int', 'optlist'=>'string'], -'PDFlib::create_pvf' => ['bool', 'filename'=>'string', 'data'=>'string', 'optlist'=>'string'], -'PDFlib::create_textflow' => ['int', 'text'=>'string', 'optlist'=>'string'], -'PDFlib::curveto' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'PDFlib::define_layer' => ['int', 'name'=>'string', 'optlist'=>'string'], -'PDFlib::delete' => ['bool'], -'PDFlib::delete_pvf' => ['int', 'filename'=>'string'], -'PDFlib::delete_table' => ['bool', 'table'=>'int', 'optlist'=>'string'], -'PDFlib::delete_textflow' => ['bool', 'textflow'=>'int'], -'PDFlib::encoding_set_char' => ['bool', 'encoding'=>'string', 'slot'=>'int', 'glyphname'=>'string', 'uv'=>'int'], -'PDFlib::end_document' => ['bool', 'optlist'=>'string'], -'PDFlib::end_font' => ['bool'], -'PDFlib::end_glyph' => ['bool'], -'PDFlib::end_item' => ['bool', 'id'=>'int'], -'PDFlib::end_layer' => ['bool'], -'PDFlib::end_page' => ['bool', 'p'=>''], -'PDFlib::end_page_ext' => ['bool', 'optlist'=>'string'], -'PDFlib::end_pattern' => ['bool', 'p'=>''], -'PDFlib::end_template' => ['bool', 'p'=>''], -'PDFlib::endpath' => ['bool', 'p'=>''], -'PDFlib::fill' => ['bool'], -'PDFlib::fill_imageblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'image'=>'int', 'optlist'=>'string'], -'PDFlib::fill_pdfblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'contents'=>'int', 'optlist'=>'string'], -'PDFlib::fill_stroke' => ['bool'], -'PDFlib::fill_textblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'text'=>'string', 'optlist'=>'string'], -'PDFlib::findfont' => ['int', 'fontname'=>'string', 'encoding'=>'string', 'embed'=>'int'], -'PDFlib::fit_image' => ['bool', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDFlib::fit_pdi_page' => ['bool', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDFlib::fit_table' => ['string', 'table'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], -'PDFlib::fit_textflow' => ['string', 'textflow'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], -'PDFlib::fit_textline' => ['bool', 'text'=>'string', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], -'PDFlib::get_apiname' => ['string'], -'PDFlib::get_buffer' => ['string'], -'PDFlib::get_errmsg' => ['string'], -'PDFlib::get_errnum' => ['int'], -'PDFlib::get_majorversion' => ['int'], -'PDFlib::get_minorversion' => ['int'], -'PDFlib::get_parameter' => ['string', 'key'=>'string', 'modifier'=>'float'], -'PDFlib::get_pdi_parameter' => ['string', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], -'PDFlib::get_pdi_value' => ['float', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], -'PDFlib::get_value' => ['float', 'key'=>'string', 'modifier'=>'float'], -'PDFlib::info_font' => ['float', 'font'=>'int', 'keyword'=>'string', 'optlist'=>'string'], -'PDFlib::info_matchbox' => ['float', 'boxname'=>'string', 'num'=>'int', 'keyword'=>'string'], -'PDFlib::info_table' => ['float', 'table'=>'int', 'keyword'=>'string'], -'PDFlib::info_textflow' => ['float', 'textflow'=>'int', 'keyword'=>'string'], -'PDFlib::info_textline' => ['float', 'text'=>'string', 'keyword'=>'string', 'optlist'=>'string'], -'PDFlib::initgraphics' => ['bool'], -'PDFlib::lineto' => ['bool', 'x'=>'float', 'y'=>'float'], -'PDFlib::load_3ddata' => ['int', 'filename'=>'string', 'optlist'=>'string'], -'PDFlib::load_font' => ['int', 'fontname'=>'string', 'encoding'=>'string', 'optlist'=>'string'], -'PDFlib::load_iccprofile' => ['int', 'profilename'=>'string', 'optlist'=>'string'], -'PDFlib::load_image' => ['int', 'imagetype'=>'string', 'filename'=>'string', 'optlist'=>'string'], -'PDFlib::makespotcolor' => ['int', 'spotname'=>'string'], -'PDFlib::moveto' => ['bool', 'x'=>'float', 'y'=>'float'], -'PDFlib::open_ccitt' => ['int', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'BitReverse'=>'int', 'k'=>'int', 'Blackls1'=>'int'], -'PDFlib::open_file' => ['bool', 'filename'=>'string'], -'PDFlib::open_image' => ['int', 'imagetype'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], -'PDFlib::open_image_file' => ['int', 'imagetype'=>'string', 'filename'=>'string', 'stringparam'=>'string', 'intparam'=>'int'], -'PDFlib::open_memory_image' => ['int', 'image'=>'resource'], -'PDFlib::open_pdi' => ['int', 'filename'=>'string', 'optlist'=>'string', 'length'=>'int'], -'PDFlib::open_pdi_document' => ['int', 'filename'=>'string', 'optlist'=>'string'], -'PDFlib::open_pdi_page' => ['int', 'doc'=>'int', 'pagenumber'=>'int', 'optlist'=>'string'], -'PDFlib::pcos_get_number' => ['float', 'doc'=>'int', 'path'=>'string'], -'PDFlib::pcos_get_stream' => ['string', 'doc'=>'int', 'optlist'=>'string', 'path'=>'string'], -'PDFlib::pcos_get_string' => ['string', 'doc'=>'int', 'path'=>'string'], -'PDFlib::place_image' => ['bool', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], -'PDFlib::place_pdi_page' => ['bool', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'sx'=>'float', 'sy'=>'float'], -'PDFlib::process_pdi' => ['int', 'doc'=>'int', 'page'=>'int', 'optlist'=>'string'], -'PDFlib::rect' => ['bool', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'PDFlib::restore' => ['bool', 'p'=>''], -'PDFlib::resume_page' => ['bool', 'optlist'=>'string'], -'PDFlib::rotate' => ['bool', 'phi'=>'float'], -'PDFlib::save' => ['bool', 'p'=>''], -'PDFlib::scale' => ['bool', 'sx'=>'float', 'sy'=>'float'], -'PDFlib::set_border_color' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDFlib::set_border_dash' => ['bool', 'black'=>'float', 'white'=>'float'], -'PDFlib::set_border_style' => ['bool', 'style'=>'string', 'width'=>'float'], -'PDFlib::set_gstate' => ['bool', 'gstate'=>'int'], -'PDFlib::set_info' => ['bool', 'key'=>'string', 'value'=>'string'], -'PDFlib::set_layer_dependency' => ['bool', 'type'=>'string', 'optlist'=>'string'], -'PDFlib::set_parameter' => ['bool', 'key'=>'string', 'value'=>'string'], -'PDFlib::set_text_pos' => ['bool', 'x'=>'float', 'y'=>'float'], -'PDFlib::set_value' => ['bool', 'key'=>'string', 'value'=>'float'], -'PDFlib::setcolor' => ['bool', 'fstype'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], -'PDFlib::setdash' => ['bool', 'b'=>'float', 'w'=>'float'], -'PDFlib::setdashpattern' => ['bool', 'optlist'=>'string'], -'PDFlib::setflat' => ['bool', 'flatness'=>'float'], -'PDFlib::setfont' => ['bool', 'font'=>'int', 'fontsize'=>'float'], -'PDFlib::setgray' => ['bool', 'g'=>'float'], -'PDFlib::setgray_fill' => ['bool', 'g'=>'float'], -'PDFlib::setgray_stroke' => ['bool', 'g'=>'float'], -'PDFlib::setlinecap' => ['bool', 'linecap'=>'int'], -'PDFlib::setlinejoin' => ['bool', 'value'=>'int'], -'PDFlib::setlinewidth' => ['bool', 'width'=>'float'], -'PDFlib::setmatrix' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], -'PDFlib::setmiterlimit' => ['bool', 'miter'=>'float'], -'PDFlib::setrgbcolor' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDFlib::setrgbcolor_fill' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDFlib::setrgbcolor_stroke' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'PDFlib::shading' => ['int', 'shtype'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], -'PDFlib::shading_pattern' => ['int', 'shading'=>'int', 'optlist'=>'string'], -'PDFlib::shfill' => ['bool', 'shading'=>'int'], -'PDFlib::show' => ['bool', 'text'=>'string'], -'PDFlib::show_boxed' => ['int', 'text'=>'string', 'left'=>'float', 'top'=>'float', 'width'=>'float', 'height'=>'float', 'mode'=>'string', 'feature'=>'string'], -'PDFlib::show_xy' => ['bool', 'text'=>'string', 'x'=>'float', 'y'=>'float'], -'PDFlib::skew' => ['bool', 'alpha'=>'float', 'beta'=>'float'], -'PDFlib::stringwidth' => ['float', 'text'=>'string', 'font'=>'int', 'fontsize'=>'float'], -'PDFlib::stroke' => ['bool', 'p'=>''], -'PDFlib::suspend_page' => ['bool', 'optlist'=>'string'], -'PDFlib::translate' => ['bool', 'tx'=>'float', 'ty'=>'float'], -'PDFlib::utf16_to_utf8' => ['string', 'utf16string'=>'string'], -'PDFlib::utf32_to_utf16' => ['string', 'utf32string'=>'string', 'ordering'=>'string'], -'PDFlib::utf8_to_utf16' => ['string', 'utf8string'=>'string', 'ordering'=>'string'], -'PDO::__construct' => ['void', 'dsn'=>'string', 'username='=>'?string', 'password='=>'?string', 'options='=>'?array'], -'PDO::beginTransaction' => ['bool'], -'PDO::commit' => ['bool'], -'PDO::cubrid_schema' => ['array', 'schema_type'=>'int', 'table_name='=>'string', 'col_name='=>'string'], -'PDO::errorCode' => ['?string'], -'PDO::errorInfo' => ['array{0: ?string, 1: ?int, 2: ?string, 3?: mixed, 4?: mixed}'], -'PDO::exec' => ['int|false', 'statement'=>'string'], -'PDO::getAttribute' => ['mixed', 'attribute'=>'int'], -'PDO::getAvailableDrivers' => ['array'], -'PDO::inTransaction' => ['bool'], -'PDO::lastInsertId' => ['string', 'name='=>'string|null'], -'PDO::pgsqlCopyFromArray' => ['bool', 'table_name'=>'string', 'rows'=>'array', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], -'PDO::pgsqlCopyFromFile' => ['bool', 'table_name'=>'string', 'filename'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], -'PDO::pgsqlCopyToArray' => ['array', 'table_name'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], -'PDO::pgsqlCopyToFile' => ['bool', 'table_name'=>'string', 'filename'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], -'PDO::pgsqlGetNotify' => ['array{message:string,pid:int,payload?:string}|false', 'result_type='=>'PDO::FETCH_*', 'ms_timeout='=>'int'], -'PDO::pgsqlGetPid' => ['int'], -'PDO::pgsqlLOBCreate' => ['string'], -'PDO::pgsqlLOBOpen' => ['resource', 'oid'=>'string', 'mode='=>'string'], -'PDO::pgsqlLOBUnlink' => ['bool', 'oid'=>'string'], -'PDO::prepare' => ['PDOStatement|false', 'query'=>'string', 'options='=>'array'], -'PDO::query' => ['PDOStatement|false', 'query'=>'string'], -'PDO::query\'1' => ['PDOStatement|false', 'query'=>'string', 'fetch_column'=>'int', 'colno='=>'int'], -'PDO::query\'2' => ['PDOStatement|false', 'query'=>'string', 'fetch_class'=>'int', 'classname'=>'string', 'constructorArgs'=>'array'], -'PDO::query\'3' => ['PDOStatement|false', 'query'=>'string', 'fetch_into'=>'int', 'object'=>'object'], -'PDO::quote' => ['string|false', 'string'=>'string', 'type='=>'int'], -'PDO::rollBack' => ['bool'], -'PDO::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>''], -'PDO::sqliteCreateAggregate' => ['bool', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], -'PDO::sqliteCreateCollation' => ['bool', 'name'=>'string', 'callback'=>'callable'], -'PDO::sqliteCreateFunction' => ['bool', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], -'pdo_drivers' => ['array'], -'PDOException::getCode' => ['int|string'], -'PDOException::getFile' => ['string'], -'PDOException::getLine' => ['int'], -'PDOException::getMessage' => ['string'], -'PDOException::getPrevious' => ['?Throwable'], -'PDOException::getTrace' => ['list\',args?:array}>'], -'PDOException::getTraceAsString' => ['string'], -'PDOStatement::bindColumn' => ['bool', 'column'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int', 'maxLength='=>'int', 'driverOptions='=>'mixed'], -'PDOStatement::bindParam' => ['bool', 'param'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int', 'maxLength='=>'int', 'driverOptions='=>'mixed'], -'PDOStatement::bindValue' => ['bool', 'param'=>'string|int', 'value'=>'mixed', 'type='=>'int'], -'PDOStatement::closeCursor' => ['bool'], -'PDOStatement::columnCount' => ['int'], -'PDOStatement::debugDumpParams' => ['bool|null'], -'PDOStatement::errorCode' => ['string|null'], -'PDOStatement::errorInfo' => ['array{0: ?string, 1: ?int, 2: ?string, 3?: mixed, 4?: mixed}'], -'PDOStatement::execute' => ['bool', 'params='=>'?array'], -'PDOStatement::fetch' => ['mixed', 'mode='=>'int', 'cursorOrientation='=>'int', 'cursorOffset='=>'int'], -'PDOStatement::fetchAll' => ['array', 'mode='=>'int', '...args='=>'mixed'], -'PDOStatement::fetchColumn' => ['mixed', 'column='=>'int'], -'PDOStatement::fetchObject' => ['object|false', 'class='=>'?class-string', 'constructorArgs='=>'array'], -'PDOStatement::getAttribute' => ['mixed', 'name'=>'int'], -'PDOStatement::getColumnMeta' => ['array|false', 'column'=>'int'], -'PDOStatement::nextRowset' => ['bool'], -'PDOStatement::rowCount' => ['int'], -'PDOStatement::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'mixed'], -'PDOStatement::setFetchMode' => ['bool', 'mode'=>'int', '...args='=> 'mixed'], -'pfsockopen' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float'], -'pg_affected_rows' => ['int', 'result'=>'\PgSql\Result'], -'pg_cancel_query' => ['bool', 'connection'=>'\PgSql\Connection'], -'pg_client_encoding' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_close' => ['bool', 'connection='=>'?\PgSql\Connection'], -'pg_connect' => ['\PgSql\Connection|false', 'connection_string'=>'string', 'flags='=>'int'], -'pg_connect_poll' => ['int', 'connection'=>'\PgSql\Connection'], -'pg_connection_busy' => ['bool', 'connection'=>'\PgSql\Connection'], -'pg_connection_reset' => ['bool', 'connection'=>'\PgSql\Connection'], -'pg_connection_status' => ['int', 'connection'=>'\PgSql\Connection'], -'pg_consume_input' => ['bool', 'connection'=>'\PgSql\Connection'], -'pg_convert' => ['array|false', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'values'=>'array', 'flags='=>'int'], -'pg_copy_from' => ['bool', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'rows'=>'array', 'separator='=>'string', 'null_as='=>'string'], -'pg_copy_to' => ['array|false', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'separator='=>'string', 'null_as='=>'string'], -'pg_dbname' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_delete' => ['string|bool', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int'], -'pg_end_copy' => ['bool', 'connection='=>'?\PgSql\Connection'], -'pg_escape_bytea' => ['string', 'connection'=>'\PgSql\Connection', 'string'=>'string'], -'pg_escape_bytea\'1' => ['string', 'connection'=>'string'], -'pg_escape_identifier' => ['string|false', 'connection'=>'\PgSql\Connection', 'string'=>'string'], -'pg_escape_identifier\'1' => ['string|false', 'connection'=>'string'], -'pg_escape_literal' => ['string|false', 'connection'=>'\PgSql\Connection', 'string'=>'string'], -'pg_escape_literal\'1' => ['string|false', 'connection'=>'string'], -'pg_escape_string' => ['string', 'connection'=>'\PgSql\Connection', 'string'=>'string'], -'pg_escape_string\'1' => ['string', 'connection'=>'string'], -'pg_exec' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection', 'query'=>'string'], -'pg_exec\'1' => ['\PgSql\Result|false', 'connection'=>'string'], -'pg_execute' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection', 'statement_name'=>'string', 'params'=>'array'], -'pg_execute\'1' => ['\PgSql\Result|false', 'connection'=>'string', 'statement_name'=>'array'], -'pg_fetch_all' => ['array', 'result'=>'\PgSql\Result', 'mode='=>'int'], -'pg_fetch_all_columns' => ['array', 'result'=>'\PgSql\Result', 'field='=>'int'], -'pg_fetch_array' => ['array|false', 'result'=>'\PgSql\Result', 'row='=>'?int', 'mode='=>'int'], -'pg_fetch_assoc' => ['array|false', 'result'=>'\PgSql\Result', 'row='=>'?int'], -'pg_fetch_object' => ['object|false', 'result'=>'\PgSql\Result', 'row='=>'?int', 'class='=>'string', 'constructor_args='=>'array'], -'pg_fetch_result' => ['string|false|null', 'result'=>'\PgSql\Result', 'row'=>'string|int'], -'pg_fetch_result\'1' => ['string|false|null', 'result'=>'\PgSql\Result', 'row'=>'?int', 'field'=>'string|int'], -'pg_fetch_row' => ['array|false', 'result'=>'\PgSql\Result', 'row='=>'?int', 'mode='=>'int'], -'pg_field_is_null' => ['int|false', 'result'=>'\PgSql\Result', 'row'=>'string|int'], -'pg_field_is_null\'1' => ['int|false', 'result'=>'\PgSql\Result', 'row'=>'int', 'field'=>'string|int'], -'pg_field_name' => ['string', 'result'=>'\PgSql\Result', 'field'=>'int'], -'pg_field_num' => ['int', 'result'=>'\PgSql\Result', 'field'=>'string'], -'pg_field_prtlen' => ['int|false', 'result'=>'\PgSql\Result', 'row'=>'string|int'], -'pg_field_prtlen\'1' => ['int|false', 'result'=>'\PgSql\Result', 'row'=>'int', 'field'=>'string|int'], -'pg_field_size' => ['int', 'result'=>'\PgSql\Result', 'field'=>'int'], -'pg_field_table' => ['string|int|false', 'result'=>'\PgSql\Result', 'field'=>'int', 'oid_only='=>'bool'], -'pg_field_type' => ['string', 'result'=>'\PgSql\Result', 'field'=>'int'], -'pg_field_type_oid' => ['int|string', 'result'=>'\PgSql\Result', 'field'=>'int'], -'pg_flush' => ['int|bool', 'connection'=>'\PgSql\Connection'], -'pg_free_result' => ['bool', 'result'=>'\PgSql\Result'], -'pg_get_notify' => ['array|false', 'connection'=>'\PgSql\Connection', 'mode='=>'int'], -'pg_get_pid' => ['int', 'connection'=>'\PgSql\Connection'], -'pg_get_result' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection'], -'pg_host' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_insert' => ['\PgSql\Result|string|false', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'values'=>'array', 'flags='=>'int'], -'pg_last_error' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_last_notice' => ['string|array|bool', 'connection'=>'\PgSql\Connection', 'mode='=>'int'], -'pg_last_oid' => ['string|int|false', 'result'=>'\PgSql\Result'], -'pg_lo_close' => ['bool', 'lob'=>'\PgSql\Lob'], -'pg_lo_create' => ['int|string|false', 'connection='=>'\PgSql\Connection', 'oid='=>'int|string'], -'pg_lo_export' => ['bool', 'connection'=>'\PgSql\Connection', 'oid'=>'int|string', 'filename'=>'string'], -'pg_lo_export\'1' => ['bool', 'connection'=>'int|string', 'oid'=>'string'], -'pg_lo_import' => ['int|string|false', 'connection'=>'\PgSql\Connection', 'filename'=>'string', 'oid'=>'string|int'], -'pg_lo_import\'1' => ['int|string|false', 'connection'=>'string', 'filename'=>'string|int'], -'pg_lo_open' => ['\PgSql\Lob|false', 'connection'=>'\PgSql\Connection', 'oid'=>'int|string', 'mode'=>'string'], -'pg_lo_open\'1' => ['\PgSql\Lob|false', 'connection'=>'int|string', 'oid'=>'string'], -'pg_lo_read' => ['string|false', 'lob'=>'\PgSql\Lob', 'length='=>'int'], -'pg_lo_read_all' => ['int', 'lob'=>'\PgSql\Lob'], -'pg_lo_seek' => ['bool', 'lob'=>'\PgSql\Lob', 'offset'=>'int', 'whence='=>'int'], -'pg_lo_tell' => ['int', 'lob'=>'\PgSql\Lob'], -'pg_lo_truncate' => ['bool', 'lob'=>'\PgSql\Lob', 'size'=>'int'], -'pg_lo_unlink' => ['bool', 'connection'=>'\PgSql\Connection', 'oid'=>'int|string'], -'pg_lo_unlink\'1' => ['bool', 'connection'=>'int|string'], -'pg_lo_write' => ['int|false', 'lob'=>'\PgSql\Lob', 'data'=>'string', 'length='=>'?int'], -'pg_meta_data' => ['array|false', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'extended='=>'bool'], -'pg_num_fields' => ['int', 'result'=>'\PgSql\Result'], -'pg_num_rows' => ['int', 'result'=>'\PgSql\Result'], -'pg_options' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_parameter_status' => ['string|false', 'connection'=>'\PgSql\Connection', 'name'=>'string'], -'pg_parameter_status\'1' => ['string|false', 'connection'=>'string'], -'pg_pconnect' => ['\PgSql\Connection|false', 'connection_string'=>'string', 'flags='=>'int'], -'pg_ping' => ['bool', 'connection='=>'?\PgSql\Connection'], -'pg_port' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_prepare' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection', 'statement_name'=>'string', 'query'=>'string'], -'pg_prepare\'1' => ['\PgSql\Result|false', 'connection'=>'string', 'statement_name'=>'string'], -'pg_put_line' => ['bool', 'connection'=>'\PgSql\Connection', 'data'=>'string'], -'pg_put_line\'1' => ['bool', 'connection'=>'string'], -'pg_query' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection', 'query'=>'string'], -'pg_query\'1' => ['\PgSql\Result|false', 'connection'=>'string'], -'pg_query_params' => ['\PgSql\Result|false', 'connection'=>'\PgSql\Connection', 'query'=>'string', 'params'=>'array'], -'pg_query_params\'1' => ['\PgSql\Result|false', 'connection'=>'string', 'query'=>'array'], -'pg_result_error' => ['string|false', 'result'=>'\PgSql\Result'], -'pg_result_error_field' => ['string|false|null', 'result'=>'\PgSql\Result', 'field_code'=>'int'], -'pg_result_seek' => ['bool', 'result'=>'\PgSql\Result', 'row'=>'int'], -'pg_result_status' => ['string|int', 'result'=>'\PgSql\Result', 'mode='=>'int'], -'pg_select' => ['string|array|false', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int', 'mode='=>'int'], -'pg_send_execute' => ['bool|int', 'connection'=>'\PgSql\Connection', 'statement_name'=>'string', 'params'=>'array'], -'pg_send_prepare' => ['bool|int', 'connection'=>'\PgSql\Connection', 'statement_name'=>'string', 'query'=>'string'], -'pg_send_query' => ['bool|int', 'connection'=>'\PgSql\Connection', 'query'=>'string'], -'pg_send_query_params' => ['bool|int', 'connection'=>'\PgSql\Connection', 'query'=>'string', 'params'=>'array'], -'pg_set_client_encoding' => ['int', 'connection'=>'\PgSql\Connection', 'encoding'=>'string'], -'pg_set_client_encoding\'1' => ['int', 'connection'=>'string'], -'pg_set_error_verbosity' => ['int|false', 'connection'=>'\PgSql\Connection', 'verbosity'=>'int'], -'pg_set_error_verbosity\'1' => ['int|false', 'connection'=>'int'], -'pg_socket' => ['resource|false', 'connection'=>'\PgSql\Connection'], -'pg_trace' => ['bool', 'filename'=>'string', 'mode='=>'string', 'connection='=>'?\PgSql\Connection'], -'pg_transaction_status' => ['int', 'connection'=>'\PgSql\Connection'], -'pg_tty' => ['string', 'connection='=>'?\PgSql\Connection'], -'pg_unescape_bytea' => ['string', 'string'=>'string'], -'pg_untrace' => ['bool', 'connection='=>'?\PgSql\Connection'], -'pg_update' => ['string|bool', 'connection'=>'\PgSql\Connection', 'table_name'=>'string', 'values'=>'array', 'conditions'=>'array', 'flags='=>'int'], -'pg_version' => ['array', 'connection='=>'?\PgSql\Connection'], -'Phar::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'alias='=>'?string'], -'Phar::addEmptyDir' => ['void', 'directory'=>'string'], -'Phar::addFile' => ['void', 'filename'=>'string', 'localName='=>'?string'], -'Phar::addFromString' => ['void', 'localName'=>'string', 'contents'=>'string'], -'Phar::apiVersion' => ['string'], -'Phar::buildFromDirectory' => ['array', 'directory'=>'string', 'pattern='=>'string'], -'Phar::buildFromIterator' => ['array', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], -'Phar::canCompress' => ['bool', 'compression='=>'int'], -'Phar::canWrite' => ['bool'], -'Phar::compress' => ['?Phar', 'compression'=>'int', 'extension='=>'?string'], -'Phar::compressFiles' => ['void', 'compression'=>'int'], -'Phar::convertToData' => ['?PharData', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], -'Phar::convertToExecutable' => ['?Phar', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], -'Phar::copy' => ['bool', 'from'=>'string', 'to'=>'string'], -'Phar::count' => ['int', 'mode='=>'int'], -'Phar::createDefaultStub' => ['string', 'index='=>'?string', 'webIndex='=>'?string'], -'Phar::decompress' => ['?Phar', 'extension='=>'?string'], -'Phar::decompressFiles' => ['bool'], -'Phar::delete' => ['bool', 'localName'=>'string'], -'Phar::delMetadata' => ['bool'], -'Phar::extractTo' => ['bool', 'directory'=>'string', 'files='=>'string|array|null', 'overwrite='=>'bool'], -'Phar::getAlias' => ['?string'], -'Phar::getMetadata' => ['mixed', 'unserializeOptions='=>'array'], -'Phar::getModified' => ['bool'], -'Phar::getPath' => ['string'], -'Phar::getSignature' => ['array{hash:string, hash_type:string}'], -'Phar::getStub' => ['string'], -'Phar::getSupportedCompression' => ['array'], -'Phar::getSupportedSignatures' => ['array'], -'Phar::getVersion' => ['string'], -'Phar::hasMetadata' => ['bool'], -'Phar::interceptFileFuncs' => ['void'], -'Phar::isBuffering' => ['bool'], -'Phar::isCompressed' => ['int|false'], -'Phar::isFileFormat' => ['bool', 'format'=>'int'], -'Phar::isValidPharFilename' => ['bool', 'filename'=>'string', 'executable='=>'bool'], -'Phar::isWritable' => ['bool'], -'Phar::loadPhar' => ['bool', 'filename'=>'string', 'alias='=>'?string'], -'Phar::mapPhar' => ['bool', 'alias='=>'?string', 'offset='=>'int'], -'Phar::mount' => ['void', 'pharPath'=>'string', 'externalPath'=>'string'], -'Phar::mungServer' => ['void', 'variables'=>'list'], -'Phar::offsetExists' => ['bool', 'localName'=>'string'], -'Phar::offsetGet' => ['PharFileInfo', 'localName'=>'string'], -'Phar::offsetSet' => ['void', 'localName'=>'string', 'value'=>'resource|string'], -'Phar::offsetUnset' => ['void', 'localName'=>'string'], -'Phar::running' => ['string', 'returnPhar='=>'bool'], -'Phar::setAlias' => ['bool', 'alias'=>'string'], -'Phar::setDefaultStub' => ['bool', 'index='=>'?string', 'webIndex='=>'?string'], -'Phar::setMetadata' => ['void', 'metadata'=>''], -'Phar::setSignatureAlgorithm' => ['void', 'algo'=>'int', 'privateKey='=>'?string'], -'Phar::setStub' => ['bool', 'stub'=>'string', 'length='=>'int'], -'Phar::startBuffering' => ['void'], -'Phar::stopBuffering' => ['void'], -'Phar::unlinkArchive' => ['bool', 'filename'=>'string'], -'Phar::webPhar' => ['void', 'alias='=>'?string', 'index='=>'?string', 'fileNotFoundScript='=>'?string', 'mimeTypes='=>'array', 'rewrite='=>'?callable'], -'PharData::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'alias='=>'?string', 'format='=>'int'], -'PharData::addEmptyDir' => ['void', 'directory'=>'string'], -'PharData::addFile' => ['void', 'filename'=>'string', 'localName='=>'?string'], -'PharData::addFromString' => ['void', 'localName'=>'string', 'contents'=>'string'], -'PharData::buildFromDirectory' => ['array', 'directory'=>'string', 'pattern='=>'string'], -'PharData::buildFromIterator' => ['array', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], -'PharData::compress' => ['?PharData', 'compression'=>'int', 'extension='=>'?string'], -'PharData::compressFiles' => ['void', 'compression'=>'int'], -'PharData::convertToData' => ['?PharData', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], -'PharData::convertToExecutable' => ['?Phar', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], -'PharData::copy' => ['bool', 'from'=>'string', 'to'=>'string'], -'PharData::decompress' => ['?PharData', 'extension='=>'?string'], -'PharData::decompressFiles' => ['bool'], -'PharData::delete' => ['bool', 'localName'=>'string'], -'PharData::delMetadata' => ['bool'], -'PharData::extractTo' => ['bool', 'directory'=>'string', 'files='=>'string|array|null', 'overwrite='=>'bool'], -'PharData::isWritable' => ['bool'], -'PharData::offsetExists' => ['bool', 'localName'=>'string'], -'PharData::offsetGet' => ['PharFileInfo', 'localName'=>'string'], -'PharData::offsetSet' => ['void', 'localName'=>'string', 'value'=>'string'], -'PharData::offsetUnset' => ['void', 'localName'=>'string'], -'PharData::setAlias' => ['bool', 'alias'=>'string'], -'PharData::setDefaultStub' => ['bool', 'index='=>'?string', 'webIndex='=>'?string'], -'PharData::setMetadata' => ['void', 'metadata'=>'mixed'], -'PharData::setSignatureAlgorithm' => ['void', 'algo'=>'int', 'privateKey='=>'?string'], -'PharData::setStub' => ['bool', 'stub'=>'string', 'length='=>'int'], -'PharFileInfo::__construct' => ['void', 'filename'=>'string'], -'PharFileInfo::chmod' => ['void', 'perms'=>'int'], -'PharFileInfo::compress' => ['bool', 'compression'=>'int'], -'PharFileInfo::decompress' => ['bool'], -'PharFileInfo::delMetadata' => ['bool'], -'PharFileInfo::getCompressedSize' => ['int'], -'PharFileInfo::getContent' => ['string'], -'PharFileInfo::getCRC32' => ['int'], -'PharFileInfo::getMetadata' => ['mixed', 'unserializeOptions='=>'array'], -'PharFileInfo::getPharFlags' => ['int'], -'PharFileInfo::hasMetadata' => ['bool'], -'PharFileInfo::isCompressed' => ['bool', 'compression='=>'?int'], -'PharFileInfo::isCRCChecked' => ['bool'], -'PharFileInfo::setMetadata' => ['void', 'metadata'=>'mixed'], -'phdfs::__construct' => ['void', 'ip'=>'string', 'port'=>'string'], -'phdfs::__destruct' => ['void'], -'phdfs::connect' => ['bool'], -'phdfs::copy' => ['bool', 'source_file'=>'string', 'destination_file'=>'string'], -'phdfs::create_directory' => ['bool', 'path'=>'string'], -'phdfs::delete' => ['bool', 'path'=>'string'], -'phdfs::disconnect' => ['bool'], -'phdfs::exists' => ['bool', 'path'=>'string'], -'phdfs::file_info' => ['array', 'path'=>'string'], -'phdfs::list_directory' => ['array', 'path'=>'string'], -'phdfs::read' => ['string', 'path'=>'string', 'length='=>'string'], -'phdfs::rename' => ['bool', 'old_path'=>'string', 'new_path'=>'string'], -'phdfs::tell' => ['int', 'path'=>'string'], -'phdfs::write' => ['bool', 'path'=>'string', 'buffer'=>'string', 'mode='=>'string'], -'php_check_syntax' => ['bool', 'filename'=>'string', 'error_message='=>'string'], -'php_ini_loaded_file' => ['string|false'], -'php_ini_scanned_files' => ['string|false'], -'php_logo_guid' => ['string'], -'php_sapi_name' => ['string'], -'php_strip_whitespace' => ['string', 'filename'=>'string'], -'php_uname' => ['string', 'mode='=>'string'], -'php_user_filter::filter' => ['int', 'in'=>'resource', 'out'=>'resource', '&rw_consumed'=>'int', 'closing'=>'bool'], -'php_user_filter::onClose' => ['void'], -'php_user_filter::onCreate' => ['bool'], -'phpcredits' => ['true', 'flags='=>'int'], -'phpdbg_break_file' => ['void', 'file'=>'string', 'line'=>'int'], -'phpdbg_break_function' => ['void', 'function'=>'string'], -'phpdbg_break_method' => ['void', 'class'=>'string', 'method'=>'string'], -'phpdbg_break_next' => ['void'], -'phpdbg_clear' => ['void'], -'phpdbg_color' => ['void', 'element'=>'int', 'color'=>'string'], -'phpdbg_end_oplog' => ['array', 'options='=>'array'], -'phpdbg_exec' => ['mixed', 'context='=>'string'], -'phpdbg_get_executable' => ['array', 'options='=>'array'], -'phpdbg_prompt' => ['void', 'string'=>'string'], -'phpdbg_start_oplog' => ['void'], -'phpinfo' => ['true', 'flags='=>'int'], -'PhpToken::tokenize' => ['list', 'code'=>'string', 'flags='=>'int'], -'PhpToken::is' => ['bool', 'kind'=>'string|int|string[]|int[]'], -'PhpToken::isIgnorable' => ['bool'], -'PhpToken::getTokenName' => ['?string'], -'phpversion' => ['string|false', 'extension='=>'?string'], -'pht\AtomicInteger::__construct' => ['void', 'value='=>'int'], -'pht\AtomicInteger::dec' => ['void'], -'pht\AtomicInteger::get' => ['int'], -'pht\AtomicInteger::inc' => ['void'], -'pht\AtomicInteger::lock' => ['void'], -'pht\AtomicInteger::set' => ['void', 'value'=>'int'], -'pht\AtomicInteger::unlock' => ['void'], -'pht\HashTable::lock' => ['void'], -'pht\HashTable::size' => ['int'], -'pht\HashTable::unlock' => ['void'], -'pht\Queue::front' => ['mixed'], -'pht\Queue::lock' => ['void'], -'pht\Queue::pop' => ['mixed'], -'pht\Queue::push' => ['void', 'value'=>'mixed'], -'pht\Queue::size' => ['int'], -'pht\Queue::unlock' => ['void'], -'pht\Runnable::run' => ['void'], -'pht\thread::addClassTask' => ['void', 'className'=>'string', '...ctorArgs='=>'mixed'], -'pht\thread::addFileTask' => ['void', 'fileName'=>'string', '...globals='=>'mixed'], -'pht\thread::addFunctionTask' => ['void', 'func'=>'callable', '...funcArgs='=>'mixed'], -'pht\thread::join' => ['void'], -'pht\thread::start' => ['void'], -'pht\thread::taskCount' => ['int'], -'pht\threaded::lock' => ['void'], -'pht\threaded::unlock' => ['void'], -'pht\Vector::__construct' => ['void', 'size='=>'int', 'value='=>'mixed'], -'pht\Vector::deleteAt' => ['void', 'offset'=>'int'], -'pht\Vector::insertAt' => ['void', 'value'=>'mixed', 'offset'=>'int'], -'pht\Vector::lock' => ['void'], -'pht\Vector::pop' => ['mixed'], -'pht\Vector::push' => ['void', 'value'=>'mixed'], -'pht\Vector::resize' => ['void', 'size'=>'int', 'value='=>'mixed'], -'pht\Vector::shift' => ['mixed'], -'pht\Vector::size' => ['int'], -'pht\Vector::unlock' => ['void'], -'pht\Vector::unshift' => ['void', 'value'=>'mixed'], -'pht\Vector::updateAt' => ['void', 'value'=>'mixed', 'offset'=>'int'], -'pi' => ['float'], -'pointObj::__construct' => ['void'], -'pointObj::distanceToLine' => ['float', 'p1'=>'pointObj', 'p2'=>'pointObj'], -'pointObj::distanceToPoint' => ['float', 'poPoint'=>'pointObj'], -'pointObj::distanceToShape' => ['float', 'shape'=>'shapeObj'], -'pointObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj', 'class_index'=>'int', 'text'=>'string'], -'pointObj::ms_newPointObj' => ['pointObj'], -'pointObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], -'pointObj::setXY' => ['int', 'x'=>'float', 'y'=>'float', 'm'=>'float'], -'pointObj::setXYZ' => ['int', 'x'=>'float', 'y'=>'float', 'z'=>'float', 'm'=>'float'], -'Pool::__construct' => ['void', 'size'=>'int', 'class'=>'string', 'ctor='=>'array'], -'Pool::collect' => ['int', 'collector='=>'Callable'], -'Pool::resize' => ['void', 'size'=>'int'], -'Pool::shutdown' => ['void'], -'Pool::submit' => ['int', 'task'=>'Threaded'], -'Pool::submitTo' => ['int', 'worker'=>'int', 'task'=>'Threaded'], -'popen' => ['resource|false', 'command'=>'string', 'mode'=>'string'], -'pos' => ['mixed', 'array'=>'array'], -'posix_access' => ['bool', 'filename'=>'string', 'flags='=>'int'], -'posix_ctermid' => ['string|false'], -'posix_errno' => ['int'], -'posix_get_last_error' => ['int'], -'posix_getcwd' => ['string|false'], -'posix_getegid' => ['int'], -'posix_geteuid' => ['int'], -'posix_getgid' => ['int'], -'posix_getgrgid' => ['array{name: string, passwd: string, gid: int, members: list}|false', 'group_id'=>'int'], -'posix_getgrnam' => ['array{name: string, passwd: string, gid: int, members: list}|false', 'name'=>'string'], -'posix_getgroups' => ['list|false'], -'posix_getlogin' => ['string|false'], -'posix_getpgid' => ['int|false', 'process_id'=>'int'], -'posix_getpgrp' => ['int'], -'posix_getpid' => ['int'], -'posix_getppid' => ['int'], -'posix_getpwnam' => ['array{name: string, passwd: string, uid: int, gid: int, gecos: string, dir: string, shell: string}|false', 'username'=>'string'], -'posix_getpwuid' => ['array{name: string, passwd: string, uid: int, gid: int, gecos: string, dir: string, shell: string}|false', 'user_id'=>'int'], -'posix_getrlimit' => ['array{"soft core": string, "hard core": string, "soft data": string, "hard data": string, "soft stack": integer, "hard stack": string, "soft totalmem": string, "hard totalmem": string, "soft rss": string, "hard rss": string, "soft maxproc": integer, "hard maxproc": integer, "soft memlock": integer, "hard memlock": integer, "soft cpu": string, "hard cpu": string, "soft filesize": string, "hard filesize": string, "soft openfiles": integer, "hard openfiles": integer}|false', 'resource=' => '?int'], -'posix_getsid' => ['int|false', 'process_id'=>'int'], -'posix_getuid' => ['int'], -'posix_initgroups' => ['bool', 'username'=>'string', 'group_id'=>'int'], -'posix_isatty' => ['bool', 'file_descriptor'=>'resource|int'], -'posix_kill' => ['bool', 'process_id'=>'int', 'signal'=>'int'], -'posix_mkfifo' => ['bool', 'filename'=>'string', 'permissions'=>'int'], -'posix_mknod' => ['bool', 'filename'=>'string', 'flags'=>'int', 'major='=>'int', 'minor='=>'int'], -'posix_setegid' => ['bool', 'group_id'=>'int'], -'posix_seteuid' => ['bool', 'user_id'=>'int'], -'posix_setgid' => ['bool', 'group_id'=>'int'], -'posix_setpgid' => ['bool', 'process_id'=>'int', 'process_group_id'=>'int'], -'posix_setrlimit' => ['bool', 'resource'=>'int', 'soft_limit'=>'int', 'hard_limit'=>'int'], -'posix_setsid' => ['int'], -'posix_setuid' => ['bool', 'user_id'=>'int'], -'posix_strerror' => ['string', 'error_code'=>'int'], -'posix_times' => ['array{ticks: int, utime: int, stime: int, cutime: int, cstime: int}|false'], -'posix_ttyname' => ['string|false', 'file_descriptor'=>'resource|int'], -'posix_uname' => ['array{sysname: string, nodename: string, release: string, version: string, machine: string, domainname: string}|false'], -'Postal\Expand::expand_address' => ['string[]', 'address'=>'string', 'options='=>'array'], -'Postal\Parser::parse_address' => ['array', 'address'=>'string', 'options='=>'array'], -'pow' => ['float|int', 'num'=>'int|float', 'exponent'=>'int|float'], -'preg_filter' => ['string|string[]|null', 'pattern'=>'string|string[]', 'replacement'=>'string|string[]', 'subject'=>'string|string[]', 'limit='=>'int', '&w_count='=>'int'], -'preg_grep' => ['array|false', 'pattern'=>'string', 'array'=>'array', 'flags='=>'int'], -'preg_last_error' => ['int'], -'preg_match' => ['0|1|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'string[]', 'flags='=>'0', 'offset='=>'int'], -'preg_match\'1' => ['0|1|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'array', 'flags='=>'int', 'offset='=>'int'], -'preg_match_all' => ['int<0,max>|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'array', 'flags='=>'int', 'offset='=>'int'], -'preg_quote' => ['string', 'str'=>'string', 'delimiter='=>'?string'], -'preg_replace' => ['string|string[]|null', 'pattern'=>'string|array', 'replacement'=>'string|array', 'subject'=>'string|array', 'limit='=>'int', '&w_count='=>'int'], -'preg_replace_callback' => ['string|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], -'preg_replace_callback\'1' => ['string[]|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], -'preg_replace_callback_array' => ['string|null', 'pattern'=>'array', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], -'preg_replace_callback_array\'1' => ['string[]|null', 'pattern'=>'array', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], -'preg_split' => ['list|false', 'pattern'=>'string', 'subject'=>'string', 'limit'=>'int', 'flags='=>'null'], -'preg_split\'1' => ['list|list>|false', 'pattern'=>'string', 'subject'=>'string', 'limit='=>'int', 'flags='=>'int'], -'prev' => ['mixed', '&r_array'=>'array'], -'print' => ['int', 'arg'=>'string'], -'print_r' => ['string', 'value'=>'mixed'], -'print_r\'1' => ['true', 'value'=>'mixed', 'return='=>'bool'], -'printf' => ['int<0, max>', 'format'=>'string', '...values='=>'string|int|float'], -'proc_close' => ['int', 'process'=>'resource'], -'proc_get_status' => ['array{command: string, pid: int, running: bool, signaled: bool, stopped: bool, exitcode: int, termsig: int, stopsig: int}', 'process'=>'resource'], -'proc_nice' => ['bool', 'priority'=>'int'], -'proc_open' => ['resource|false', 'command'=>'string|array', 'descriptor_spec'=>'array', '&pipes'=>'resource[]', 'cwd='=>'?string', 'env_vars='=>'?array', 'options='=>'?array'], -'proc_terminate' => ['bool', 'process'=>'resource', 'signal='=>'int'], -'projectionObj::__construct' => ['void', 'projectionString'=>'string'], -'projectionObj::getUnits' => ['int'], -'projectionObj::ms_newProjectionObj' => ['projectionObj', 'projectionString'=>'string'], -'property_exists' => ['bool', 'object_or_class'=>'object|string', 'property'=>'string'], -'ps_add_bookmark' => ['int', 'psdoc'=>'resource', 'text'=>'string', 'parent='=>'int', 'open='=>'int'], -'ps_add_launchlink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], -'ps_add_locallink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'page'=>'int', 'dest'=>'string'], -'ps_add_note' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], -'ps_add_pdflink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], -'ps_add_weblink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'url'=>'string'], -'ps_arc' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'ps_arcn' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float', 'alpha'=>'float', 'beta'=>'float'], -'ps_begin_page' => ['bool', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float'], -'ps_begin_pattern' => ['int', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], -'ps_begin_template' => ['int', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float'], -'ps_circle' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float'], -'ps_clip' => ['bool', 'psdoc'=>'resource'], -'ps_close' => ['bool', 'psdoc'=>'resource'], -'ps_close_image' => ['void', 'psdoc'=>'resource', 'imageid'=>'int'], -'ps_closepath' => ['bool', 'psdoc'=>'resource'], -'ps_closepath_stroke' => ['bool', 'psdoc'=>'resource'], -'ps_continue_text' => ['bool', 'psdoc'=>'resource', 'text'=>'string'], -'ps_curveto' => ['bool', 'psdoc'=>'resource', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'ps_delete' => ['bool', 'psdoc'=>'resource'], -'ps_end_page' => ['bool', 'psdoc'=>'resource'], -'ps_end_pattern' => ['bool', 'psdoc'=>'resource'], -'ps_end_template' => ['bool', 'psdoc'=>'resource'], -'ps_fill' => ['bool', 'psdoc'=>'resource'], -'ps_fill_stroke' => ['bool', 'psdoc'=>'resource'], -'ps_findfont' => ['int', 'psdoc'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'embed='=>'bool'], -'ps_get_buffer' => ['string', 'psdoc'=>'resource'], -'ps_get_parameter' => ['string', 'psdoc'=>'resource', 'name'=>'string', 'modifier='=>'float'], -'ps_get_value' => ['float', 'psdoc'=>'resource', 'name'=>'string', 'modifier='=>'float'], -'ps_hyphenate' => ['array', 'psdoc'=>'resource', 'text'=>'string'], -'ps_include_file' => ['bool', 'psdoc'=>'resource', 'file'=>'string'], -'ps_lineto' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], -'ps_makespotcolor' => ['int', 'psdoc'=>'resource', 'name'=>'string', 'reserved='=>'int'], -'ps_moveto' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], -'ps_new' => ['resource'], -'ps_open_file' => ['bool', 'psdoc'=>'resource', 'filename='=>'string'], -'ps_open_image' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], -'ps_open_image_file' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'filename'=>'string', 'stringparam='=>'string', 'intparam='=>'int'], -'ps_open_memory_image' => ['int', 'psdoc'=>'resource', 'gd'=>'int'], -'ps_place_image' => ['bool', 'psdoc'=>'resource', 'imageid'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], -'ps_rect' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], -'ps_restore' => ['bool', 'psdoc'=>'resource'], -'ps_rotate' => ['bool', 'psdoc'=>'resource', 'rot'=>'float'], -'ps_save' => ['bool', 'psdoc'=>'resource'], -'ps_scale' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], -'ps_set_border_color' => ['bool', 'psdoc'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], -'ps_set_border_dash' => ['bool', 'psdoc'=>'resource', 'black'=>'float', 'white'=>'float'], -'ps_set_border_style' => ['bool', 'psdoc'=>'resource', 'style'=>'string', 'width'=>'float'], -'ps_set_info' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], -'ps_set_parameter' => ['bool', 'psdoc'=>'resource', 'name'=>'string', 'value'=>'string'], -'ps_set_text_pos' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], -'ps_set_value' => ['bool', 'psdoc'=>'resource', 'name'=>'string', 'value'=>'float'], -'ps_setcolor' => ['bool', 'psdoc'=>'resource', 'type'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], -'ps_setdash' => ['bool', 'psdoc'=>'resource', 'on'=>'float', 'off'=>'float'], -'ps_setflat' => ['bool', 'psdoc'=>'resource', 'value'=>'float'], -'ps_setfont' => ['bool', 'psdoc'=>'resource', 'fontid'=>'int', 'size'=>'float'], -'ps_setgray' => ['bool', 'psdoc'=>'resource', 'gray'=>'float'], -'ps_setlinecap' => ['bool', 'psdoc'=>'resource', 'type'=>'int'], -'ps_setlinejoin' => ['bool', 'psdoc'=>'resource', 'type'=>'int'], -'ps_setlinewidth' => ['bool', 'psdoc'=>'resource', 'width'=>'float'], -'ps_setmiterlimit' => ['bool', 'psdoc'=>'resource', 'value'=>'float'], -'ps_setoverprintmode' => ['bool', 'psdoc'=>'resource', 'mode'=>'int'], -'ps_setpolydash' => ['bool', 'psdoc'=>'resource', 'arr'=>'float'], -'ps_shading' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], -'ps_shading_pattern' => ['int', 'psdoc'=>'resource', 'shadingid'=>'int', 'optlist'=>'string'], -'ps_shfill' => ['bool', 'psdoc'=>'resource', 'shadingid'=>'int'], -'ps_show' => ['bool', 'psdoc'=>'resource', 'text'=>'string'], -'ps_show2' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'length'=>'int'], -'ps_show_boxed' => ['int', 'psdoc'=>'resource', 'text'=>'string', 'left'=>'float', 'bottom'=>'float', 'width'=>'float', 'height'=>'float', 'hmode'=>'string', 'feature='=>'string'], -'ps_show_xy' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float'], -'ps_show_xy2' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'length'=>'int', 'xcoor'=>'float', 'ycoor'=>'float'], -'ps_string_geometry' => ['array', 'psdoc'=>'resource', 'text'=>'string', 'fontid='=>'int', 'size='=>'float'], -'ps_stringwidth' => ['float', 'psdoc'=>'resource', 'text'=>'string', 'fontid='=>'int', 'size='=>'float'], -'ps_stroke' => ['bool', 'psdoc'=>'resource'], -'ps_symbol' => ['bool', 'psdoc'=>'resource', 'ord'=>'int'], -'ps_symbol_name' => ['string', 'psdoc'=>'resource', 'ord'=>'int', 'fontid='=>'int'], -'ps_symbol_width' => ['float', 'psdoc'=>'resource', 'ord'=>'int', 'fontid='=>'int', 'size='=>'float'], -'ps_translate' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], -'pspell_add_to_personal' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], -'pspell_add_to_session' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], -'pspell_check' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], -'pspell_clear_session' => ['bool', 'dictionary'=>'PSpell\Dictionary'], -'pspell_config_create' => ['PSpell\Config', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string'], -'pspell_config_data_dir' => ['bool', 'config'=>'PSpell\Config', 'directory'=>'string'], -'pspell_config_dict_dir' => ['bool', 'config'=>'PSpell\Config', 'directory'=>'string'], -'pspell_config_ignore' => ['bool', 'config'=>'PSpell\Config', 'min_length'=>'int'], -'pspell_config_mode' => ['bool', 'config'=>'PSpell\Config', 'mode'=>'int'], -'pspell_config_personal' => ['bool', 'config'=>'PSpell\Config', 'filename'=>'string'], -'pspell_config_repl' => ['bool', 'config'=>'PSpell\Config', 'filename'=>'string'], -'pspell_config_runtogether' => ['bool', 'config'=>'PSpell\Config', 'allow'=>'bool'], -'pspell_config_save_repl' => ['bool', 'config'=>'PSpell\Config', 'save'=>'bool'], -'pspell_new' => ['PSpell\Dictionary|false', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], -'pspell_new_config' => ['PSpell\Dictionary|false', 'config'=>'PSpell\Config'], -'pspell_new_personal' => ['PSpell\Dictionary|false', 'filename'=>'string', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], -'pspell_save_wordlist' => ['bool', 'dictionary'=>'PSpell\Dictionary'], -'pspell_store_replacement' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'misspelled'=>'string', 'correct'=>'string'], -'pspell_suggest' => ['array', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], -'putenv' => ['bool', 'assignment'=>'string'], -'px_close' => ['bool', 'pxdoc'=>'resource'], -'px_create_fp' => ['bool', 'pxdoc'=>'resource', 'file'=>'resource', 'fielddesc'=>'array'], -'px_date2string' => ['string', 'pxdoc'=>'resource', 'value'=>'int', 'format'=>'string'], -'px_delete' => ['bool', 'pxdoc'=>'resource'], -'px_delete_record' => ['bool', 'pxdoc'=>'resource', 'num'=>'int'], -'px_get_field' => ['array', 'pxdoc'=>'resource', 'fieldno'=>'int'], -'px_get_info' => ['array', 'pxdoc'=>'resource'], -'px_get_parameter' => ['string', 'pxdoc'=>'resource', 'name'=>'string'], -'px_get_record' => ['array', 'pxdoc'=>'resource', 'num'=>'int', 'mode='=>'int'], -'px_get_schema' => ['array', 'pxdoc'=>'resource', 'mode='=>'int'], -'px_get_value' => ['float', 'pxdoc'=>'resource', 'name'=>'string'], -'px_insert_record' => ['int', 'pxdoc'=>'resource', 'data'=>'array'], -'px_new' => ['resource'], -'px_numfields' => ['int', 'pxdoc'=>'resource'], -'px_numrecords' => ['int', 'pxdoc'=>'resource'], -'px_open_fp' => ['bool', 'pxdoc'=>'resource', 'file'=>'resource'], -'px_put_record' => ['bool', 'pxdoc'=>'resource', 'record'=>'array', 'recpos='=>'int'], -'px_retrieve_record' => ['array', 'pxdoc'=>'resource', 'num'=>'int', 'mode='=>'int'], -'px_set_blob_file' => ['bool', 'pxdoc'=>'resource', 'filename'=>'string'], -'px_set_parameter' => ['bool', 'pxdoc'=>'resource', 'name'=>'string', 'value'=>'string'], -'px_set_tablename' => ['void', 'pxdoc'=>'resource', 'name'=>'string'], -'px_set_targetencoding' => ['bool', 'pxdoc'=>'resource', 'encoding'=>'string'], -'px_set_value' => ['bool', 'pxdoc'=>'resource', 'name'=>'string', 'value'=>'float'], -'px_timestamp2string' => ['string', 'pxdoc'=>'resource', 'value'=>'float', 'format'=>'string'], -'px_update_record' => ['bool', 'pxdoc'=>'resource', 'data'=>'array', 'num'=>'int'], -'qdom_error' => ['string'], -'qdom_tree' => ['QDomDocument', 'doc'=>'string'], -'querymapObj::convertToString' => ['string'], -'querymapObj::free' => ['void'], -'querymapObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'querymapObj::updateFromString' => ['int', 'snippet'=>'string'], -'QuickHashIntHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], -'QuickHashIntHash::add' => ['bool', 'key'=>'int', 'value='=>'int'], -'QuickHashIntHash::delete' => ['bool', 'key'=>'int'], -'QuickHashIntHash::exists' => ['bool', 'key'=>'int'], -'QuickHashIntHash::get' => ['int', 'key'=>'int'], -'QuickHashIntHash::getSize' => ['int'], -'QuickHashIntHash::loadFromFile' => ['QuickHashIntHash', 'filename'=>'string', 'options='=>'int'], -'QuickHashIntHash::loadFromString' => ['QuickHashIntHash', 'contents'=>'string', 'options='=>'int'], -'QuickHashIntHash::saveToFile' => ['void', 'filename'=>'string'], -'QuickHashIntHash::saveToString' => ['string'], -'QuickHashIntHash::set' => ['bool', 'key'=>'int', 'value'=>'int'], -'QuickHashIntHash::update' => ['bool', 'key'=>'int', 'value'=>'int'], -'QuickHashIntSet::__construct' => ['void', 'size'=>'int', 'options='=>'int'], -'QuickHashIntSet::add' => ['bool', 'key'=>'int'], -'QuickHashIntSet::delete' => ['bool', 'key'=>'int'], -'QuickHashIntSet::exists' => ['bool', 'key'=>'int'], -'QuickHashIntSet::getSize' => ['int'], -'QuickHashIntSet::loadFromFile' => ['QuickHashIntSet', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashIntSet::loadFromString' => ['QuickHashIntSet', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashIntSet::saveToFile' => ['void', 'filename'=>'string'], -'QuickHashIntSet::saveToString' => ['string'], -'QuickHashIntStringHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], -'QuickHashIntStringHash::add' => ['bool', 'key'=>'int', 'value'=>'string'], -'QuickHashIntStringHash::delete' => ['bool', 'key'=>'int'], -'QuickHashIntStringHash::exists' => ['bool', 'key'=>'int'], -'QuickHashIntStringHash::get' => ['mixed', 'key'=>'int'], -'QuickHashIntStringHash::getSize' => ['int'], -'QuickHashIntStringHash::loadFromFile' => ['QuickHashIntStringHash', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashIntStringHash::loadFromString' => ['QuickHashIntStringHash', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashIntStringHash::saveToFile' => ['void', 'filename'=>'string'], -'QuickHashIntStringHash::saveToString' => ['string'], -'QuickHashIntStringHash::set' => ['int', 'key'=>'int', 'value'=>'string'], -'QuickHashIntStringHash::update' => ['bool', 'key'=>'int', 'value'=>'string'], -'QuickHashStringIntHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], -'QuickHashStringIntHash::add' => ['bool', 'key'=>'string', 'value'=>'int'], -'QuickHashStringIntHash::delete' => ['bool', 'key'=>'string'], -'QuickHashStringIntHash::exists' => ['bool', 'key'=>'string'], -'QuickHashStringIntHash::get' => ['mixed', 'key'=>'string'], -'QuickHashStringIntHash::getSize' => ['int'], -'QuickHashStringIntHash::loadFromFile' => ['QuickHashStringIntHash', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashStringIntHash::loadFromString' => ['QuickHashStringIntHash', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], -'QuickHashStringIntHash::saveToFile' => ['void', 'filename'=>'string'], -'QuickHashStringIntHash::saveToString' => ['string'], -'QuickHashStringIntHash::set' => ['int', 'key'=>'string', 'value'=>'int'], -'QuickHashStringIntHash::update' => ['bool', 'key'=>'string', 'value'=>'int'], -'quoted_printable_decode' => ['string', 'string'=>'string'], -'quoted_printable_encode' => ['string', 'string'=>'string'], -'quotemeta' => ['string', 'string'=>'string'], -'rad2deg' => ['float', 'num'=>'float'], -'radius_acct_open' => ['resource|false'], -'radius_add_server' => ['bool', 'radius_handle'=>'resource', 'hostname'=>'string', 'port'=>'int', 'secret'=>'string', 'timeout'=>'int', 'max_tries'=>'int'], -'radius_auth_open' => ['resource|false'], -'radius_close' => ['bool', 'radius_handle'=>'resource'], -'radius_config' => ['bool', 'radius_handle'=>'resource', 'file'=>'string'], -'radius_create_request' => ['bool', 'radius_handle'=>'resource', 'type'=>'int'], -'radius_cvt_addr' => ['string', 'data'=>'string'], -'radius_cvt_int' => ['int', 'data'=>'string'], -'radius_cvt_string' => ['string', 'data'=>'string'], -'radius_demangle' => ['string', 'radius_handle'=>'resource', 'mangled'=>'string'], -'radius_demangle_mppe_key' => ['string', 'radius_handle'=>'resource', 'mangled'=>'string'], -'radius_get_attr' => ['mixed', 'radius_handle'=>'resource'], -'radius_get_tagged_attr_data' => ['string', 'data'=>'string'], -'radius_get_tagged_attr_tag' => ['int', 'data'=>'string'], -'radius_get_vendor_attr' => ['array', 'data'=>'string'], -'radius_put_addr' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'addr'=>'string'], -'radius_put_attr' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'string'], -'radius_put_int' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'int'], -'radius_put_string' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'string'], -'radius_put_vendor_addr' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'addr'=>'string'], -'radius_put_vendor_attr' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'string'], -'radius_put_vendor_int' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'int'], -'radius_put_vendor_string' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'string'], -'radius_request_authenticator' => ['string', 'radius_handle'=>'resource'], -'radius_salt_encrypt_attr' => ['string', 'radius_handle'=>'resource', 'data'=>'string'], -'radius_send_request' => ['int|false', 'radius_handle'=>'resource'], -'radius_server_secret' => ['string', 'radius_handle'=>'resource'], -'radius_strerror' => ['string', 'radius_handle'=>'resource'], -'rand' => ['int', 'min'=>'int', 'max'=>'int'], -'rand\'1' => ['int'], -'random_bytes' => ['non-empty-string', 'length'=>'positive-int'], -'random_int' => ['int', 'min'=>'int', 'max'=>'int'], -'range' => ['non-empty-array', 'start'=>'string|int|float', 'end'=>'string|int|float', 'step='=>'int<1, max>|float'], -'RangeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'RangeException::__toString' => ['string'], -'RangeException::getCode' => ['int'], -'RangeException::getFile' => ['string'], -'RangeException::getLine' => ['int'], -'RangeException::getMessage' => ['string'], -'RangeException::getPrevious' => ['?Throwable'], -'RangeException::getTrace' => ['list\',args?:array}>'], -'RangeException::getTraceAsString' => ['string'], -'rar_allow_broken_set' => ['bool', 'rarfile'=>'RarArchive', 'allow_broken'=>'bool'], -'rar_broken_is' => ['bool', 'rarfile'=>'rararchive'], -'rar_close' => ['bool', 'rarfile'=>'rararchive'], -'rar_comment_get' => ['string', 'rarfile'=>'rararchive'], -'rar_entry_get' => ['RarEntry', 'rarfile'=>'RarArchive', 'entryname'=>'string'], -'rar_list' => ['RarArchive', 'rarfile'=>'rararchive'], -'rar_open' => ['RarArchive', 'filename'=>'string', 'password='=>'string', 'volume_callback='=>'callable'], -'rar_solid_is' => ['bool', 'rarfile'=>'rararchive'], -'rar_wrapper_cache_stats' => ['string'], -'RarArchive::__toString' => ['string'], -'RarArchive::close' => ['bool'], -'RarArchive::getComment' => ['string|null'], -'RarArchive::getEntries' => ['RarEntry[]|false'], -'RarArchive::getEntry' => ['RarEntry|false', 'entryname'=>'string'], -'RarArchive::isBroken' => ['bool'], -'RarArchive::isSolid' => ['bool'], -'RarArchive::open' => ['RarArchive|false', 'filename'=>'string', 'password='=>'string', 'volume_callback='=>'callable'], -'RarArchive::setAllowBroken' => ['bool', 'allow_broken'=>'bool'], -'RarEntry::__toString' => ['string'], -'RarEntry::extract' => ['bool', 'dir'=>'string', 'filepath='=>'string', 'password='=>'string', 'extended_data='=>'bool'], -'RarEntry::getAttr' => ['int|false'], -'RarEntry::getCrc' => ['string|false'], -'RarEntry::getFileTime' => ['string|false'], -'RarEntry::getHostOs' => ['int|false'], -'RarEntry::getMethod' => ['int|false'], -'RarEntry::getName' => ['string|false'], -'RarEntry::getPackedSize' => ['int|false'], -'RarEntry::getStream' => ['resource|false', 'password='=>'string'], -'RarEntry::getUnpackedSize' => ['int|false'], -'RarEntry::getVersion' => ['int|false'], -'RarEntry::isDirectory' => ['bool'], -'RarEntry::isEncrypted' => ['bool'], -'RarException::getCode' => ['int'], -'RarException::getFile' => ['string'], -'RarException::getLine' => ['int'], -'RarException::getMessage' => ['string'], -'RarException::getPrevious' => ['Exception|Throwable'], -'RarException::getTrace' => ['list\',args?:array}>'], -'RarException::getTraceAsString' => ['string'], -'RarException::isUsingExceptions' => ['bool'], -'RarException::setUsingExceptions' => ['RarEntry', 'using_exceptions'=>'bool'], -'rawurldecode' => ['string', 'string'=>'string'], -'rawurlencode' => ['string', 'string'=>'string'], -'readdir' => ['string|false', 'dir_handle='=>'resource'], -'readfile' => ['int|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'resource'], -'readgzfile' => ['int|false', 'filename'=>'string', 'use_include_path='=>'int'], -'readline' => ['string|false', 'prompt='=>'?string'], -'readline_add_history' => ['bool', 'prompt'=>'string'], -'readline_callback_handler_install' => ['bool', 'prompt'=>'string', 'callback'=>'callable'], -'readline_callback_handler_remove' => ['bool'], -'readline_callback_read_char' => ['void'], -'readline_clear_history' => ['bool'], -'readline_completion_function' => ['bool', 'callback'=>'callable'], -'readline_info' => ['mixed', 'var_name='=>'?string', 'value='=>'string|int|bool|null'], -'readline_list_history' => ['array'], -'readline_on_new_line' => ['void'], -'readline_read_history' => ['bool', 'filename='=>'?string'], -'readline_redisplay' => ['void'], -'readline_write_history' => ['bool', 'filename='=>'?string'], -'readlink' => ['non-falsy-string|false', 'path'=>'string'], -'realpath' => ['non-falsy-string|false', 'path'=>'string'], -'realpath_cache_get' => ['array'], -'realpath_cache_size' => ['int'], -'recode' => ['string', 'request'=>'string', 'string'=>'string'], -'recode_file' => ['bool', 'request'=>'string', 'input'=>'resource', 'output'=>'resource'], -'recode_string' => ['string|false', 'request'=>'string', 'string'=>'string'], -'rectObj::__construct' => ['void'], -'rectObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj', 'class_index'=>'int', 'text'=>'string'], -'rectObj::fit' => ['float', 'width'=>'int', 'height'=>'int'], -'rectObj::ms_newRectObj' => ['rectObj'], -'rectObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], -'rectObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'rectObj::setextent' => ['void', 'minx'=>'float', 'miny'=>'float', 'maxx'=>'float', 'maxy'=>'float'], -'RecursiveArrayIterator::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int'], -'RecursiveArrayIterator::append' => ['void', 'value'=>'mixed'], -'RecursiveArrayIterator::asort' => ['true', 'flags='=>'int'], -'RecursiveArrayIterator::count' => ['int'], -'RecursiveArrayIterator::current' => ['mixed'], -'RecursiveArrayIterator::getArrayCopy' => ['array'], -'RecursiveArrayIterator::getChildren' => ['?RecursiveArrayIterator'], -'RecursiveArrayIterator::getFlags' => ['int'], -'RecursiveArrayIterator::hasChildren' => ['bool'], -'RecursiveArrayIterator::key' => ['string|int|null'], -'RecursiveArrayIterator::ksort' => ['true', 'flags='=>'int'], -'RecursiveArrayIterator::natcasesort' => ['true'], -'RecursiveArrayIterator::natsort' => ['true'], -'RecursiveArrayIterator::next' => ['void'], -'RecursiveArrayIterator::offsetExists' => ['bool', 'key'=>'string|int'], -'RecursiveArrayIterator::offsetGet' => ['mixed', 'key'=>'string|int'], -'RecursiveArrayIterator::offsetSet' => ['void', 'key'=>'string|int|null', 'value'=>'string'], -'RecursiveArrayIterator::offsetUnset' => ['void', 'key'=>'string|int'], -'RecursiveArrayIterator::rewind' => ['void'], -'RecursiveArrayIterator::seek' => ['void', 'offset'=>'int'], -'RecursiveArrayIterator::serialize' => ['string'], -'RecursiveArrayIterator::setFlags' => ['void', 'flags'=>'int'], -'RecursiveArrayIterator::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'RecursiveArrayIterator::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], -'RecursiveArrayIterator::unserialize' => ['void', 'data'=>'string'], -'RecursiveArrayIterator::valid' => ['bool'], -'RecursiveCachingIterator::__construct' => ['void', 'iterator'=>'Iterator', 'flags='=>'int'], -'RecursiveCachingIterator::__toString' => ['string'], -'RecursiveCachingIterator::count' => ['int'], -'RecursiveCachingIterator::current' => ['void'], -'RecursiveCachingIterator::getCache' => ['array'], -'RecursiveCachingIterator::getChildren' => ['?RecursiveCachingIterator'], -'RecursiveCachingIterator::getFlags' => ['int'], -'RecursiveCachingIterator::getInnerIterator' => ['Iterator'], -'RecursiveCachingIterator::hasChildren' => ['bool'], -'RecursiveCachingIterator::hasNext' => ['bool'], -'RecursiveCachingIterator::key' => ['bool|float|int|string'], -'RecursiveCachingIterator::next' => ['void'], -'RecursiveCachingIterator::offsetExists' => ['bool', 'key'=>'string'], -'RecursiveCachingIterator::offsetGet' => ['string', 'key'=>'string'], -'RecursiveCachingIterator::offsetSet' => ['void', 'key'=>'string', 'value'=>'string'], -'RecursiveCachingIterator::offsetUnset' => ['void', 'key'=>'string'], -'RecursiveCachingIterator::rewind' => ['void'], -'RecursiveCachingIterator::setFlags' => ['void', 'flags'=>'int'], -'RecursiveCachingIterator::valid' => ['bool'], -'RecursiveCallbackFilterIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator', 'callback'=>'callable(mixed,mixed=,mixed=):bool'], -'RecursiveCallbackFilterIterator::accept' => ['bool'], -'RecursiveCallbackFilterIterator::current' => ['mixed'], -'RecursiveCallbackFilterIterator::getChildren' => ['RecursiveCallbackFilterIterator'], -'RecursiveCallbackFilterIterator::getInnerIterator' => ['Iterator'], -'RecursiveCallbackFilterIterator::hasChildren' => ['bool'], -'RecursiveCallbackFilterIterator::key' => ['bool|float|int|string'], -'RecursiveCallbackFilterIterator::next' => ['void'], -'RecursiveCallbackFilterIterator::rewind' => ['void'], -'RecursiveCallbackFilterIterator::valid' => ['bool'], -'RecursiveDirectoryIterator::__construct' => ['void', 'directory'=>'string', 'flags='=>'int'], -'RecursiveDirectoryIterator::__toString' => ['string'], -'RecursiveDirectoryIterator::current' => ['string|SplFileInfo|FilesystemIterator'], -'RecursiveDirectoryIterator::getATime' => ['int'], -'RecursiveDirectoryIterator::getBasename' => ['string', 'suffix='=>'string'], -'RecursiveDirectoryIterator::getChildren' => ['RecursiveDirectoryIterator'], -'RecursiveDirectoryIterator::getCTime' => ['int'], -'RecursiveDirectoryIterator::getExtension' => ['string'], -'RecursiveDirectoryIterator::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'RecursiveDirectoryIterator::getFilename' => ['string'], -'RecursiveDirectoryIterator::getFlags' => ['int'], -'RecursiveDirectoryIterator::getGroup' => ['int'], -'RecursiveDirectoryIterator::getInode' => ['int'], -'RecursiveDirectoryIterator::getLinkTarget' => ['string'], -'RecursiveDirectoryIterator::getMTime' => ['int'], -'RecursiveDirectoryIterator::getOwner' => ['int'], -'RecursiveDirectoryIterator::getPath' => ['string'], -'RecursiveDirectoryIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'?class-string'], -'RecursiveDirectoryIterator::getPathname' => ['string'], -'RecursiveDirectoryIterator::getPerms' => ['int'], -'RecursiveDirectoryIterator::getRealPath' => ['non-falsy-string'], -'RecursiveDirectoryIterator::getSize' => ['int'], -'RecursiveDirectoryIterator::getSubPath' => ['string'], -'RecursiveDirectoryIterator::getSubPathname' => ['string'], -'RecursiveDirectoryIterator::getType' => ['string'], -'RecursiveDirectoryIterator::hasChildren' => ['bool', 'allowLinks='=>'bool'], -'RecursiveDirectoryIterator::isDir' => ['bool'], -'RecursiveDirectoryIterator::isDot' => ['bool'], -'RecursiveDirectoryIterator::isExecutable' => ['bool'], -'RecursiveDirectoryIterator::isFile' => ['bool'], -'RecursiveDirectoryIterator::isLink' => ['bool'], -'RecursiveDirectoryIterator::isReadable' => ['bool'], -'RecursiveDirectoryIterator::isWritable' => ['bool'], -'RecursiveDirectoryIterator::key' => ['string'], -'RecursiveDirectoryIterator::next' => ['void'], -'RecursiveDirectoryIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'RecursiveDirectoryIterator::rewind' => ['void'], -'RecursiveDirectoryIterator::seek' => ['void', 'offset'=>'int'], -'RecursiveDirectoryIterator::setFileClass' => ['void', 'class='=>'class-string'], -'RecursiveDirectoryIterator::setFlags' => ['void', 'flags'=>'int'], -'RecursiveDirectoryIterator::setInfoClass' => ['void', 'class='=>'class-string'], -'RecursiveDirectoryIterator::valid' => ['bool'], -'RecursiveFilterIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator'], -'RecursiveFilterIterator::accept' => ['bool'], -'RecursiveFilterIterator::current' => ['mixed'], -'RecursiveFilterIterator::getChildren' => ['?RecursiveFilterIterator'], -'RecursiveFilterIterator::getInnerIterator' => ['Iterator'], -'RecursiveFilterIterator::hasChildren' => ['bool'], -'RecursiveFilterIterator::key' => ['mixed'], -'RecursiveFilterIterator::next' => ['void'], -'RecursiveFilterIterator::rewind' => ['void'], -'RecursiveFilterIterator::valid' => ['bool'], -'RecursiveIterator::__construct' => ['void'], -'RecursiveIterator::current' => ['mixed'], -'RecursiveIterator::getChildren' => ['?RecursiveIterator'], -'RecursiveIterator::hasChildren' => ['bool'], -'RecursiveIterator::key' => ['int|string'], -'RecursiveIterator::next' => ['void'], -'RecursiveIterator::rewind' => ['void'], -'RecursiveIterator::valid' => ['bool'], -'RecursiveIteratorIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator|IteratorAggregate', 'mode='=>'int', 'flags='=>'int'], -'RecursiveIteratorIterator::beginChildren' => ['void'], -'RecursiveIteratorIterator::beginIteration' => ['void'], -'RecursiveIteratorIterator::callGetChildren' => ['?RecursiveIterator'], -'RecursiveIteratorIterator::callHasChildren' => ['bool'], -'RecursiveIteratorIterator::current' => ['mixed'], -'RecursiveIteratorIterator::endChildren' => ['void'], -'RecursiveIteratorIterator::endIteration' => ['void'], -'RecursiveIteratorIterator::getDepth' => ['int'], -'RecursiveIteratorIterator::getInnerIterator' => ['RecursiveIterator'], -'RecursiveIteratorIterator::getMaxDepth' => ['int|false'], -'RecursiveIteratorIterator::getSubIterator' => ['?RecursiveIterator', 'level='=>'?int'], -'RecursiveIteratorIterator::key' => ['mixed'], -'RecursiveIteratorIterator::next' => ['void'], -'RecursiveIteratorIterator::nextElement' => ['void'], -'RecursiveIteratorIterator::rewind' => ['void'], -'RecursiveIteratorIterator::setMaxDepth' => ['void', 'maxDepth='=>'int'], -'RecursiveIteratorIterator::valid' => ['bool'], -'RecursiveRegexIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator', 'pattern'=>'string', 'mode='=>'int', 'flags='=>'int', 'pregFlags='=>'int'], -'RecursiveRegexIterator::accept' => ['bool'], -'RecursiveRegexIterator::current' => ['mixed'], -'RecursiveRegexIterator::getChildren' => ['RecursiveRegexIterator'], -'RecursiveRegexIterator::getFlags' => ['int'], -'RecursiveRegexIterator::getInnerIterator' => ['Iterator'], -'RecursiveRegexIterator::getMode' => ['int'], -'RecursiveRegexIterator::getPregFlags' => ['int'], -'RecursiveRegexIterator::getRegex' => ['string'], -'RecursiveRegexIterator::hasChildren' => ['bool'], -'RecursiveRegexIterator::key' => ['mixed'], -'RecursiveRegexIterator::next' => ['void'], -'RecursiveRegexIterator::rewind' => ['void'], -'RecursiveRegexIterator::setFlags' => ['void', 'flags'=>'int'], -'RecursiveRegexIterator::setMode' => ['void', 'mode'=>'int'], -'RecursiveRegexIterator::setPregFlags' => ['void', 'pregFlags'=>'int'], -'RecursiveRegexIterator::valid' => ['bool'], -'RecursiveTreeIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator|IteratorAggregate', 'flags='=>'int', 'cachingIteratorFlags='=>'int', 'mode='=>'int'], -'RecursiveTreeIterator::beginChildren' => ['void'], -'RecursiveTreeIterator::beginIteration' => ['void'], -'RecursiveTreeIterator::callGetChildren' => ['?RecursiveIterator'], -'RecursiveTreeIterator::callHasChildren' => ['bool'], -'RecursiveTreeIterator::current' => ['string'], -'RecursiveTreeIterator::endChildren' => ['void'], -'RecursiveTreeIterator::endIteration' => ['void'], -'RecursiveTreeIterator::getDepth' => ['int'], -'RecursiveTreeIterator::getEntry' => ['string'], -'RecursiveTreeIterator::getInnerIterator' => ['RecursiveIterator'], -'RecursiveTreeIterator::getMaxDepth' => ['false|int'], -'RecursiveTreeIterator::getPostfix' => ['string'], -'RecursiveTreeIterator::getPrefix' => ['string'], -'RecursiveTreeIterator::getSubIterator' => ['?RecursiveIterator', 'level='=>'?int'], -'RecursiveTreeIterator::key' => ['string'], -'RecursiveTreeIterator::next' => ['void'], -'RecursiveTreeIterator::nextElement' => ['void'], -'RecursiveTreeIterator::rewind' => ['void'], -'RecursiveTreeIterator::setMaxDepth' => ['void', 'maxDepth='=>'int'], -'RecursiveTreeIterator::setPostfix' => ['void', 'postfix'=>'string'], -'RecursiveTreeIterator::setPrefixPart' => ['void', 'part'=>'int', 'value'=>'string'], -'RecursiveTreeIterator::valid' => ['bool'], -'Redis::__construct' => ['void'], -'Redis::__destruct' => ['void'], -'Redis::_prefix' => ['string', 'value'=>'mixed'], -'Redis::_serialize' => ['mixed', 'value'=>'mixed'], -'Redis::_unserialize' => ['mixed', 'value'=>'string'], -'Redis::append' => ['int', 'key'=>'string', 'value'=>'string'], -'Redis::auth' => ['bool', 'password'=>'string'], -'Redis::bgRewriteAOF' => ['bool'], -'Redis::bgSave' => ['bool'], -'Redis::bitCount' => ['int', 'key'=>'string'], -'Redis::bitOp' => ['int', 'operation'=>'string', 'ret_key'=>'string', 'key'=>'string', '...other_keys='=>'string'], -'Redis::bitpos' => ['int', 'key'=>'string', 'bit'=>'int', 'start='=>'int', 'end='=>'int'], -'Redis::blPop' => ['array', 'keys'=>'string[]', 'timeout'=>'int'], -'Redis::blPop\'1' => ['array', 'key'=>'string', 'timeout_or_key'=>'int|string', '...extra_args'=>'int|string'], -'Redis::brPop' => ['array', 'keys'=>'string[]', 'timeout'=>'int'], -'Redis::brPop\'1' => ['array', 'key'=>'string', 'timeout_or_key'=>'int|string', '...extra_args'=>'int|string'], -'Redis::brpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string', 'timeout'=>'int'], -'Redis::clearLastError' => ['bool'], -'Redis::client' => ['mixed', 'command'=>'string', 'arg='=>'string'], -'Redis::close' => ['bool'], -'Redis::command' => ['', '...args'=>''], -'Redis::config' => ['string', 'operation'=>'string', 'key'=>'string', 'value='=>'string'], -'Redis::connect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'reserved='=>'null', 'retry_interval='=>'?int', 'read_timeout='=>'float'], -'Redis::dbSize' => ['int'], -'Redis::debug' => ['', 'key'=>''], -'Redis::decr' => ['int', 'key'=>'string'], -'Redis::decrBy' => ['int', 'key'=>'string', 'value'=>'int'], -'Redis::decrByFloat' => ['float', 'key'=>'string', 'value'=>'float'], -'Redis::del' => ['int', 'key'=>'string', '...args'=>'string'], -'Redis::del\'1' => ['int', 'key'=>'string[]'], -'Redis::delete' => ['int', 'key'=>'string', '...args'=>'string'], -'Redis::delete\'1' => ['int', 'key'=>'string[]'], -'Redis::discard' => [''], -'Redis::dump' => ['string|false', 'key'=>'string'], -'Redis::echo' => ['string', 'message'=>'string'], -'Redis::eval' => ['mixed', 'script'=>'', 'args='=>'', 'numKeys='=>''], -'Redis::evalSha' => ['mixed', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], -'Redis::evaluate' => ['mixed', 'script'=>'string', 'args='=>'array', 'numKeys='=>'int'], -'Redis::evaluateSha' => ['', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], -'Redis::exec' => ['array'], -'Redis::exists' => ['int', 'keys'=>'string|string[]'], -'Redis::exists\'1' => ['int', '...keys'=>'string'], -'Redis::expire' => ['bool', 'key'=>'string', 'ttl'=>'int'], -'Redis::expireAt' => ['bool', 'key'=>'string', 'expiry'=>'int'], -'Redis::flushAll' => ['bool', 'async='=>'bool'], -'Redis::flushDb' => ['bool', 'async='=>'bool'], -'Redis::geoAdd' => ['int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'member'=>'string', '...other_triples='=>'string|int|float'], -'Redis::geoDist' => ['float', 'key'=>'string', 'member1'=>'string', 'member2'=>'string', 'unit='=>'string'], -'Redis::geoHash' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'Redis::geoPos' => ['array', 'key'=>'string', 'member'=>'string', '...members='=>'string'], -'Redis::geoRadius' => ['array|int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'radius'=>'float', 'unit'=>'float', 'options='=>'array'], -'Redis::geoRadiusByMember' => ['array|int', 'key'=>'string', 'member'=>'string', 'radius'=>'float', 'units'=>'string', 'options='=>'array'], -'Redis::get' => ['string|false', 'key'=>'string'], -'Redis::getAuth' => ['string|false|null'], -'Redis::getBit' => ['int', 'key'=>'string', 'offset'=>'int'], -'Redis::getDBNum' => ['int|false'], -'Redis::getHost' => ['string|false'], -'Redis::getKeys' => ['array', 'pattern'=>'string'], -'Redis::getLastError' => ['?string'], -'Redis::getMode' => ['int'], -'Redis::getMultiple' => ['array', 'keys'=>'string[]'], -'Redis::getOption' => ['int', 'name'=>'int'], -'Redis::getPersistentID' => ['string|false|null'], -'Redis::getPort' => ['int|false'], -'Redis::getRange' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::getReadTimeout' => ['float|false'], -'Redis::getSet' => ['string', 'key'=>'string', 'string'=>'string'], -'Redis::getTimeout' => ['float|false'], -'Redis::hDel' => ['int|false', 'key'=>'string', 'hashKey1'=>'string', '...otherHashKeys='=>'string'], -'Redis::hExists' => ['bool', 'key'=>'string', 'hashKey'=>'string'], -'Redis::hGet' => ['string|false', 'key'=>'string', 'hashKey'=>'string'], -'Redis::hGetAll' => ['array', 'key'=>'string'], -'Redis::hIncrBy' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'int'], -'Redis::hIncrByFloat' => ['float', 'key'=>'string', 'field'=>'string', 'increment'=>'float'], -'Redis::hKeys' => ['array', 'key'=>'string'], -'Redis::hLen' => ['int|false', 'key'=>'string'], -'Redis::hMGet' => ['array', 'key'=>'string', 'hashKeys'=>'array'], -'Redis::hMSet' => ['bool', 'key'=>'string', 'hashKeys'=>'array'], -'Redis::hScan' => ['array', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], -'Redis::hSet' => ['int|false', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], -'Redis::hSetNx' => ['bool', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], -'Redis::hStrLen' => ['', 'key'=>'', 'member'=>''], -'Redis::hVals' => ['array', 'key'=>'string'], -'Redis::incr' => ['int', 'key'=>'string'], -'Redis::incrBy' => ['int', 'key'=>'string', 'value'=>'int'], -'Redis::incrByFloat' => ['float', 'key'=>'string', 'value'=>'float'], -'Redis::info' => ['array', 'option='=>'string'], -'Redis::isConnected' => ['bool'], -'Redis::keys' => ['array', 'pattern'=>'string'], -'Redis::lastSave' => ['int'], -'Redis::lGet' => ['string', 'key'=>'string', 'index'=>'int'], -'Redis::lGetRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::lIndex' => ['string|false', 'key'=>'string', 'index'=>'int'], -'Redis::lInsert' => ['int', 'key'=>'string', 'position'=>'int', 'pivot'=>'string', 'value'=>'string'], -'Redis::listTrim' => ['', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], -'Redis::lLen' => ['int|false', 'key'=>'string'], -'Redis::lPop' => ['string|false', 'key'=>'string'], -'Redis::lPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'Redis::lPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], -'Redis::lRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::lRem' => ['int|false', 'key'=>'string', 'value'=>'string', 'count'=>'int'], -'Redis::lRemove' => ['int', 'key'=>'string', 'value'=>'string', 'count'=>'int'], -'Redis::lSet' => ['bool', 'key'=>'string', 'index'=>'int', 'value'=>'string'], -'Redis::lSize' => ['int', 'key'=>'string'], -'Redis::lTrim' => ['array|false', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], -'Redis::mGet' => ['array', 'keys'=>'string[]'], -'Redis::migrate' => ['bool', 'host'=>'string', 'port'=>'int', 'key'=>'string|string[]', 'db'=>'int', 'timeout'=>'int', 'copy='=>'bool', 'replace='=>'bool'], -'Redis::move' => ['bool', 'key'=>'string', 'dbindex'=>'int'], -'Redis::mSet' => ['bool', 'pairs'=>'array'], -'Redis::mSetNx' => ['bool', 'pairs'=>'array'], -'Redis::multi' => ['Redis', 'mode='=>'int'], -'Redis::object' => ['string|long|false', 'info'=>'string', 'key'=>'string'], -'Redis::open' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'reserved='=>'null', 'retry_interval='=>'?int', 'read_timeout='=>'float'], -'Redis::pconnect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'persistent_id='=>'string', 'retry_interval='=>'?int'], -'Redis::persist' => ['bool', 'key'=>'string'], -'Redis::pExpire' => ['bool', 'key'=>'string', 'ttl'=>'int'], -'Redis::pexpireAt' => ['bool', 'key'=>'string', 'expiry'=>'int'], -'Redis::pfAdd' => ['bool', 'key'=>'string', 'elements'=>'array'], -'Redis::pfCount' => ['int', 'key'=>'array|string'], -'Redis::pfMerge' => ['bool', 'destkey'=>'string', 'sourcekeys'=>'array'], -'Redis::ping' => ['string'], -'Redis::pipeline' => ['Redis'], -'Redis::popen' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'persistent_id='=>'string', 'retry_interval='=>'?int'], -'Redis::psetex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'Redis::psubscribe' => ['', 'patterns'=>'array', 'callback'=>'array|string'], -'Redis::pttl' => ['int|false', 'key'=>'string'], -'Redis::publish' => ['int', 'channel'=>'string', 'message'=>'string'], -'Redis::pubsub' => ['array|int', 'keyword'=>'string', 'argument='=>'array|string'], -'Redis::punsubscribe' => ['', 'pattern'=>'string', '...other_patterns='=>'string'], -'Redis::randomKey' => ['string'], -'Redis::rawCommand' => ['mixed', 'command'=>'string', '...arguments='=>'mixed'], -'Redis::rename' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], -'Redis::renameKey' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], -'Redis::renameNx' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], -'Redis::resetStat' => ['bool'], -'Redis::restore' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'Redis::role' => ['array', 'nodeParams'=>'string|array{0:string,1:int}'], -'Redis::rPop' => ['string|false', 'key'=>'string'], -'Redis::rpoplpush' => ['string', 'srcKey'=>'string', 'dstKey'=>'string'], -'Redis::rPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'Redis::rPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], -'Redis::sAdd' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'Redis::sAddArray' => ['bool', 'key'=>'string', 'values'=>'array'], -'Redis::save' => ['bool'], -'Redis::scan' => ['array|false', '&rw_iterator'=>'?int', 'pattern='=>'?string', 'count='=>'?int'], -'Redis::sCard' => ['int', 'key'=>'string'], -'Redis::sContains' => ['', 'key'=>'string', 'value'=>'string'], -'Redis::script' => ['mixed', 'command'=>'string', '...args='=>'mixed'], -'Redis::sDiff' => ['array', 'key1'=>'string', '...other_keys='=>'string'], -'Redis::sDiffStore' => ['int|false', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], -'Redis::select' => ['bool', 'dbindex'=>'int'], -'Redis::sendEcho' => ['string', 'msg'=>'string'], -'Redis::set' => ['bool', 'key'=>'string', 'value'=>'mixed', 'options='=>'array'], -'Redis::set\'1' => ['bool', 'key'=>'string', 'value'=>'mixed', 'timeout='=>'int'], -'Redis::setBit' => ['int', 'key'=>'string', 'offset'=>'int', 'value'=>'int'], -'Redis::setEx' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'Redis::setNx' => ['bool', 'key'=>'string', 'value'=>'string'], -'Redis::setOption' => ['bool', 'name'=>'int', 'value'=>'mixed'], -'Redis::setRange' => ['int', 'key'=>'string', 'offset'=>'int', 'end'=>'int'], -'Redis::setTimeout' => ['', 'key'=>'string', 'ttl'=>'int'], -'Redis::sGetMembers' => ['', 'key'=>'string'], -'Redis::sInter' => ['array|false', 'key'=>'string', '...other_keys='=>'string'], -'Redis::sInterStore' => ['int|false', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], -'Redis::sIsMember' => ['bool', 'key'=>'string', 'value'=>'string'], -'Redis::slave' => ['bool', 'host'=>'string', 'port'=>'int'], -'Redis::slave\'1' => ['bool', 'host'=>'string', 'port'=>'int'], -'Redis::slaveof' => ['bool', 'host='=>'string', 'port='=>'int'], -'Redis::slowLog' => ['mixed', 'operation'=>'string', 'length='=>'int'], -'Redis::sMembers' => ['array', 'key'=>'string'], -'Redis::sMove' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string', 'member'=>'string'], -'Redis::sort' => ['array|int', 'key'=>'string', 'options='=>'array'], -'Redis::sortAsc' => ['array', 'key'=>'string', 'pattern='=>'string', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], -'Redis::sortAscAlpha' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], -'Redis::sortDesc' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], -'Redis::sortDescAlpha' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], -'Redis::sPop' => ['string|false', 'key'=>'string'], -'Redis::sRandMember' => ['array|string|false', 'key'=>'string', 'count='=>'int'], -'Redis::sRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], -'Redis::sRemove' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], -'Redis::sScan' => ['array|bool', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], -'Redis::sSize' => ['int', 'key'=>'string'], -'Redis::strLen' => ['int', 'key'=>'string'], -'Redis::subscribe' => ['mixed|null', 'channels'=>'array', 'callback'=>'string|array'], -'Redis::substr' => ['', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::sUnion' => ['array', 'key'=>'string', '...other_keys='=>'string'], -'Redis::sUnionStore' => ['int', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], -'Redis::swapdb' => ['bool', 'srcdb'=>'int', 'dstdb'=>'int'], -'Redis::time' => ['array'], -'Redis::ttl' => ['int|false', 'key'=>'string'], -'Redis::type' => ['int', 'key'=>'string'], -'Redis::unlink' => ['int', 'key'=>'string', '...args'=>'string'], -'Redis::unlink\'1' => ['int', 'key'=>'string[]'], -'Redis::unsubscribe' => ['', 'channel'=>'string', '...other_channels='=>'string'], -'Redis::unwatch' => [''], -'Redis::wait' => ['int', 'numSlaves'=>'int', 'timeout'=>'int'], -'Redis::watch' => ['void', 'key'=>'string', '...other_keys='=>'string'], -'Redis::xack' => ['', 'str_key'=>'string', 'str_group'=>'string', 'arr_ids'=>'array'], -'Redis::xadd' => ['', 'str_key'=>'string', 'str_id'=>'string', 'arr_fields'=>'array', 'i_maxlen='=>'', 'boo_approximate='=>''], -'Redis::xclaim' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_consumer'=>'string', 'i_min_idle'=>'', 'arr_ids'=>'array', 'arr_opts='=>'array'], -'Redis::xdel' => ['', 'str_key'=>'string', 'arr_ids'=>'array'], -'Redis::xgroup' => ['', 'str_operation'=>'string', 'str_key='=>'string', 'str_arg1='=>'', 'str_arg2='=>'', 'str_arg3='=>''], -'Redis::xinfo' => ['', 'str_cmd'=>'string', 'str_key='=>'string', 'str_group='=>'string'], -'Redis::xlen' => ['', 'key'=>''], -'Redis::xpending' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_start='=>'', 'str_end='=>'', 'i_count='=>'', 'str_consumer='=>'string'], -'Redis::xrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], -'Redis::xread' => ['', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], -'Redis::xreadgroup' => ['', 'str_group'=>'string', 'str_consumer'=>'string', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], -'Redis::xrevrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], -'Redis::xtrim' => ['', 'str_key'=>'string', 'i_maxlen'=>'', 'boo_approximate='=>''], -'Redis::zAdd' => ['int', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], -'Redis::zAdd\'1' => ['int', 'options'=>'array', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], -'Redis::zCard' => ['int', 'key'=>'string'], -'Redis::zCount' => ['int', 'key'=>'string', 'start'=>'string', 'end'=>'string'], -'Redis::zDelete' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'Redis::zDeleteRangeByRank' => ['', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::zDeleteRangeByScore' => ['', 'key'=>'string', 'start'=>'float', 'end'=>'float'], -'Redis::zIncrBy' => ['float', 'key'=>'string', 'value'=>'float', 'member'=>'string'], -'Redis::zInter' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'Redis::zInterStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'Redis::zLexCount' => ['int', 'key'=>'string', 'min'=>'string', 'max'=>'string'], -'Redis::zRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscores='=>'bool'], -'Redis::zRangeByLex' => ['array|false', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], -'Redis::zRangeByScore' => ['array', 'key'=>'string', 'start'=>'int|string', 'end'=>'int|string', 'options='=>'array'], -'Redis::zRank' => ['int', 'key'=>'string', 'member'=>'string'], -'Redis::zRem' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'Redis::zRemove' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'Redis::zRemoveRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::zRemoveRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], -'Redis::zRemRangeByLex' => ['int', 'key'=>'string', 'min'=>'string', 'max'=>'string'], -'Redis::zRemRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'Redis::zRemRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], -'Redis::zReverseRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], -'Redis::zRevRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], -'Redis::zRevRangeByLex' => ['array', 'key'=>'string', 'min'=>'string', 'max'=>'string', 'offset='=>'int', 'limit='=>'int'], -'Redis::zRevRangeByScore' => ['array', 'key'=>'string', 'start'=>'string', 'end'=>'string', 'options='=>'array'], -'Redis::zRevRank' => ['int', 'key'=>'string', 'member'=>'string'], -'Redis::zScan' => ['array|bool', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], -'Redis::zScore' => ['float|false', 'key'=>'string', 'member'=>'string'], -'Redis::zSize' => ['', 'key'=>'string'], -'Redis::zUnion' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'Redis::zUnionStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'RedisArray::__call' => ['mixed', 'function_name'=>'string', 'arguments'=>'array'], -'RedisArray::__construct' => ['void', 'name='=>'string', 'hosts='=>'?array', 'opts='=>'?array'], -'RedisArray::_continuum' => [''], -'RedisArray::_distributor' => [''], -'RedisArray::_function' => ['string'], -'RedisArray::_hosts' => ['array'], -'RedisArray::_instance' => ['', 'host'=>''], -'RedisArray::_rehash' => ['', 'callable='=>'callable'], -'RedisArray::_target' => ['string', 'key'=>'string'], -'RedisArray::bgsave' => [''], -'RedisArray::del' => ['bool', 'key'=>'string', '...args'=>'string'], -'RedisArray::delete' => ['bool', 'key'=>'string', '...args'=>'string'], -'RedisArray::delete\'1' => ['bool', 'key'=>'string[]'], -'RedisArray::discard' => [''], -'RedisArray::exec' => ['array'], -'RedisArray::flushAll' => ['bool', 'async='=>'bool'], -'RedisArray::flushDb' => ['bool', 'async='=>'bool'], -'RedisArray::getMultiple' => ['', 'keys'=>''], -'RedisArray::getOption' => ['', 'opt'=>''], -'RedisArray::info' => ['array'], -'RedisArray::keys' => ['array', 'pattern'=>''], -'RedisArray::mGet' => ['array', 'keys'=>'string[]'], -'RedisArray::mSet' => ['bool', 'pairs'=>'array'], -'RedisArray::multi' => ['RedisArray', 'host'=>'string', 'mode='=>'int'], -'RedisArray::ping' => ['string'], -'RedisArray::save' => ['bool'], -'RedisArray::select' => ['', 'index'=>''], -'RedisArray::setOption' => ['', 'opt'=>'', 'value'=>''], -'RedisArray::unlink' => ['int', 'key'=>'string', '...other_keys='=>'string'], -'RedisArray::unlink\'1' => ['int', 'key'=>'string[]'], -'RedisArray::unwatch' => [''], -'RedisCluster::__construct' => ['void', 'name'=>'?string', 'seeds='=>'string[]', 'timeout='=>'float', 'readTimeout='=>'float', 'persistent='=>'bool', 'auth='=>'?string'], -'RedisCluster::_masters' => ['array'], -'RedisCluster::_prefix' => ['string', 'value'=>'mixed'], -'RedisCluster::_redir' => [''], -'RedisCluster::_serialize' => ['mixed', 'value'=>'mixed'], -'RedisCluster::_unserialize' => ['mixed', 'value'=>'string'], -'RedisCluster::append' => ['int', 'key'=>'string', 'value'=>'string'], -'RedisCluster::bgrewriteaof' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::bgsave' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::bitCount' => ['int', 'key'=>'string'], -'RedisCluster::bitOp' => ['int', 'operation'=>'string', 'retKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], -'RedisCluster::bitpos' => ['int', 'key'=>'string', 'bit'=>'int', 'start='=>'int', 'end='=>'int'], -'RedisCluster::blPop' => ['array', 'keys'=>'array', 'timeout'=>'int'], -'RedisCluster::brPop' => ['array', 'keys'=>'array', 'timeout'=>'int'], -'RedisCluster::brpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string', 'timeout'=>'int'], -'RedisCluster::clearLastError' => ['bool'], -'RedisCluster::client' => ['', 'nodeParams'=>'string|array{0:string,1:int}', 'subCmd='=>'string', '...args='=>''], -'RedisCluster::close' => [''], -'RedisCluster::cluster' => ['mixed', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'arguments='=>'mixed'], -'RedisCluster::command' => ['array|bool'], -'RedisCluster::config' => ['array|bool', 'nodeParams'=>'string|array{0:string,1:int}', 'operation'=>'string', 'key'=>'string', 'value='=>'string'], -'RedisCluster::dbSize' => ['int', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::decr' => ['int', 'key'=>'string'], -'RedisCluster::decrBy' => ['int', 'key'=>'string', 'value'=>'int'], -'RedisCluster::del' => ['int', 'key'=>'string', '...other_keys='=>'string'], -'RedisCluster::del\'1' => ['int', 'key'=>'string[]'], -'RedisCluster::discard' => [''], -'RedisCluster::dump' => ['string|false', 'key'=>'string'], -'RedisCluster::echo' => ['string', 'nodeParams'=>'string|array{0:string,1:int}', 'msg'=>'string'], -'RedisCluster::eval' => ['mixed', 'script'=>'', 'args='=>'', 'numKeys='=>''], -'RedisCluster::evalSha' => ['mixed', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], -'RedisCluster::exec' => ['array|void'], -'RedisCluster::exists' => ['bool', 'key'=>'string'], -'RedisCluster::expire' => ['bool', 'key'=>'string', 'ttl'=>'int'], -'RedisCluster::expireAt' => ['bool', 'key'=>'string', 'timestamp'=>'int'], -'RedisCluster::flushAll' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}', 'async='=>'bool'], -'RedisCluster::flushDB' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}', 'async='=>'bool'], -'RedisCluster::geoAdd' => ['int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'member'=>'string', '...other_members='=>'float|string'], -'RedisCluster::geoDist' => ['', 'key'=>'string', 'member1'=>'string', 'member2'=>'string', 'unit='=>'string'], -'RedisCluster::geohash' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'RedisCluster::geopos' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], -'RedisCluster::geoRadius' => ['', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'radius'=>'float', 'radiusUnit'=>'string', 'options='=>'array'], -'RedisCluster::geoRadiusByMember' => ['string[]', 'key'=>'string', 'member'=>'string', 'radius'=>'float', 'radiusUnit'=>'string', 'options='=>'array'], -'RedisCluster::get' => ['string|false', 'key'=>'string'], -'RedisCluster::getBit' => ['int', 'key'=>'string', 'offset'=>'int'], -'RedisCluster::getLastError' => ['?string'], -'RedisCluster::getMode' => ['int'], -'RedisCluster::getOption' => ['int', 'option'=>'int'], -'RedisCluster::getRange' => ['string', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'RedisCluster::getSet' => ['string', 'key'=>'string', 'value'=>'string'], -'RedisCluster::hDel' => ['int|false', 'key'=>'string', 'hashKey'=>'string', '...other_hashKeys='=>'string[]'], -'RedisCluster::hExists' => ['bool', 'key'=>'string', 'hashKey'=>'string'], -'RedisCluster::hGet' => ['string|false', 'key'=>'string', 'hashKey'=>'string'], -'RedisCluster::hGetAll' => ['array', 'key'=>'string'], -'RedisCluster::hIncrBy' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'int'], -'RedisCluster::hIncrByFloat' => ['float', 'key'=>'string', 'field'=>'string', 'increment'=>'float'], -'RedisCluster::hKeys' => ['array', 'key'=>'string'], -'RedisCluster::hLen' => ['int|false', 'key'=>'string'], -'RedisCluster::hMGet' => ['array', 'key'=>'string', 'hashKeys'=>'array'], -'RedisCluster::hMSet' => ['bool', 'key'=>'string', 'hashKeys'=>'array'], -'RedisCluster::hScan' => ['array', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], -'RedisCluster::hSet' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], -'RedisCluster::hSetNx' => ['bool', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], -'RedisCluster::hStrlen' => ['int', 'key'=>'string', 'member'=>'string'], -'RedisCluster::hVals' => ['array', 'key'=>'string'], -'RedisCluster::incr' => ['int', 'key'=>'string'], -'RedisCluster::incrBy' => ['int', 'key'=>'string', 'value'=>'int'], -'RedisCluster::incrByFloat' => ['float', 'key'=>'string', 'increment'=>'float'], -'RedisCluster::info' => ['array', 'nodeParams'=>'string|array{0:string,1:int}', 'option='=>'string'], -'RedisCluster::keys' => ['array', 'pattern'=>'string'], -'RedisCluster::lastSave' => ['int', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::lGet' => ['', 'key'=>'string', 'index'=>'int'], -'RedisCluster::lIndex' => ['string|false', 'key'=>'string', 'index'=>'int'], -'RedisCluster::lInsert' => ['int', 'key'=>'string', 'position'=>'int', 'pivot'=>'string', 'value'=>'string'], -'RedisCluster::lLen' => ['int', 'key'=>'string'], -'RedisCluster::lPop' => ['string|false', 'key'=>'string'], -'RedisCluster::lPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'RedisCluster::lPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], -'RedisCluster::lRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'RedisCluster::lRem' => ['int|false', 'key'=>'string', 'value'=>'string', 'count'=>'int'], -'RedisCluster::lSet' => ['bool', 'key'=>'string', 'index'=>'int', 'value'=>'string'], -'RedisCluster::lTrim' => ['array|false', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], -'RedisCluster::mget' => ['array', 'array'=>'array'], -'RedisCluster::mset' => ['bool', 'array'=>'array'], -'RedisCluster::msetnx' => ['int', 'array'=>'array'], -'RedisCluster::multi' => ['Redis', 'mode='=>'int'], -'RedisCluster::object' => ['string|int|false', 'string'=>'string', 'key'=>'string'], -'RedisCluster::persist' => ['bool', 'key'=>'string'], -'RedisCluster::pExpire' => ['bool', 'key'=>'string', 'ttl'=>'int'], -'RedisCluster::pExpireAt' => ['bool', 'key'=>'string', 'timestamp'=>'int'], -'RedisCluster::pfAdd' => ['bool', 'key'=>'string', 'elements'=>'array'], -'RedisCluster::pfCount' => ['int', 'key'=>'string'], -'RedisCluster::pfMerge' => ['bool', 'destKey'=>'string', 'sourceKeys'=>'array'], -'RedisCluster::ping' => ['string', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::psetex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'RedisCluster::psubscribe' => ['mixed', 'patterns'=>'array', 'callback'=>'string'], -'RedisCluster::pttl' => ['int', 'key'=>'string'], -'RedisCluster::publish' => ['int', 'channel'=>'string', 'message'=>'string'], -'RedisCluster::pubsub' => ['array', 'nodeParams'=>'string', 'keyword'=>'string', '...argument='=>'string'], -'RedisCluster::punSubscribe' => ['', 'channels'=>'', 'callback'=>''], -'RedisCluster::randomKey' => ['string', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::rawCommand' => ['mixed', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'arguments='=>'mixed'], -'RedisCluster::rename' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string'], -'RedisCluster::renameNx' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string'], -'RedisCluster::restore' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'RedisCluster::role' => ['array'], -'RedisCluster::rPop' => ['string|false', 'key'=>'string'], -'RedisCluster::rpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string'], -'RedisCluster::rPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'RedisCluster::rPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], -'RedisCluster::sAdd' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], -'RedisCluster::sAddArray' => ['int|false', 'key'=>'string', 'valueArray'=>'array'], -'RedisCluster::save' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], -'RedisCluster::scan' => ['array|false', '&iterator'=>'int', 'nodeParams'=>'string|array{0:string,1:int}', 'pattern='=>'string', 'count='=>'int'], -'RedisCluster::sCard' => ['int', 'key'=>'string'], -'RedisCluster::script' => ['string|bool|array', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'script='=>'string', '...other_scripts='=>'string[]'], -'RedisCluster::sDiff' => ['list', 'key1'=>'string', 'key2'=>'string', '...other_keys='=>'string'], -'RedisCluster::sDiffStore' => ['int', 'dstKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], -'RedisCluster::set' => ['bool', 'key'=>'string', 'value'=>'string', 'timeout='=>'array|int'], -'RedisCluster::setBit' => ['int', 'key'=>'string', 'offset'=>'int', 'value'=>'bool|int'], -'RedisCluster::setex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], -'RedisCluster::setnx' => ['bool', 'key'=>'string', 'value'=>'string'], -'RedisCluster::setOption' => ['bool', 'option'=>'int', 'value'=>'string|int'], -'RedisCluster::setRange' => ['string', 'key'=>'string', 'offset'=>'int', 'value'=>'string'], -'RedisCluster::sInter' => ['list', 'key'=>'string', '...other_keys='=>'string'], -'RedisCluster::sInterStore' => ['int', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], -'RedisCluster::sIsMember' => ['bool', 'key'=>'string', 'value'=>'string'], -'RedisCluster::slowLog' => ['array|int|bool', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'length='=>'int'], -'RedisCluster::sMembers' => ['list', 'key'=>'string'], -'RedisCluster::sMove' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string', 'member'=>'string'], -'RedisCluster::sort' => ['array', 'key'=>'string', 'option='=>'array'], -'RedisCluster::sPop' => ['string', 'key'=>'string'], -'RedisCluster::sRandMember' => ['array|string', 'key'=>'string', 'count='=>'int'], -'RedisCluster::sRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], -'RedisCluster::sScan' => ['array|false', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'null', 'count='=>'int'], -'RedisCluster::strlen' => ['int', 'key'=>'string'], -'RedisCluster::subscribe' => ['mixed', 'channels'=>'array', 'callback'=>'string'], -'RedisCluster::sUnion' => ['list', 'key1'=>'string', '...other_keys='=>'string'], -'RedisCluster::sUnion\'1' => ['list', 'keys'=>'string[]'], -'RedisCluster::sUnionStore' => ['int', 'dstKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], -'RedisCluster::time' => ['array'], -'RedisCluster::ttl' => ['int', 'key'=>'string'], -'RedisCluster::type' => ['int', 'key'=>'string'], -'RedisCluster::unlink' => ['int', 'key'=>'string', '...other_keys='=>'string'], -'RedisCluster::unSubscribe' => ['', 'channels'=>'', '...other_channels='=>''], -'RedisCluster::unwatch' => [''], -'RedisCluster::watch' => ['void', 'key'=>'string', '...other_keys='=>'string'], -'RedisCluster::xack' => ['', 'str_key'=>'string', 'str_group'=>'string', 'arr_ids'=>'array'], -'RedisCluster::xadd' => ['', 'str_key'=>'string', 'str_id'=>'string', 'arr_fields'=>'array', 'i_maxlen='=>'', 'boo_approximate='=>''], -'RedisCluster::xclaim' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_consumer'=>'string', 'i_min_idle'=>'', 'arr_ids'=>'array', 'arr_opts='=>'array'], -'RedisCluster::xdel' => ['', 'str_key'=>'string', 'arr_ids'=>'array'], -'RedisCluster::xgroup' => ['', 'str_operation'=>'string', 'str_key='=>'string', 'str_arg1='=>'', 'str_arg2='=>'', 'str_arg3='=>''], -'RedisCluster::xinfo' => ['', 'str_cmd'=>'string', 'str_key='=>'string', 'str_group='=>'string'], -'RedisCluster::xlen' => ['', 'key'=>''], -'RedisCluster::xpending' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_start='=>'', 'str_end='=>'', 'i_count='=>'', 'str_consumer='=>'string'], -'RedisCluster::xrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], -'RedisCluster::xread' => ['', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], -'RedisCluster::xreadgroup' => ['', 'str_group'=>'string', 'str_consumer'=>'string', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], -'RedisCluster::xrevrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], -'RedisCluster::xtrim' => ['', 'str_key'=>'string', 'i_maxlen'=>'', 'boo_approximate='=>''], -'RedisCluster::zAdd' => ['int', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], -'RedisCluster::zCard' => ['int', 'key'=>'string'], -'RedisCluster::zCount' => ['int', 'key'=>'string', 'start'=>'string', 'end'=>'string'], -'RedisCluster::zIncrBy' => ['float', 'key'=>'string', 'value'=>'float', 'member'=>'string'], -'RedisCluster::zInterStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'RedisCluster::zLexCount' => ['int', 'key'=>'string', 'min'=>'int', 'max'=>'int'], -'RedisCluster::zRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscores='=>'bool'], -'RedisCluster::zRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], -'RedisCluster::zRangeByScore' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'options='=>'array'], -'RedisCluster::zRank' => ['int', 'key'=>'string', 'member'=>'string'], -'RedisCluster::zRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], -'RedisCluster::zRemRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int'], -'RedisCluster::zRemRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], -'RedisCluster::zRemRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], -'RedisCluster::zRevRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], -'RedisCluster::zRevRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], -'RedisCluster::zRevRangeByScore' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'options='=>'array'], -'RedisCluster::zRevRank' => ['int', 'key'=>'string', 'member'=>'string'], -'RedisCluster::zScan' => ['array|false', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], -'RedisCluster::zScore' => ['float', 'key'=>'string', 'member'=>'string'], -'RedisCluster::zUnionStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], -'Reflection::getModifierNames' => ['list', 'modifiers'=>'int'], -'ReflectionClass::__clone' => ['void'], -'ReflectionClass::__construct' => ['void', 'objectOrClass'=>'object|class-string'], -'ReflectionClass::__toString' => ['string'], -'ReflectionClass::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], -'ReflectionClass::getConstant' => ['mixed', 'name'=>'string'], -'ReflectionClass::getConstants' => ['array', 'filter=' => '?int'], -'ReflectionClass::getConstructor' => ['?ReflectionMethod'], -'ReflectionClass::getDefaultProperties' => ['array'], -'ReflectionClass::getDocComment' => ['string|false'], -'ReflectionClass::getEndLine' => ['int|false'], -'ReflectionClass::getExtension' => ['?ReflectionExtension'], -'ReflectionClass::getExtensionName' => ['string|false'], -'ReflectionClass::getFileName' => ['string|false'], -'ReflectionClass::getInterfaceNames' => ['list'], -'ReflectionClass::getInterfaces' => ['array'], -'ReflectionClass::getMethod' => ['ReflectionMethod', 'name'=>'string'], -'ReflectionClass::getMethods' => ['list', 'filter='=>'?int'], -'ReflectionClass::getModifiers' => ['int'], -'ReflectionClass::getName' => ['class-string'], -'ReflectionClass::getNamespaceName' => ['string'], -'ReflectionClass::getParentClass' => ['ReflectionClass|false'], -'ReflectionClass::getProperties' => ['list', 'filter='=>'?int'], -'ReflectionClass::getProperty' => ['ReflectionProperty', 'name'=>'string'], -'ReflectionClass::getReflectionConstant' => ['ReflectionClassConstant|false', 'name'=>'string'], -'ReflectionClass::getReflectionConstants' => ['list', 'filter='=>'?int'], -'ReflectionClass::getShortName' => ['string'], -'ReflectionClass::getStartLine' => ['int|false'], -'ReflectionClass::getStaticProperties' => ['array'], -'ReflectionClass::getStaticPropertyValue' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'ReflectionClass::getTraitAliases' => ['array'], -'ReflectionClass::getTraitNames' => ['list'], -'ReflectionClass::getTraits' => ['array'], -'ReflectionClass::hasConstant' => ['bool', 'name'=>'string'], -'ReflectionClass::hasMethod' => ['bool', 'name'=>'string'], -'ReflectionClass::hasProperty' => ['bool', 'name'=>'string'], -'ReflectionClass::implementsInterface' => ['bool', 'interface'=>'interface-string|ReflectionClass'], -'ReflectionClass::inNamespace' => ['bool'], -'ReflectionClass::isAbstract' => ['bool'], -'ReflectionClass::isAnonymous' => ['bool'], -'ReflectionClass::isCloneable' => ['bool'], -'ReflectionClass::isEnum' => ['bool'], -'ReflectionClass::isFinal' => ['bool'], -'ReflectionClass::isInstance' => ['bool', 'object'=>'object'], -'ReflectionClass::isInstantiable' => ['bool'], -'ReflectionClass::isInterface' => ['bool'], -'ReflectionClass::isInternal' => ['bool'], -'ReflectionClass::isIterable' => ['bool'], -'ReflectionClass::isIterateable' => ['bool'], -'ReflectionClass::isSubclassOf' => ['bool', 'class'=>'class-string|ReflectionClass'], -'ReflectionClass::isTrait' => ['bool'], -'ReflectionClass::isUserDefined' => ['bool'], -'ReflectionClass::newInstance' => ['object', '...args='=>'mixed'], -'ReflectionClass::newInstanceArgs' => ['object', 'args='=>'list|array'], -'ReflectionClass::newInstanceWithoutConstructor' => ['object'], -'ReflectionClass::setStaticPropertyValue' => ['void', 'name'=>'string', 'value'=>'mixed'], -'ReflectionClassConstant::__construct' => ['void', 'class'=>'object|class-string', 'constant'=>'string'], -'ReflectionClassConstant::__toString' => ['string'], -'ReflectionClassConstant::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], -'ReflectionClassConstant::getDeclaringClass' => ['ReflectionClass'], -'ReflectionClassConstant::getDocComment' => ['string|false'], -'ReflectionClassConstant::getModifiers' => ['int'], -'ReflectionClassConstant::getName' => ['string'], -'ReflectionClassConstant::getValue' => ['scalar|array|null'], -'ReflectionClassConstant::isPrivate' => ['bool'], -'ReflectionClassConstant::isProtected' => ['bool'], -'ReflectionClassConstant::isPublic' => ['bool'], -'ReflectionEnum::getBackingType' => ['?ReflectionType'], -'ReflectionEnum::getCase' => ['ReflectionEnumUnitCase', 'name' => 'string'], -'ReflectionEnum::getCases' => ['list'], -'ReflectionEnum::hasCase' => ['bool', 'name' => 'string'], -'ReflectionEnum::isBacked' => ['bool'], -'ReflectionEnumUnitCase::getEnum' => ['ReflectionEnum'], -'ReflectionEnumUnitCase::getValue' => ['UnitEnum'], -'ReflectionEnumBackedCase::getBackingValue' => ['string|int'], -'ReflectionExtension::__clone' => ['void'], -'ReflectionExtension::__construct' => ['void', 'name'=>'string'], -'ReflectionExtension::__toString' => ['string'], -'ReflectionExtension::getClasses' => ['array'], -'ReflectionExtension::getClassNames' => ['list'], -'ReflectionExtension::getConstants' => ['array'], -'ReflectionExtension::getDependencies' => ['array'], -'ReflectionExtension::getFunctions' => ['array'], -'ReflectionExtension::getINIEntries' => ['array'], -'ReflectionExtension::getName' => ['string'], -'ReflectionExtension::getVersion' => ['?string'], -'ReflectionExtension::info' => ['void'], -'ReflectionExtension::isPersistent' => ['bool'], -'ReflectionExtension::isTemporary' => ['bool'], -'ReflectionFunction::__construct' => ['void', 'function'=>'callable-string|Closure'], -'ReflectionFunction::__toString' => ['string'], -'ReflectionFunction::getClosure' => ['Closure'], -'ReflectionFunction::getClosureScopeClass' => ['ReflectionClass'], -'ReflectionFunction::getClosureThis' => ['object'], -'ReflectionFunction::getDocComment' => ['string|false'], -'ReflectionFunction::getEndLine' => ['int|false'], -'ReflectionFunction::getExtension' => ['?ReflectionExtension'], -'ReflectionFunction::getExtensionName' => ['string|false'], -'ReflectionFunction::getFileName' => ['string|false'], -'ReflectionFunction::getName' => ['callable-string'], -'ReflectionFunction::getNamespaceName' => ['string'], -'ReflectionFunction::getNumberOfParameters' => ['int'], -'ReflectionFunction::getNumberOfRequiredParameters' => ['int'], -'ReflectionFunction::getParameters' => ['list'], -'ReflectionFunction::getReturnType' => ['?ReflectionType'], -'ReflectionFunction::getShortName' => ['string'], -'ReflectionFunction::getStartLine' => ['int|false'], -'ReflectionFunction::getStaticVariables' => ['array'], -'ReflectionFunction::hasReturnType' => ['bool'], -'ReflectionFunction::inNamespace' => ['bool'], -'ReflectionFunction::invoke' => ['mixed', '...args='=>'mixed'], -'ReflectionFunction::invokeArgs' => ['mixed', 'args'=>'array'], -'ReflectionFunction::isClosure' => ['bool'], -'ReflectionFunction::isDeprecated' => ['bool'], -'ReflectionFunction::isDisabled' => ['bool'], -'ReflectionFunction::isGenerator' => ['bool'], -'ReflectionFunction::isInternal' => ['bool'], -'ReflectionFunction::isUserDefined' => ['bool'], -'ReflectionFunction::isVariadic' => ['bool'], -'ReflectionFunction::returnsReference' => ['bool'], -'ReflectionFunctionAbstract::__clone' => ['void'], -'ReflectionFunctionAbstract::__toString' => ['string'], -'ReflectionFunctionAbstract::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], -'ReflectionFunctionAbstract::getClosureScopeClass' => ['ReflectionClass|null'], -'ReflectionFunctionAbstract::getClosureThis' => ['object|null'], -'ReflectionFunctionAbstract::getDocComment' => ['string|false'], -'ReflectionFunctionAbstract::getEndLine' => ['int|false'], -'ReflectionFunctionAbstract::getExtension' => ['?ReflectionExtension'], -'ReflectionFunctionAbstract::getExtensionName' => ['string|false'], -'ReflectionFunctionAbstract::getFileName' => ['string|false'], -'ReflectionFunctionAbstract::getName' => ['string'], -'ReflectionFunctionAbstract::getNamespaceName' => ['string'], -'ReflectionFunctionAbstract::getNumberOfParameters' => ['int'], -'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => ['int'], -'ReflectionFunctionAbstract::getParameters' => ['list'], -'ReflectionFunctionAbstract::getReturnType' => ['?ReflectionType'], -'ReflectionFunctionAbstract::getShortName' => ['string'], -'ReflectionFunctionAbstract::getStartLine' => ['int|false'], -'ReflectionFunctionAbstract::getStaticVariables' => ['array'], -'ReflectionFunctionAbstract::getTentativeReturnType' => ['?ReflectionType'], -'ReflectionFunctionAbstract::hasReturnType' => ['bool'], -'ReflectionFunctionAbstract::hasTentativeReturnType' => ['bool'], -'ReflectionFunctionAbstract::inNamespace' => ['bool'], -'ReflectionFunctionAbstract::isClosure' => ['bool'], -'ReflectionFunctionAbstract::isDeprecated' => ['bool'], -'ReflectionFunctionAbstract::isGenerator' => ['bool'], -'ReflectionFunctionAbstract::isInternal' => ['bool'], -'ReflectionFunctionAbstract::isStatic' => ['bool'], -'ReflectionFunctionAbstract::isUserDefined' => ['bool'], -'ReflectionFunctionAbstract::isVariadic' => ['bool'], -'ReflectionFunctionAbstract::returnsReference' => ['bool'], -'ReflectionGenerator::__construct' => ['void', 'generator'=>'Generator'], -'ReflectionGenerator::getExecutingFile' => ['string'], -'ReflectionGenerator::getExecutingGenerator' => ['Generator'], -'ReflectionGenerator::getExecutingLine' => ['int'], -'ReflectionGenerator::getFunction' => ['ReflectionFunctionAbstract'], -'ReflectionGenerator::getThis' => ['?object'], -'ReflectionGenerator::getTrace' => ['array', 'options='=>'int'], -'ReflectionMethod::__construct' => ['void', 'class'=>'class-string|object', 'name'=>'string'], -'ReflectionMethod::__construct\'1' => ['void', 'class_method'=>'string'], -'ReflectionMethod::__toString' => ['string'], -'ReflectionMethod::getClosure' => ['Closure', 'object='=>'?object'], -'ReflectionMethod::getClosureScopeClass' => ['ReflectionClass'], -'ReflectionMethod::getClosureThis' => ['object'], -'ReflectionMethod::getDeclaringClass' => ['ReflectionClass'], -'ReflectionMethod::getDocComment' => ['false|string'], -'ReflectionMethod::getEndLine' => ['false|int'], -'ReflectionMethod::getExtension' => ['?ReflectionExtension'], -'ReflectionMethod::getExtensionName' => ['string|false'], -'ReflectionMethod::getFileName' => ['false|string'], -'ReflectionMethod::getModifiers' => ['int'], -'ReflectionMethod::getName' => ['string'], -'ReflectionMethod::getNamespaceName' => ['string'], -'ReflectionMethod::getNumberOfParameters' => ['int'], -'ReflectionMethod::getNumberOfRequiredParameters' => ['int'], -'ReflectionMethod::getParameters' => ['list<\ReflectionParameter>'], -'ReflectionMethod::getPrototype' => ['ReflectionMethod'], -'ReflectionMethod::getReturnType' => ['?ReflectionType'], -'ReflectionMethod::getShortName' => ['string'], -'ReflectionMethod::getStartLine' => ['false|int'], -'ReflectionMethod::getStaticVariables' => ['array'], -'ReflectionMethod::hasReturnType' => ['bool'], -'ReflectionMethod::inNamespace' => ['bool'], -'ReflectionMethod::invoke' => ['mixed', 'object'=>'?object', '...args='=>'mixed'], -'ReflectionMethod::invokeArgs' => ['mixed', 'object'=>'?object', 'args'=>'array'], -'ReflectionMethod::isAbstract' => ['bool'], -'ReflectionMethod::isClosure' => ['bool'], -'ReflectionMethod::isConstructor' => ['bool'], -'ReflectionMethod::isDeprecated' => ['bool'], -'ReflectionMethod::isDestructor' => ['bool'], -'ReflectionMethod::isFinal' => ['bool'], -'ReflectionMethod::isGenerator' => ['bool'], -'ReflectionMethod::isInternal' => ['bool'], -'ReflectionMethod::isPrivate' => ['bool'], -'ReflectionMethod::isProtected' => ['bool'], -'ReflectionMethod::isPublic' => ['bool'], -'ReflectionMethod::isUserDefined' => ['bool'], -'ReflectionMethod::isVariadic' => ['bool'], -'ReflectionMethod::returnsReference' => ['bool'], -'ReflectionMethod::setAccessible' => ['void', 'accessible'=>'bool'], -'ReflectionNamedType::__toString' => ['string'], -'ReflectionNamedType::allowsNull' => ['bool'], -'ReflectionNamedType::getName' => ['string'], -'ReflectionNamedType::isBuiltin' => ['bool'], -'ReflectionObject::__construct' => ['void', 'object'=>'object'], -'ReflectionObject::__toString' => ['string'], -'ReflectionObject::getConstant' => ['mixed', 'name'=>'string'], -'ReflectionObject::getConstants' => ['array', 'filter='=>'?int'], -'ReflectionObject::getConstructor' => ['?ReflectionMethod'], -'ReflectionObject::getDefaultProperties' => ['array'], -'ReflectionObject::getDocComment' => ['false|string'], -'ReflectionObject::getEndLine' => ['false|int'], -'ReflectionObject::getExtension' => ['?ReflectionExtension'], -'ReflectionObject::getExtensionName' => ['false|string'], -'ReflectionObject::getFileName' => ['false|string'], -'ReflectionObject::getInterfaceNames' => ['class-string[]'], -'ReflectionObject::getInterfaces' => ['array'], -'ReflectionObject::getMethod' => ['ReflectionMethod', 'name'=>'string'], -'ReflectionObject::getMethods' => ['ReflectionMethod[]', 'filter='=>'?int'], -'ReflectionObject::getModifiers' => ['int'], -'ReflectionObject::getName' => ['string'], -'ReflectionObject::getNamespaceName' => ['string'], -'ReflectionObject::getParentClass' => ['ReflectionClass|false'], -'ReflectionObject::getProperties' => ['ReflectionProperty[]', 'filter='=>'?int'], -'ReflectionObject::getProperty' => ['ReflectionProperty', 'name'=>'string'], -'ReflectionObject::getReflectionConstant' => ['ReflectionClassConstant', 'name'=>'string'], -'ReflectionObject::getReflectionConstants' => ['list<\ReflectionClassConstant>', 'filter='=>'?int'], -'ReflectionObject::getShortName' => ['string'], -'ReflectionObject::getStartLine' => ['false|int'], -'ReflectionObject::getStaticProperties' => ['ReflectionProperty[]'], -'ReflectionObject::getStaticPropertyValue' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'ReflectionObject::getTraitAliases' => ['array'], -'ReflectionObject::getTraitNames' => ['list'], -'ReflectionObject::getTraits' => ['array'], -'ReflectionObject::hasConstant' => ['bool', 'name'=>'string'], -'ReflectionObject::hasMethod' => ['bool', 'name'=>'string'], -'ReflectionObject::hasProperty' => ['bool', 'name'=>'string'], -'ReflectionObject::implementsInterface' => ['bool', 'interface'=>'ReflectionClass|interface-string'], -'ReflectionObject::inNamespace' => ['bool'], -'ReflectionObject::isAbstract' => ['bool'], -'ReflectionObject::isAnonymous' => ['bool'], -'ReflectionObject::isCloneable' => ['bool'], -'ReflectionObject::isEnum' => ['bool'], -'ReflectionObject::isFinal' => ['bool'], -'ReflectionObject::isInstance' => ['bool', 'object'=>'object'], -'ReflectionObject::isInstantiable' => ['bool'], -'ReflectionObject::isInterface' => ['bool'], -'ReflectionObject::isInternal' => ['bool'], -'ReflectionObject::isIterable' => ['bool'], -'ReflectionObject::isIterateable' => ['bool'], -'ReflectionObject::isSubclassOf' => ['bool', 'class'=>'ReflectionClass|string'], -'ReflectionObject::isTrait' => ['bool'], -'ReflectionObject::isUserDefined' => ['bool'], -'ReflectionObject::newInstance' => ['object', 'args='=>'mixed', '...args='=>'array'], -'ReflectionObject::newInstanceArgs' => ['object', 'args='=>'list|array'], -'ReflectionObject::newInstanceWithoutConstructor' => ['object'], -'ReflectionObject::setStaticPropertyValue' => ['void', 'name'=>'string', 'value'=>'string'], -'ReflectionParameter::__clone' => ['void'], -'ReflectionParameter::__construct' => ['void', 'function'=>'string|array|object', 'param'=>'int|string'], -'ReflectionParameter::__toString' => ['string'], -'ReflectionParameter::allowsNull' => ['bool'], -'ReflectionParameter::canBePassedByValue' => ['bool'], -'ReflectionParameter::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], -'ReflectionParameter::getClass' => ['?ReflectionClass'], -'ReflectionParameter::getDeclaringClass' => ['?ReflectionClass'], -'ReflectionParameter::getDeclaringFunction' => ['ReflectionFunctionAbstract'], -'ReflectionParameter::getDefaultValue' => ['mixed'], -'ReflectionParameter::getDefaultValueConstantName' => ['?string'], -'ReflectionParameter::getName' => ['non-empty-string'], -'ReflectionParameter::getPosition' => ['int<0, max>'], -'ReflectionParameter::getType' => ['?ReflectionType'], -'ReflectionParameter::hasType' => ['bool'], -'ReflectionParameter::isArray' => ['bool'], -'ReflectionParameter::isCallable' => ['bool'], -'ReflectionParameter::isDefaultValueAvailable' => ['bool'], -'ReflectionParameter::isDefaultValueConstant' => ['bool'], -'ReflectionParameter::isOptional' => ['bool'], -'ReflectionParameter::isPassedByReference' => ['bool'], -'ReflectionParameter::isVariadic' => ['bool'], -'ReflectionProperty::__clone' => ['void'], -'ReflectionProperty::__construct' => ['void', 'class'=>'object|class-string', 'property'=>'string'], -'ReflectionProperty::__toString' => ['string'], -'ReflectionProperty::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], -'ReflectionProperty::getDeclaringClass' => ['ReflectionClass'], -'ReflectionProperty::getDefaultValue' => ['mixed'], -'ReflectionProperty::getDocComment' => ['string|false'], -'ReflectionProperty::getModifiers' => ['int'], -'ReflectionProperty::getName' => ['string'], -'ReflectionProperty::getType' => ['?ReflectionType'], -'ReflectionProperty::getValue' => ['mixed', 'object='=>'null|object'], -'ReflectionProperty::hasDefaultValue' => ['bool'], -'ReflectionProperty::hasType' => ['bool'], -'ReflectionProperty::isDefault' => ['bool'], -'ReflectionProperty::isInitialized' => ['bool', 'object='=>'null|object'], -'ReflectionProperty::isPrivate' => ['bool'], -'ReflectionProperty::isPromoted' => ['bool'], -'ReflectionProperty::isProtected' => ['bool'], -'ReflectionProperty::isPublic' => ['bool'], -'ReflectionProperty::isReadonly' => ['bool'], -'ReflectionProperty::isStatic' => ['bool'], -'ReflectionProperty::setAccessible' => ['void', 'accessible'=>'bool'], -'ReflectionProperty::setValue' => ['void', 'object'=>'null|object', 'value'=>''], -'ReflectionProperty::setValue\'1' => ['void', 'value'=>''], -'ReflectionType::__clone' => ['void'], -'ReflectionType::__toString' => ['string'], -'ReflectionType::allowsNull' => ['bool'], -'ReflectionUnionType::getTypes' => ['list'], -'ReflectionZendExtension::__clone' => ['void'], -'ReflectionZendExtension::__construct' => ['void', 'name'=>'string'], -'ReflectionZendExtension::__toString' => ['string'], -'ReflectionZendExtension::getAuthor' => ['string'], -'ReflectionZendExtension::getCopyright' => ['string'], -'ReflectionZendExtension::getName' => ['string'], -'ReflectionZendExtension::getURL' => ['string'], -'ReflectionZendExtension::getVersion' => ['string'], -'Reflector::__toString' => ['string'], -'Reflector::export' => ['?string'], -'RegexIterator::__construct' => ['void', 'iterator'=>'Iterator', 'pattern'=>'string', 'mode='=>'int', 'flags='=>'int', 'pregFlags='=>'int'], -'RegexIterator::accept' => ['bool'], -'RegexIterator::current' => ['mixed'], -'RegexIterator::getFlags' => ['int'], -'RegexIterator::getInnerIterator' => ['Iterator'], -'RegexIterator::getMode' => ['int'], -'RegexIterator::getPregFlags' => ['int'], -'RegexIterator::getRegex' => ['string'], -'RegexIterator::key' => ['mixed'], -'RegexIterator::next' => ['void'], -'RegexIterator::rewind' => ['void'], -'RegexIterator::setFlags' => ['void', 'flags'=>'int'], -'RegexIterator::setMode' => ['void', 'mode'=>'int'], -'RegexIterator::setPregFlags' => ['void', 'pregFlags'=>'int'], -'RegexIterator::valid' => ['bool'], -'register_event_handler' => ['bool', 'event_handler_func'=>'string', 'handler_register_name'=>'string', 'event_type_mask'=>'int'], -'register_shutdown_function' => ['void', 'callback'=>'callable', '...args='=>'mixed'], -'register_tick_function' => ['bool', 'callback'=>'callable():void', '...args='=>'mixed'], -'rename' => ['bool', 'from'=>'string', 'to'=>'string', 'context='=>'resource'], -'rename_function' => ['bool', 'original_name'=>'string', 'new_name'=>'string'], -'reset' => ['mixed|false', '&r_array'=>'array'], -'ResourceBundle::__construct' => ['void', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], -'ResourceBundle::count' => ['int'], -'ResourceBundle::create' => ['?ResourceBundle', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], -'ResourceBundle::get' => ['mixed', 'index'=>'string|int', 'fallback='=>'bool'], -'ResourceBundle::getErrorCode' => ['int'], -'ResourceBundle::getErrorMessage' => ['string'], -'ResourceBundle::getLocales' => ['array|false', 'bundle'=>'string'], -'resourcebundle_count' => ['int', 'bundle'=>'ResourceBundle'], -'resourcebundle_create' => ['?ResourceBundle', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], -'resourcebundle_get' => ['mixed|null', 'bundle'=>'ResourceBundle', 'index'=>'string|int', 'fallback='=>'bool'], -'resourcebundle_get_error_code' => ['int', 'bundle'=>'ResourceBundle'], -'resourcebundle_get_error_message' => ['string', 'bundle'=>'ResourceBundle'], -'resourcebundle_locales' => ['array', 'bundle'=>'string'], -'restore_error_handler' => ['true'], -'restore_exception_handler' => ['true'], -'restore_include_path' => ['void'], -'rewind' => ['bool', 'stream'=>'resource'], -'rewinddir' => ['void', 'dir_handle='=>'resource'], -'rmdir' => ['bool', 'directory'=>'string', 'context='=>'resource'], -'round' => ['float', 'num'=>'float|int', 'precision='=>'int', 'mode='=>'0|positive-int'], -'rpm_close' => ['bool', 'rpmr'=>'resource'], -'rpm_get_tag' => ['mixed', 'rpmr'=>'resource', 'tagnum'=>'int'], -'rpm_is_valid' => ['bool', 'filename'=>'string'], -'rpm_open' => ['resource|false', 'filename'=>'string'], -'rpm_version' => ['string'], -'rpmaddtag' => ['bool', 'tag'=>'int'], -'rpmdbinfo' => ['array', 'nevr'=>'string', 'full='=>'bool'], -'rpmdbsearch' => ['array', 'pattern'=>'string', 'rpmtag='=>'int', 'rpmmire='=>'int', 'full='=>'bool'], -'rpminfo' => ['array', 'path'=>'string', 'full='=>'bool', 'error='=>'string'], -'rpmvercmp' => ['int', 'evr1'=>'string', 'evr2'=>'string'], -'rrd_create' => ['bool', 'filename'=>'string', 'options'=>'array'], -'rrd_disconnect' => ['void'], -'rrd_error' => ['string'], -'rrd_fetch' => ['array', 'filename'=>'string', 'options'=>'array'], -'rrd_first' => ['int|false', 'file'=>'string', 'raaindex='=>'int'], -'rrd_graph' => ['array|false', 'filename'=>'string', 'options'=>'array'], -'rrd_info' => ['array|false', 'filename'=>'string'], -'rrd_last' => ['int', 'filename'=>'string'], -'rrd_lastupdate' => ['array|false', 'filename'=>'string'], -'rrd_restore' => ['bool', 'xml_file'=>'string', 'rrd_file'=>'string', 'options='=>'array'], -'rrd_tune' => ['bool', 'filename'=>'string', 'options'=>'array'], -'rrd_update' => ['bool', 'filename'=>'string', 'options'=>'array'], -'rrd_version' => ['string'], -'rrd_xport' => ['array|false', 'options'=>'array'], -'rrdc_disconnect' => ['void'], -'RRDCreator::__construct' => ['void', 'path'=>'string', 'starttime='=>'string', 'step='=>'int'], -'RRDCreator::addArchive' => ['void', 'description'=>'string'], -'RRDCreator::addDataSource' => ['void', 'description'=>'string'], -'RRDCreator::save' => ['bool'], -'RRDGraph::__construct' => ['void', 'path'=>'string'], -'RRDGraph::save' => ['array|false'], -'RRDGraph::saveVerbose' => ['array|false'], -'RRDGraph::setOptions' => ['void', 'options'=>'array'], -'RRDUpdater::__construct' => ['void', 'path'=>'string'], -'RRDUpdater::update' => ['bool', 'values'=>'array', 'time='=>'string'], -'rsort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'rtrim' => ['string', 'string'=>'string', 'characters='=>'string'], -'runkit7_constant_add' => ['bool', 'constant_name'=>'string', 'value'=>'mixed', 'new_visibility='=>'int'], -'runkit7_constant_redefine' => ['bool', 'constant_name'=>'string', 'value'=>'mixed', 'new_visibility='=>'?int'], -'runkit7_constant_remove' => ['bool', 'constant_name'=>'string'], -'runkit7_function_add' => ['bool', 'function_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_doc_comment='=>'?string', 'return_by_reference='=>'?bool', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], -'runkit7_function_copy' => ['bool', 'source_name'=>'string', 'target_name'=>'string'], -'runkit7_function_redefine' => ['bool', 'function_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_doc_comment='=>'?string', 'return_by_reference='=>'?bool', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], -'runkit7_function_remove' => ['bool', 'function_name'=>'string'], -'runkit7_function_rename' => ['bool', 'source_name'=>'string', 'target_name'=>'string'], -'runkit7_import' => ['bool', 'filename'=>'string', 'flags='=>'?int'], -'runkit7_method_add' => ['bool', 'class_name'=>'string', 'method_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_flags='=>'int|null|string', 'flags_or_doc_comment='=>'int|null|string', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], -'runkit7_method_copy' => ['bool', 'destination_class'=>'string', 'destination_method'=>'string', 'source_class'=>'string', 'source_method='=>'?string'], -'runkit7_method_redefine' => ['bool', 'class_name'=>'string', 'method_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_flags='=>'int|null|string', 'flags_or_doc_comment='=>'int|null|string', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], -'runkit7_method_remove' => ['bool', 'class_name'=>'string', 'method_name'=>'string'], -'runkit7_method_rename' => ['bool', 'class_name'=>'string', 'source_method_name'=>'string', 'source_target_name'=>'string'], -'runkit7_superglobals' => ['array'], -'runkit7_zval_inspect' => ['array', 'value'=>'mixed'], -'runkit_class_adopt' => ['bool', 'classname'=>'string', 'parentname'=>'string'], -'runkit_class_emancipate' => ['bool', 'classname'=>'string'], -'runkit_constant_add' => ['bool', 'constname'=>'string', 'value'=>'mixed'], -'runkit_constant_redefine' => ['bool', 'constname'=>'string', 'newvalue'=>'mixed'], -'runkit_constant_remove' => ['bool', 'constname'=>'string'], -'runkit_function_add' => ['bool', 'funcname'=>'string', 'arglist'=>'string', 'code'=>'string', 'doccomment='=>'?string'], -'runkit_function_add\'1' => ['bool', 'funcname'=>'string', 'closure'=>'Closure', 'doccomment='=>'?string'], -'runkit_function_copy' => ['bool', 'funcname'=>'string', 'targetname'=>'string'], -'runkit_function_redefine' => ['bool', 'funcname'=>'string', 'arglist'=>'string', 'code'=>'string', 'doccomment='=>'?string'], -'runkit_function_redefine\'1' => ['bool', 'funcname'=>'string', 'closure'=>'Closure', 'doccomment='=>'?string'], -'runkit_function_remove' => ['bool', 'funcname'=>'string'], -'runkit_function_rename' => ['bool', 'funcname'=>'string', 'newname'=>'string'], -'runkit_import' => ['bool', 'filename'=>'string', 'flags='=>'int'], -'runkit_lint' => ['bool', 'code'=>'string'], -'runkit_lint_file' => ['bool', 'filename'=>'string'], -'runkit_method_add' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int', 'doccomment='=>'?string'], -'runkit_method_add\'1' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'closure'=>'Closure', 'flags='=>'int', 'doccomment='=>'?string'], -'runkit_method_copy' => ['bool', 'dclass'=>'string', 'dmethod'=>'string', 'sclass'=>'string', 'smethod='=>'string'], -'runkit_method_redefine' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int', 'doccomment='=>'?string'], -'runkit_method_redefine\'1' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'closure'=>'Closure', 'flags='=>'int', 'doccomment='=>'?string'], -'runkit_method_remove' => ['bool', 'classname'=>'string', 'methodname'=>'string'], -'runkit_method_rename' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'newname'=>'string'], -'runkit_return_value_used' => ['bool'], -'Runkit_Sandbox::__construct' => ['void', 'options='=>'array'], -'runkit_sandbox_output_handler' => ['mixed', 'sandbox'=>'object', 'callback='=>'mixed'], -'Runkit_Sandbox_Parent' => [''], -'Runkit_Sandbox_Parent::__construct' => ['void'], -'runkit_superglobals' => ['array'], -'runkit_zval_inspect' => ['array', 'value'=>'mixed'], -'RuntimeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'RuntimeException::__toString' => ['string'], -'RuntimeException::getCode' => ['int'], -'RuntimeException::getFile' => ['string'], -'RuntimeException::getLine' => ['int'], -'RuntimeException::getMessage' => ['string'], -'RuntimeException::getPrevious' => ['?Throwable'], -'RuntimeException::getTrace' => ['list\',args?:array}>'], -'RuntimeException::getTraceAsString' => ['string'], -'SAMConnection::commit' => ['bool'], -'SAMConnection::connect' => ['bool', 'protocol'=>'string', 'properties='=>'array'], -'SAMConnection::disconnect' => ['bool'], -'SAMConnection::errno' => ['int'], -'SAMConnection::error' => ['string'], -'SAMConnection::isConnected' => ['bool'], -'SAMConnection::peek' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], -'SAMConnection::peekAll' => ['array', 'target'=>'string', 'properties='=>'array'], -'SAMConnection::receive' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], -'SAMConnection::remove' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], -'SAMConnection::rollback' => ['bool'], -'SAMConnection::send' => ['string', 'target'=>'string', 'msg'=>'sammessage', 'properties='=>'array'], -'SAMConnection::setDebug' => ['', 'switch'=>'bool'], -'SAMConnection::subscribe' => ['string', 'targettopic'=>'string'], -'SAMConnection::unsubscribe' => ['bool', 'subscriptionid'=>'string', 'targettopic='=>'string'], -'SAMMessage::body' => ['string'], -'SAMMessage::header' => ['object'], -'sapi_windows_cp_conv' => ['?string', 'in_codepage'=>'int|string', 'out_codepage'=>'int|string', 'subject'=>'string'], -'sapi_windows_cp_get' => ['int', 'kind='=>'string'], -'sapi_windows_cp_is_utf8' => ['bool'], -'sapi_windows_cp_set' => ['bool', 'codepage'=>'int'], -'sapi_windows_vt100_support' => ['bool', 'stream'=>'resource', 'enable='=>'?bool'], -'Saxon\SaxonProcessor::__construct' => ['void', 'license='=>'bool', 'cwd='=>'string'], -'Saxon\SaxonProcessor::createAtomicValue' => ['Saxon\XdmValue', 'primitive_type_val'=>'bool|float|int|string'], -'Saxon\SaxonProcessor::newSchemaValidator' => ['Saxon\SchemaValidator'], -'Saxon\SaxonProcessor::newXPathProcessor' => ['Saxon\XPathProcessor'], -'Saxon\SaxonProcessor::newXQueryProcessor' => ['Saxon\XQueryProcessor'], -'Saxon\SaxonProcessor::newXsltProcessor' => ['Saxon\XsltProcessor'], -'Saxon\SaxonProcessor::parseXmlFromFile' => ['Saxon\XdmNode', 'fileName'=>'string'], -'Saxon\SaxonProcessor::parseXmlFromString' => ['Saxon\XdmNode', 'value'=>'string'], -'Saxon\SaxonProcessor::registerPHPFunctions' => ['void', 'library'=>'string'], -'Saxon\SaxonProcessor::setConfigurationProperty' => ['void', 'name'=>'string', 'value'=>'string'], -'Saxon\SaxonProcessor::setcwd' => ['void', 'cwd'=>'string'], -'Saxon\SaxonProcessor::setResourceDirectory' => ['void', 'dir'=>'string'], -'Saxon\SaxonProcessor::version' => ['string'], -'Saxon\SchemaValidator::clearParameters' => ['void'], -'Saxon\SchemaValidator::clearProperties' => ['void'], -'Saxon\SchemaValidator::exceptionClear' => ['void'], -'Saxon\SchemaValidator::getErrorCode' => ['string', 'i'=>'int'], -'Saxon\SchemaValidator::getErrorMessage' => ['string', 'i'=>'int'], -'Saxon\SchemaValidator::getExceptionCount' => ['int'], -'Saxon\SchemaValidator::getValidationReport' => ['Saxon\XdmNode'], -'Saxon\SchemaValidator::registerSchemaFromFile' => ['void', 'fileName'=>'string'], -'Saxon\SchemaValidator::registerSchemaFromString' => ['void', 'schemaStr'=>'string'], -'Saxon\SchemaValidator::setOutputFile' => ['void', 'fileName'=>'string'], -'Saxon\SchemaValidator::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], -'Saxon\SchemaValidator::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], -'Saxon\SchemaValidator::setSourceNode' => ['void', 'node'=>'Saxon\XdmNode'], -'Saxon\SchemaValidator::validate' => ['void', 'filename='=>'?string'], -'Saxon\SchemaValidator::validateToNode' => ['Saxon\XdmNode', 'filename='=>'?string'], -'Saxon\XdmAtomicValue::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], -'Saxon\XdmAtomicValue::getAtomicValue' => ['?Saxon\XdmAtomicValue'], -'Saxon\XdmAtomicValue::getBooleanValue' => ['bool'], -'Saxon\XdmAtomicValue::getDoubleValue' => ['float'], -'Saxon\XdmAtomicValue::getHead' => ['Saxon\XdmItem'], -'Saxon\XdmAtomicValue::getLongValue' => ['int'], -'Saxon\XdmAtomicValue::getNodeValue' => ['?Saxon\XdmNode'], -'Saxon\XdmAtomicValue::getStringValue' => ['string'], -'Saxon\XdmAtomicValue::isAtomic' => ['true'], -'Saxon\XdmAtomicValue::isNode' => ['bool'], -'Saxon\XdmAtomicValue::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], -'Saxon\XdmAtomicValue::size' => ['int'], -'Saxon\XdmItem::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], -'Saxon\XdmItem::getAtomicValue' => ['?Saxon\XdmAtomicValue'], -'Saxon\XdmItem::getHead' => ['Saxon\XdmItem'], -'Saxon\XdmItem::getNodeValue' => ['?Saxon\XdmNode'], -'Saxon\XdmItem::getStringValue' => ['string'], -'Saxon\XdmItem::isAtomic' => ['bool'], -'Saxon\XdmItem::isNode' => ['bool'], -'Saxon\XdmItem::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], -'Saxon\XdmItem::size' => ['int'], -'Saxon\XdmNode::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], -'Saxon\XdmNode::getAtomicValue' => ['?Saxon\XdmAtomicValue'], -'Saxon\XdmNode::getAttributeCount' => ['int'], -'Saxon\XdmNode::getAttributeNode' => ['?Saxon\XdmNode', 'index'=>'int'], -'Saxon\XdmNode::getAttributeValue' => ['?string', 'index'=>'int'], -'Saxon\XdmNode::getChildCount' => ['int'], -'Saxon\XdmNode::getChildNode' => ['?Saxon\XdmNode', 'index'=>'int'], -'Saxon\XdmNode::getHead' => ['Saxon\XdmItem'], -'Saxon\XdmNode::getNodeKind' => ['int'], -'Saxon\XdmNode::getNodeName' => ['string'], -'Saxon\XdmNode::getNodeValue' => ['?Saxon\XdmNode'], -'Saxon\XdmNode::getParent' => ['?Saxon\XdmNode'], -'Saxon\XdmNode::getStringValue' => ['string'], -'Saxon\XdmNode::isAtomic' => ['false'], -'Saxon\XdmNode::isNode' => ['bool'], -'Saxon\XdmNode::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], -'Saxon\XdmNode::size' => ['int'], -'Saxon\XdmValue::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], -'Saxon\XdmValue::getHead' => ['Saxon\XdmItem'], -'Saxon\XdmValue::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], -'Saxon\XdmValue::size' => ['int'], -'Saxon\XPathProcessor::clearParameters' => ['void'], -'Saxon\XPathProcessor::clearProperties' => ['void'], -'Saxon\XPathProcessor::declareNamespace' => ['void', 'prefix'=>'', 'namespace'=>''], -'Saxon\XPathProcessor::effectiveBooleanValue' => ['bool', 'xpathStr'=>'string'], -'Saxon\XPathProcessor::evaluate' => ['Saxon\XdmValue', 'xpathStr'=>'string'], -'Saxon\XPathProcessor::evaluateSingle' => ['Saxon\XdmItem', 'xpathStr'=>'string'], -'Saxon\XPathProcessor::exceptionClear' => ['void'], -'Saxon\XPathProcessor::getErrorCode' => ['string', 'i'=>'int'], -'Saxon\XPathProcessor::getErrorMessage' => ['string', 'i'=>'int'], -'Saxon\XPathProcessor::getExceptionCount' => ['int'], -'Saxon\XPathProcessor::setBaseURI' => ['void', 'uri'=>'string'], -'Saxon\XPathProcessor::setContextFile' => ['void', 'fileName'=>'string'], -'Saxon\XPathProcessor::setContextItem' => ['void', 'item'=>'Saxon\XdmItem'], -'Saxon\XPathProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], -'Saxon\XPathProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], -'Saxon\XQueryProcessor::clearParameters' => ['void'], -'Saxon\XQueryProcessor::clearProperties' => ['void'], -'Saxon\XQueryProcessor::declareNamespace' => ['void', 'prefix'=>'string', 'namespace'=>'string'], -'Saxon\XQueryProcessor::exceptionClear' => ['void'], -'Saxon\XQueryProcessor::getErrorCode' => ['string', 'i'=>'int'], -'Saxon\XQueryProcessor::getErrorMessage' => ['string', 'i'=>'int'], -'Saxon\XQueryProcessor::getExceptionCount' => ['int'], -'Saxon\XQueryProcessor::runQueryToFile' => ['void', 'outfilename'=>'string'], -'Saxon\XQueryProcessor::runQueryToString' => ['?string'], -'Saxon\XQueryProcessor::runQueryToValue' => ['?Saxon\XdmValue'], -'Saxon\XQueryProcessor::setContextItem' => ['void', 'object'=>'Saxon\XdmAtomicValue|Saxon\XdmItem|Saxon\XdmNode|Saxon\XdmValue'], -'Saxon\XQueryProcessor::setContextItemFromFile' => ['void', 'fileName'=>'string'], -'Saxon\XQueryProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], -'Saxon\XQueryProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], -'Saxon\XQueryProcessor::setQueryBaseURI' => ['void', 'uri'=>'string'], -'Saxon\XQueryProcessor::setQueryContent' => ['void', 'string'=>'string'], -'Saxon\XQueryProcessor::setQueryFile' => ['void', 'filename'=>'string'], -'Saxon\XQueryProcessor::setQueryItem' => ['void', 'item'=>'Saxon\XdmItem'], -'Saxon\XsltProcessor::clearParameters' => ['void'], -'Saxon\XsltProcessor::clearProperties' => ['void'], -'Saxon\XsltProcessor::compileFromFile' => ['void', 'fileName'=>'string'], -'Saxon\XsltProcessor::compileFromString' => ['void', 'string'=>'string'], -'Saxon\XsltProcessor::compileFromValue' => ['void', 'node'=>'Saxon\XdmNode'], -'Saxon\XsltProcessor::exceptionClear' => ['void'], -'Saxon\XsltProcessor::getErrorCode' => ['string', 'i'=>'int'], -'Saxon\XsltProcessor::getErrorMessage' => ['string', 'i'=>'int'], -'Saxon\XsltProcessor::getExceptionCount' => ['int'], -'Saxon\XsltProcessor::setOutputFile' => ['void', 'fileName'=>'string'], -'Saxon\XsltProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], -'Saxon\XsltProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], -'Saxon\XsltProcessor::setSourceFromFile' => ['void', 'filename'=>'string'], -'Saxon\XsltProcessor::setSourceFromXdmValue' => ['void', 'value'=>'Saxon\XdmValue'], -'Saxon\XsltProcessor::transformFileToFile' => ['void', 'sourceFileName'=>'string', 'stylesheetFileName'=>'string', 'outputfileName'=>'string'], -'Saxon\XsltProcessor::transformFileToString' => ['?string', 'sourceFileName'=>'string', 'stylesheetFileName'=>'string'], -'Saxon\XsltProcessor::transformFileToValue' => ['Saxon\XdmValue', 'fileName'=>'string'], -'Saxon\XsltProcessor::transformToFile' => ['void'], -'Saxon\XsltProcessor::transformToString' => ['string'], -'Saxon\XsltProcessor::transformToValue' => ['?Saxon\XdmValue'], -'SCA::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], -'SCA::getService' => ['', 'target'=>'string', 'binding='=>'string', 'config='=>'array'], -'SCA_LocalProxy::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], -'SCA_SoapProxy::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], -'scalebarObj::convertToString' => ['string'], -'scalebarObj::free' => ['void'], -'scalebarObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'scalebarObj::setImageColor' => ['int', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'scalebarObj::updateFromString' => ['int', 'snippet'=>'string'], -'scandir' => ['list|false', 'directory'=>'string', 'sorting_order='=>'int', 'context='=>'resource'], -'SDO_DAS_ChangeSummary::beginLogging' => [''], -'SDO_DAS_ChangeSummary::endLogging' => [''], -'SDO_DAS_ChangeSummary::getChangedDataObjects' => ['SDO_List'], -'SDO_DAS_ChangeSummary::getChangeType' => ['int', 'dataobject'=>'sdo_dataobject'], -'SDO_DAS_ChangeSummary::getOldContainer' => ['SDO_DataObject', 'data_object'=>'sdo_dataobject'], -'SDO_DAS_ChangeSummary::getOldValues' => ['SDO_List', 'data_object'=>'sdo_dataobject'], -'SDO_DAS_ChangeSummary::isLogging' => ['bool'], -'SDO_DAS_DataFactory::addPropertyToType' => ['', 'parent_type_namespace_uri'=>'string', 'parent_type_name'=>'string', 'property_name'=>'string', 'type_namespace_uri'=>'string', 'type_name'=>'string', 'options='=>'array'], -'SDO_DAS_DataFactory::addType' => ['', 'type_namespace_uri'=>'string', 'type_name'=>'string', 'options='=>'array'], -'SDO_DAS_DataFactory::getDataFactory' => ['SDO_DAS_DataFactory'], -'SDO_DAS_DataObject::getChangeSummary' => ['SDO_DAS_ChangeSummary'], -'SDO_DAS_Relational::__construct' => ['void', 'database_metadata'=>'array', 'application_root_type='=>'string', 'sdo_containment_references_metadata='=>'array'], -'SDO_DAS_Relational::applyChanges' => ['', 'database_handle'=>'pdo', 'root_data_object'=>'sdodataobject'], -'SDO_DAS_Relational::createRootDataObject' => ['SDODataObject'], -'SDO_DAS_Relational::executePreparedQuery' => ['SDODataObject', 'database_handle'=>'pdo', 'prepared_statement'=>'pdostatement', 'value_list'=>'array', 'column_specifier='=>'array'], -'SDO_DAS_Relational::executeQuery' => ['SDODataObject', 'database_handle'=>'pdo', 'sql_statement'=>'string', 'column_specifier='=>'array'], -'SDO_DAS_Setting::getListIndex' => ['int'], -'SDO_DAS_Setting::getPropertyIndex' => ['int'], -'SDO_DAS_Setting::getPropertyName' => ['string'], -'SDO_DAS_Setting::getValue' => [''], -'SDO_DAS_Setting::isSet' => ['bool'], -'SDO_DAS_XML::addTypes' => ['', 'xsd_file'=>'string'], -'SDO_DAS_XML::create' => ['SDO_DAS_XML', 'xsd_file='=>'mixed', 'key='=>'string'], -'SDO_DAS_XML::createDataObject' => ['SDO_DataObject', 'namespace_uri'=>'string', 'type_name'=>'string'], -'SDO_DAS_XML::createDocument' => ['SDO_DAS_XML_Document', 'document_element_name'=>'string', 'document_element_namespace_uri'=>'string', 'dataobject='=>'sdo_dataobject'], -'SDO_DAS_XML::loadFile' => ['SDO_XMLDocument', 'xml_file'=>'string'], -'SDO_DAS_XML::loadString' => ['SDO_DAS_XML_Document', 'xml_string'=>'string'], -'SDO_DAS_XML::saveFile' => ['', 'xdoc'=>'sdo_xmldocument', 'xml_file'=>'string', 'indent='=>'int'], -'SDO_DAS_XML::saveString' => ['string', 'xdoc'=>'sdo_xmldocument', 'indent='=>'int'], -'SDO_DAS_XML_Document::getRootDataObject' => ['SDO_DataObject'], -'SDO_DAS_XML_Document::getRootElementName' => ['string'], -'SDO_DAS_XML_Document::getRootElementURI' => ['string'], -'SDO_DAS_XML_Document::setEncoding' => ['', 'encoding'=>'string'], -'SDO_DAS_XML_Document::setXMLDeclaration' => ['', 'xmldeclatation'=>'bool'], -'SDO_DAS_XML_Document::setXMLVersion' => ['', 'xmlversion'=>'string'], -'SDO_DataFactory::create' => ['void', 'type_namespace_uri'=>'string', 'type_name'=>'string'], -'SDO_DataObject::clear' => ['void'], -'SDO_DataObject::createDataObject' => ['SDO_DataObject', 'identifier'=>''], -'SDO_DataObject::getContainer' => ['SDO_DataObject'], -'SDO_DataObject::getSequence' => ['SDO_Sequence'], -'SDO_DataObject::getTypeName' => ['string'], -'SDO_DataObject::getTypeNamespaceURI' => ['string'], -'SDO_Exception::getCause' => [''], -'SDO_List::insert' => ['void', 'value'=>'mixed', 'index='=>'int'], -'SDO_Model_Property::getContainingType' => ['SDO_Model_Type'], -'SDO_Model_Property::getDefault' => [''], -'SDO_Model_Property::getName' => ['string'], -'SDO_Model_Property::getType' => ['SDO_Model_Type'], -'SDO_Model_Property::isContainment' => ['bool'], -'SDO_Model_Property::isMany' => ['bool'], -'SDO_Model_ReflectionDataObject::__construct' => ['void', 'data_object'=>'sdo_dataobject'], -'SDO_Model_ReflectionDataObject::export' => ['mixed', 'rdo'=>'sdo_model_reflectiondataobject', 'return='=>'bool'], -'SDO_Model_ReflectionDataObject::getContainmentProperty' => ['SDO_Model_Property'], -'SDO_Model_ReflectionDataObject::getInstanceProperties' => ['array'], -'SDO_Model_ReflectionDataObject::getType' => ['SDO_Model_Type'], -'SDO_Model_Type::getBaseType' => ['SDO_Model_Type'], -'SDO_Model_Type::getName' => ['string'], -'SDO_Model_Type::getNamespaceURI' => ['string'], -'SDO_Model_Type::getProperties' => ['array'], -'SDO_Model_Type::getProperty' => ['SDO_Model_Property', 'identifier'=>''], -'SDO_Model_Type::isAbstractType' => ['bool'], -'SDO_Model_Type::isDataType' => ['bool'], -'SDO_Model_Type::isInstance' => ['bool', 'data_object'=>'sdo_dataobject'], -'SDO_Model_Type::isOpenType' => ['bool'], -'SDO_Model_Type::isSequencedType' => ['bool'], -'SDO_Sequence::getProperty' => ['SDO_Model_Property', 'sequence_index'=>'int'], -'SDO_Sequence::insert' => ['void', 'value'=>'mixed', 'sequenceindex='=>'int', 'propertyidentifier='=>'mixed'], -'SDO_Sequence::move' => ['void', 'toindex'=>'int', 'fromindex'=>'int'], -'SeasLog::__destruct' => ['void'], -'SeasLog::alert' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::analyzerCount' => ['mixed', 'level'=>'string', 'log_path='=>'string', 'key_word='=>'string'], -'SeasLog::analyzerDetail' => ['mixed', 'level'=>'string', 'log_path='=>'string', 'key_word='=>'string', 'start='=>'int', 'limit='=>'int', 'order='=>'int'], -'SeasLog::closeLoggerStream' => ['bool', 'model'=>'int', 'logger'=>'string'], -'SeasLog::critical' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::debug' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::emergency' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::error' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::flushBuffer' => ['bool'], -'SeasLog::getBasePath' => ['string'], -'SeasLog::getBuffer' => ['array'], -'SeasLog::getBufferEnabled' => ['bool'], -'SeasLog::getDatetimeFormat' => ['string'], -'SeasLog::getLastLogger' => ['string'], -'SeasLog::getRequestID' => ['string'], -'SeasLog::getRequestVariable' => ['bool', 'key'=>'int'], -'SeasLog::info' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::log' => ['bool', 'level'=>'string', 'message='=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::notice' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'SeasLog::setBasePath' => ['bool', 'base_path'=>'string'], -'SeasLog::setDatetimeFormat' => ['bool', 'format'=>'string'], -'SeasLog::setLogger' => ['bool', 'logger'=>'string'], -'SeasLog::setRequestID' => ['bool', 'request_id'=>'string'], -'SeasLog::setRequestVariable' => ['bool', 'key'=>'int', 'value'=>'string'], -'SeasLog::warning' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], -'seaslog_get_author' => ['string'], -'seaslog_get_version' => ['string'], -'SeekableIterator::__construct' => ['void'], -'SeekableIterator::current' => ['mixed'], -'SeekableIterator::key' => ['int|string'], -'SeekableIterator::next' => ['void'], -'SeekableIterator::rewind' => ['void'], -'SeekableIterator::seek' => ['void', 'position'=>'int'], -'SeekableIterator::valid' => ['bool'], -'sem_acquire' => ['bool', 'semaphore'=>'SysvSemaphore', 'non_blocking='=>'bool'], -'sem_get' => ['SysvSemaphore|false', 'key'=>'int', 'max_acquire='=>'int', 'permissions='=>'int', 'auto_release='=>'bool'], -'sem_release' => ['bool', 'semaphore'=>'SysvSemaphore'], -'sem_remove' => ['bool', 'semaphore'=>'SysvSemaphore'], -'Serializable::__construct' => ['void'], -'Serializable::serialize' => ['?string'], -'Serializable::unserialize' => ['void', 'serialized'=>'string'], -'serialize' => ['string', 'value'=>'mixed'], -'ServerRequest::withInput' => ['ServerRequest', 'input'=>'mixed'], -'ServerRequest::withoutParams' => ['ServerRequest', 'params'=>'int|string'], -'ServerRequest::withParam' => ['ServerRequest', 'key'=>'int|string', 'value'=>'mixed'], -'ServerRequest::withParams' => ['ServerRequest', 'params'=>'mixed'], -'ServerRequest::withUrl' => ['ServerRequest', 'url'=>'array'], -'ServerResponse::addHeader' => ['void', 'label'=>'string', 'value'=>'string'], -'ServerResponse::date' => ['string', 'date'=>'string|DateTimeInterface'], -'ServerResponse::getHeader' => ['string', 'label'=>'string'], -'ServerResponse::getHeaders' => ['string[]'], -'ServerResponse::getStatus' => ['int'], -'ServerResponse::getVersion' => ['string'], -'ServerResponse::setHeader' => ['void', 'label'=>'string', 'value'=>'string'], -'ServerResponse::setStatus' => ['void', 'status'=>'int'], -'ServerResponse::setVersion' => ['void', 'version'=>'string'], -'session_abort' => ['bool'], -'session_cache_expire' => ['int|false', 'value='=>'?int'], -'session_cache_limiter' => ['string|false', 'value='=>'?string'], -'session_commit' => ['bool'], -'session_create_id' => ['string|false', 'prefix='=>'string'], -'session_decode' => ['bool', 'data'=>'string'], -'session_destroy' => ['bool'], -'session_encode' => ['string|false'], -'session_gc' => ['int|false'], -'session_get_cookie_params' => ['array{lifetime:?int,path:?string,domain:?string,secure:?bool,httponly:?bool,samesite:?string}'], -'session_id' => ['string|false', 'id='=>'?string'], -'session_is_registered' => ['bool', 'name'=>'string'], -'session_module_name' => ['string|false', 'module='=>'?string'], -'session_name' => ['string|false', 'name='=>'?string'], -'session_pgsql_add_error' => ['bool', 'error_level'=>'int', 'error_message='=>'string'], -'session_pgsql_get_error' => ['array', 'with_error_message='=>'bool'], -'session_pgsql_get_field' => ['string'], -'session_pgsql_reset' => ['bool'], -'session_pgsql_set_field' => ['bool', 'value'=>'string'], -'session_pgsql_status' => ['array'], -'session_regenerate_id' => ['bool', 'delete_old_session='=>'bool'], -'session_register' => ['bool', 'name'=>'mixed', '...args='=>'mixed'], -'session_register_shutdown' => ['void'], -'session_reset' => ['bool'], -'session_save_path' => ['string|false', 'path='=>'?string'], -'session_set_cookie_params' => ['bool', 'lifetime'=>'int', 'path='=>'?string', 'domain='=>'?string', 'secure='=>'?bool', 'httponly='=>'?bool'], -'session_set_cookie_params\'1' => ['bool', 'options'=>'array{lifetime?:?int,path?:?string,domain?:?string,secure?:?bool,httponly?:?bool,samesite?:?string}'], -'session_set_save_handler' => ['bool', 'open'=>'callable(string,string):bool', 'close'=>'callable():bool', 'read'=>'callable(string):string', 'write'=>'callable(string,string):bool', 'destroy'=>'callable(string):bool', 'gc'=>'callable(string):bool', 'create_sid='=>'callable():string', 'validate_sid='=>'callable(string):bool', 'update_timestamp='=>'callable(string):bool'], -'session_set_save_handler\'1' => ['bool', 'open'=>'SessionHandlerInterface', 'close='=>'bool'], -'session_start' => ['bool', 'options='=>'array'], -'session_status' => ['int'], -'session_unregister' => ['bool', 'name'=>'string'], -'session_unset' => ['bool'], -'session_write_close' => ['bool'], -'SessionHandler::close' => ['bool'], -'SessionHandler::create_sid' => ['string'], -'SessionHandler::destroy' => ['bool', 'id'=>'string'], -'SessionHandler::gc' => ['int|false', 'max_lifetime'=>'int'], -'SessionHandler::open' => ['bool', 'path'=>'string', 'name'=>'string'], -'SessionHandler::read' => ['string|false', 'id'=>'string'], -'SessionHandler::write' => ['bool', 'id'=>'string', 'data'=>'string'], -'SessionHandlerInterface::close' => ['bool'], -'SessionHandlerInterface::destroy' => ['bool', 'id'=>'string'], -'SessionHandlerInterface::gc' => ['int|false', 'max_lifetime'=>'int'], -'SessionHandlerInterface::open' => ['bool', 'path'=>'string', 'name'=>'string'], -'SessionHandlerInterface::read' => ['string|false', 'id'=>'string'], -'SessionHandlerInterface::write' => ['bool', 'id'=>'string', 'data'=>'string'], -'SessionIdInterface::create_sid' => ['string'], -'SessionUpdateTimestampHandler::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'], -'SessionUpdateTimestampHandler::validateId' => ['char', 'id'=>'string'], -'SessionUpdateTimestampHandlerInterface::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'], -'SessionUpdateTimestampHandlerInterface::validateId' => ['bool', 'id'=>'string'], -'set_error_handler' => ['null|callable(int,string,string=,int=,array=):bool', 'callback'=>'null|callable(int,string,string=,int=,array=):bool', 'error_levels='=>'int'], -'set_exception_handler' => ['null|callable(Throwable):void', 'callback'=>'null|callable(Throwable):void'], -'set_file_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], -'set_include_path' => ['string|false', 'include_path'=>'string'], -'set_magic_quotes_runtime' => ['bool', 'new_setting'=>'bool'], -'set_time_limit' => ['bool', 'seconds'=>'int'], -'setcookie' => ['bool', 'name'=>'string', 'value='=>'string', 'expires='=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool', 'samesite='=>'string', 'url_encode='=>'int'], -'setcookie\'1' => ['bool', 'name'=>'string', 'value='=>'string', 'options='=>'array'], -'setLeftFill' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'setLine' => ['void', 'width'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'setlocale' => ['string|false', 'category'=>'int', 'locales'=>'string|0|null', '...rest='=>'string'], -'setlocale\'1' => ['string|false', 'category'=>'int', 'locales'=>'?array'], -'setproctitle' => ['void', 'title'=>'string'], -'setrawcookie' => ['bool', 'name'=>'string', 'value='=>'string', 'expires='=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool'], -'setrawcookie\'1' => ['bool', 'name'=>'string', 'value='=>'string', 'options='=>'array'], -'setRightFill' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'setthreadtitle' => ['bool', 'title'=>'string'], -'settype' => ['bool', '&rw_var'=>'mixed', 'type'=>'string'], -'sha1' => ['string', 'string'=>'string', 'binary='=>'bool'], -'sha1_file' => ['string|false', 'filename'=>'string', 'binary='=>'bool'], -'sha256' => ['string', 'string'=>'string', 'raw_output='=>'bool'], -'sha256_file' => ['string', 'filename'=>'string', 'raw_output='=>'bool'], -'shapefileObj::__construct' => ['void', 'filename'=>'string', 'type'=>'int'], -'shapefileObj::addPoint' => ['int', 'point'=>'pointObj'], -'shapefileObj::addShape' => ['int', 'shape'=>'shapeObj'], -'shapefileObj::free' => ['void'], -'shapefileObj::getExtent' => ['rectObj', 'i'=>'int'], -'shapefileObj::getPoint' => ['shapeObj', 'i'=>'int'], -'shapefileObj::getShape' => ['shapeObj', 'i'=>'int'], -'shapefileObj::getTransformed' => ['shapeObj', 'map'=>'mapObj', 'i'=>'int'], -'shapefileObj::ms_newShapefileObj' => ['shapefileObj', 'filename'=>'string', 'type'=>'int'], -'shapeObj::__construct' => ['void', 'type'=>'int'], -'shapeObj::add' => ['int', 'line'=>'lineObj'], -'shapeObj::boundary' => ['shapeObj'], -'shapeObj::contains' => ['bool', 'point'=>'pointObj'], -'shapeObj::containsShape' => ['int', 'shape2'=>'shapeObj'], -'shapeObj::convexhull' => ['shapeObj'], -'shapeObj::crosses' => ['int', 'shape'=>'shapeObj'], -'shapeObj::difference' => ['shapeObj', 'shape'=>'shapeObj'], -'shapeObj::disjoint' => ['int', 'shape'=>'shapeObj'], -'shapeObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj'], -'shapeObj::equals' => ['int', 'shape'=>'shapeObj'], -'shapeObj::free' => ['void'], -'shapeObj::getArea' => ['float'], -'shapeObj::getCentroid' => ['pointObj'], -'shapeObj::getLabelPoint' => ['pointObj'], -'shapeObj::getLength' => ['float'], -'shapeObj::getPointUsingMeasure' => ['pointObj', 'm'=>'float'], -'shapeObj::getValue' => ['string', 'layer'=>'layerObj', 'filedname'=>'string'], -'shapeObj::intersection' => ['shapeObj', 'shape'=>'shapeObj'], -'shapeObj::intersects' => ['bool', 'shape'=>'shapeObj'], -'shapeObj::line' => ['lineObj', 'i'=>'int'], -'shapeObj::ms_shapeObjFromWkt' => ['shapeObj', 'wkt'=>'string'], -'shapeObj::overlaps' => ['int', 'shape'=>'shapeObj'], -'shapeObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], -'shapeObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'shapeObj::setBounds' => ['int'], -'shapeObj::simplify' => ['shapeObj|null', 'tolerance'=>'float'], -'shapeObj::symdifference' => ['shapeObj', 'shape'=>'shapeObj'], -'shapeObj::topologyPreservingSimplify' => ['shapeObj|null', 'tolerance'=>'float'], -'shapeObj::touches' => ['int', 'shape'=>'shapeObj'], -'shapeObj::toWkt' => ['string'], -'shapeObj::union' => ['shapeObj', 'shape'=>'shapeObj'], -'shapeObj::within' => ['int', 'shape2'=>'shapeObj'], -'shell_exec' => ['string|false|null', 'command'=>'string'], -'shm_attach' => ['SysvSharedMemory|false', 'key'=>'int', 'size='=>'?int', 'permissions='=>'int'], -'shm_detach' => ['bool', 'shm'=>'SysvSharedMemory'], -'shm_get_var' => ['mixed', 'shm'=>'SysvSharedMemory', 'key'=>'int'], -'shm_has_var' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int'], -'shm_put_var' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int', 'value'=>'mixed'], -'shm_remove' => ['bool', 'shm'=>'SysvSharedMemory'], -'shm_remove_var' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int'], -'shmop_close' => ['void', 'shmop'=>'Shmop'], -'shmop_delete' => ['bool', 'shmop'=>'Shmop'], -'shmop_open' => ['Shmop|false', 'key'=>'int', 'mode'=>'string', 'permissions'=>'int', 'size'=>'int'], -'shmop_read' => ['string', 'shmop'=>'Shmop', 'offset'=>'int', 'size'=>'int'], -'shmop_size' => ['int', 'shmop'=>'Shmop'], -'shmop_write' => ['int', 'shmop'=>'Shmop', 'data'=>'string', 'offset'=>'int'], -'show_source' => ['string|bool', 'filename'=>'string', 'return='=>'bool'], -'shuffle' => ['true', '&rw_array'=>'array'], -'signeurlpaiement' => ['string', 'clent'=>'string', 'data'=>'string'], -'similar_text' => ['int', 'string1'=>'string', 'string2'=>'string', '&w_percent='=>'float'], -'simplexml_import_dom' => ['?SimpleXMLElement', 'node'=>'DOMNode', 'class_name='=>'?string'], -'simplexml_load_file' => ['SimpleXMLElement|false', 'filename'=>'string', 'class_name='=>'?string', 'options='=>'int', 'namespace_or_prefix='=>'string', 'is_prefix='=>'bool'], -'simplexml_load_string' => ['SimpleXMLElement|false', 'data'=>'string', 'class_name='=>'?string', 'options='=>'int', 'namespace_or_prefix='=>'string', 'is_prefix='=>'bool'], -'SimpleXMLElement::__construct' => ['void', 'data'=>'string', 'options='=>'int', 'dataIsURL='=>'bool', 'namespaceOrPrefix='=>'string', 'isPrefix='=>'bool'], -'SimpleXMLElement::__get' => ['SimpleXMLElement', 'name'=>'string'], -'SimpleXMLElement::__toString' => ['string'], -'SimpleXMLElement::addAttribute' => ['void', 'qualifiedName'=>'string', 'value'=>'string', 'namespace='=>'?string'], -'SimpleXMLElement::addChild' => ['?SimpleXMLElement', 'qualifiedName'=>'string', 'value='=>'?string', 'namespace='=>'?string'], -'SimpleXMLElement::asXML' => ['string|bool', 'filename='=>'?string'], -'SimpleXMLElement::asXML\'1' => ['string|false'], -'SimpleXMLElement::attributes' => ['?SimpleXMLElement', 'namespaceOrPrefix='=>'?string', 'isPrefix='=>'bool'], -'SimpleXMLElement::children' => ['?SimpleXMLElement', 'namespaceOrPrefix='=>'?string', 'isPrefix='=>'bool'], -'SimpleXMLElement::count' => ['int'], -'SimpleXMLElement::getDocNamespaces' => ['array', 'recursive='=>'bool', 'fromRoot='=>'bool'], -'SimpleXMLElement::getName' => ['string'], -'SimpleXMLElement::getNamespaces' => ['array', 'recursive='=>'bool'], -'SimpleXMLElement::offsetExists' => ['bool', 'offset'=>'int|string'], -'SimpleXMLElement::offsetGet' => ['SimpleXMLElement', 'offset'=>'int|string'], -'SimpleXMLElement::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'SimpleXMLElement::offsetUnset' => ['void', 'offset'=>'int|string'], -'SimpleXMLElement::registerXPathNamespace' => ['bool', 'prefix'=>'string', 'namespace'=>'string'], -'SimpleXMLElement::saveXML' => ['string|bool', 'filename='=>'?string'], -'SimpleXMLElement::xpath' => ['SimpleXMLElement[]|false|null', 'expression'=>'string'], -'sin' => ['float', 'num'=>'float'], -'sinh' => ['float', 'num'=>'float'], -'sizeof' => ['int<0, max>', 'value'=>'Countable|array', 'mode='=>'int'], -'sleep' => ['int', 'seconds'=>'0|positive-int'], -'snmp2_get' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp2_getnext' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp2_real_walk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp2_set' => ['bool', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'type'=>'array|string', 'value'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp2_walk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp3_get' => ['string|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp3_getnext' => ['string|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp3_real_walk' => ['array|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp3_set' => ['bool', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'type'=>'array|string', 'value'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmp3_walk' => ['array|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'SNMP::__construct' => ['void', 'version'=>'int', 'hostname'=>'string', 'community'=>'string', 'timeout='=>'int', 'retries='=>'int'], -'SNMP::close' => ['bool'], -'SNMP::get' => ['array|string|false', 'objectId'=>'string|array', 'preserveKeys='=>'bool'], -'SNMP::getErrno' => ['int'], -'SNMP::getError' => ['string'], -'SNMP::getnext' => ['string|array|false', 'objectId'=>'string|array'], -'SNMP::set' => ['bool', 'objectId'=>'string|array', 'type'=>'string|array', 'value'=>'string|array'], -'SNMP::setSecurity' => ['bool', 'securityLevel'=>'string', 'authProtocol='=>'string', 'authPassphrase='=>'string', 'privacyProtocol='=>'string', 'privacyPassphrase='=>'string', 'contextName='=>'string', 'contextEngineId='=>'string'], -'SNMP::walk' => ['array|false', 'objectId'=>'array|string', 'suffixAsKey='=>'bool', 'maxRepetitions='=>'int', 'nonRepeaters='=>'int'], -'snmp_get_quick_print' => ['bool'], -'snmp_get_valueretrieval' => ['int'], -'snmp_read_mib' => ['bool', 'filename'=>'string'], -'snmp_set_enum_print' => ['true', 'enable'=>'bool'], -'snmp_set_oid_numeric_print' => ['true', 'format'=>'int'], -'snmp_set_oid_output_format' => ['true', 'format'=>'int'], -'snmp_set_quick_print' => ['bool', 'enable'=>'bool'], -'snmp_set_valueretrieval' => ['true', 'method'=>'int'], -'snmpget' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmpgetnext' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmprealwalk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmpset' => ['bool', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'type'=>'string|string[]', 'value'=>'string|string[]', 'timeout='=>'int', 'retries='=>'int'], -'snmpwalk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'snmpwalkoid' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], -'SoapClient::__call' => ['', 'function_name'=>'string', 'arguments'=>'array'], -'SoapClient::__construct' => ['void', 'wsdl'=>'mixed', 'options='=>'array|null'], -'SoapClient::__doRequest' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'], -'SoapClient::__getCookies' => ['array'], -'SoapClient::__getFunctions' => ['?array'], -'SoapClient::__getLastRequest' => ['?string'], -'SoapClient::__getLastRequestHeaders' => ['?string'], -'SoapClient::__getLastResponse' => ['?string'], -'SoapClient::__getLastResponseHeaders' => ['?string'], -'SoapClient::__getTypes' => ['?array'], -'SoapClient::__setCookie' => ['', 'name'=>'string', 'value='=>'string'], -'SoapClient::__setLocation' => ['string', 'new_location='=>'string'], -'SoapClient::__setSoapHeaders' => ['bool', 'soapheaders='=>''], -'SoapClient::__soapCall' => ['', 'function_name'=>'string', 'arguments'=>'array', 'options='=>'array', 'input_headers='=>'SoapHeader|array', '&w_output_headers='=>'array'], -'SoapClient::SoapClient' => ['object', 'wsdl'=>'mixed', 'options='=>'array|null'], -'SoapFault::__clone' => ['void'], -'SoapFault::__construct' => ['void', 'code'=>'array|string|null', 'string'=>'string', 'actor='=>'?string', 'details='=>'?mixed', 'name='=>'?string', 'headerFault='=>'?mixed'], -'SoapFault::__toString' => ['string'], -'SoapFault::__wakeup' => ['void'], -'SoapFault::getCode' => ['int'], -'SoapFault::getFile' => ['string'], -'SoapFault::getLine' => ['int'], -'SoapFault::getMessage' => ['string'], -'SoapFault::getPrevious' => ['?Exception|?Throwable'], -'SoapFault::getTrace' => ['list\',args?:array}>'], -'SoapFault::getTraceAsString' => ['string'], -'SoapFault::SoapFault' => ['object', 'faultcode'=>'string', 'faultstring'=>'string', 'faultactor='=>'?string', 'detail='=>'?mixed', 'faultname='=>'?string', 'headerfault='=>'?mixed'], -'SoapHeader::__construct' => ['void', 'namespace'=>'string', 'name'=>'string', 'data='=>'mixed', 'mustunderstand='=>'bool', 'actor='=>'string'], -'SoapHeader::SoapHeader' => ['object', 'namespace'=>'string', 'name'=>'string', 'data='=>'mixed', 'mustunderstand='=>'bool', 'actor='=>'string'], -'SoapParam::__construct' => ['void', 'data'=>'mixed', 'name'=>'string'], -'SoapParam::SoapParam' => ['object', 'data'=>'mixed', 'name'=>'string'], -'SoapServer::__construct' => ['void', 'wsdl'=>'?string', 'options='=>'array'], -'SoapServer::addFunction' => ['void', 'functions'=>'mixed'], -'SoapServer::addSoapHeader' => ['void', 'object'=>'SoapHeader'], -'SoapServer::fault' => ['void', 'code'=>'string', 'string'=>'string', 'actor='=>'string', 'details='=>'string', 'name='=>'string'], -'SoapServer::getFunctions' => ['array'], -'SoapServer::handle' => ['void', 'soap_request='=>'string'], -'SoapServer::setClass' => ['void', 'class_name'=>'string', '...args='=>'mixed'], -'SoapServer::setObject' => ['void', 'object'=>'object'], -'SoapServer::setPersistence' => ['void', 'mode'=>'int'], -'SoapServer::SoapServer' => ['object', 'wsdl'=>'?string', 'options='=>'array'], -'SoapVar::__construct' => ['void', 'data'=>'mixed', 'encoding'=>'int', 'type_name='=>'string|null', 'type_namespace='=>'string|null', 'node_name='=>'string|null', 'node_namespace='=>'string|null'], -'SoapVar::SoapVar' => ['object', 'data'=>'mixed', 'encoding'=>'int', 'type_name='=>'string|null', 'type_namespace='=>'string|null', 'node_name='=>'string|null', 'node_namespace='=>'string|null'], -'socket_accept' => ['Socket|false', 'socket'=>'Socket'], -'socket_addrinfo_bind' => ['Socket|false', 'address'=>'AddressInfo'], -'socket_addrinfo_connect' => ['Socket|false', 'address'=>'AddressInfo'], -'socket_addrinfo_explain' => ['array', 'address'=>'AddressInfo'], -'socket_addrinfo_lookup' => ['false|AddressInfo[]', 'host'=>'string', 'service='=>'?string', 'hints='=>'array'], -'socket_bind' => ['bool', 'socket'=>'Socket', 'address'=>'string', 'port='=>'int'], -'socket_clear_error' => ['void', 'socket='=>'?Socket'], -'socket_close' => ['void', 'socket'=>'Socket'], -'socket_cmsg_space' => ['?int', 'level'=>'int', 'type'=>'int', 'num='=>'int'], -'socket_connect' => ['bool', 'socket'=>'Socket', 'address'=>'string', 'port='=>'?int'], -'socket_create' => ['Socket|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], -'socket_create_listen' => ['Socket|false', 'port'=>'int', 'backlog='=>'int'], -'socket_create_pair' => ['bool', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int', '&w_pair'=>'Socket[]'], -'socket_export_stream' => ['resource|false', 'socket'=>'Socket'], -'socket_get_option' => ['array|int|false', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int'], -'socket_get_status' => ['array', 'stream'=>'Socket'], -'socket_getopt' => ['array|int|false', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int'], -'socket_getpeername' => ['bool', 'socket'=>'Socket', '&w_address'=>'string', '&w_port='=>'int'], -'socket_getsockname' => ['bool', 'socket'=>'Socket', '&w_address'=>'string', '&w_port='=>'int'], -'socket_import_stream' => ['Socket|false', 'stream'=>'resource'], -'socket_last_error' => ['int', 'socket='=>'?Socket'], -'socket_listen' => ['bool', 'socket'=>'Socket', 'backlog='=>'int'], -'socket_read' => ['string|false', 'socket'=>'Socket', 'length'=>'int', 'mode='=>'int'], -'socket_recv' => ['int|false', 'socket'=>'Socket', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int'], -'socket_recvfrom' => ['int|false', 'socket'=>'Socket', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int', '&w_address'=>'string', '&w_port='=>'int'], -'socket_recvmsg' => ['int|false', 'socket'=>'Socket', '&w_message'=>'array', 'flags='=>'int'], -'socket_select' => ['int|false', '&rw_read'=>'Socket[]|null', '&rw_write'=>'Socket[]|null', '&rw_except'=>'Socket[]|null', 'seconds'=>'int|null', 'microseconds='=>'int'], -'socket_send' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length'=>'int', 'flags'=>'int'], -'socket_sendmsg' => ['int|false', 'socket'=>'Socket', 'message'=>'array', 'flags='=>'int'], -'socket_sendto' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length'=>'int', 'flags'=>'int', 'address'=>'string', 'port='=>'?int'], -'socket_set_block' => ['bool', 'socket'=>'Socket'], -'socket_set_blocking' => ['bool', 'stream'=>'Socket', 'enable'=>'bool'], -'socket_set_nonblock' => ['bool', 'socket'=>'Socket'], -'socket_set_option' => ['bool', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], -'socket_set_timeout' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], -'socket_setopt' => ['bool', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], -'socket_shutdown' => ['bool', 'socket'=>'Socket', 'mode='=>'int'], -'socket_strerror' => ['string', 'error_code'=>'int'], -'socket_write' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length='=>'int|null'], -'socket_wsaprotocol_info_export' => ['string|false', 'socket'=>'Socket', 'process_id'=>'int'], -'socket_wsaprotocol_info_import' => ['Socket|false', 'info_id'=>'string'], -'socket_wsaprotocol_info_release' => ['bool', 'info_id'=>'string'], -'sodium_add' => ['void', '&rw_string1'=>'string', 'string2'=>'string'], -'sodium_base642bin' => ['string', 'string'=>'string', 'id'=>'int', 'ignore='=>'string'], -'sodium_bin2base64' => ['string', 'string'=>'string', 'id'=>'int'], -'sodium_bin2hex' => ['string', 'string'=>'string'], -'sodium_compare' => ['int', 'string1'=>'string', 'string2'=>'string'], -'sodium_crypto_aead_aes256gcm_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_aes256gcm_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_aes256gcm_is_available' => ['bool'], -'sodium_crypto_aead_aes256gcm_keygen' => ['non-empty-string'], -'sodium_crypto_aead_chacha20poly1305_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_chacha20poly1305_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_chacha20poly1305_ietf_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_chacha20poly1305_ietf_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_chacha20poly1305_ietf_keygen' => ['non-empty-string'], -'sodium_crypto_aead_chacha20poly1305_keygen' => ['non-empty-string'], -'sodium_crypto_aead_xchacha20poly1305_ietf_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_xchacha20poly1305_ietf_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_aead_xchacha20poly1305_ietf_keygen' => ['non-empty-string'], -'sodium_crypto_auth' => ['string', 'message'=>'string', 'key'=>'string'], -'sodium_crypto_auth_keygen' => ['non-empty-string'], -'sodium_crypto_auth_verify' => ['bool', 'mac'=>'string', 'message'=>'string', 'key'=>'string'], -'sodium_crypto_box' => ['string', 'message'=>'string', 'nonce'=>'string', 'key_pair'=>'string'], -'sodium_crypto_box_keypair' => ['string'], -'sodium_crypto_box_keypair_from_secretkey_and_publickey' => ['string', 'secret_key'=>'string', 'public_key'=>'string'], -'sodium_crypto_box_open' => ['string|false', 'ciphertext'=>'string', 'nonce'=>'string', 'key_pair'=>'string'], -'sodium_crypto_box_publickey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_box_publickey_from_secretkey' => ['string', 'secret_key'=>'string'], -'sodium_crypto_box_seal' => ['string', 'message'=>'string', 'public_key'=>'string'], -'sodium_crypto_box_seal_open' => ['string|false', 'ciphertext'=>'string', 'key_pair'=>'string'], -'sodium_crypto_box_secretkey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_box_seed_keypair' => ['string', 'seed'=>'string'], -'sodium_crypto_generichash' => ['string', 'message'=>'string', 'key='=>'string', 'length='=>'int'], -'sodium_crypto_generichash_final' => ['string', '&state'=>'string', 'length='=>'int'], -'sodium_crypto_generichash_init' => ['string', 'key='=>'string', 'length='=>'int'], -'sodium_crypto_generichash_keygen' => ['non-empty-string'], -'sodium_crypto_generichash_update' => ['true', '&rw_state'=>'string', 'message'=>'string'], -'sodium_crypto_kdf_derive_from_key' => ['string', 'subkey_length'=>'int', 'subkey_id'=>'int', 'context'=>'string', 'key'=>'string'], -'sodium_crypto_kdf_keygen' => ['non-empty-string'], -'sodium_crypto_kx_client_session_keys' => ['array', 'client_key_pair'=>'string', 'server_key'=>'string'], -'sodium_crypto_kx_keypair' => ['string'], -'sodium_crypto_kx_publickey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_kx_secretkey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_kx_seed_keypair' => ['string', 'seed'=>'string'], -'sodium_crypto_kx_server_session_keys' => ['array', 'server_key_pair'=>'string', 'client_key'=>'string'], -'sodium_crypto_pwhash' => ['string', 'length'=>'int', 'password'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int', 'algo='=>'int'], -'sodium_crypto_pwhash_scryptsalsa208sha256' => ['string', 'length'=>'int', 'password'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], -'sodium_crypto_pwhash_scryptsalsa208sha256_str' => ['string', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], -'sodium_crypto_pwhash_scryptsalsa208sha256_str_verify' => ['bool', 'hash'=>'string', 'password'=>'string'], -'sodium_crypto_pwhash_str' => ['string', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], -'sodium_crypto_pwhash_str_needs_rehash' => ['bool', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], -'sodium_crypto_pwhash_str_verify' => ['bool', 'hash'=>'string', 'password'=>'string'], -'sodium_crypto_scalarmult' => ['string', 'n'=>'string', 'p'=>'string'], -'sodium_crypto_scalarmult_base' => ['string', 'secret_key'=>'string'], -'sodium_crypto_secretbox' => ['string', 'message'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_secretbox_keygen' => ['non-empty-string'], -'sodium_crypto_secretbox_open' => ['string|false', 'ciphertext'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_secretstream_xchacha20poly1305_init_pull' => ['string', 'header'=>'string', 'key'=>'string'], -'sodium_crypto_secretstream_xchacha20poly1305_init_push' => ['array', 'key'=>'string'], -'sodium_crypto_secretstream_xchacha20poly1305_keygen' => ['non-empty-string'], -'sodium_crypto_secretstream_xchacha20poly1305_pull' => ['array|false', '&r_state'=>'string', 'ciphertext'=>'string', 'additional_data='=>'string'], -'sodium_crypto_secretstream_xchacha20poly1305_push' => ['string', '&w_state'=>'string', 'message'=>'string', 'additional_data='=>'string', 'tag='=>'int'], -'sodium_crypto_secretstream_xchacha20poly1305_rekey' => ['void', '&w_state'=>'string'], -'sodium_crypto_shorthash' => ['string', 'message'=>'string', 'key'=>'string'], -'sodium_crypto_shorthash_keygen' => ['non-empty-string'], -'sodium_crypto_sign' => ['string', 'message'=>'string', 'secret_key'=>'string'], -'sodium_crypto_sign_detached' => ['string', 'message'=>'string', 'secret_key'=>'string'], -'sodium_crypto_sign_ed25519_pk_to_curve25519' => ['string', 'public_key'=>'string'], -'sodium_crypto_sign_ed25519_sk_to_curve25519' => ['string', 'secret_key'=>'string'], -'sodium_crypto_sign_keypair' => ['string'], -'sodium_crypto_sign_keypair_from_secretkey_and_publickey' => ['string', 'secret_key'=>'string', 'public_key'=>'string'], -'sodium_crypto_sign_open' => ['string|false', 'signed_message'=>'string', 'public_key'=>'string'], -'sodium_crypto_sign_publickey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_sign_publickey_from_secretkey' => ['string', 'secret_key'=>'string'], -'sodium_crypto_sign_secretkey' => ['string', 'key_pair'=>'string'], -'sodium_crypto_sign_seed_keypair' => ['string', 'seed'=>'string'], -'sodium_crypto_sign_verify_detached' => ['bool', 'signature'=>'string', 'message'=>'string', 'public_key'=>'string'], -'sodium_crypto_stream' => ['string', 'length'=>'int', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_stream_keygen' => ['non-empty-string'], -'sodium_crypto_stream_xor' => ['string', 'message'=>'string', 'nonce'=>'string', 'key'=>'string'], -'sodium_crypto_stream_xchacha20' => ['non-empty-string', 'length'=>'positive-int', 'nonce'=>'non-empty-string', 'key'=>'non-empty-string'], -'sodium_crypto_stream_xchacha20_keygen' => ['non-empty-string'], -'sodium_crypto_stream_xchacha20_xor' => ['string', 'message'=>'string', 'nonce'=>'non-empty-string', 'key'=>'non-empty-string'], -'sodium_crypto_stream_xchacha20_xor_ic' => ['string', 'message'=>'string', 'nonce'=>'non-empty-string', 'counter'=>'int', 'key'=>'non-empty-string'], -'sodium_hex2bin' => ['string', 'string'=>'string', 'ignore='=>'string'], -'sodium_increment' => ['void', '&rw_string'=>'string'], -'sodium_memcmp' => ['int', 'string1'=>'string', 'string2'=>'string'], -'sodium_memzero' => ['void', '&w_string'=>'string'], -'sodium_pad' => ['string', 'string'=>'string', 'block_size'=>'int'], -'sodium_unpad' => ['string', 'string'=>'string', 'block_size'=>'int'], -'solid_fetch_prev' => ['bool', 'result_id'=>''], -'solr_get_version' => ['string|false'], -'SolrClient::__construct' => ['void', 'clientOptions'=>'array'], -'SolrClient::__destruct' => ['void'], -'SolrClient::addDocument' => ['SolrUpdateResponse', 'doc'=>'SolrInputDocument', 'allowdups='=>'bool', 'commitwithin='=>'int'], -'SolrClient::addDocuments' => ['SolrUpdateResponse', 'docs'=>'array', 'allowdups='=>'bool', 'commitwithin='=>'int'], -'SolrClient::commit' => ['SolrUpdateResponse', 'maxsegments='=>'int', 'waitflush='=>'bool', 'waitsearcher='=>'bool'], -'SolrClient::deleteById' => ['SolrUpdateResponse', 'id'=>'string'], -'SolrClient::deleteByIds' => ['SolrUpdateResponse', 'ids'=>'array'], -'SolrClient::deleteByQueries' => ['SolrUpdateResponse', 'queries'=>'array'], -'SolrClient::deleteByQuery' => ['SolrUpdateResponse', 'query'=>'string'], -'SolrClient::getById' => ['SolrQueryResponse', 'id'=>'string'], -'SolrClient::getByIds' => ['SolrQueryResponse', 'ids'=>'array'], -'SolrClient::getDebug' => ['string'], -'SolrClient::getOptions' => ['array'], -'SolrClient::optimize' => ['SolrUpdateResponse', 'maxsegments='=>'int', 'waitflush='=>'bool', 'waitsearcher='=>'bool'], -'SolrClient::ping' => ['SolrPingResponse'], -'SolrClient::query' => ['SolrQueryResponse', 'query'=>'SolrParams'], -'SolrClient::request' => ['SolrUpdateResponse', 'raw_request'=>'string'], -'SolrClient::rollback' => ['SolrUpdateResponse'], -'SolrClient::setResponseWriter' => ['void', 'responsewriter'=>'string'], -'SolrClient::setServlet' => ['bool', 'type'=>'int', 'value'=>'string'], -'SolrClient::system' => ['SolrGenericResponse'], -'SolrClient::threads' => ['SolrGenericResponse'], -'SolrClientException::__clone' => ['void'], -'SolrClientException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'SolrClientException::__toString' => ['string'], -'SolrClientException::__wakeup' => ['void'], -'SolrClientException::getCode' => ['int'], -'SolrClientException::getFile' => ['string'], -'SolrClientException::getInternalInfo' => ['array'], -'SolrClientException::getLine' => ['int'], -'SolrClientException::getMessage' => ['string'], -'SolrClientException::getPrevious' => ['?Exception|?Throwable'], -'SolrClientException::getTrace' => ['list\',args?:array}>'], -'SolrClientException::getTraceAsString' => ['string'], -'SolrCollapseFunction::__construct' => ['void', 'field'=>'string'], -'SolrCollapseFunction::__toString' => ['string'], -'SolrCollapseFunction::getField' => ['string'], -'SolrCollapseFunction::getHint' => ['string'], -'SolrCollapseFunction::getMax' => ['string'], -'SolrCollapseFunction::getMin' => ['string'], -'SolrCollapseFunction::getNullPolicy' => ['string'], -'SolrCollapseFunction::getSize' => ['int'], -'SolrCollapseFunction::setField' => ['SolrCollapseFunction', 'fieldName'=>'string'], -'SolrCollapseFunction::setHint' => ['SolrCollapseFunction', 'hint'=>'string'], -'SolrCollapseFunction::setMax' => ['SolrCollapseFunction', 'max'=>'string'], -'SolrCollapseFunction::setMin' => ['SolrCollapseFunction', 'min'=>'string'], -'SolrCollapseFunction::setNullPolicy' => ['SolrCollapseFunction', 'nullPolicy'=>'string'], -'SolrCollapseFunction::setSize' => ['SolrCollapseFunction', 'size'=>'int'], -'SolrDisMaxQuery::__construct' => ['void', 'q='=>'string'], -'SolrDisMaxQuery::__destruct' => ['void'], -'SolrDisMaxQuery::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrDisMaxQuery::addBigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], -'SolrDisMaxQuery::addBoostQuery' => ['SolrDisMaxQuery', 'field'=>'string', 'value'=>'string', 'boost='=>'string'], -'SolrDisMaxQuery::addExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrDisMaxQuery::addExpandSortField' => ['SolrQuery', 'field'=>'string', 'order'=>'string'], -'SolrDisMaxQuery::addFacetDateField' => ['SolrQuery', 'dateField'=>'string'], -'SolrDisMaxQuery::addFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::addFacetField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addFacetQuery' => ['SolrQuery', 'facetQuery'=>'string'], -'SolrDisMaxQuery::addField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrDisMaxQuery::addGroupField' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::addGroupFunction' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::addGroupQuery' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::addGroupSortField' => ['SolrQuery', 'field'=>'string', 'order'=>'int'], -'SolrDisMaxQuery::addHighlightField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addMltField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addMltQueryField' => ['SolrQuery', 'field'=>'string', 'boost'=>'float'], -'SolrDisMaxQuery::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrDisMaxQuery::addPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], -'SolrDisMaxQuery::addQueryField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost='=>'string'], -'SolrDisMaxQuery::addSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], -'SolrDisMaxQuery::addStatsFacet' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addStatsField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::addTrigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], -'SolrDisMaxQuery::addUserField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::collapse' => ['SolrQuery', 'collapseFunction'=>'SolrCollapseFunction'], -'SolrDisMaxQuery::get' => ['mixed', 'param_name'=>'string'], -'SolrDisMaxQuery::getExpand' => ['bool'], -'SolrDisMaxQuery::getExpandFilterQueries' => ['array'], -'SolrDisMaxQuery::getExpandQuery' => ['array'], -'SolrDisMaxQuery::getExpandRows' => ['int'], -'SolrDisMaxQuery::getExpandSortFields' => ['array'], -'SolrDisMaxQuery::getFacet' => ['bool'], -'SolrDisMaxQuery::getFacetDateEnd' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetDateFields' => ['array'], -'SolrDisMaxQuery::getFacetDateGap' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetDateHardEnd' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetDateOther' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetDateStart' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetFields' => ['array'], -'SolrDisMaxQuery::getFacetLimit' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetMethod' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetMinCount' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetMissing' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetOffset' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetPrefix' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getFacetQueries' => ['string'], -'SolrDisMaxQuery::getFacetSort' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getFields' => ['string'], -'SolrDisMaxQuery::getFilterQueries' => ['string'], -'SolrDisMaxQuery::getGroup' => ['bool'], -'SolrDisMaxQuery::getGroupCachePercent' => ['int'], -'SolrDisMaxQuery::getGroupFacet' => ['bool'], -'SolrDisMaxQuery::getGroupFields' => ['array'], -'SolrDisMaxQuery::getGroupFormat' => ['string'], -'SolrDisMaxQuery::getGroupFunctions' => ['array'], -'SolrDisMaxQuery::getGroupLimit' => ['int'], -'SolrDisMaxQuery::getGroupMain' => ['bool'], -'SolrDisMaxQuery::getGroupNGroups' => ['bool'], -'SolrDisMaxQuery::getGroupOffset' => ['bool'], -'SolrDisMaxQuery::getGroupQueries' => ['array'], -'SolrDisMaxQuery::getGroupSortFields' => ['array'], -'SolrDisMaxQuery::getGroupTruncate' => ['bool'], -'SolrDisMaxQuery::getHighlight' => ['bool'], -'SolrDisMaxQuery::getHighlightAlternateField' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightFields' => ['array'], -'SolrDisMaxQuery::getHighlightFormatter' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightFragmenter' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightFragsize' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => ['bool'], -'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => ['int'], -'SolrDisMaxQuery::getHighlightMergeContiguous' => ['bool', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => ['int'], -'SolrDisMaxQuery::getHighlightRegexPattern' => ['string'], -'SolrDisMaxQuery::getHighlightRegexSlop' => ['float'], -'SolrDisMaxQuery::getHighlightRequireFieldMatch' => ['bool'], -'SolrDisMaxQuery::getHighlightSimplePost' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightSimplePre' => ['string', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightSnippets' => ['int', 'field_override'=>'string'], -'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => ['bool'], -'SolrDisMaxQuery::getMlt' => ['bool'], -'SolrDisMaxQuery::getMltBoost' => ['bool'], -'SolrDisMaxQuery::getMltCount' => ['int'], -'SolrDisMaxQuery::getMltFields' => ['array'], -'SolrDisMaxQuery::getMltMaxNumQueryTerms' => ['int'], -'SolrDisMaxQuery::getMltMaxNumTokens' => ['int'], -'SolrDisMaxQuery::getMltMaxWordLength' => ['int'], -'SolrDisMaxQuery::getMltMinDocFrequency' => ['int'], -'SolrDisMaxQuery::getMltMinTermFrequency' => ['int'], -'SolrDisMaxQuery::getMltMinWordLength' => ['int'], -'SolrDisMaxQuery::getMltQueryFields' => ['array'], -'SolrDisMaxQuery::getParam' => ['mixed', 'param_name'=>'string'], -'SolrDisMaxQuery::getParams' => ['array'], -'SolrDisMaxQuery::getPreparedParams' => ['array'], -'SolrDisMaxQuery::getQuery' => ['string'], -'SolrDisMaxQuery::getRows' => ['int'], -'SolrDisMaxQuery::getSortFields' => ['array'], -'SolrDisMaxQuery::getStart' => ['int'], -'SolrDisMaxQuery::getStats' => ['bool'], -'SolrDisMaxQuery::getStatsFacets' => ['array'], -'SolrDisMaxQuery::getStatsFields' => ['array'], -'SolrDisMaxQuery::getTerms' => ['bool'], -'SolrDisMaxQuery::getTermsField' => ['string'], -'SolrDisMaxQuery::getTermsIncludeLowerBound' => ['bool'], -'SolrDisMaxQuery::getTermsIncludeUpperBound' => ['bool'], -'SolrDisMaxQuery::getTermsLimit' => ['int'], -'SolrDisMaxQuery::getTermsLowerBound' => ['string'], -'SolrDisMaxQuery::getTermsMaxCount' => ['int'], -'SolrDisMaxQuery::getTermsMinCount' => ['int'], -'SolrDisMaxQuery::getTermsPrefix' => ['string'], -'SolrDisMaxQuery::getTermsReturnRaw' => ['bool'], -'SolrDisMaxQuery::getTermsSort' => ['int'], -'SolrDisMaxQuery::getTermsUpperBound' => ['string'], -'SolrDisMaxQuery::getTimeAllowed' => ['int'], -'SolrDisMaxQuery::removeBigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeBoostQuery' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrDisMaxQuery::removeExpandSortField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeFacetDateField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::removeFacetField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeFacetQuery' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::removeField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrDisMaxQuery::removeHighlightField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeMltField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeMltQueryField' => ['SolrQuery', 'queryField'=>'string'], -'SolrDisMaxQuery::removePhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeQueryField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeSortField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeStatsFacet' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::removeStatsField' => ['SolrQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeTrigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::removeUserField' => ['SolrDisMaxQuery', 'field'=>'string'], -'SolrDisMaxQuery::serialize' => ['string'], -'SolrDisMaxQuery::set' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrDisMaxQuery::setBigramPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], -'SolrDisMaxQuery::setBigramPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], -'SolrDisMaxQuery::setBoostFunction' => ['SolrDisMaxQuery', 'function'=>'string'], -'SolrDisMaxQuery::setBoostQuery' => ['SolrDisMaxQuery', 'q'=>'string'], -'SolrDisMaxQuery::setEchoHandler' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setEchoParams' => ['SolrQuery', 'type'=>'string'], -'SolrDisMaxQuery::setExpand' => ['SolrQuery', 'value'=>'bool'], -'SolrDisMaxQuery::setExpandQuery' => ['SolrQuery', 'q'=>'string'], -'SolrDisMaxQuery::setExpandRows' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setExplainOther' => ['SolrQuery', 'query'=>'string'], -'SolrDisMaxQuery::setFacet' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setFacetDateEnd' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetDateGap' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetDateHardEnd' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetDateStart' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => ['SolrQuery', 'frequency'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetLimit' => ['SolrQuery', 'limit'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetMethod' => ['SolrQuery', 'method'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetMinCount' => ['SolrQuery', 'mincount'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetMissing' => ['SolrQuery', 'flag'=>'bool', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetOffset' => ['SolrQuery', 'offset'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetPrefix' => ['SolrQuery', 'prefix'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setFacetSort' => ['SolrQuery', 'facetSort'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setGroup' => ['SolrQuery', 'value'=>'bool'], -'SolrDisMaxQuery::setGroupCachePercent' => ['SolrQuery', 'percent'=>'int'], -'SolrDisMaxQuery::setGroupFacet' => ['SolrQuery', 'value'=>'bool'], -'SolrDisMaxQuery::setGroupFormat' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::setGroupLimit' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setGroupMain' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::setGroupNGroups' => ['SolrQuery', 'value'=>'bool'], -'SolrDisMaxQuery::setGroupOffset' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setGroupTruncate' => ['SolrQuery', 'value'=>'bool'], -'SolrDisMaxQuery::setHighlight' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setHighlightAlternateField' => ['SolrQuery', 'field'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightFormatter' => ['SolrQuery', 'formatter'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightFragmenter' => ['SolrQuery', 'fragmenter'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightFragsize' => ['SolrQuery', 'size'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => ['SolrQuery', 'fieldLength'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setHighlightMergeContiguous' => ['SolrQuery', 'flag'=>'bool', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => ['SolrQuery', 'maxAnalyzedChars'=>'int'], -'SolrDisMaxQuery::setHighlightRegexPattern' => ['SolrQuery', 'value'=>'string'], -'SolrDisMaxQuery::setHighlightRegexSlop' => ['SolrQuery', 'factor'=>'float'], -'SolrDisMaxQuery::setHighlightRequireFieldMatch' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setHighlightSimplePost' => ['SolrQuery', 'simplePost'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightSimplePre' => ['SolrQuery', 'simplePre'=>'string', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightSnippets' => ['SolrQuery', 'value'=>'int', 'field_override'=>'string'], -'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setMinimumMatch' => ['SolrDisMaxQuery', 'value'=>'string'], -'SolrDisMaxQuery::setMlt' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setMltBoost' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setMltCount' => ['SolrQuery', 'count'=>'int'], -'SolrDisMaxQuery::setMltMaxNumQueryTerms' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setMltMaxNumTokens' => ['SolrQuery', 'value'=>'int'], -'SolrDisMaxQuery::setMltMaxWordLength' => ['SolrQuery', 'maxWordLength'=>'int'], -'SolrDisMaxQuery::setMltMinDocFrequency' => ['SolrQuery', 'minDocFrequency'=>'int'], -'SolrDisMaxQuery::setMltMinTermFrequency' => ['SolrQuery', 'minTermFrequency'=>'int'], -'SolrDisMaxQuery::setMltMinWordLength' => ['SolrQuery', 'minWordLength'=>'int'], -'SolrDisMaxQuery::setOmitHeader' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrDisMaxQuery::setPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], -'SolrDisMaxQuery::setPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], -'SolrDisMaxQuery::setQuery' => ['SolrQuery', 'query'=>'string'], -'SolrDisMaxQuery::setQueryAlt' => ['SolrDisMaxQuery', 'q'=>'string'], -'SolrDisMaxQuery::setQueryPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], -'SolrDisMaxQuery::setRows' => ['SolrQuery', 'rows'=>'int'], -'SolrDisMaxQuery::setShowDebugInfo' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setStart' => ['SolrQuery', 'start'=>'int'], -'SolrDisMaxQuery::setStats' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setTerms' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setTermsField' => ['SolrQuery', 'fieldname'=>'string'], -'SolrDisMaxQuery::setTermsIncludeLowerBound' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setTermsIncludeUpperBound' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setTermsLimit' => ['SolrQuery', 'limit'=>'int'], -'SolrDisMaxQuery::setTermsLowerBound' => ['SolrQuery', 'lowerBound'=>'string'], -'SolrDisMaxQuery::setTermsMaxCount' => ['SolrQuery', 'frequency'=>'int'], -'SolrDisMaxQuery::setTermsMinCount' => ['SolrQuery', 'frequency'=>'int'], -'SolrDisMaxQuery::setTermsPrefix' => ['SolrQuery', 'prefix'=>'string'], -'SolrDisMaxQuery::setTermsReturnRaw' => ['SolrQuery', 'flag'=>'bool'], -'SolrDisMaxQuery::setTermsSort' => ['SolrQuery', 'sortType'=>'int'], -'SolrDisMaxQuery::setTermsUpperBound' => ['SolrQuery', 'upperBound'=>'string'], -'SolrDisMaxQuery::setTieBreaker' => ['SolrDisMaxQuery', 'tieBreaker'=>'string'], -'SolrDisMaxQuery::setTimeAllowed' => ['SolrQuery', 'timeAllowed'=>'int'], -'SolrDisMaxQuery::setTrigramPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], -'SolrDisMaxQuery::setTrigramPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], -'SolrDisMaxQuery::setUserFields' => ['SolrDisMaxQuery', 'fields'=>'string'], -'SolrDisMaxQuery::toString' => ['string', 'url_encode='=>'bool'], -'SolrDisMaxQuery::unserialize' => ['void', 'serialized'=>'string'], -'SolrDisMaxQuery::useDisMaxQueryParser' => ['SolrDisMaxQuery'], -'SolrDisMaxQuery::useEDisMaxQueryParser' => ['SolrDisMaxQuery'], -'SolrDocument::__clone' => ['void'], -'SolrDocument::__construct' => ['void'], -'SolrDocument::__destruct' => ['void'], -'SolrDocument::__get' => ['SolrDocumentField', 'fieldname'=>'string'], -'SolrDocument::__isset' => ['bool', 'fieldname'=>'string'], -'SolrDocument::__set' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string'], -'SolrDocument::__unset' => ['bool', 'fieldname'=>'string'], -'SolrDocument::addField' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string'], -'SolrDocument::clear' => ['bool'], -'SolrDocument::current' => ['SolrDocumentField'], -'SolrDocument::deleteField' => ['bool', 'fieldname'=>'string'], -'SolrDocument::fieldExists' => ['bool', 'fieldname'=>'string'], -'SolrDocument::getChildDocuments' => ['SolrInputDocument[]'], -'SolrDocument::getChildDocumentsCount' => ['int'], -'SolrDocument::getField' => ['SolrDocumentField|false', 'fieldname'=>'string'], -'SolrDocument::getFieldCount' => ['int|false'], -'SolrDocument::getFieldNames' => ['array|false'], -'SolrDocument::getInputDocument' => ['SolrInputDocument'], -'SolrDocument::hasChildDocuments' => ['bool'], -'SolrDocument::key' => ['string'], -'SolrDocument::merge' => ['bool', 'sourcedoc'=>'solrdocument', 'overwrite='=>'bool'], -'SolrDocument::next' => ['void'], -'SolrDocument::offsetExists' => ['bool', 'fieldname'=>'string'], -'SolrDocument::offsetGet' => ['SolrDocumentField', 'fieldname'=>'string'], -'SolrDocument::offsetSet' => ['void', 'fieldname'=>'string', 'fieldvalue'=>'string'], -'SolrDocument::offsetUnset' => ['void', 'fieldname'=>'string'], -'SolrDocument::reset' => ['bool'], -'SolrDocument::rewind' => ['void'], -'SolrDocument::serialize' => ['string'], -'SolrDocument::sort' => ['bool', 'sortorderby'=>'int', 'sortdirection='=>'int'], -'SolrDocument::toArray' => ['array'], -'SolrDocument::unserialize' => ['void', 'serialized'=>'string'], -'SolrDocument::valid' => ['bool'], -'SolrDocumentField::__construct' => ['void'], -'SolrDocumentField::__destruct' => ['void'], -'SolrException::__clone' => ['void'], -'SolrException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'SolrException::__toString' => ['string'], -'SolrException::__wakeup' => ['void'], -'SolrException::getCode' => ['int'], -'SolrException::getFile' => ['string'], -'SolrException::getInternalInfo' => ['array'], -'SolrException::getLine' => ['int'], -'SolrException::getMessage' => ['string'], -'SolrException::getPrevious' => ['Exception|Throwable'], -'SolrException::getTrace' => ['list\',args?:array}>'], -'SolrException::getTraceAsString' => ['string'], -'SolrGenericResponse::__construct' => ['void'], -'SolrGenericResponse::__destruct' => ['void'], -'SolrGenericResponse::getDigestedResponse' => ['string'], -'SolrGenericResponse::getHttpStatus' => ['int'], -'SolrGenericResponse::getHttpStatusMessage' => ['string'], -'SolrGenericResponse::getRawRequest' => ['string'], -'SolrGenericResponse::getRawRequestHeaders' => ['string'], -'SolrGenericResponse::getRawResponse' => ['string'], -'SolrGenericResponse::getRawResponseHeaders' => ['string'], -'SolrGenericResponse::getRequestUrl' => ['string'], -'SolrGenericResponse::getResponse' => ['SolrObject'], -'SolrGenericResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], -'SolrGenericResponse::success' => ['bool'], -'SolrIllegalArgumentException::__clone' => ['void'], -'SolrIllegalArgumentException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'SolrIllegalArgumentException::__toString' => ['string'], -'SolrIllegalArgumentException::__wakeup' => ['void'], -'SolrIllegalArgumentException::getCode' => ['int'], -'SolrIllegalArgumentException::getFile' => ['string'], -'SolrIllegalArgumentException::getInternalInfo' => ['array'], -'SolrIllegalArgumentException::getLine' => ['int'], -'SolrIllegalArgumentException::getMessage' => ['string'], -'SolrIllegalArgumentException::getPrevious' => ['Exception|Throwable'], -'SolrIllegalArgumentException::getTrace' => ['list\',args?:array}>'], -'SolrIllegalArgumentException::getTraceAsString' => ['string'], -'SolrIllegalOperationException::__clone' => ['void'], -'SolrIllegalOperationException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'SolrIllegalOperationException::__toString' => ['string'], -'SolrIllegalOperationException::__wakeup' => ['void'], -'SolrIllegalOperationException::getCode' => ['int'], -'SolrIllegalOperationException::getFile' => ['string'], -'SolrIllegalOperationException::getInternalInfo' => ['array'], -'SolrIllegalOperationException::getLine' => ['int'], -'SolrIllegalOperationException::getMessage' => ['string'], -'SolrIllegalOperationException::getPrevious' => ['Exception|Throwable'], -'SolrIllegalOperationException::getTrace' => ['list\',args?:array}>'], -'SolrIllegalOperationException::getTraceAsString' => ['string'], -'SolrInputDocument::__clone' => ['void'], -'SolrInputDocument::__construct' => ['void'], -'SolrInputDocument::__destruct' => ['void'], -'SolrInputDocument::addChildDocument' => ['void', 'child'=>'SolrInputDocument'], -'SolrInputDocument::addChildDocuments' => ['void', 'docs'=>'array'], -'SolrInputDocument::addField' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string', 'fieldboostvalue='=>'float'], -'SolrInputDocument::clear' => ['bool'], -'SolrInputDocument::deleteField' => ['bool', 'fieldname'=>'string'], -'SolrInputDocument::fieldExists' => ['bool', 'fieldname'=>'string'], -'SolrInputDocument::getBoost' => ['float|false'], -'SolrInputDocument::getChildDocuments' => ['SolrInputDocument[]'], -'SolrInputDocument::getChildDocumentsCount' => ['int'], -'SolrInputDocument::getField' => ['SolrDocumentField|false', 'fieldname'=>'string'], -'SolrInputDocument::getFieldBoost' => ['float|false', 'fieldname'=>'string'], -'SolrInputDocument::getFieldCount' => ['int|false'], -'SolrInputDocument::getFieldNames' => ['array|false'], -'SolrInputDocument::hasChildDocuments' => ['bool'], -'SolrInputDocument::merge' => ['bool', 'sourcedoc'=>'SolrInputDocument', 'overwrite='=>'bool'], -'SolrInputDocument::reset' => ['bool'], -'SolrInputDocument::setBoost' => ['bool', 'documentboostvalue'=>'float'], -'SolrInputDocument::setFieldBoost' => ['bool', 'fieldname'=>'string', 'fieldboostvalue'=>'float'], -'SolrInputDocument::sort' => ['bool', 'sortorderby'=>'int', 'sortdirection='=>'int'], -'SolrInputDocument::toArray' => ['array|false'], -'SolrModifiableParams::__construct' => ['void'], -'SolrModifiableParams::__destruct' => ['void'], -'SolrModifiableParams::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrModifiableParams::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrModifiableParams::get' => ['mixed', 'param_name'=>'string'], -'SolrModifiableParams::getParam' => ['mixed', 'param_name'=>'string'], -'SolrModifiableParams::getParams' => ['array'], -'SolrModifiableParams::getPreparedParams' => ['array'], -'SolrModifiableParams::serialize' => ['string'], -'SolrModifiableParams::set' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrModifiableParams::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrModifiableParams::toString' => ['string', 'url_encode='=>'bool'], -'SolrModifiableParams::unserialize' => ['void', 'serialized'=>'string'], -'SolrObject::__construct' => ['void'], -'SolrObject::__destruct' => ['void'], -'SolrObject::getPropertyNames' => ['array'], -'SolrObject::offsetExists' => ['bool', 'property_name'=>'string'], -'SolrObject::offsetGet' => ['SolrDocumentField', 'property_name'=>'string'], -'SolrObject::offsetSet' => ['void', 'property_name'=>'string', 'property_value'=>'string'], -'SolrObject::offsetUnset' => ['void', 'property_name'=>'string'], -'SolrParams::__construct' => ['void'], -'SolrParams::add' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], -'SolrParams::addParam' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], -'SolrParams::get' => ['mixed', 'param_name'=>'string'], -'SolrParams::getParam' => ['mixed', 'param_name='=>'string'], -'SolrParams::getParams' => ['array'], -'SolrParams::getPreparedParams' => ['array'], -'SolrParams::serialize' => ['string'], -'SolrParams::set' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], -'SolrParams::setParam' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], -'SolrParams::toString' => ['string|false', 'url_encode='=>'bool'], -'SolrParams::unserialize' => ['void', 'serialized'=>'string'], -'SolrPingResponse::__construct' => ['void'], -'SolrPingResponse::__destruct' => ['void'], -'SolrPingResponse::getDigestedResponse' => ['string'], -'SolrPingResponse::getHttpStatus' => ['int'], -'SolrPingResponse::getHttpStatusMessage' => ['string'], -'SolrPingResponse::getRawRequest' => ['string'], -'SolrPingResponse::getRawRequestHeaders' => ['string'], -'SolrPingResponse::getRawResponse' => ['string'], -'SolrPingResponse::getRawResponseHeaders' => ['string'], -'SolrPingResponse::getRequestUrl' => ['string'], -'SolrPingResponse::getResponse' => ['string'], -'SolrPingResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], -'SolrPingResponse::success' => ['bool'], -'SolrQuery::__construct' => ['void', 'q='=>'string'], -'SolrQuery::__destruct' => ['void'], -'SolrQuery::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrQuery::addExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrQuery::addExpandSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'string'], -'SolrQuery::addFacetDateField' => ['SolrQuery', 'datefield'=>'string'], -'SolrQuery::addFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], -'SolrQuery::addFacetField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::addFacetQuery' => ['SolrQuery', 'facetquery'=>'string'], -'SolrQuery::addField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::addFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrQuery::addGroupField' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::addGroupFunction' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::addGroupQuery' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::addGroupSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], -'SolrQuery::addHighlightField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::addMltField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::addMltQueryField' => ['SolrQuery', 'field'=>'string', 'boost'=>'float'], -'SolrQuery::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], -'SolrQuery::addSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], -'SolrQuery::addStatsFacet' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::addStatsField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::collapse' => ['SolrQuery', 'collapseFunction'=>'SolrCollapseFunction'], -'SolrQuery::get' => ['mixed', 'param_name'=>'string'], -'SolrQuery::getExpand' => ['bool'], -'SolrQuery::getExpandFilterQueries' => ['array'], -'SolrQuery::getExpandQuery' => ['array'], -'SolrQuery::getExpandRows' => ['int'], -'SolrQuery::getExpandSortFields' => ['array'], -'SolrQuery::getFacet' => ['?bool'], -'SolrQuery::getFacetDateEnd' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetDateFields' => ['array'], -'SolrQuery::getFacetDateGap' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetDateHardEnd' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetDateOther' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetDateStart' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetFields' => ['array'], -'SolrQuery::getFacetLimit' => ['?int', 'field_override='=>'string'], -'SolrQuery::getFacetMethod' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetMinCount' => ['?int', 'field_override='=>'string'], -'SolrQuery::getFacetMissing' => ['?bool', 'field_override='=>'string'], -'SolrQuery::getFacetOffset' => ['?int', 'field_override='=>'string'], -'SolrQuery::getFacetPrefix' => ['?string', 'field_override='=>'string'], -'SolrQuery::getFacetQueries' => ['?array'], -'SolrQuery::getFacetSort' => ['int', 'field_override='=>'string'], -'SolrQuery::getFields' => ['?array'], -'SolrQuery::getFilterQueries' => ['?array'], -'SolrQuery::getGroup' => ['bool'], -'SolrQuery::getGroupCachePercent' => ['int'], -'SolrQuery::getGroupFacet' => ['bool'], -'SolrQuery::getGroupFields' => ['array'], -'SolrQuery::getGroupFormat' => ['string'], -'SolrQuery::getGroupFunctions' => ['array'], -'SolrQuery::getGroupLimit' => ['int'], -'SolrQuery::getGroupMain' => ['bool'], -'SolrQuery::getGroupNGroups' => ['bool'], -'SolrQuery::getGroupOffset' => ['int'], -'SolrQuery::getGroupQueries' => ['array'], -'SolrQuery::getGroupSortFields' => ['array'], -'SolrQuery::getGroupTruncate' => ['bool'], -'SolrQuery::getHighlight' => ['bool'], -'SolrQuery::getHighlightAlternateField' => ['?string', 'field_override='=>'string'], -'SolrQuery::getHighlightFields' => ['?array'], -'SolrQuery::getHighlightFormatter' => ['?string', 'field_override='=>'string'], -'SolrQuery::getHighlightFragmenter' => ['?string', 'field_override='=>'string'], -'SolrQuery::getHighlightFragsize' => ['?int', 'field_override='=>'string'], -'SolrQuery::getHighlightHighlightMultiTerm' => ['?bool'], -'SolrQuery::getHighlightMaxAlternateFieldLength' => ['?int', 'field_override='=>'string'], -'SolrQuery::getHighlightMaxAnalyzedChars' => ['?int'], -'SolrQuery::getHighlightMergeContiguous' => ['?bool', 'field_override='=>'string'], -'SolrQuery::getHighlightRegexMaxAnalyzedChars' => ['?int'], -'SolrQuery::getHighlightRegexPattern' => ['?string'], -'SolrQuery::getHighlightRegexSlop' => ['?float'], -'SolrQuery::getHighlightRequireFieldMatch' => ['?bool'], -'SolrQuery::getHighlightSimplePost' => ['?string', 'field_override='=>'string'], -'SolrQuery::getHighlightSimplePre' => ['?string', 'field_override='=>'string'], -'SolrQuery::getHighlightSnippets' => ['?int', 'field_override='=>'string'], -'SolrQuery::getHighlightUsePhraseHighlighter' => ['?bool'], -'SolrQuery::getMlt' => ['?bool'], -'SolrQuery::getMltBoost' => ['?bool'], -'SolrQuery::getMltCount' => ['?int'], -'SolrQuery::getMltFields' => ['?array'], -'SolrQuery::getMltMaxNumQueryTerms' => ['?int'], -'SolrQuery::getMltMaxNumTokens' => ['?int'], -'SolrQuery::getMltMaxWordLength' => ['?int'], -'SolrQuery::getMltMinDocFrequency' => ['?int'], -'SolrQuery::getMltMinTermFrequency' => ['?int'], -'SolrQuery::getMltMinWordLength' => ['?int'], -'SolrQuery::getMltQueryFields' => ['?array'], -'SolrQuery::getParam' => ['?mixed', 'param_name'=>'string'], -'SolrQuery::getParams' => ['?array'], -'SolrQuery::getPreparedParams' => ['?array'], -'SolrQuery::getQuery' => ['?string'], -'SolrQuery::getRows' => ['?int'], -'SolrQuery::getSortFields' => ['?array'], -'SolrQuery::getStart' => ['?int'], -'SolrQuery::getStats' => ['?bool'], -'SolrQuery::getStatsFacets' => ['?array'], -'SolrQuery::getStatsFields' => ['?array'], -'SolrQuery::getTerms' => ['?bool'], -'SolrQuery::getTermsField' => ['?string'], -'SolrQuery::getTermsIncludeLowerBound' => ['?bool'], -'SolrQuery::getTermsIncludeUpperBound' => ['?bool'], -'SolrQuery::getTermsLimit' => ['?int'], -'SolrQuery::getTermsLowerBound' => ['?string'], -'SolrQuery::getTermsMaxCount' => ['?int'], -'SolrQuery::getTermsMinCount' => ['?int'], -'SolrQuery::getTermsPrefix' => ['?string'], -'SolrQuery::getTermsReturnRaw' => ['?bool'], -'SolrQuery::getTermsSort' => ['?int'], -'SolrQuery::getTermsUpperBound' => ['?string'], -'SolrQuery::getTimeAllowed' => ['?int'], -'SolrQuery::removeExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrQuery::removeExpandSortField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeFacetDateField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], -'SolrQuery::removeFacetField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeFacetQuery' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::removeField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeFilterQuery' => ['SolrQuery', 'fq'=>'string'], -'SolrQuery::removeHighlightField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeMltField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeMltQueryField' => ['SolrQuery', 'queryfield'=>'string'], -'SolrQuery::removeSortField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::removeStatsFacet' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::removeStatsField' => ['SolrQuery', 'field'=>'string'], -'SolrQuery::serialize' => ['string'], -'SolrQuery::set' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrQuery::setEchoHandler' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setEchoParams' => ['SolrQuery', 'type'=>'string'], -'SolrQuery::setExpand' => ['SolrQuery', 'value'=>'bool'], -'SolrQuery::setExpandQuery' => ['SolrQuery', 'q'=>'string'], -'SolrQuery::setExpandRows' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setExplainOther' => ['SolrQuery', 'query'=>'string'], -'SolrQuery::setFacet' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setFacetDateEnd' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], -'SolrQuery::setFacetDateGap' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], -'SolrQuery::setFacetDateHardEnd' => ['SolrQuery', 'value'=>'bool', 'field_override='=>'string'], -'SolrQuery::setFacetDateStart' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], -'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => ['SolrQuery', 'frequency'=>'int', 'field_override='=>'string'], -'SolrQuery::setFacetLimit' => ['SolrQuery', 'limit'=>'int', 'field_override='=>'string'], -'SolrQuery::setFacetMethod' => ['SolrQuery', 'method'=>'string', 'field_override='=>'string'], -'SolrQuery::setFacetMinCount' => ['SolrQuery', 'mincount'=>'int', 'field_override='=>'string'], -'SolrQuery::setFacetMissing' => ['SolrQuery', 'flag'=>'bool', 'field_override='=>'string'], -'SolrQuery::setFacetOffset' => ['SolrQuery', 'offset'=>'int', 'field_override='=>'string'], -'SolrQuery::setFacetPrefix' => ['SolrQuery', 'prefix'=>'string', 'field_override='=>'string'], -'SolrQuery::setFacetSort' => ['SolrQuery', 'facetsort'=>'int', 'field_override='=>'string'], -'SolrQuery::setGroup' => ['SolrQuery', 'value'=>'bool'], -'SolrQuery::setGroupCachePercent' => ['SolrQuery', 'percent'=>'int'], -'SolrQuery::setGroupFacet' => ['SolrQuery', 'value'=>'bool'], -'SolrQuery::setGroupFormat' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::setGroupLimit' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setGroupMain' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::setGroupNGroups' => ['SolrQuery', 'value'=>'bool'], -'SolrQuery::setGroupOffset' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setGroupTruncate' => ['SolrQuery', 'value'=>'bool'], -'SolrQuery::setHighlight' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setHighlightAlternateField' => ['SolrQuery', 'field'=>'string', 'field_override='=>'string'], -'SolrQuery::setHighlightFormatter' => ['SolrQuery', 'formatter'=>'string', 'field_override='=>'string'], -'SolrQuery::setHighlightFragmenter' => ['SolrQuery', 'fragmenter'=>'string', 'field_override='=>'string'], -'SolrQuery::setHighlightFragsize' => ['SolrQuery', 'size'=>'int', 'field_override='=>'string'], -'SolrQuery::setHighlightHighlightMultiTerm' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setHighlightMaxAlternateFieldLength' => ['SolrQuery', 'fieldlength'=>'int', 'field_override='=>'string'], -'SolrQuery::setHighlightMaxAnalyzedChars' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setHighlightMergeContiguous' => ['SolrQuery', 'flag'=>'bool', 'field_override='=>'string'], -'SolrQuery::setHighlightRegexMaxAnalyzedChars' => ['SolrQuery', 'maxanalyzedchars'=>'int'], -'SolrQuery::setHighlightRegexPattern' => ['SolrQuery', 'value'=>'string'], -'SolrQuery::setHighlightRegexSlop' => ['SolrQuery', 'factor'=>'float'], -'SolrQuery::setHighlightRequireFieldMatch' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setHighlightSimplePost' => ['SolrQuery', 'simplepost'=>'string', 'field_override='=>'string'], -'SolrQuery::setHighlightSimplePre' => ['SolrQuery', 'simplepre'=>'string', 'field_override='=>'string'], -'SolrQuery::setHighlightSnippets' => ['SolrQuery', 'value'=>'int', 'field_override='=>'string'], -'SolrQuery::setHighlightUsePhraseHighlighter' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setMlt' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setMltBoost' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setMltCount' => ['SolrQuery', 'count'=>'int'], -'SolrQuery::setMltMaxNumQueryTerms' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setMltMaxNumTokens' => ['SolrQuery', 'value'=>'int'], -'SolrQuery::setMltMaxWordLength' => ['SolrQuery', 'maxwordlength'=>'int'], -'SolrQuery::setMltMinDocFrequency' => ['SolrQuery', 'mindocfrequency'=>'int'], -'SolrQuery::setMltMinTermFrequency' => ['SolrQuery', 'mintermfrequency'=>'int'], -'SolrQuery::setMltMinWordLength' => ['SolrQuery', 'minwordlength'=>'int'], -'SolrQuery::setOmitHeader' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], -'SolrQuery::setQuery' => ['SolrQuery', 'query'=>'string'], -'SolrQuery::setRows' => ['SolrQuery', 'rows'=>'int'], -'SolrQuery::setShowDebugInfo' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setStart' => ['SolrQuery', 'start'=>'int'], -'SolrQuery::setStats' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setTerms' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setTermsField' => ['SolrQuery', 'fieldname'=>'string'], -'SolrQuery::setTermsIncludeLowerBound' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setTermsIncludeUpperBound' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setTermsLimit' => ['SolrQuery', 'limit'=>'int'], -'SolrQuery::setTermsLowerBound' => ['SolrQuery', 'lowerbound'=>'string'], -'SolrQuery::setTermsMaxCount' => ['SolrQuery', 'frequency'=>'int'], -'SolrQuery::setTermsMinCount' => ['SolrQuery', 'frequency'=>'int'], -'SolrQuery::setTermsPrefix' => ['SolrQuery', 'prefix'=>'string'], -'SolrQuery::setTermsReturnRaw' => ['SolrQuery', 'flag'=>'bool'], -'SolrQuery::setTermsSort' => ['SolrQuery', 'sorttype'=>'int'], -'SolrQuery::setTermsUpperBound' => ['SolrQuery', 'upperbound'=>'string'], -'SolrQuery::setTimeAllowed' => ['SolrQuery', 'timeallowed'=>'int'], -'SolrQuery::toString' => ['string', 'url_encode='=>'bool'], -'SolrQuery::unserialize' => ['void', 'serialized'=>'string'], -'SolrQueryResponse::__construct' => ['void'], -'SolrQueryResponse::__destruct' => ['void'], -'SolrQueryResponse::getDigestedResponse' => ['string'], -'SolrQueryResponse::getHttpStatus' => ['int'], -'SolrQueryResponse::getHttpStatusMessage' => ['string'], -'SolrQueryResponse::getRawRequest' => ['string'], -'SolrQueryResponse::getRawRequestHeaders' => ['string'], -'SolrQueryResponse::getRawResponse' => ['string'], -'SolrQueryResponse::getRawResponseHeaders' => ['string'], -'SolrQueryResponse::getRequestUrl' => ['string'], -'SolrQueryResponse::getResponse' => ['SolrObject'], -'SolrQueryResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], -'SolrQueryResponse::success' => ['bool'], -'SolrResponse::getDigestedResponse' => ['string'], -'SolrResponse::getHttpStatus' => ['int'], -'SolrResponse::getHttpStatusMessage' => ['string'], -'SolrResponse::getRawRequest' => ['string'], -'SolrResponse::getRawRequestHeaders' => ['string'], -'SolrResponse::getRawResponse' => ['string'], -'SolrResponse::getRawResponseHeaders' => ['string'], -'SolrResponse::getRequestUrl' => ['string'], -'SolrResponse::getResponse' => ['SolrObject'], -'SolrResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], -'SolrResponse::success' => ['bool'], -'SolrServerException::__clone' => ['void'], -'SolrServerException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'SolrServerException::__toString' => ['string'], -'SolrServerException::__wakeup' => ['void'], -'SolrServerException::getCode' => ['int'], -'SolrServerException::getFile' => ['string'], -'SolrServerException::getInternalInfo' => ['array'], -'SolrServerException::getLine' => ['int'], -'SolrServerException::getMessage' => ['string'], -'SolrServerException::getPrevious' => ['Exception|Throwable'], -'SolrServerException::getTrace' => ['list\',args?:array}>'], -'SolrServerException::getTraceAsString' => ['string'], -'SolrUpdateResponse::__construct' => ['void'], -'SolrUpdateResponse::__destruct' => ['void'], -'SolrUpdateResponse::getDigestedResponse' => ['string'], -'SolrUpdateResponse::getHttpStatus' => ['int'], -'SolrUpdateResponse::getHttpStatusMessage' => ['string'], -'SolrUpdateResponse::getRawRequest' => ['string'], -'SolrUpdateResponse::getRawRequestHeaders' => ['string'], -'SolrUpdateResponse::getRawResponse' => ['string'], -'SolrUpdateResponse::getRawResponseHeaders' => ['string'], -'SolrUpdateResponse::getRequestUrl' => ['string'], -'SolrUpdateResponse::getResponse' => ['SolrObject'], -'SolrUpdateResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], -'SolrUpdateResponse::success' => ['bool'], -'SolrUtils::digestXmlResponse' => ['SolrObject', 'xmlresponse'=>'string', 'parse_mode='=>'int'], -'SolrUtils::escapeQueryChars' => ['string|false', 'string'=>'string'], -'SolrUtils::getSolrVersion' => ['string'], -'SolrUtils::queryPhrase' => ['string', 'string'=>'string'], -'sort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], -'soundex' => ['string', 'string'=>'string'], -'SphinxClient::__construct' => ['void'], -'SphinxClient::addQuery' => ['int', 'query'=>'string', 'index='=>'string', 'comment='=>'string'], -'SphinxClient::buildExcerpts' => ['array', 'docs'=>'array', 'index'=>'string', 'words'=>'string', 'opts='=>'array'], -'SphinxClient::buildKeywords' => ['array', 'query'=>'string', 'index'=>'string', 'hits'=>'bool'], -'SphinxClient::close' => ['bool'], -'SphinxClient::escapeString' => ['string', 'string'=>'string'], -'SphinxClient::getLastError' => ['string'], -'SphinxClient::getLastWarning' => ['string'], -'SphinxClient::open' => ['bool'], -'SphinxClient::query' => ['array', 'query'=>'string', 'index='=>'string', 'comment='=>'string'], -'SphinxClient::resetFilters' => ['void'], -'SphinxClient::resetGroupBy' => ['void'], -'SphinxClient::runQueries' => ['array'], -'SphinxClient::setArrayResult' => ['bool', 'array_result'=>'bool'], -'SphinxClient::setConnectTimeout' => ['bool', 'timeout'=>'float'], -'SphinxClient::setFieldWeights' => ['bool', 'weights'=>'array'], -'SphinxClient::setFilter' => ['bool', 'attribute'=>'string', 'values'=>'array', 'exclude='=>'bool'], -'SphinxClient::setFilterFloatRange' => ['bool', 'attribute'=>'string', 'min'=>'float', 'max'=>'float', 'exclude='=>'bool'], -'SphinxClient::setFilterRange' => ['bool', 'attribute'=>'string', 'min'=>'int', 'max'=>'int', 'exclude='=>'bool'], -'SphinxClient::setGeoAnchor' => ['bool', 'attrlat'=>'string', 'attrlong'=>'string', 'latitude'=>'float', 'longitude'=>'float'], -'SphinxClient::setGroupBy' => ['bool', 'attribute'=>'string', 'func'=>'int', 'groupsort='=>'string'], -'SphinxClient::setGroupDistinct' => ['bool', 'attribute'=>'string'], -'SphinxClient::setIDRange' => ['bool', 'min'=>'int', 'max'=>'int'], -'SphinxClient::setIndexWeights' => ['bool', 'weights'=>'array'], -'SphinxClient::setLimits' => ['bool', 'offset'=>'int', 'limit'=>'int', 'max_matches='=>'int', 'cutoff='=>'int'], -'SphinxClient::setMatchMode' => ['bool', 'mode'=>'int'], -'SphinxClient::setMaxQueryTime' => ['bool', 'qtime'=>'int'], -'SphinxClient::setOverride' => ['bool', 'attribute'=>'string', 'type'=>'int', 'values'=>'array'], -'SphinxClient::setRankingMode' => ['bool', 'ranker'=>'int'], -'SphinxClient::setRetries' => ['bool', 'count'=>'int', 'delay='=>'int'], -'SphinxClient::setSelect' => ['bool', 'clause'=>'string'], -'SphinxClient::setServer' => ['bool', 'server'=>'string', 'port'=>'int'], -'SphinxClient::setSortMode' => ['bool', 'mode'=>'int', 'sortby='=>'string'], -'SphinxClient::status' => ['array'], -'SphinxClient::updateAttributes' => ['int', 'index'=>'string', 'attributes'=>'array', 'values'=>'array', 'mva='=>'bool'], -'spl_autoload' => ['void', 'class'=>'string', 'file_extensions='=>'?string'], -'spl_autoload_call' => ['void', 'class'=>'string'], -'spl_autoload_extensions' => ['string', 'file_extensions='=>'?string'], -'spl_autoload_functions' => ['list'], -'spl_autoload_register' => ['bool', 'callback='=>'callable(string):void|null', 'throw='=>'bool', 'prepend='=>'bool'], -'spl_autoload_unregister' => ['bool', 'callback'=>'callable(string):void'], -'spl_classes' => ['array'], -'spl_object_hash' => ['string', 'object'=>'object'], -'spl_object_id' => ['int', 'object'=>'object'], -'SplDoublyLinkedList::__construct' => ['void'], -'SplDoublyLinkedList::add' => ['void', 'index'=>'int', 'value'=>'mixed'], -'SplDoublyLinkedList::bottom' => ['mixed'], -'SplDoublyLinkedList::count' => ['int'], -'SplDoublyLinkedList::current' => ['mixed'], -'SplDoublyLinkedList::getIteratorMode' => ['int'], -'SplDoublyLinkedList::isEmpty' => ['bool'], -'SplDoublyLinkedList::key' => ['int'], -'SplDoublyLinkedList::next' => ['void'], -'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'int'], -'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'int'], -'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], -'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'int'], -'SplDoublyLinkedList::pop' => ['mixed'], -'SplDoublyLinkedList::prev' => ['void'], -'SplDoublyLinkedList::push' => ['void', 'value'=>'mixed'], -'SplDoublyLinkedList::rewind' => ['void'], -'SplDoublyLinkedList::serialize' => ['string'], -'SplDoublyLinkedList::setIteratorMode' => ['int', 'mode'=>'int'], -'SplDoublyLinkedList::shift' => ['mixed'], -'SplDoublyLinkedList::top' => ['mixed'], -'SplDoublyLinkedList::unserialize' => ['void', 'data'=>'string'], -'SplDoublyLinkedList::unshift' => ['void', 'value'=>'mixed'], -'SplDoublyLinkedList::valid' => ['bool'], -'SplEnum::__construct' => ['void', 'initial_value='=>'mixed', 'strict='=>'bool'], -'SplEnum::getConstList' => ['array', 'include_default='=>'bool'], -'SplFileInfo::__construct' => ['void', 'filename'=>'string'], -'SplFileInfo::__toString' => ['string'], -'SplFileInfo::getATime' => ['int|false'], -'SplFileInfo::getBasename' => ['string', 'suffix='=>'string'], -'SplFileInfo::getCTime' => ['int|false'], -'SplFileInfo::getExtension' => ['string'], -'SplFileInfo::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'SplFileInfo::getFilename' => ['string'], -'SplFileInfo::getGroup' => ['int|false'], -'SplFileInfo::getInode' => ['int|false'], -'SplFileInfo::getLinkTarget' => ['string|false'], -'SplFileInfo::getMTime' => ['int|false'], -'SplFileInfo::getOwner' => ['int|false'], -'SplFileInfo::getPath' => ['string'], -'SplFileInfo::getPathInfo' => ['SplFileInfo|null', 'class='=>'?class-string'], -'SplFileInfo::getPathname' => ['string'], -'SplFileInfo::getPerms' => ['int|false'], -'SplFileInfo::getRealPath' => ['non-falsy-string|false'], -'SplFileInfo::getSize' => ['int|false'], -'SplFileInfo::getType' => ['string|false'], -'SplFileInfo::isDir' => ['bool'], -'SplFileInfo::isExecutable' => ['bool'], -'SplFileInfo::isFile' => ['bool'], -'SplFileInfo::isLink' => ['bool'], -'SplFileInfo::isReadable' => ['bool'], -'SplFileInfo::isWritable' => ['bool'], -'SplFileInfo::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'SplFileInfo::setFileClass' => ['void', 'class='=>'class-string'], -'SplFileInfo::setInfoClass' => ['void', 'class='=>'class-string'], -'SplFileObject::__construct' => ['void', 'filename'=>'string', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'SplFileObject::__toString' => ['string'], -'SplFileObject::current' => ['string|array|false'], -'SplFileObject::eof' => ['bool'], -'SplFileObject::fflush' => ['bool'], -'SplFileObject::fgetc' => ['string|false'], -'SplFileObject::fgetcsv' => ['list|array{0: null}|false', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'SplFileObject::fgets' => ['string'], -'SplFileObject::flock' => ['bool', 'operation'=>'int', '&w_wouldBlock='=>'int'], -'SplFileObject::fpassthru' => ['int'], -'SplFileObject::fputcsv' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string', 'eol='=>'string'], -'SplFileObject::fread' => ['string|false', 'length'=>'int'], -'SplFileObject::fscanf' => ['array|int', 'format'=>'string', '&...w_vars='=>'string|int|float'], -'SplFileObject::fseek' => ['int', 'offset'=>'int', 'whence='=>'int'], -'SplFileObject::fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}'], -'SplFileObject::ftell' => ['int|false'], -'SplFileObject::ftruncate' => ['bool', 'size'=>'int'], -'SplFileObject::fwrite' => ['int|false', 'data'=>'string', 'length='=>'int'], -'SplFileObject::getATime' => ['int|false'], -'SplFileObject::getBasename' => ['string', 'suffix='=>'string'], -'SplFileObject::getChildren' => ['null'], -'SplFileObject::getCsvControl' => ['array'], -'SplFileObject::getCTime' => ['int|false'], -'SplFileObject::getCurrentLine' => ['string'], -'SplFileObject::getExtension' => ['string'], -'SplFileObject::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'SplFileObject::getFilename' => ['string'], -'SplFileObject::getFlags' => ['int'], -'SplFileObject::getGroup' => ['int|false'], -'SplFileObject::getInode' => ['int|false'], -'SplFileObject::getLinkTarget' => ['string|false'], -'SplFileObject::getMaxLineLen' => ['int'], -'SplFileObject::getMTime' => ['int|false'], -'SplFileObject::getOwner' => ['int|false'], -'SplFileObject::getPath' => ['string'], -'SplFileObject::getPathInfo' => ['SplFileInfo|null', 'class='=>'?class-string'], -'SplFileObject::getPathname' => ['string'], -'SplFileObject::getPerms' => ['int|false'], -'SplFileObject::getRealPath' => ['false|non-falsy-string'], -'SplFileObject::getSize' => ['int|false'], -'SplFileObject::getType' => ['string|false'], -'SplFileObject::hasChildren' => ['false'], -'SplFileObject::isDir' => ['bool'], -'SplFileObject::isExecutable' => ['bool'], -'SplFileObject::isFile' => ['bool'], -'SplFileObject::isLink' => ['bool'], -'SplFileObject::isReadable' => ['bool'], -'SplFileObject::isWritable' => ['bool'], -'SplFileObject::key' => ['int'], -'SplFileObject::next' => ['void'], -'SplFileObject::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'SplFileObject::rewind' => ['void'], -'SplFileObject::seek' => ['void', 'line'=>'int'], -'SplFileObject::setCsvControl' => ['void', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'SplFileObject::setFileClass' => ['void', 'class='=>'class-string'], -'SplFileObject::setFlags' => ['void', 'flags'=>'int'], -'SplFileObject::setInfoClass' => ['void', 'class='=>'class-string'], -'SplFileObject::setMaxLineLen' => ['void', 'maxLength'=>'int'], -'SplFileObject::valid' => ['bool'], -'SplFixedArray::__construct' => ['void', 'size='=>'int'], -'SplFixedArray::__wakeup' => ['void'], -'SplFixedArray::count' => ['int'], -'SplFixedArray::fromArray' => ['SplFixedArray', 'array'=>'array', 'preserveKeys='=>'bool'], -'SplFixedArray::getIterator' => ['Iterator'], -'SplFixedArray::getSize' => ['int'], -'SplFixedArray::offsetExists' => ['bool', 'index'=>'int'], -'SplFixedArray::offsetGet' => ['mixed', 'index'=>'int'], -'SplFixedArray::offsetSet' => ['void', 'index'=>'int', 'value'=>'mixed'], -'SplFixedArray::offsetUnset' => ['void', 'index'=>'int'], -'SplFixedArray::setSize' => ['bool', 'size'=>'int'], -'SplFixedArray::toArray' => ['array'], -'SplHeap::__construct' => ['void'], -'SplHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], -'SplHeap::count' => ['int'], -'SplHeap::current' => ['mixed'], -'SplHeap::extract' => ['mixed'], -'SplHeap::insert' => ['bool', 'value'=>'mixed'], -'SplHeap::isCorrupted' => ['bool'], -'SplHeap::isEmpty' => ['bool'], -'SplHeap::key' => ['int'], -'SplHeap::next' => ['void'], -'SplHeap::recoverFromCorruption' => ['true'], -'SplHeap::rewind' => ['void'], -'SplHeap::top' => ['mixed'], -'SplHeap::valid' => ['bool'], -'SplMaxHeap::__construct' => ['void'], -'SplMaxHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], -'SplMinHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], -'SplMinHeap::count' => ['int'], -'SplMinHeap::current' => ['mixed'], -'SplMinHeap::extract' => ['mixed'], -'SplMinHeap::insert' => ['true', 'value'=>'mixed'], -'SplMinHeap::isCorrupted' => ['bool'], -'SplMinHeap::isEmpty' => ['bool'], -'SplMinHeap::key' => ['int'], -'SplMinHeap::next' => ['void'], -'SplMinHeap::recoverFromCorruption' => ['true'], -'SplMinHeap::rewind' => ['void'], -'SplMinHeap::top' => ['mixed'], -'SplMinHeap::valid' => ['bool'], -'SplObjectStorage::__construct' => ['void'], -'SplObjectStorage::addAll' => ['int', 'storage'=>'SplObjectStorage'], -'SplObjectStorage::attach' => ['void', 'object'=>'object', 'info='=>'mixed'], -'SplObjectStorage::contains' => ['bool', 'object'=>'object'], -'SplObjectStorage::count' => ['int', 'mode='=>'int'], -'SplObjectStorage::current' => ['object'], -'SplObjectStorage::detach' => ['void', 'object'=>'object'], -'SplObjectStorage::getHash' => ['string', 'object'=>'object'], -'SplObjectStorage::getInfo' => ['mixed'], -'SplObjectStorage::key' => ['int'], -'SplObjectStorage::next' => ['void'], -'SplObjectStorage::offsetExists' => ['bool', 'object'=>'object'], -'SplObjectStorage::offsetGet' => ['mixed', 'object'=>'object'], -'SplObjectStorage::offsetSet' => ['void', 'object'=>'object', 'info='=>'mixed'], -'SplObjectStorage::offsetUnset' => ['void', 'object'=>'object'], -'SplObjectStorage::removeAll' => ['int', 'storage'=>'SplObjectStorage'], -'SplObjectStorage::removeAllExcept' => ['int', 'storage'=>'SplObjectStorage'], -'SplObjectStorage::rewind' => ['void'], -'SplObjectStorage::serialize' => ['string'], -'SplObjectStorage::setInfo' => ['void', 'info'=>'mixed'], -'SplObjectStorage::unserialize' => ['void', 'data'=>'string'], -'SplObjectStorage::valid' => ['bool'], -'SplObserver::update' => ['void', 'subject'=>'SplSubject'], -'SplPriorityQueue::__construct' => ['void'], -'SplPriorityQueue::compare' => ['int', 'priority1'=>'mixed', 'priority2'=>'mixed'], -'SplPriorityQueue::count' => ['int'], -'SplPriorityQueue::current' => ['mixed'], -'SplPriorityQueue::extract' => ['mixed'], -'SplPriorityQueue::getExtractFlags' => ['int'], -'SplPriorityQueue::insert' => ['bool', 'value'=>'mixed', 'priority'=>'mixed'], -'SplPriorityQueue::isCorrupted' => ['bool'], -'SplPriorityQueue::isEmpty' => ['bool'], -'SplPriorityQueue::key' => ['int'], -'SplPriorityQueue::next' => ['void'], -'SplPriorityQueue::recoverFromCorruption' => ['void'], -'SplPriorityQueue::rewind' => ['void'], -'SplPriorityQueue::setExtractFlags' => ['int', 'flags'=>'int'], -'SplPriorityQueue::top' => ['mixed'], -'SplPriorityQueue::valid' => ['bool'], -'SplQueue::dequeue' => ['mixed'], -'SplQueue::enqueue' => ['void', 'value'=>'mixed'], -'SplQueue::getIteratorMode' => ['int'], -'SplQueue::isEmpty' => ['bool'], -'SplQueue::key' => ['int'], -'SplQueue::next' => ['void'], -'SplQueue::offsetExists' => ['bool', 'index'=>'mixed'], -'SplQueue::offsetGet' => ['mixed', 'index'=>'mixed'], -'SplQueue::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], -'SplQueue::offsetUnset' => ['void', 'index'=>'mixed'], -'SplQueue::pop' => ['mixed'], -'SplQueue::prev' => ['void'], -'SplQueue::push' => ['void', 'value'=>'mixed'], -'SplQueue::rewind' => ['void'], -'SplQueue::serialize' => ['string'], -'SplQueue::setIteratorMode' => ['int', 'mode'=>'int'], -'SplQueue::shift' => ['mixed'], -'SplQueue::top' => ['mixed'], -'SplQueue::unserialize' => ['void', 'data'=>'string'], -'SplQueue::unshift' => ['void', 'value'=>'mixed'], -'SplQueue::valid' => ['bool'], -'SplStack::__construct' => ['void'], -'SplStack::add' => ['void', 'index'=>'int', 'value'=>'mixed'], -'SplStack::bottom' => ['mixed'], -'SplStack::count' => ['int'], -'SplStack::current' => ['mixed'], -'SplStack::getIteratorMode' => ['int'], -'SplStack::isEmpty' => ['bool'], -'SplStack::key' => ['int'], -'SplStack::next' => ['void'], -'SplStack::offsetExists' => ['bool', 'index'=>'mixed'], -'SplStack::offsetGet' => ['mixed', 'index'=>'mixed'], -'SplStack::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], -'SplStack::offsetUnset' => ['void', 'index'=>'mixed'], -'SplStack::pop' => ['mixed'], -'SplStack::prev' => ['void'], -'SplStack::push' => ['void', 'value'=>'mixed'], -'SplStack::rewind' => ['void'], -'SplStack::serialize' => ['string'], -'SplStack::setIteratorMode' => ['int', 'mode'=>'int'], -'SplStack::shift' => ['mixed'], -'SplStack::top' => ['mixed'], -'SplStack::unserialize' => ['void', 'data'=>'string'], -'SplStack::unshift' => ['void', 'value'=>'mixed'], -'SplStack::valid' => ['bool'], -'SplSubject::attach' => ['void', 'observer'=>'SplObserver'], -'SplSubject::detach' => ['void', 'observer'=>'SplObserver'], -'SplSubject::notify' => ['void'], -'SplTempFileObject::__construct' => ['void', 'maxMemory='=>'int'], -'SplTempFileObject::__toString' => ['string'], -'SplTempFileObject::current' => ['string|array|false'], -'SplTempFileObject::eof' => ['bool'], -'SplTempFileObject::fflush' => ['bool'], -'SplTempFileObject::fgetc' => ['string|false'], -'SplTempFileObject::fgetcsv' => ['list|array{0: null}|false', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'SplTempFileObject::fgets' => ['string'], -'SplTempFileObject::flock' => ['bool', 'operation'=>'int', '&w_wouldBlock='=>'int'], -'SplTempFileObject::fpassthru' => ['int'], -'SplTempFileObject::fputcsv' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string'], -'SplTempFileObject::fread' => ['string|false', 'length'=>'int'], -'SplTempFileObject::fscanf' => ['array|int', 'format'=>'string', '&...w_vars='=>'string|int|float'], -'SplTempFileObject::fseek' => ['int', 'offset'=>'int', 'whence='=>'int'], -'SplTempFileObject::fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}'], -'SplTempFileObject::ftell' => ['int|false'], -'SplTempFileObject::ftruncate' => ['bool', 'size'=>'int'], -'SplTempFileObject::fwrite' => ['int|false', 'data'=>'string', 'length='=>'int'], -'SplTempFileObject::getATime' => ['int|false'], -'SplTempFileObject::getBasename' => ['string', 'suffix='=>'string'], -'SplTempFileObject::getChildren' => ['null'], -'SplTempFileObject::getCsvControl' => ['array'], -'SplTempFileObject::getCTime' => ['int|false'], -'SplTempFileObject::getCurrentLine' => ['string'], -'SplTempFileObject::getExtension' => ['string'], -'SplTempFileObject::getFileInfo' => ['SplFileInfo', 'class='=>'?class-string'], -'SplTempFileObject::getFilename' => ['string'], -'SplTempFileObject::getFlags' => ['int'], -'SplTempFileObject::getGroup' => ['int|false'], -'SplTempFileObject::getInode' => ['int|false'], -'SplTempFileObject::getLinkTarget' => ['string|false'], -'SplTempFileObject::getMaxLineLen' => ['int'], -'SplTempFileObject::getMTime' => ['int|false'], -'SplTempFileObject::getOwner' => ['int|false'], -'SplTempFileObject::getPath' => ['string'], -'SplTempFileObject::getPathInfo' => ['SplFileInfo|null', 'class='=>'?class-string'], -'SplTempFileObject::getPathname' => ['string'], -'SplTempFileObject::getPerms' => ['int|false'], -'SplTempFileObject::getRealPath' => ['false|non-falsy-string'], -'SplTempFileObject::getSize' => ['int|false'], -'SplTempFileObject::getType' => ['string|false'], -'SplTempFileObject::hasChildren' => ['false'], -'SplTempFileObject::isDir' => ['bool'], -'SplTempFileObject::isExecutable' => ['bool'], -'SplTempFileObject::isFile' => ['bool'], -'SplTempFileObject::isLink' => ['bool'], -'SplTempFileObject::isReadable' => ['bool'], -'SplTempFileObject::isWritable' => ['bool'], -'SplTempFileObject::key' => ['int'], -'SplTempFileObject::next' => ['void'], -'SplTempFileObject::openFile' => ['SplTempFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], -'SplTempFileObject::rewind' => ['void'], -'SplTempFileObject::seek' => ['void', 'line'=>'int'], -'SplTempFileObject::setCsvControl' => ['void', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'SplTempFileObject::setFileClass' => ['void', 'class='=>'class-string'], -'SplTempFileObject::setFlags' => ['void', 'flags'=>'int'], -'SplTempFileObject::setInfoClass' => ['void', 'class='=>'class-string'], -'SplTempFileObject::setMaxLineLen' => ['void', 'maxLength'=>'int'], -'SplTempFileObject::valid' => ['bool'], -'SplType::__construct' => ['void', 'initial_value='=>'mixed', 'strict='=>'bool'], -'Spoofchecker::__construct' => ['void'], -'Spoofchecker::areConfusable' => ['bool', 'string1'=>'string', 'string2'=>'string', '&w_errorCode='=>'int'], -'Spoofchecker::isSuspicious' => ['bool', 'string'=>'string', '&w_errorCode='=>'int'], -'Spoofchecker::setAllowedLocales' => ['void', 'locales'=>'string'], -'Spoofchecker::setChecks' => ['void', 'checks'=>'int'], -'Spoofchecker::setRestrictionLevel' => ['void', 'level'=>'int'], -'sprintf' => ['string', 'format'=>'string', '...values='=>'string|int|float'], -'SQLite3::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'encryptionKey='=>'string'], -'SQLite3::busyTimeout' => ['bool', 'milliseconds'=>'int'], -'SQLite3::changes' => ['int'], -'SQLite3::close' => ['bool'], -'SQLite3::createAggregate' => ['bool', 'name'=>'string', 'stepCallback'=>'callable', 'finalCallback'=>'callable', 'argCount='=>'int'], -'SQLite3::createCollation' => ['bool', 'name'=>'string', 'callback'=>'callable'], -'SQLite3::createFunction' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int', 'flags='=>'int'], -'SQLite3::enableExceptions' => ['bool', 'enable='=>'bool'], -'SQLite3::escapeString' => ['string', 'string'=>'string'], -'SQLite3::exec' => ['bool', 'query'=>'string'], -'SQLite3::lastErrorCode' => ['int'], -'SQLite3::lastErrorMsg' => ['string'], -'SQLite3::lastInsertRowID' => ['int'], -'SQLite3::loadExtension' => ['bool', 'name'=>'string'], -'SQLite3::open' => ['void', 'filename'=>'string', 'flags='=>'int', 'encryptionKey='=>'string'], -'SQLite3::openBlob' => ['resource|false', 'table'=>'string', 'column'=>'string', 'rowid'=>'int', 'database='=>'string', 'flags='=>'int'], -'SQLite3::prepare' => ['SQLite3Stmt|false', 'query'=>'string'], -'SQLite3::query' => ['SQLite3Result|false', 'query'=>'string'], -'SQLite3::querySingle' => ['array|int|string|bool|float|null|false', 'query'=>'string', 'entireRow='=>'bool'], -'SQLite3::version' => ['array'], -'SQLite3Result::__construct' => ['void'], -'SQLite3Result::columnName' => ['string', 'column'=>'int'], -'SQLite3Result::columnType' => ['int', 'column'=>'int'], -'SQLite3Result::fetchArray' => ['array|false', 'mode='=>'int'], -'SQLite3Result::finalize' => ['bool'], -'SQLite3Result::numColumns' => ['int'], -'SQLite3Result::reset' => ['bool'], -'SQLite3Stmt::__construct' => ['void', 'sqlite3'=>'sqlite3', 'query'=>'string'], -'SQLite3Stmt::bindParam' => ['bool', 'param'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int'], -'SQLite3Stmt::bindValue' => ['bool', 'param'=>'string|int', 'value'=>'mixed', 'type='=>'int'], -'SQLite3Stmt::clear' => ['bool'], -'SQLite3Stmt::close' => ['bool'], -'SQLite3Stmt::execute' => ['false|SQLite3Result'], -'SQLite3Stmt::getSQL' => ['string', 'expand='=>'bool'], -'SQLite3Stmt::paramCount' => ['int'], -'SQLite3Stmt::readOnly' => ['bool'], -'SQLite3Stmt::reset' => ['bool'], -'sqlite_array_query' => ['array|false', 'dbhandle'=>'resource', 'query'=>'string', 'result_type='=>'int', 'decode_binary='=>'bool'], -'sqlite_busy_timeout' => ['void', 'dbhandle'=>'resource', 'milliseconds'=>'int'], -'sqlite_changes' => ['int', 'dbhandle'=>'resource'], -'sqlite_close' => ['void', 'dbhandle'=>'resource'], -'sqlite_column' => ['mixed', 'result'=>'resource', 'index_or_name'=>'mixed', 'decode_binary='=>'bool'], -'sqlite_create_aggregate' => ['void', 'dbhandle'=>'resource', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], -'sqlite_create_function' => ['void', 'dbhandle'=>'resource', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], -'sqlite_current' => ['array|false', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], -'sqlite_error_string' => ['string', 'error_code'=>'int'], -'sqlite_escape_string' => ['string', 'item'=>'string'], -'sqlite_exec' => ['bool', 'dbhandle'=>'resource', 'query'=>'string', 'error_msg='=>'string'], -'sqlite_factory' => ['SQLiteDatabase', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], -'sqlite_fetch_all' => ['array', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], -'sqlite_fetch_array' => ['array|false', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], -'sqlite_fetch_column_types' => ['array|false', 'table_name'=>'string', 'dbhandle'=>'resource', 'result_type='=>'int'], -'sqlite_fetch_object' => ['object', 'result'=>'resource', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], -'sqlite_fetch_single' => ['string', 'result'=>'resource', 'decode_binary='=>'bool'], -'sqlite_fetch_string' => ['string', 'result'=>'resource', 'decode_binary'=>'bool'], -'sqlite_field_name' => ['string', 'result'=>'resource', 'field_index'=>'int'], -'sqlite_has_more' => ['bool', 'result'=>'resource'], -'sqlite_has_prev' => ['bool', 'result'=>'resource'], -'sqlite_key' => ['int', 'result'=>'resource'], -'sqlite_last_error' => ['int', 'dbhandle'=>'resource'], -'sqlite_last_insert_rowid' => ['int', 'dbhandle'=>'resource'], -'sqlite_libencoding' => ['string'], -'sqlite_libversion' => ['string'], -'sqlite_next' => ['bool', 'result'=>'resource'], -'sqlite_num_fields' => ['int', 'result'=>'resource'], -'sqlite_num_rows' => ['int', 'result'=>'resource'], -'sqlite_open' => ['resource|false', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], -'sqlite_popen' => ['resource|false', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], -'sqlite_prev' => ['bool', 'result'=>'resource'], -'sqlite_query' => ['resource|false', 'dbhandle'=>'resource', 'query'=>'resource|string', 'result_type='=>'int', 'error_msg='=>'string'], -'sqlite_rewind' => ['bool', 'result'=>'resource'], -'sqlite_seek' => ['bool', 'result'=>'resource', 'rownum'=>'int'], -'sqlite_single_query' => ['array', 'db'=>'resource', 'query'=>'string', 'first_row_only='=>'bool', 'decode_binary='=>'bool'], -'sqlite_udf_decode_binary' => ['string', 'data'=>'string'], -'sqlite_udf_encode_binary' => ['string', 'data'=>'string'], -'sqlite_unbuffered_query' => ['SQLiteUnbuffered|false', 'dbhandle'=>'resource', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], -'sqlite_valid' => ['bool', 'result'=>'resource'], -'SQLiteDatabase::__construct' => ['void', 'filename'=>'', 'mode='=>'int|mixed', '&error_message'=>''], -'SQLiteDatabase::arrayQuery' => ['array', 'query'=>'string', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteDatabase::busyTimeout' => ['int', 'milliseconds'=>'int'], -'SQLiteDatabase::changes' => ['int'], -'SQLiteDatabase::createAggregate' => ['', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], -'SQLiteDatabase::createFunction' => ['', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], -'SQLiteDatabase::exec' => ['bool', 'query'=>'string', 'error_msg='=>'string'], -'SQLiteDatabase::fetchColumnTypes' => ['array', 'table_name'=>'string', 'result_type='=>'int'], -'SQLiteDatabase::lastError' => ['int'], -'SQLiteDatabase::lastInsertRowid' => ['int'], -'SQLiteDatabase::query' => ['SQLiteResult|false', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], -'SQLiteDatabase::queryExec' => ['bool', 'query'=>'string', '&w_error_msg='=>'string'], -'SQLiteDatabase::singleQuery' => ['array', 'query'=>'string', 'first_row_only='=>'bool', 'decode_binary='=>'bool'], -'SQLiteDatabase::unbufferedQuery' => ['SQLiteUnbuffered|false', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], -'SQLiteException::__clone' => ['void'], -'SQLiteException::__construct' => ['void', 'message'=>'', 'code'=>'', 'previous'=>''], -'SQLiteException::__toString' => ['string'], -'SQLiteException::__wakeup' => ['void'], -'SQLiteException::getCode' => ['int'], -'SQLiteException::getFile' => ['string'], -'SQLiteException::getLine' => ['int'], -'SQLiteException::getMessage' => ['string'], -'SQLiteException::getPrevious' => ['RuntimeException|Throwable|null'], -'SQLiteException::getTrace' => ['list\',args?:array}>'], -'SQLiteException::getTraceAsString' => ['string'], -'SQLiteResult::__construct' => ['void'], -'SQLiteResult::column' => ['mixed', 'index_or_name'=>'', 'decode_binary='=>'bool'], -'SQLiteResult::count' => ['int'], -'SQLiteResult::current' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteResult::fetch' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteResult::fetchAll' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteResult::fetchObject' => ['object', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], -'SQLiteResult::fetchSingle' => ['string', 'decode_binary='=>'bool'], -'SQLiteResult::fieldName' => ['string', 'field_index'=>'int'], -'SQLiteResult::hasPrev' => ['bool'], -'SQLiteResult::key' => ['mixed|null'], -'SQLiteResult::next' => ['bool'], -'SQLiteResult::numFields' => ['int'], -'SQLiteResult::numRows' => ['int'], -'SQLiteResult::prev' => ['bool'], -'SQLiteResult::rewind' => ['bool'], -'SQLiteResult::seek' => ['bool', 'rownum'=>'int'], -'SQLiteResult::valid' => ['bool'], -'SQLiteUnbuffered::column' => ['void', 'index_or_name'=>'', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::current' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::fetch' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::fetchAll' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::fetchObject' => ['object', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::fetchSingle' => ['string', 'decode_binary='=>'bool'], -'SQLiteUnbuffered::fieldName' => ['string', 'field_index'=>'int'], -'SQLiteUnbuffered::next' => ['bool'], -'SQLiteUnbuffered::numFields' => ['int'], -'SQLiteUnbuffered::valid' => ['bool'], -'sqlsrv_begin_transaction' => ['bool', 'conn'=>'resource'], -'sqlsrv_cancel' => ['bool', 'stmt'=>'resource'], -'sqlsrv_client_info' => ['array|false', 'conn'=>'resource'], -'sqlsrv_close' => ['bool', 'conn'=>'?resource'], -'sqlsrv_commit' => ['bool', 'conn'=>'resource'], -'sqlsrv_configure' => ['bool', 'setting'=>'string', 'value'=>'mixed'], -'sqlsrv_connect' => ['resource|false', 'server_name'=>'string', 'connection_info='=>'array'], -'sqlsrv_errors' => ['?array', 'errors_and_or_warnings='=>'int'], -'sqlsrv_execute' => ['bool', 'stmt'=>'resource'], -'sqlsrv_fetch' => ['?bool', 'stmt'=>'resource', 'row='=>'int', 'offset='=>'int'], -'sqlsrv_fetch_array' => ['array|null|false', 'stmt'=>'resource', 'fetchType='=>'int', 'row='=>'int', 'offset='=>'int'], -'sqlsrv_fetch_object' => ['object|null|false', 'stmt'=>'resource', 'className='=>'string', 'ctorParams='=>'array', 'row='=>'int', 'offset='=>'int'], -'sqlsrv_field_metadata' => ['array|false', 'stmt'=>'resource'], -'sqlsrv_free_stmt' => ['bool', 'stmt'=>'resource'], -'sqlsrv_get_config' => ['mixed', 'setting'=>'string'], -'sqlsrv_get_field' => ['mixed', 'stmt'=>'resource', 'fieldIndex'=>'int', 'getAsType='=>'int'], -'sqlsrv_has_rows' => ['bool', 'stmt'=>'resource'], -'sqlsrv_next_result' => ['?bool', 'stmt'=>'resource'], -'sqlsrv_num_fields' => ['int|false', 'stmt'=>'resource'], -'sqlsrv_num_rows' => ['int|false', 'stmt'=>'resource'], -'sqlsrv_prepare' => ['resource|false', 'conn'=>'resource', 'sql'=>'string', 'params='=>'array', 'options='=>'array'], -'sqlsrv_query' => ['resource|false', 'conn'=>'resource', 'sql'=>'string', 'params='=>'array', 'options='=>'array'], -'sqlsrv_rollback' => ['bool', 'conn'=>'resource'], -'sqlsrv_rows_affected' => ['int|false', 'stmt'=>'resource'], -'sqlsrv_send_stream_data' => ['bool', 'stmt'=>'resource'], -'sqlsrv_server_info' => ['array', 'conn'=>'resource'], -'sqrt' => ['float', 'num'=>'float'], -'srand' => ['void', 'seed='=>'?int', 'mode='=>'int'], -'sscanf' => ['list|int|null', 'string'=>'string', 'format'=>'string', '&...w_vars='=>'string|int|float|null'], -'ssdeep_fuzzy_compare' => ['int', 'signature1'=>'string', 'signature2'=>'string'], -'ssdeep_fuzzy_hash' => ['string', 'to_hash'=>'string'], -'ssdeep_fuzzy_hash_filename' => ['string', 'file_name'=>'string'], -'ssh2_auth_agent' => ['bool', 'session'=>'resource', 'username'=>'string'], -'ssh2_auth_hostbased_file' => ['bool', 'session'=>'resource', 'username'=>'string', 'hostname'=>'string', 'pubkeyfile'=>'string', 'privkeyfile'=>'string', 'passphrase='=>'string', 'local_username='=>'string'], -'ssh2_auth_none' => ['bool|string[]', 'session'=>'resource', 'username'=>'string'], -'ssh2_auth_password' => ['bool', 'session'=>'resource', 'username'=>'string', 'password'=>'string'], -'ssh2_auth_pubkey_file' => ['bool', 'session'=>'resource', 'username'=>'string', 'pubkeyfile'=>'string', 'privkeyfile'=>'string', 'passphrase='=>'string'], -'ssh2_connect' => ['resource|false', 'host'=>'string', 'port='=>'int', 'methods='=>'array', 'callbacks='=>'array'], -'ssh2_disconnect' => ['bool', 'session'=>'resource'], -'ssh2_exec' => ['resource|false', 'session'=>'resource', 'command'=>'string', 'pty='=>'string', 'env='=>'array', 'width='=>'int', 'height='=>'int', 'width_height_type='=>'int'], -'ssh2_fetch_stream' => ['resource|false', 'channel'=>'resource', 'streamid'=>'int'], -'ssh2_fingerprint' => ['string|false', 'session'=>'resource', 'flags='=>'int'], -'ssh2_forward_accept' => ['resource|false', 'listener'=>'resource'], -'ssh2_forward_listen' => ['resource|false', 'session'=>'resource', 'port'=>'int', 'host='=>'string', 'max_connections='=>'string'], -'ssh2_methods_negotiated' => ['array|false', 'session'=>'resource'], -'ssh2_poll' => ['int', '&polldes'=>'array', 'timeout='=>'int'], -'ssh2_publickey_add' => ['bool', 'pkey'=>'resource', 'algoname'=>'string', 'blob'=>'string', 'overwrite='=>'bool', 'attributes='=>'array'], -'ssh2_publickey_init' => ['resource|false', 'session'=>'resource'], -'ssh2_publickey_list' => ['array|false', 'pkey'=>'resource'], -'ssh2_publickey_remove' => ['bool', 'pkey'=>'resource', 'algoname'=>'string', 'blob'=>'string'], -'ssh2_scp_recv' => ['bool', 'session'=>'resource', 'remote_file'=>'string', 'local_file'=>'string'], -'ssh2_scp_send' => ['bool', 'session'=>'resource', 'local_file'=>'string', 'remote_file'=>'string', 'create_mode='=>'int'], -'ssh2_sftp' => ['resource|false', 'session'=>'resource'], -'ssh2_sftp_chmod' => ['bool', 'sftp'=>'resource', 'filename'=>'string', 'mode'=>'int'], -'ssh2_sftp_lstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'sftp'=>'resource', 'path'=>'string'], -'ssh2_sftp_mkdir' => ['bool', 'sftp'=>'resource', 'dirname'=>'string', 'mode='=>'int', 'recursive='=>'bool'], -'ssh2_sftp_readlink' => ['non-falsy-string|false', 'sftp'=>'resource', 'link'=>'string'], -'ssh2_sftp_realpath' => ['non-falsy-string|false', 'sftp'=>'resource', 'filename'=>'string'], -'ssh2_sftp_rename' => ['bool', 'sftp'=>'resource', 'from'=>'string', 'to'=>'string'], -'ssh2_sftp_rmdir' => ['bool', 'sftp'=>'resource', 'dirname'=>'string'], -'ssh2_sftp_stat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'sftp'=>'resource', 'path'=>'string'], -'ssh2_sftp_symlink' => ['bool', 'sftp'=>'resource', 'target'=>'string', 'link'=>'string'], -'ssh2_sftp_unlink' => ['bool', 'sftp'=>'resource', 'filename'=>'string'], -'ssh2_shell' => ['resource|false', 'session'=>'resource', 'termtype='=>'string', 'env='=>'array', 'width='=>'int', 'height='=>'int', 'width_height_type='=>'int'], -'ssh2_tunnel' => ['resource|false', 'session'=>'resource', 'host'=>'string', 'port'=>'int'], -'stat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'filename'=>'string'], -'stats_absolute_deviation' => ['float', 'a'=>'array'], -'stats_cdf_beta' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_binomial' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_cauchy' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_chisquare' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], -'stats_cdf_exponential' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], -'stats_cdf_f' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_gamma' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_laplace' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_logistic' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_negative_binomial' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_noncentral_chisquare' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_noncentral_f' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'par4'=>'float', 'which'=>'int'], -'stats_cdf_noncentral_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_normal' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_poisson' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], -'stats_cdf_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], -'stats_cdf_uniform' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_cdf_weibull' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_covariance' => ['float', 'a'=>'array', 'b'=>'array'], -'stats_den_uniform' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], -'stats_dens_beta' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], -'stats_dens_cauchy' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], -'stats_dens_chisquare' => ['float', 'x'=>'float', 'dfr'=>'float'], -'stats_dens_exponential' => ['float', 'x'=>'float', 'scale'=>'float'], -'stats_dens_f' => ['float', 'x'=>'float', 'dfr1'=>'float', 'dfr2'=>'float'], -'stats_dens_gamma' => ['float', 'x'=>'float', 'shape'=>'float', 'scale'=>'float'], -'stats_dens_laplace' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], -'stats_dens_logistic' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], -'stats_dens_negative_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], -'stats_dens_normal' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], -'stats_dens_pmf_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], -'stats_dens_pmf_hypergeometric' => ['float', 'n1'=>'float', 'n2'=>'float', 'N1'=>'float', 'N2'=>'float'], -'stats_dens_pmf_negative_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], -'stats_dens_pmf_poisson' => ['float', 'x'=>'float', 'lb'=>'float'], -'stats_dens_t' => ['float', 'x'=>'float', 'dfr'=>'float'], -'stats_dens_uniform' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], -'stats_dens_weibull' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], -'stats_harmonic_mean' => ['float', 'a'=>'array'], -'stats_kurtosis' => ['float', 'a'=>'array'], -'stats_rand_gen_beta' => ['float', 'a'=>'float', 'b'=>'float'], -'stats_rand_gen_chisquare' => ['float', 'df'=>'float'], -'stats_rand_gen_exponential' => ['float', 'av'=>'float'], -'stats_rand_gen_f' => ['float', 'dfn'=>'float', 'dfd'=>'float'], -'stats_rand_gen_funiform' => ['float', 'low'=>'float', 'high'=>'float'], -'stats_rand_gen_gamma' => ['float', 'a'=>'float', 'r'=>'float'], -'stats_rand_gen_ibinomial' => ['int', 'n'=>'int', 'pp'=>'float'], -'stats_rand_gen_ibinomial_negative' => ['int', 'n'=>'int', 'p'=>'float'], -'stats_rand_gen_int' => ['int'], -'stats_rand_gen_ipoisson' => ['int', 'mu'=>'float'], -'stats_rand_gen_iuniform' => ['int', 'low'=>'int', 'high'=>'int'], -'stats_rand_gen_noncenral_chisquare' => ['float', 'df'=>'float', 'xnonc'=>'float'], -'stats_rand_gen_noncentral_chisquare' => ['float', 'df'=>'float', 'xnonc'=>'float'], -'stats_rand_gen_noncentral_f' => ['float', 'dfn'=>'float', 'dfd'=>'float', 'xnonc'=>'float'], -'stats_rand_gen_noncentral_t' => ['float', 'df'=>'float', 'xnonc'=>'float'], -'stats_rand_gen_normal' => ['float', 'av'=>'float', 'sd'=>'float'], -'stats_rand_gen_t' => ['float', 'df'=>'float'], -'stats_rand_get_seeds' => ['array'], -'stats_rand_phrase_to_seeds' => ['array', 'phrase'=>'string'], -'stats_rand_ranf' => ['float'], -'stats_rand_setall' => ['void', 'iseed1'=>'int', 'iseed2'=>'int'], -'stats_skew' => ['float', 'a'=>'array'], -'stats_standard_deviation' => ['float', 'a'=>'array', 'sample='=>'bool'], -'stats_stat_binomial_coef' => ['float', 'x'=>'int', 'n'=>'int'], -'stats_stat_correlation' => ['float', 'array1'=>'array', 'array2'=>'array'], -'stats_stat_factorial' => ['float', 'n'=>'int'], -'stats_stat_gennch' => ['float', 'n'=>'int'], -'stats_stat_independent_t' => ['float', 'array1'=>'array', 'array2'=>'array'], -'stats_stat_innerproduct' => ['float', 'array1'=>'array', 'array2'=>'array'], -'stats_stat_noncentral_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], -'stats_stat_paired_t' => ['float', 'array1'=>'array', 'array2'=>'array'], -'stats_stat_percentile' => ['float', 'arr'=>'array', 'perc'=>'float'], -'stats_stat_powersum' => ['float', 'arr'=>'array', 'power'=>'float'], -'stats_variance' => ['float', 'a'=>'array', 'sample='=>'bool'], -'Stomp::__construct' => ['void', 'broker='=>'string', 'username='=>'string', 'password='=>'string', 'headers='=>'?array'], -'Stomp::abort' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], -'Stomp::ack' => ['bool', 'msg'=>'', 'headers='=>'?array'], -'Stomp::begin' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], -'Stomp::commit' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], -'Stomp::error' => ['string'], -'Stomp::getReadTimeout' => ['array'], -'Stomp::getSessionId' => ['string'], -'Stomp::hasFrame' => ['bool'], -'Stomp::readFrame' => ['array', 'class_name='=>'string'], -'Stomp::send' => ['bool', 'destination'=>'string', 'msg'=>'', 'headers='=>'?array'], -'Stomp::setReadTimeout' => ['void', 'seconds'=>'int', 'microseconds='=>'?int'], -'Stomp::subscribe' => ['bool', 'destination'=>'string', 'headers='=>'?array'], -'Stomp::unsubscribe' => ['bool', 'destination'=>'string', 'headers='=>'?array'], -'stomp_abort' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], -'stomp_ack' => ['bool', 'link'=>'resource', 'msg'=>'', 'headers='=>'?array'], -'stomp_begin' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], -'stomp_close' => ['bool', 'link'=>'resource'], -'stomp_commit' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], -'stomp_connect' => ['resource', 'link'=>'resource', 'broker='=>'string', 'username='=>'string', 'password='=>'string', 'headers='=>'?array'], -'stomp_connect_error' => ['string'], -'stomp_error' => ['string', 'link'=>'resource'], -'stomp_get_read_timeout' => ['array', 'link'=>'resource'], -'stomp_get_session_id' => ['string', 'link'=>'resource'], -'stomp_has_frame' => ['bool', 'link'=>'resource'], -'stomp_read_frame' => ['array', 'link'=>'resource', 'class_name='=>'string'], -'stomp_send' => ['bool', 'link'=>'resource', 'destination'=>'string', 'msg'=>'', 'headers='=>'?array'], -'stomp_set_read_timeout' => ['void', 'link'=>'resource', 'seconds'=>'int', 'microseconds='=>'?int'], -'stomp_subscribe' => ['bool', 'link'=>'resource', 'destination'=>'string', 'headers='=>'?array'], -'stomp_unsubscribe' => ['bool', 'link'=>'resource', 'destination'=>'string', 'headers='=>'?array'], -'stomp_version' => ['string'], -'StompException::getDetails' => ['string'], -'StompFrame::__construct' => ['void', 'command='=>'string', 'headers='=>'?array', 'body='=>'string'], -'str_contains' => ['bool', 'haystack'=>'string', 'needle'=>'string'], -'str_ends_with' => ['bool', 'haystack'=>'string', 'needle'=>'string'], -'str_getcsv' => ['non-empty-list', 'string'=>'string', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], -'str_ireplace' => ['string', 'search'=>'string', 'replace'=>'string', 'subject'=>'string', '&w_count='=>'int'], -'str_ireplace\'1' => ['string[]', 'search'=>'string', 'replace'=>'string', 'subject'=>'array', '&w_count='=>'int'], -'str_ireplace\'2' => ['string', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'string', '&w_count='=>'int'], -'str_ireplace\'3' => ['string[]', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'array', '&w_count='=>'int'], -'str_pad' => ['string', 'string'=>'string', 'length'=>'int', 'pad_string='=>'string', 'pad_type='=>'int'], -'str_repeat' => ['string', 'string'=>'string', 'times'=>'int'], -'str_replace' => ['string', 'search'=>'string', 'replace'=>'string', 'subject'=>'string', '&w_count='=>'int'], -'str_replace\'1' => ['string[]', 'search'=>'string', 'replace'=>'string', 'subject'=>'array', '&w_count='=>'int'], -'str_replace\'2' => ['string', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'string', '&w_count='=>'int'], -'str_replace\'3' => ['string[]', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'array', '&w_count='=>'int'], -'str_rot13' => ['string', 'string'=>'string'], -'str_shuffle' => ['string', 'string'=>'string'], -'str_split' => ['list', 'string'=>'string', 'length='=>'positive-int'], -'str_starts_with' => ['bool', 'haystack'=>'string', 'needle'=>'string'], -'str_word_count' => ['array|int', 'string'=>'string', 'format='=>'int', 'characters='=>'?string'], -'strcasecmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string'], -'strchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], -'strcmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string'], -'strcoll' => ['int', 'string1'=>'string', 'string2'=>'string'], -'strcspn' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'?int'], -'stream_bucket_append' => ['void', 'brigade'=>'resource', 'bucket'=>'object'], -'stream_bucket_make_writeable' => ['?object', 'brigade'=>'resource'], -'stream_bucket_new' => ['object', 'stream'=>'resource', 'buffer'=>'string'], -'stream_bucket_prepend' => ['void', 'brigade'=>'resource', 'bucket'=>'object'], -'stream_context_create' => ['resource', 'options='=>'?array', 'params='=>'?array'], -'stream_context_get_default' => ['resource', 'options='=>'?array'], -'stream_context_get_options' => ['array', 'stream_or_context'=>'resource'], -'stream_context_get_params' => ['array{notification:string,options:array}', 'context'=>'resource'], -'stream_context_set_default' => ['resource', 'options'=>'array'], -'stream_context_set_option' => ['bool', 'context'=>'', 'wrapper_or_options'=>'string', 'option_name'=>'string', 'value'=>''], -'stream_context_set_option\'1' => ['bool', 'context'=>'', 'wrapper_or_options'=>'array'], -'stream_context_set_params' => ['bool', 'context'=>'resource', 'params'=>'array'], -'stream_copy_to_stream' => ['int|false', 'from'=>'resource', 'to'=>'resource', 'length='=>'?int', 'offset='=>'int'], -'stream_encoding' => ['bool', 'stream'=>'resource', 'encoding='=>'string'], -'stream_filter_append' => ['resource|false', 'stream'=>'resource', 'filter_name'=>'string', 'mode='=>'int', 'params='=>'mixed'], -'stream_filter_prepend' => ['resource|false', 'stream'=>'resource', 'filter_name'=>'string', 'mode='=>'int', 'params='=>'mixed'], -'stream_filter_register' => ['bool', 'filter_name'=>'string', 'class'=>'string'], -'stream_filter_remove' => ['bool', 'stream_filter'=>'resource'], -'stream_get_contents' => ['string|false', 'stream'=>'resource', 'length='=>'?int', 'offset='=>'int'], -'stream_get_filters' => ['array'], -'stream_get_line' => ['string|false', 'stream'=>'resource', 'length'=>'int', 'ending='=>'string'], -'stream_get_meta_data' => ['array{timed_out:bool,blocked:bool,eof:bool,unread_bytes:int,stream_type:string,wrapper_type:string,wrapper_data:mixed,mode:string,seekable:bool,uri:string,mediatype:string,crypto?:array{protocol:string,cipher_name:string,cipher_bits:int,cipher_version:string}}', 'stream'=>'resource'], -'stream_get_transports' => ['list'], -'stream_get_wrappers' => ['list'], -'stream_is_local' => ['bool', 'stream'=>'resource|string'], -'stream_isatty' => ['bool', 'stream'=>'resource'], -'stream_notification_callback' => ['callback', 'notification_code'=>'int', 'severity'=>'int', 'message'=>'string', 'message_code'=>'int', 'bytes_transferred'=>'int', 'bytes_max'=>'int'], -'stream_register_wrapper' => ['bool', 'protocol'=>'string', 'class'=>'string', 'flags='=>'int'], -'stream_resolve_include_path' => ['string|false', 'filename'=>'string'], -'stream_select' => ['int|false', '&rw_read'=>'?resource[]', '&rw_write'=>'?resource[]', '&rw_except'=>'?resource[]', 'seconds'=>'?int', 'microseconds='=>'?int'], -'stream_set_blocking' => ['bool', 'stream'=>'resource', 'enable'=>'bool'], -'stream_set_chunk_size' => ['int', 'stream'=>'resource', 'size'=>'int'], -'stream_set_read_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], -'stream_set_timeout' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], -'stream_set_write_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], -'stream_socket_accept' => ['resource|false', 'socket'=>'resource', 'timeout='=>'?float', '&w_peer_name='=>'string'], -'stream_socket_client' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float', 'flags='=>'int', 'context='=>'?resource'], -'stream_socket_enable_crypto' => ['int|bool', 'stream'=>'resource', 'enable'=>'bool', 'crypto_method='=>'?int', 'session_stream='=>'?resource'], -'stream_socket_get_name' => ['string|false', 'socket'=>'resource', 'remote'=>'bool'], -'stream_socket_pair' => ['resource[]|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], -'stream_socket_recvfrom' => ['string|false', 'socket'=>'resource', 'length'=>'int', 'flags='=>'int', '&w_address='=>'string'], -'stream_socket_sendto' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'flags='=>'int', 'address='=>'string'], -'stream_socket_server' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'flags='=>'int', 'context='=>'resource'], -'stream_socket_shutdown' => ['bool', 'stream'=>'resource', 'mode'=>'int'], -'stream_supports_lock' => ['bool', 'stream'=>'resource'], -'stream_wrapper_register' => ['bool', 'protocol'=>'string', 'class'=>'string', 'flags='=>'int'], -'stream_wrapper_restore' => ['bool', 'protocol'=>'string'], -'stream_wrapper_unregister' => ['bool', 'protocol'=>'string'], -'streamWrapper::__construct' => ['void'], -'streamWrapper::__destruct' => ['void'], -'streamWrapper::dir_closedir' => ['bool'], -'streamWrapper::dir_opendir' => ['bool', 'path'=>'string', 'options'=>'int'], -'streamWrapper::dir_readdir' => ['string'], -'streamWrapper::dir_rewinddir' => ['bool'], -'streamWrapper::mkdir' => ['bool', 'path'=>'string', 'mode'=>'int', 'options'=>'int'], -'streamWrapper::rename' => ['bool', 'path_from'=>'string', 'path_to'=>'string'], -'streamWrapper::rmdir' => ['bool', 'path'=>'string', 'options'=>'int'], -'streamWrapper::stream_cast' => ['resource', 'cast_as'=>'int'], -'streamWrapper::stream_close' => ['void'], -'streamWrapper::stream_eof' => ['bool'], -'streamWrapper::stream_flush' => ['bool'], -'streamWrapper::stream_lock' => ['bool', 'operation'=>'mode'], -'streamWrapper::stream_metadata' => ['bool', 'path'=>'string', 'option'=>'int', 'value'=>'mixed'], -'streamWrapper::stream_open' => ['bool', 'path'=>'string', 'mode'=>'string', 'options'=>'int', 'opened_path'=>'string'], -'streamWrapper::stream_read' => ['string', 'count'=>'int'], -'streamWrapper::stream_seek' => ['bool', 'offset'=>'int', 'whence'=>'int'], -'streamWrapper::stream_set_option' => ['bool', 'option'=>'int', 'arg1'=>'int', 'arg2'=>'int'], -'streamWrapper::stream_stat' => ['array'], -'streamWrapper::stream_tell' => ['int'], -'streamWrapper::stream_truncate' => ['bool', 'new_size'=>'int'], -'streamWrapper::stream_write' => ['int', 'data'=>'string'], -'streamWrapper::unlink' => ['bool', 'path'=>'string'], -'streamWrapper::url_stat' => ['array', 'path'=>'string', 'flags'=>'int'], -'strftime' => ['string|false', 'format'=>'string', 'timestamp='=>'?int'], -'strip_tags' => ['string', 'string'=>'string', 'allowed_tags='=>'string|list|null'], -'stripcslashes' => ['string', 'string'=>'string'], -'stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'stripslashes' => ['string', 'string'=>'string'], -'stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], -'strlen' => ['0|positive-int', 'string'=>'string'], -'strnatcasecmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string'], -'strnatcmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string'], -'strncasecmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string', 'length'=>'positive-int|0'], -'strncmp' => ['int<-1,1>', 'string1'=>'string', 'string2'=>'string', 'length'=>'positive-int|0'], -'strpbrk' => ['string|false', 'string'=>'string', 'characters'=>'string'], -'strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'strptime' => ['array|false', 'timestamp'=>'string', 'format'=>'string'], -'strrchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], -'strrev' => ['string', 'string'=>'string'], -'strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], -'strspn' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'?int'], -'strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], -'strtok' => ['non-empty-string|false', 'string'=>'string', 'token'=>'string'], -'strtok\'1' => ['non-empty-string|false', 'string'=>'string'], -'strtolower' => ['lowercase-string', 'string'=>'string'], -'strtotime' => ['int|false', 'datetime'=>'string', 'baseTimestamp='=>'?int'], -'strtoupper' => ['string', 'string'=>'string'], -'strtr' => ['string', 'string'=>'string', 'from'=>'string', 'to'=>'string'], -'strtr\'1' => ['string', 'string'=>'string', 'from'=>'array'], -'strval' => ['string', 'value'=>'mixed'], -'styleObj::__construct' => ['void', 'label'=>'labelObj', 'style'=>'styleObj'], -'styleObj::convertToString' => ['string'], -'styleObj::free' => ['void'], -'styleObj::getBinding' => ['string', 'stylebinding'=>'mixed'], -'styleObj::getGeomTransform' => ['string'], -'styleObj::ms_newStyleObj' => ['styleObj', 'class'=>'classObj', 'style'=>'styleObj'], -'styleObj::removeBinding' => ['int', 'stylebinding'=>'mixed'], -'styleObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'styleObj::setBinding' => ['int', 'stylebinding'=>'mixed', 'value'=>'string'], -'styleObj::setGeomTransform' => ['int', 'value'=>'string'], -'styleObj::updateFromString' => ['int', 'snippet'=>'string'], -'substr' => ['string', 'string'=>'string', 'offset'=>'int', 'length='=>'?int'], -'substr_compare' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset'=>'int', 'length='=>'?int', 'case_insensitive='=>'bool'], -'substr_count' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'length='=>'?int'], -'substr_replace' => ['string', 'string'=>'string', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]|null'], -'substr_replace\'1' => ['string[]', 'string'=>'string[]', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]|null'], -'suhosin_encrypt_cookie' => ['string|false', 'name'=>'string', 'value'=>'string'], -'suhosin_get_raw_cookies' => ['array'], -'SVM::__construct' => ['void'], -'svm::crossvalidate' => ['float', 'problem'=>'array', 'number_of_folds'=>'int'], -'SVM::getOptions' => ['array'], -'SVM::setOptions' => ['bool', 'params'=>'array'], -'svm::train' => ['SVMModel', 'problem'=>'array', 'weights='=>'array'], -'SVMModel::__construct' => ['void', 'filename='=>'string'], -'SVMModel::checkProbabilityModel' => ['bool'], -'SVMModel::getLabels' => ['array'], -'SVMModel::getNrClass' => ['int'], -'SVMModel::getSvmType' => ['int'], -'SVMModel::getSvrProbability' => ['float'], -'SVMModel::load' => ['bool', 'filename'=>'string'], -'SVMModel::predict' => ['float', 'data'=>'array'], -'SVMModel::predict_probability' => ['float', 'data'=>'array'], -'SVMModel::save' => ['bool', 'filename'=>'string'], -'svn_add' => ['bool', 'path'=>'string', 'recursive='=>'bool', 'force='=>'bool'], -'svn_auth_get_parameter' => ['?string', 'key'=>'string'], -'svn_auth_set_parameter' => ['void', 'key'=>'string', 'value'=>'string'], -'svn_blame' => ['array', 'repository_url'=>'string', 'revision_no='=>'int'], -'svn_cat' => ['string', 'repos_url'=>'string', 'revision_no='=>'int'], -'svn_checkout' => ['bool', 'repos'=>'string', 'targetpath'=>'string', 'revision='=>'int', 'flags='=>'int'], -'svn_cleanup' => ['bool', 'workingdir'=>'string'], -'svn_client_version' => ['string'], -'svn_commit' => ['array', 'log'=>'string', 'targets'=>'array', 'dontrecurse='=>'bool'], -'svn_delete' => ['bool', 'path'=>'string', 'force='=>'bool'], -'svn_diff' => ['array', 'path1'=>'string', 'rev1'=>'int', 'path2'=>'string', 'rev2'=>'int'], -'svn_export' => ['bool', 'frompath'=>'string', 'topath'=>'string', 'working_copy='=>'bool', 'revision_no='=>'int'], -'svn_fs_abort_txn' => ['bool', 'txn'=>'resource'], -'svn_fs_apply_text' => ['resource', 'root'=>'resource', 'path'=>'string'], -'svn_fs_begin_txn2' => ['resource', 'repos'=>'resource', 'rev'=>'int'], -'svn_fs_change_node_prop' => ['bool', 'root'=>'resource', 'path'=>'string', 'name'=>'string', 'value'=>'string'], -'svn_fs_check_path' => ['int', 'fsroot'=>'resource', 'path'=>'string'], -'svn_fs_contents_changed' => ['bool', 'root1'=>'resource', 'path1'=>'string', 'root2'=>'resource', 'path2'=>'string'], -'svn_fs_copy' => ['bool', 'from_root'=>'resource', 'from_path'=>'string', 'to_root'=>'resource', 'to_path'=>'string'], -'svn_fs_delete' => ['bool', 'root'=>'resource', 'path'=>'string'], -'svn_fs_dir_entries' => ['array', 'fsroot'=>'resource', 'path'=>'string'], -'svn_fs_file_contents' => ['resource', 'fsroot'=>'resource', 'path'=>'string'], -'svn_fs_file_length' => ['int', 'fsroot'=>'resource', 'path'=>'string'], -'svn_fs_is_dir' => ['bool', 'root'=>'resource', 'path'=>'string'], -'svn_fs_is_file' => ['bool', 'root'=>'resource', 'path'=>'string'], -'svn_fs_make_dir' => ['bool', 'root'=>'resource', 'path'=>'string'], -'svn_fs_make_file' => ['bool', 'root'=>'resource', 'path'=>'string'], -'svn_fs_node_created_rev' => ['int', 'fsroot'=>'resource', 'path'=>'string'], -'svn_fs_node_prop' => ['string', 'fsroot'=>'resource', 'path'=>'string', 'propname'=>'string'], -'svn_fs_props_changed' => ['bool', 'root1'=>'resource', 'path1'=>'string', 'root2'=>'resource', 'path2'=>'string'], -'svn_fs_revision_prop' => ['string', 'fs'=>'resource', 'revnum'=>'int', 'propname'=>'string'], -'svn_fs_revision_root' => ['resource', 'fs'=>'resource', 'revnum'=>'int'], -'svn_fs_txn_root' => ['resource', 'txn'=>'resource'], -'svn_fs_youngest_rev' => ['int', 'fs'=>'resource'], -'svn_import' => ['bool', 'path'=>'string', 'url'=>'string', 'nonrecursive'=>'bool'], -'svn_log' => ['array', 'repos_url'=>'string', 'start_revision='=>'int', 'end_revision='=>'int', 'limit='=>'int', 'flags='=>'int'], -'svn_ls' => ['array', 'repos_url'=>'string', 'revision_no='=>'int', 'recurse='=>'bool', 'peg='=>'bool'], -'svn_mkdir' => ['bool', 'path'=>'string', 'log_message='=>'string'], -'svn_move' => ['mixed', 'src_path'=>'string', 'dst_path'=>'string', 'force='=>'bool'], -'svn_propget' => ['mixed', 'path'=>'string', 'property_name'=>'string', 'recurse='=>'bool', 'revision'=>'int'], -'svn_proplist' => ['mixed', 'path'=>'string', 'recurse='=>'bool', 'revision'=>'int'], -'svn_repos_create' => ['resource', 'path'=>'string', 'config='=>'array', 'fsconfig='=>'array'], -'svn_repos_fs' => ['resource', 'repos'=>'resource'], -'svn_repos_fs_begin_txn_for_commit' => ['resource', 'repos'=>'resource', 'rev'=>'int', 'author'=>'string', 'log_msg'=>'string'], -'svn_repos_fs_commit_txn' => ['int', 'txn'=>'resource'], -'svn_repos_hotcopy' => ['bool', 'repospath'=>'string', 'destpath'=>'string', 'cleanlogs'=>'bool'], -'svn_repos_open' => ['resource', 'path'=>'string'], -'svn_repos_recover' => ['bool', 'path'=>'string'], -'svn_revert' => ['bool', 'path'=>'string', 'recursive='=>'bool'], -'svn_status' => ['array', 'path'=>'string', 'flags='=>'int'], -'svn_update' => ['int|false', 'path'=>'string', 'revno='=>'int', 'recurse='=>'bool'], -'swf_actiongeturl' => ['', 'url'=>'string', 'target'=>'string'], -'swf_actiongotoframe' => ['', 'framenumber'=>'int'], -'swf_actiongotolabel' => ['', 'label'=>'string'], -'swf_actionnextframe' => [''], -'swf_actionplay' => [''], -'swf_actionprevframe' => [''], -'swf_actionsettarget' => ['', 'target'=>'string'], -'swf_actionstop' => [''], -'swf_actiontogglequality' => [''], -'swf_actionwaitforframe' => ['', 'framenumber'=>'int', 'skipcount'=>'int'], -'swf_addbuttonrecord' => ['', 'states'=>'int', 'shapeid'=>'int', 'depth'=>'int'], -'swf_addcolor' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], -'swf_closefile' => ['', 'return_file='=>'int'], -'swf_definebitmap' => ['', 'objid'=>'int', 'image_name'=>'string'], -'swf_definefont' => ['', 'fontid'=>'int', 'fontname'=>'string'], -'swf_defineline' => ['', 'objid'=>'int', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'width'=>'float'], -'swf_definepoly' => ['', 'objid'=>'int', 'coords'=>'array', 'npoints'=>'int', 'width'=>'float'], -'swf_definerect' => ['', 'objid'=>'int', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'width'=>'float'], -'swf_definetext' => ['', 'objid'=>'int', 'string'=>'string', 'docenter'=>'int'], -'swf_endbutton' => [''], -'swf_enddoaction' => [''], -'swf_endshape' => [''], -'swf_endsymbol' => [''], -'swf_fontsize' => ['', 'size'=>'float'], -'swf_fontslant' => ['', 'slant'=>'float'], -'swf_fonttracking' => ['', 'tracking'=>'float'], -'swf_getbitmapinfo' => ['array', 'bitmapid'=>'int'], -'swf_getfontinfo' => ['array'], -'swf_getframe' => ['int'], -'swf_labelframe' => ['', 'name'=>'string'], -'swf_lookat' => ['', 'view_x'=>'float', 'view_y'=>'float', 'view_z'=>'float', 'reference_x'=>'float', 'reference_y'=>'float', 'reference_z'=>'float', 'twist'=>'float'], -'swf_modifyobject' => ['', 'depth'=>'int', 'how'=>'int'], -'swf_mulcolor' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], -'swf_nextid' => ['int'], -'swf_oncondition' => ['', 'transition'=>'int'], -'swf_openfile' => ['', 'filename'=>'string', 'width'=>'float', 'height'=>'float', 'framerate'=>'float', 'r'=>'float', 'g'=>'float', 'b'=>'float'], -'swf_ortho' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float', 'zmin'=>'float', 'zmax'=>'float'], -'swf_ortho2' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float'], -'swf_perspective' => ['', 'fovy'=>'float', 'aspect'=>'float', 'near'=>'float', 'far'=>'float'], -'swf_placeobject' => ['', 'objid'=>'int', 'depth'=>'int'], -'swf_polarview' => ['', 'dist'=>'float', 'azimuth'=>'float', 'incidence'=>'float', 'twist'=>'float'], -'swf_popmatrix' => [''], -'swf_posround' => ['', 'round'=>'int'], -'swf_pushmatrix' => [''], -'swf_removeobject' => ['', 'depth'=>'int'], -'swf_rotate' => ['', 'angle'=>'float', 'axis'=>'string'], -'swf_scale' => ['', 'x'=>'float', 'y'=>'float', 'z'=>'float'], -'swf_setfont' => ['', 'fontid'=>'int'], -'swf_setframe' => ['', 'framenumber'=>'int'], -'swf_shapearc' => ['', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'ang1'=>'float', 'ang2'=>'float'], -'swf_shapecurveto' => ['', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], -'swf_shapecurveto3' => ['', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], -'swf_shapefillbitmapclip' => ['', 'bitmapid'=>'int'], -'swf_shapefillbitmaptile' => ['', 'bitmapid'=>'int'], -'swf_shapefilloff' => [''], -'swf_shapefillsolid' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], -'swf_shapelinesolid' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float', 'width'=>'float'], -'swf_shapelineto' => ['', 'x'=>'float', 'y'=>'float'], -'swf_shapemoveto' => ['', 'x'=>'float', 'y'=>'float'], -'swf_showframe' => [''], -'swf_startbutton' => ['', 'objid'=>'int', 'type'=>'int'], -'swf_startdoaction' => [''], -'swf_startshape' => ['', 'objid'=>'int'], -'swf_startsymbol' => ['', 'objid'=>'int'], -'swf_textwidth' => ['float', 'string'=>'string'], -'swf_translate' => ['', 'x'=>'float', 'y'=>'float', 'z'=>'float'], -'swf_viewport' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float'], -'SWFAction::__construct' => ['void', 'script'=>'string'], -'SWFBitmap::__construct' => ['void', 'file'=>'', 'alphafile='=>''], -'SWFBitmap::getHeight' => ['float'], -'SWFBitmap::getWidth' => ['float'], -'SWFButton::__construct' => ['void'], -'SWFButton::addAction' => ['void', 'action'=>'swfaction', 'flags'=>'int'], -'SWFButton::addASound' => ['SWFSoundInstance', 'sound'=>'swfsound', 'flags'=>'int'], -'SWFButton::addShape' => ['void', 'shape'=>'swfshape', 'flags'=>'int'], -'SWFButton::setAction' => ['void', 'action'=>'swfaction'], -'SWFButton::setDown' => ['void', 'shape'=>'swfshape'], -'SWFButton::setHit' => ['void', 'shape'=>'swfshape'], -'SWFButton::setMenu' => ['void', 'flag'=>'int'], -'SWFButton::setOver' => ['void', 'shape'=>'swfshape'], -'SWFButton::setUp' => ['void', 'shape'=>'swfshape'], -'SWFDisplayItem::addAction' => ['void', 'action'=>'swfaction', 'flags'=>'int'], -'SWFDisplayItem::addColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFDisplayItem::endMask' => ['void'], -'SWFDisplayItem::getRot' => ['float'], -'SWFDisplayItem::getX' => ['float'], -'SWFDisplayItem::getXScale' => ['float'], -'SWFDisplayItem::getXSkew' => ['float'], -'SWFDisplayItem::getY' => ['float'], -'SWFDisplayItem::getYScale' => ['float'], -'SWFDisplayItem::getYSkew' => ['float'], -'SWFDisplayItem::move' => ['void', 'dx'=>'float', 'dy'=>'float'], -'SWFDisplayItem::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], -'SWFDisplayItem::multColor' => ['void', 'red'=>'float', 'green'=>'float', 'blue'=>'float', 'a='=>'float'], -'SWFDisplayItem::remove' => ['void'], -'SWFDisplayItem::rotate' => ['void', 'angle'=>'float'], -'SWFDisplayItem::rotateTo' => ['void', 'angle'=>'float'], -'SWFDisplayItem::scale' => ['void', 'dx'=>'float', 'dy'=>'float'], -'SWFDisplayItem::scaleTo' => ['void', 'x'=>'float', 'y='=>'float'], -'SWFDisplayItem::setDepth' => ['void', 'depth'=>'int'], -'SWFDisplayItem::setMaskLevel' => ['void', 'level'=>'int'], -'SWFDisplayItem::setMatrix' => ['void', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], -'SWFDisplayItem::setName' => ['void', 'name'=>'string'], -'SWFDisplayItem::setRatio' => ['void', 'ratio'=>'float'], -'SWFDisplayItem::skewX' => ['void', 'ddegrees'=>'float'], -'SWFDisplayItem::skewXTo' => ['void', 'degrees'=>'float'], -'SWFDisplayItem::skewY' => ['void', 'ddegrees'=>'float'], -'SWFDisplayItem::skewYTo' => ['void', 'degrees'=>'float'], -'SWFFill::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], -'SWFFill::rotateTo' => ['void', 'angle'=>'float'], -'SWFFill::scaleTo' => ['void', 'x'=>'float', 'y='=>'float'], -'SWFFill::skewXTo' => ['void', 'x'=>'float'], -'SWFFill::skewYTo' => ['void', 'y'=>'float'], -'SWFFont::__construct' => ['void', 'filename'=>'string'], -'SWFFont::getAscent' => ['float'], -'SWFFont::getDescent' => ['float'], -'SWFFont::getLeading' => ['float'], -'SWFFont::getShape' => ['string', 'code'=>'int'], -'SWFFont::getUTF8Width' => ['float', 'string'=>'string'], -'SWFFont::getWidth' => ['float', 'string'=>'string'], -'SWFFontChar::addChars' => ['void', 'char'=>'string'], -'SWFFontChar::addUTF8Chars' => ['void', 'char'=>'string'], -'SWFGradient::__construct' => ['void'], -'SWFGradient::addEntry' => ['void', 'ratio'=>'float', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], -'SWFMorph::__construct' => ['void'], -'SWFMorph::getShape1' => ['SWFShape'], -'SWFMorph::getShape2' => ['SWFShape'], -'SWFMovie::__construct' => ['void', 'version='=>'int'], -'SWFMovie::add' => ['mixed', 'instance'=>'object'], -'SWFMovie::addExport' => ['void', 'char'=>'swfcharacter', 'name'=>'string'], -'SWFMovie::addFont' => ['mixed', 'font'=>'swffont'], -'SWFMovie::importChar' => ['SWFSprite', 'libswf'=>'string', 'name'=>'string'], -'SWFMovie::importFont' => ['SWFFontChar', 'libswf'=>'string', 'name'=>'string'], -'SWFMovie::labelFrame' => ['void', 'label'=>'string'], -'SWFMovie::namedAnchor' => [''], -'SWFMovie::nextFrame' => ['void'], -'SWFMovie::output' => ['int', 'compression='=>'int'], -'SWFMovie::protect' => [''], -'SWFMovie::remove' => ['void', 'instance'=>'object'], -'SWFMovie::save' => ['int', 'filename'=>'string', 'compression='=>'int'], -'SWFMovie::saveToFile' => ['int', 'x'=>'resource', 'compression='=>'int'], -'SWFMovie::setbackground' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], -'SWFMovie::setDimension' => ['void', 'width'=>'float', 'height'=>'float'], -'SWFMovie::setFrames' => ['void', 'number'=>'int'], -'SWFMovie::setRate' => ['void', 'rate'=>'float'], -'SWFMovie::startSound' => ['SWFSoundInstance', 'sound'=>'swfsound'], -'SWFMovie::stopSound' => ['void', 'sound'=>'swfsound'], -'SWFMovie::streamMP3' => ['int', 'mp3file'=>'mixed', 'skip='=>'float'], -'SWFMovie::writeExports' => ['void'], -'SWFPrebuiltClip::__construct' => ['void', 'file'=>''], -'SWFShape::__construct' => ['void'], -'SWFShape::addFill' => ['SWFFill', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int', 'bitmap='=>'swfbitmap', 'flags='=>'int', 'gradient='=>'swfgradient'], -'SWFShape::addFill\'1' => ['SWFFill', 'bitmap'=>'SWFBitmap', 'flags='=>'int'], -'SWFShape::addFill\'2' => ['SWFFill', 'gradient'=>'SWFGradient', 'flags='=>'int'], -'SWFShape::drawArc' => ['void', 'r'=>'float', 'startangle'=>'float', 'endangle'=>'float'], -'SWFShape::drawCircle' => ['void', 'r'=>'float'], -'SWFShape::drawCubic' => ['int', 'bx'=>'float', 'by'=>'float', 'cx'=>'float', 'cy'=>'float', 'dx'=>'float', 'dy'=>'float'], -'SWFShape::drawCubicTo' => ['int', 'bx'=>'float', 'by'=>'float', 'cx'=>'float', 'cy'=>'float', 'dx'=>'float', 'dy'=>'float'], -'SWFShape::drawCurve' => ['int', 'controldx'=>'float', 'controldy'=>'float', 'anchordx'=>'float', 'anchordy'=>'float', 'targetdx='=>'float', 'targetdy='=>'float'], -'SWFShape::drawCurveTo' => ['int', 'controlx'=>'float', 'controly'=>'float', 'anchorx'=>'float', 'anchory'=>'float', 'targetx='=>'float', 'targety='=>'float'], -'SWFShape::drawGlyph' => ['void', 'font'=>'swffont', 'character'=>'string', 'size='=>'int'], -'SWFShape::drawLine' => ['void', 'dx'=>'float', 'dy'=>'float'], -'SWFShape::drawLineTo' => ['void', 'x'=>'float', 'y'=>'float'], -'SWFShape::movePen' => ['void', 'dx'=>'float', 'dy'=>'float'], -'SWFShape::movePenTo' => ['void', 'x'=>'float', 'y'=>'float'], -'SWFShape::setLeftFill' => ['', 'fill'=>'swfgradient', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFShape::setLine' => ['', 'shape'=>'swfshape', 'width'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFShape::setRightFill' => ['', 'fill'=>'swfgradient', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFSound' => ['SWFSound', 'filename'=>'string', 'flags='=>'int'], -'SWFSound::__construct' => ['void', 'filename'=>'string', 'flags='=>'int'], -'SWFSoundInstance::loopCount' => ['void', 'point'=>'int'], -'SWFSoundInstance::loopInPoint' => ['void', 'point'=>'int'], -'SWFSoundInstance::loopOutPoint' => ['void', 'point'=>'int'], -'SWFSoundInstance::noMultiple' => ['void'], -'SWFSprite::__construct' => ['void'], -'SWFSprite::add' => ['void', 'object'=>'object'], -'SWFSprite::labelFrame' => ['void', 'label'=>'string'], -'SWFSprite::nextFrame' => ['void'], -'SWFSprite::remove' => ['void', 'object'=>'object'], -'SWFSprite::setFrames' => ['void', 'number'=>'int'], -'SWFSprite::startSound' => ['SWFSoundInstance', 'sount'=>'swfsound'], -'SWFSprite::stopSound' => ['void', 'sount'=>'swfsound'], -'SWFText::__construct' => ['void'], -'SWFText::addString' => ['void', 'string'=>'string'], -'SWFText::addUTF8String' => ['void', 'text'=>'string'], -'SWFText::getAscent' => ['float'], -'SWFText::getDescent' => ['float'], -'SWFText::getLeading' => ['float'], -'SWFText::getUTF8Width' => ['float', 'string'=>'string'], -'SWFText::getWidth' => ['float', 'string'=>'string'], -'SWFText::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], -'SWFText::setColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFText::setFont' => ['void', 'font'=>'swffont'], -'SWFText::setHeight' => ['void', 'height'=>'float'], -'SWFText::setSpacing' => ['void', 'spacing'=>'float'], -'SWFTextField::__construct' => ['void', 'flags='=>'int'], -'SWFTextField::addChars' => ['void', 'chars'=>'string'], -'SWFTextField::addString' => ['void', 'string'=>'string'], -'SWFTextField::align' => ['void', 'alignement'=>'int'], -'SWFTextField::setBounds' => ['void', 'width'=>'float', 'height'=>'float'], -'SWFTextField::setColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], -'SWFTextField::setFont' => ['void', 'font'=>'swffont'], -'SWFTextField::setHeight' => ['void', 'height'=>'float'], -'SWFTextField::setIndentation' => ['void', 'width'=>'float'], -'SWFTextField::setLeftMargin' => ['void', 'width'=>'float'], -'SWFTextField::setLineSpacing' => ['void', 'height'=>'float'], -'SWFTextField::setMargins' => ['void', 'left'=>'float', 'right'=>'float'], -'SWFTextField::setName' => ['void', 'name'=>'string'], -'SWFTextField::setPadding' => ['void', 'padding'=>'float'], -'SWFTextField::setRightMargin' => ['void', 'width'=>'float'], -'SWFVideoStream::__construct' => ['void', 'file='=>'string'], -'SWFVideoStream::getNumFrames' => ['int'], -'SWFVideoStream::setDimension' => ['void', 'x'=>'int', 'y'=>'int'], -'Swish::__construct' => ['void', 'index_names'=>'string'], -'Swish::getMetaList' => ['array', 'index_name'=>'string'], -'Swish::getPropertyList' => ['array', 'index_name'=>'string'], -'Swish::prepare' => ['object', 'query='=>'string'], -'Swish::query' => ['object', 'query'=>'string'], -'SwishResult::getMetaList' => ['array'], -'SwishResult::stem' => ['array', 'word'=>'string'], -'SwishResults::getParsedWords' => ['array', 'index_name'=>'string'], -'SwishResults::getRemovedStopwords' => ['array', 'index_name'=>'string'], -'SwishResults::nextResult' => ['object'], -'SwishResults::seekResult' => ['int', 'position'=>'int'], -'SwishSearch::execute' => ['object', 'query='=>'string'], -'SwishSearch::resetLimit' => [''], -'SwishSearch::setLimit' => ['', 'property'=>'string', 'low'=>'string', 'high'=>'string'], -'SwishSearch::setPhraseDelimiter' => ['', 'delimiter'=>'string'], -'SwishSearch::setSort' => ['', 'sort'=>'string'], -'SwishSearch::setStructure' => ['', 'structure'=>'int'], -'swoole\async::dnsLookup' => ['void', 'hostname'=>'string', 'callback'=>'callable'], -'swoole\async::read' => ['bool', 'filename'=>'string', 'callback'=>'callable', 'chunk_size='=>'integer', 'offset='=>'integer'], -'swoole\async::readFile' => ['void', 'filename'=>'string', 'callback'=>'callable'], -'swoole\async::set' => ['void', 'settings'=>'array'], -'swoole\async::write' => ['void', 'filename'=>'string', 'content'=>'string', 'offset='=>'integer', 'callback='=>'callable'], -'swoole\async::writeFile' => ['void', 'filename'=>'string', 'content'=>'string', 'callback='=>'callable', 'flags='=>'string'], -'swoole\atomic::add' => ['integer', 'add_value='=>'integer'], -'swoole\atomic::cmpset' => ['integer', 'cmp_value'=>'integer', 'new_value'=>'integer'], -'swoole\atomic::get' => ['integer'], -'swoole\atomic::set' => ['integer', 'value'=>'integer'], -'swoole\atomic::sub' => ['integer', 'sub_value='=>'integer'], -'swoole\buffer::__destruct' => ['void'], -'swoole\buffer::__toString' => ['string'], -'swoole\buffer::append' => ['integer', 'data'=>'string'], -'swoole\buffer::clear' => ['void'], -'swoole\buffer::expand' => ['integer', 'size'=>'integer'], -'swoole\buffer::read' => ['string', 'offset'=>'integer', 'length'=>'integer'], -'swoole\buffer::recycle' => ['void'], -'swoole\buffer::substr' => ['string', 'offset'=>'integer', 'length='=>'integer', 'remove='=>'bool'], -'swoole\buffer::write' => ['void', 'offset'=>'integer', 'data'=>'string'], -'swoole\channel::__destruct' => ['void'], -'swoole\channel::pop' => ['mixed'], -'swoole\channel::push' => ['bool', 'data'=>'string'], -'swoole\channel::stats' => ['array'], -'swoole\client::__destruct' => ['void'], -'swoole\client::close' => ['bool', 'force='=>'bool'], -'swoole\client::connect' => ['bool', 'host'=>'string', 'port='=>'integer', 'timeout='=>'integer', 'flag='=>'integer'], -'swoole\client::getpeername' => ['array'], -'swoole\client::getsockname' => ['array'], -'swoole\client::isConnected' => ['bool'], -'swoole\client::on' => ['void', 'event'=>'string', 'callback'=>'callable'], -'swoole\client::pause' => ['void'], -'swoole\client::pipe' => ['void', 'socket'=>'string'], -'swoole\client::recv' => ['void', 'size='=>'string', 'flag='=>'string'], -'swoole\client::resume' => ['void'], -'swoole\client::send' => ['integer', 'data'=>'string', 'flag='=>'string'], -'swoole\client::sendfile' => ['bool', 'filename'=>'string', 'offset='=>'int'], -'swoole\client::sendto' => ['bool', 'ip'=>'string', 'port'=>'integer', 'data'=>'string'], -'swoole\client::set' => ['void', 'settings'=>'array'], -'swoole\client::sleep' => ['void'], -'swoole\client::wakeup' => ['void'], -'swoole\connection\iterator::count' => ['int'], -'swoole\connection\iterator::current' => ['Connection'], -'swoole\connection\iterator::key' => ['int'], -'swoole\connection\iterator::next' => ['Connection'], -'swoole\connection\iterator::offsetExists' => ['bool', 'index'=>'int'], -'swoole\connection\iterator::offsetGet' => ['Connection', 'index'=>'string'], -'swoole\connection\iterator::offsetSet' => ['void', 'offset'=>'int', 'connection'=>'mixed'], -'swoole\connection\iterator::offsetUnset' => ['void', 'offset'=>'int'], -'swoole\connection\iterator::rewind' => ['void'], -'swoole\connection\iterator::valid' => ['bool'], -'swoole\coroutine::call_user_func' => ['mixed', 'callback'=>'callable', 'parameter='=>'mixed', '...args='=>'mixed'], -'swoole\coroutine::call_user_func_array' => ['mixed', 'callback'=>'callable', 'param_array'=>'array'], -'swoole\coroutine::cli_wait' => ['ReturnType'], -'swoole\coroutine::create' => ['ReturnType'], -'swoole\coroutine::getuid' => ['ReturnType'], -'swoole\coroutine::resume' => ['ReturnType'], -'swoole\coroutine::suspend' => ['ReturnType'], -'swoole\coroutine\client::__destruct' => ['ReturnType'], -'swoole\coroutine\client::close' => ['ReturnType'], -'swoole\coroutine\client::connect' => ['ReturnType'], -'swoole\coroutine\client::getpeername' => ['ReturnType'], -'swoole\coroutine\client::getsockname' => ['ReturnType'], -'swoole\coroutine\client::isConnected' => ['ReturnType'], -'swoole\coroutine\client::recv' => ['ReturnType'], -'swoole\coroutine\client::send' => ['ReturnType'], -'swoole\coroutine\client::sendfile' => ['ReturnType'], -'swoole\coroutine\client::sendto' => ['ReturnType'], -'swoole\coroutine\client::set' => ['ReturnType'], -'swoole\coroutine\http\client::__destruct' => ['ReturnType'], -'swoole\coroutine\http\client::addFile' => ['ReturnType'], -'swoole\coroutine\http\client::close' => ['ReturnType'], -'swoole\coroutine\http\client::execute' => ['ReturnType'], -'swoole\coroutine\http\client::get' => ['ReturnType'], -'swoole\coroutine\http\client::getDefer' => ['ReturnType'], -'swoole\coroutine\http\client::isConnected' => ['ReturnType'], -'swoole\coroutine\http\client::post' => ['ReturnType'], -'swoole\coroutine\http\client::recv' => ['ReturnType'], -'swoole\coroutine\http\client::set' => ['ReturnType'], -'swoole\coroutine\http\client::setCookies' => ['ReturnType'], -'swoole\coroutine\http\client::setData' => ['ReturnType'], -'swoole\coroutine\http\client::setDefer' => ['ReturnType'], -'swoole\coroutine\http\client::setHeaders' => ['ReturnType'], -'swoole\coroutine\http\client::setMethod' => ['ReturnType'], -'swoole\coroutine\mysql::__destruct' => ['ReturnType'], -'swoole\coroutine\mysql::close' => ['ReturnType'], -'swoole\coroutine\mysql::connect' => ['ReturnType'], -'swoole\coroutine\mysql::getDefer' => ['ReturnType'], -'swoole\coroutine\mysql::query' => ['ReturnType'], -'swoole\coroutine\mysql::recv' => ['ReturnType'], -'swoole\coroutine\mysql::setDefer' => ['ReturnType'], -'swoole\event::add' => ['bool', 'fd'=>'int', 'read_callback'=>'callable', 'write_callback='=>'callable', 'events='=>'string'], -'swoole\event::defer' => ['void', 'callback'=>'mixed'], -'swoole\event::del' => ['bool', 'fd'=>'string'], -'swoole\event::exit' => ['void'], -'swoole\event::set' => ['bool', 'fd'=>'int', 'read_callback='=>'string', 'write_callback='=>'string', 'events='=>'string'], -'swoole\event::wait' => ['void'], -'swoole\event::write' => ['void', 'fd'=>'string', 'data'=>'string'], -'swoole\http\client::__destruct' => ['void'], -'swoole\http\client::addFile' => ['void', 'path'=>'string', 'name'=>'string', 'type='=>'string', 'filename='=>'string', 'offset='=>'string'], -'swoole\http\client::close' => ['void'], -'swoole\http\client::download' => ['void', 'path'=>'string', 'file'=>'string', 'callback'=>'callable', 'offset='=>'integer'], -'swoole\http\client::execute' => ['void', 'path'=>'string', 'callback'=>'string'], -'swoole\http\client::get' => ['void', 'path'=>'string', 'callback'=>'callable'], -'swoole\http\client::isConnected' => ['bool'], -'swoole\http\client::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\http\client::post' => ['void', 'path'=>'string', 'data'=>'string', 'callback'=>'callable'], -'swoole\http\client::push' => ['void', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string'], -'swoole\http\client::set' => ['void', 'settings'=>'array'], -'swoole\http\client::setCookies' => ['void', 'cookies'=>'array'], -'swoole\http\client::setData' => ['ReturnType', 'data'=>'string'], -'swoole\http\client::setHeaders' => ['void', 'headers'=>'array'], -'swoole\http\client::setMethod' => ['void', 'method'=>'string'], -'swoole\http\client::upgrade' => ['void', 'path'=>'string', 'callback'=>'string'], -'swoole\http\request::__destruct' => ['void'], -'swoole\http\request::rawcontent' => ['string'], -'swoole\http\response::__destruct' => ['void'], -'swoole\http\response::cookie' => ['string', 'name'=>'string', 'value='=>'string', 'expires='=>'string', 'path='=>'string', 'domain='=>'string', 'secure='=>'string', 'httponly='=>'string'], -'swoole\http\response::end' => ['void', 'content='=>'string'], -'swoole\http\response::gzip' => ['ReturnType', 'compress_level='=>'string'], -'swoole\http\response::header' => ['void', 'key'=>'string', 'value'=>'string', 'ucwords='=>'string'], -'swoole\http\response::initHeader' => ['ReturnType'], -'swoole\http\response::rawcookie' => ['ReturnType', 'name'=>'string', 'value='=>'string', 'expires='=>'string', 'path='=>'string', 'domain='=>'string', 'secure='=>'string', 'httponly='=>'string'], -'swoole\http\response::sendfile' => ['ReturnType', 'filename'=>'string', 'offset='=>'int'], -'swoole\http\response::status' => ['ReturnType', 'http_code'=>'string'], -'swoole\http\response::write' => ['void', 'content'=>'string'], -'swoole\http\server::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\http\server::start' => ['void'], -'swoole\lock::__destruct' => ['void'], -'swoole\lock::lock' => ['void'], -'swoole\lock::lock_read' => ['void'], -'swoole\lock::trylock' => ['void'], -'swoole\lock::trylock_read' => ['void'], -'swoole\lock::unlock' => ['void'], -'swoole\mmap::open' => ['ReturnType', 'filename'=>'string', 'size='=>'string', 'offset='=>'string'], -'swoole\mysql::__destruct' => ['void'], -'swoole\mysql::close' => ['void'], -'swoole\mysql::connect' => ['void', 'server_config'=>'array', 'callback'=>'callable'], -'swoole\mysql::getBuffer' => ['ReturnType'], -'swoole\mysql::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\mysql::query' => ['ReturnType', 'sql'=>'string', 'callback'=>'callable'], -'swoole\process::__destruct' => ['void'], -'swoole\process::alarm' => ['void', 'interval_usec'=>'integer'], -'swoole\process::close' => ['void'], -'swoole\process::daemon' => ['void', 'nochdir='=>'bool', 'noclose='=>'bool'], -'swoole\process::exec' => ['ReturnType', 'exec_file'=>'string', 'args'=>'string'], -'swoole\process::exit' => ['void', 'exit_code='=>'string'], -'swoole\process::freeQueue' => ['void'], -'swoole\process::kill' => ['void', 'pid'=>'integer', 'signal_no='=>'string'], -'swoole\process::name' => ['void', 'process_name'=>'string'], -'swoole\process::pop' => ['mixed', 'maxsize='=>'integer'], -'swoole\process::push' => ['bool', 'data'=>'string'], -'swoole\process::read' => ['string', 'maxsize='=>'integer'], -'swoole\process::signal' => ['void', 'signal_no'=>'string', 'callback'=>'callable'], -'swoole\process::start' => ['void'], -'swoole\process::statQueue' => ['array'], -'swoole\process::useQueue' => ['bool', 'key'=>'integer', 'mode='=>'integer'], -'swoole\process::wait' => ['array', 'blocking='=>'bool'], -'swoole\process::write' => ['integer', 'data'=>'string'], -'swoole\redis\server::format' => ['ReturnType', 'type'=>'string', 'value='=>'string'], -'swoole\redis\server::setHandler' => ['ReturnType', 'command'=>'string', 'callback'=>'string', 'number_of_string_param='=>'string', 'type_of_array_param='=>'string'], -'swoole\redis\server::start' => ['ReturnType'], -'swoole\serialize::pack' => ['ReturnType', 'data'=>'string', 'is_fast='=>'int'], -'swoole\serialize::unpack' => ['ReturnType', 'data'=>'string', 'args='=>'string'], -'swoole\server::addlistener' => ['void', 'host'=>'string', 'port'=>'integer', 'socket_type'=>'string'], -'swoole\server::addProcess' => ['bool', 'process'=>'swoole_process'], -'swoole\server::after' => ['ReturnType', 'after_time_ms'=>'integer', 'callback'=>'callable', 'param='=>'string'], -'swoole\server::bind' => ['bool', 'fd'=>'integer', 'uid'=>'integer'], -'swoole\server::close' => ['bool', 'fd'=>'integer', 'reset='=>'bool'], -'swoole\server::confirm' => ['bool', 'fd'=>'integer'], -'swoole\server::connection_info' => ['array', 'fd'=>'integer', 'reactor_id='=>'integer'], -'swoole\server::connection_list' => ['array', 'start_fd'=>'integer', 'pagesize='=>'integer'], -'swoole\server::defer' => ['void', 'callback'=>'callable'], -'swoole\server::exist' => ['bool', 'fd'=>'integer'], -'swoole\server::finish' => ['void', 'data'=>'string'], -'swoole\server::getClientInfo' => ['ReturnType', 'fd'=>'integer', 'reactor_id='=>'integer'], -'swoole\server::getClientList' => ['array', 'start_fd'=>'integer', 'pagesize='=>'integer'], -'swoole\server::getLastError' => ['integer'], -'swoole\server::heartbeat' => ['mixed', 'if_close_connection'=>'bool'], -'swoole\server::listen' => ['bool', 'host'=>'string', 'port'=>'integer', 'socket_type'=>'string'], -'swoole\server::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\server::pause' => ['void', 'fd'=>'integer'], -'swoole\server::protect' => ['void', 'fd'=>'integer', 'is_protected='=>'bool'], -'swoole\server::reload' => ['bool'], -'swoole\server::resume' => ['void', 'fd'=>'integer'], -'swoole\server::send' => ['bool', 'fd'=>'integer', 'data'=>'string', 'reactor_id='=>'integer'], -'swoole\server::sendfile' => ['bool', 'fd'=>'integer', 'filename'=>'string', 'offset='=>'integer'], -'swoole\server::sendMessage' => ['bool', 'worker_id'=>'integer', 'data'=>'string'], -'swoole\server::sendto' => ['bool', 'ip'=>'string', 'port'=>'integer', 'data'=>'string', 'server_socket='=>'string'], -'swoole\server::sendwait' => ['bool', 'fd'=>'integer', 'data'=>'string'], -'swoole\server::set' => ['ReturnType', 'settings'=>'array'], -'swoole\server::shutdown' => ['void'], -'swoole\server::start' => ['void'], -'swoole\server::stats' => ['array'], -'swoole\server::stop' => ['bool', 'worker_id='=>'integer'], -'swoole\server::task' => ['mixed', 'data'=>'string', 'dst_worker_id='=>'integer', 'callback='=>'callable'], -'swoole\server::taskwait' => ['void', 'data'=>'string', 'timeout='=>'float', 'worker_id='=>'integer'], -'swoole\server::taskWaitMulti' => ['void', 'tasks'=>'array', 'timeout_ms='=>'double'], -'swoole\server::tick' => ['void', 'interval_ms'=>'integer', 'callback'=>'callable'], -'swoole\server\port::__destruct' => ['void'], -'swoole\server\port::on' => ['ReturnType', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\server\port::set' => ['void', 'settings'=>'array'], -'swoole\table::column' => ['ReturnType', 'name'=>'string', 'type'=>'string', 'size='=>'integer'], -'swoole\table::count' => ['integer'], -'swoole\table::create' => ['void'], -'swoole\table::current' => ['array'], -'swoole\table::decr' => ['ReturnType', 'key'=>'string', 'column'=>'string', 'decrby='=>'integer'], -'swoole\table::del' => ['void', 'key'=>'string'], -'swoole\table::destroy' => ['void'], -'swoole\table::exist' => ['bool', 'key'=>'string'], -'swoole\table::get' => ['integer', 'row_key'=>'string', 'column_key'=>'string'], -'swoole\table::incr' => ['void', 'key'=>'string', 'column'=>'string', 'incrby='=>'integer'], -'swoole\table::key' => ['string'], -'swoole\table::next' => ['ReturnType'], -'swoole\table::rewind' => ['void'], -'swoole\table::set' => ['VOID', 'key'=>'string', 'value'=>'array'], -'swoole\table::valid' => ['bool'], -'swoole\timer::after' => ['void', 'after_time_ms'=>'int', 'callback'=>'callable'], -'swoole\timer::clear' => ['void', 'timer_id'=>'integer'], -'swoole\timer::exists' => ['bool', 'timer_id'=>'integer'], -'swoole\timer::tick' => ['void', 'interval_ms'=>'integer', 'callback'=>'callable', 'param='=>'string'], -'swoole\websocket\server::exist' => ['bool', 'fd'=>'integer'], -'swoole\websocket\server::on' => ['ReturnType', 'event_name'=>'string', 'callback'=>'callable'], -'swoole\websocket\server::pack' => ['binary', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string', 'mask='=>'string'], -'swoole\websocket\server::push' => ['void', 'fd'=>'string', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string'], -'swoole\websocket\server::unpack' => ['string', 'data'=>'binary'], -'swoole_async_dns_lookup' => ['bool', 'hostname'=>'string', 'callback'=>'callable'], -'swoole_async_read' => ['bool', 'filename'=>'string', 'callback'=>'callable', 'chunk_size='=>'int', 'offset='=>'int'], -'swoole_async_readfile' => ['bool', 'filename'=>'string', 'callback'=>'string'], -'swoole_async_set' => ['void', 'settings'=>'array'], -'swoole_async_write' => ['bool', 'filename'=>'string', 'content'=>'string', 'offset='=>'int', 'callback='=>'callable'], -'swoole_async_writefile' => ['bool', 'filename'=>'string', 'content'=>'string', 'callback='=>'callable', 'flags='=>'int'], -'swoole_client_select' => ['int', 'read_array'=>'array', 'write_array'=>'array', 'error_array'=>'array', 'timeout='=>'float'], -'swoole_cpu_num' => ['int'], -'swoole_errno' => ['int'], -'swoole_event_add' => ['int', 'fd'=>'int', 'read_callback='=>'callable', 'write_callback='=>'callable', 'events='=>'int'], -'swoole_event_defer' => ['bool', 'callback'=>'callable'], -'swoole_event_del' => ['bool', 'fd'=>'int'], -'swoole_event_exit' => ['void'], -'swoole_event_set' => ['bool', 'fd'=>'int', 'read_callback='=>'callable', 'write_callback='=>'callable', 'events='=>'int'], -'swoole_event_wait' => ['void'], -'swoole_event_write' => ['bool', 'fd'=>'int', 'data'=>'string'], -'swoole_get_local_ip' => ['array'], -'swoole_last_error' => ['int'], -'swoole_load_module' => ['mixed', 'filename'=>'string'], -'swoole_select' => ['int', 'read_array'=>'array', 'write_array'=>'array', 'error_array'=>'array', 'timeout='=>'float'], -'swoole_set_process_name' => ['void', 'process_name'=>'string', 'size='=>'int'], -'swoole_strerror' => ['string', 'errno'=>'int', 'error_type='=>'int'], -'swoole_timer_after' => ['int', 'ms'=>'int', 'callback'=>'callable', 'param='=>'mixed'], -'swoole_timer_exists' => ['bool', 'timer_id'=>'int'], -'swoole_timer_tick' => ['int', 'ms'=>'int', 'callback'=>'callable', 'param='=>'mixed'], -'swoole_version' => ['string'], -'symbolObj::__construct' => ['void', 'map'=>'mapObj', 'symbolname'=>'string'], -'symbolObj::free' => ['void'], -'symbolObj::getPatternArray' => ['array'], -'symbolObj::getPointsArray' => ['array'], -'symbolObj::ms_newSymbolObj' => ['int', 'map'=>'mapObj', 'symbolname'=>'string'], -'symbolObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'symbolObj::setImagePath' => ['int', 'filename'=>'string'], -'symbolObj::setPattern' => ['int', 'int'=>'array'], -'symbolObj::setPoints' => ['int', 'double'=>'array'], -'symlink' => ['bool', 'target'=>'string', 'link'=>'string'], -'SyncEvent::__construct' => ['void', 'name='=>'string', 'manual='=>'bool'], -'SyncEvent::fire' => ['bool'], -'SyncEvent::reset' => ['bool'], -'SyncEvent::wait' => ['bool', 'wait='=>'int'], -'SyncMutex::__construct' => ['void', 'name='=>'string'], -'SyncMutex::lock' => ['bool', 'wait='=>'int'], -'SyncMutex::unlock' => ['bool', 'all='=>'bool'], -'SyncReaderWriter::__construct' => ['void', 'name='=>'string', 'autounlock='=>'bool'], -'SyncReaderWriter::readlock' => ['bool', 'wait='=>'int'], -'SyncReaderWriter::readunlock' => ['bool'], -'SyncReaderWriter::writelock' => ['bool', 'wait='=>'int'], -'SyncReaderWriter::writeunlock' => ['bool'], -'SyncSemaphore::__construct' => ['void', 'name='=>'string', 'initialval='=>'int', 'autounlock='=>'bool'], -'SyncSemaphore::lock' => ['bool', 'wait='=>'int'], -'SyncSemaphore::unlock' => ['bool', '&w_prevcount='=>'int'], -'SyncSharedMemory::__construct' => ['void', 'name'=>'string', 'size'=>'int'], -'SyncSharedMemory::first' => ['bool'], -'SyncSharedMemory::read' => ['string', 'start='=>'int', 'length='=>'int'], -'SyncSharedMemory::size' => ['int'], -'SyncSharedMemory::write' => ['int', 'string='=>'string', 'start='=>'int'], -'sys_get_temp_dir' => ['string'], -'sys_getloadavg' => ['array|false'], -'syslog' => ['true', 'priority'=>'int', 'message'=>'string'], -'system' => ['string|false', 'command'=>'string', '&w_result_code='=>'int'], -'taint' => ['bool', '&rw_string'=>'string', '&...w_other_strings='=>'string'], -'tan' => ['float', 'num'=>'float'], -'tanh' => ['float', 'num'=>'float'], -'tcpwrap_check' => ['bool', 'daemon'=>'string', 'address'=>'string', 'user='=>'string', 'nodns='=>'bool'], -'tempnam' => ['string|false', 'directory'=>'string', 'prefix'=>'string'], -'textdomain' => ['string', 'domain'=>'?string'], -'Thread::__construct' => ['void'], -'Thread::addRef' => ['void'], -'Thread::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], -'Thread::count' => ['int'], -'Thread::delRef' => ['void'], -'Thread::detach' => ['void'], -'Thread::extend' => ['bool', 'class'=>'string'], -'Thread::getCreatorId' => ['int'], -'Thread::getCurrentThread' => ['Thread'], -'Thread::getCurrentThreadId' => ['int'], -'Thread::getRefCount' => ['int'], -'Thread::getTerminationInfo' => ['array'], -'Thread::getThreadId' => ['int'], -'Thread::globally' => ['mixed'], -'Thread::isGarbage' => ['bool'], -'Thread::isJoined' => ['bool'], -'Thread::isRunning' => ['bool'], -'Thread::isStarted' => ['bool'], -'Thread::isTerminated' => ['bool'], -'Thread::isWaiting' => ['bool'], -'Thread::join' => ['bool'], -'Thread::kill' => ['void'], -'Thread::lock' => ['bool'], -'Thread::merge' => ['bool', 'from'=>'', 'overwrite='=>'mixed'], -'Thread::notify' => ['bool'], -'Thread::notifyOne' => ['bool'], -'Thread::offsetExists' => ['bool', 'offset'=>'int|string'], -'Thread::offsetGet' => ['mixed', 'offset'=>'int|string'], -'Thread::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'Thread::offsetUnset' => ['void', 'offset'=>'int|string'], -'Thread::pop' => ['bool'], -'Thread::run' => ['void'], -'Thread::setGarbage' => ['void'], -'Thread::shift' => ['bool'], -'Thread::start' => ['bool', 'options='=>'int'], -'Thread::synchronized' => ['mixed', 'block'=>'Closure', '_='=>'mixed'], -'Thread::unlock' => ['bool'], -'Thread::wait' => ['bool', 'timeout='=>'int'], -'Threaded::__construct' => ['void'], -'Threaded::addRef' => ['void'], -'Threaded::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], -'Threaded::count' => ['int'], -'Threaded::delRef' => ['void'], -'Threaded::extend' => ['bool', 'class'=>'string'], -'Threaded::from' => ['Threaded', 'run'=>'Closure', 'construct='=>'Closure', 'args='=>'array'], -'Threaded::getRefCount' => ['int'], -'Threaded::getTerminationInfo' => ['array'], -'Threaded::isGarbage' => ['bool'], -'Threaded::isRunning' => ['bool'], -'Threaded::isTerminated' => ['bool'], -'Threaded::isWaiting' => ['bool'], -'Threaded::lock' => ['bool'], -'Threaded::merge' => ['bool', 'from'=>'mixed', 'overwrite='=>'bool'], -'Threaded::notify' => ['bool'], -'Threaded::notifyOne' => ['bool'], -'Threaded::offsetExists' => ['bool', 'offset'=>'int|string'], -'Threaded::offsetGet' => ['mixed', 'offset'=>'int|string'], -'Threaded::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'Threaded::offsetUnset' => ['void', 'offset'=>'int|string'], -'Threaded::pop' => ['bool'], -'Threaded::run' => ['void'], -'Threaded::setGarbage' => ['void'], -'Threaded::shift' => ['mixed'], -'Threaded::synchronized' => ['mixed', 'block'=>'Closure', '...args='=>'mixed'], -'Threaded::unlock' => ['bool'], -'Threaded::wait' => ['bool', 'timeout='=>'int'], -'Throwable::__toString' => ['string'], -'Throwable::getCode' => ['int|string'], -'Throwable::getFile' => ['string'], -'Throwable::getLine' => ['int'], -'Throwable::getMessage' => ['string'], -'Throwable::getPrevious' => ['?Throwable'], -'Throwable::getTrace' => ['list\',args?:array}>'], -'Throwable::getTraceAsString' => ['string'], -'tidy::__construct' => ['void', 'filename='=>'?string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], -'tidy::body' => ['?tidyNode'], -'tidy::cleanRepair' => ['bool'], -'tidy::diagnose' => ['bool'], -'tidy::getConfig' => ['array'], -'tidy::getHtmlVer' => ['int'], -'tidy::getOpt' => ['string|int|bool', 'option'=>'string'], -'tidy::getOptDoc' => ['string', 'option'=>'string'], -'tidy::getRelease' => ['string'], -'tidy::getStatus' => ['int'], -'tidy::head' => ['?tidyNode'], -'tidy::html' => ['?tidyNode'], -'tidy::isXhtml' => ['bool'], -'tidy::isXml' => ['bool'], -'tidy::parseFile' => ['bool', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], -'tidy::parseString' => ['bool', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], -'tidy::repairFile' => ['string', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], -'tidy::repairString' => ['string', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], -'tidy::root' => ['?tidyNode'], -'tidy_access_count' => ['int', 'tidy'=>'tidy'], -'tidy_clean_repair' => ['bool', 'tidy'=>'tidy'], -'tidy_config_count' => ['int', 'tidy'=>'tidy'], -'tidy_diagnose' => ['bool', 'tidy'=>'tidy'], -'tidy_error_count' => ['int', 'tidy'=>'tidy'], -'tidy_get_body' => ['?tidyNode', 'tidy'=>'tidy'], -'tidy_get_config' => ['array', 'tidy'=>'tidy'], -'tidy_get_error_buffer' => ['string', 'tidy'=>'tidy'], -'tidy_get_head' => ['?tidyNode', 'tidy'=>'tidy'], -'tidy_get_html' => ['?tidyNode', 'tidy'=>'tidy'], -'tidy_get_html_ver' => ['int', 'tidy'=>'tidy'], -'tidy_get_opt_doc' => ['string', 'tidy'=>'tidy', 'option'=>'string'], -'tidy_get_output' => ['string', 'tidy'=>'tidy'], -'tidy_get_release' => ['string'], -'tidy_get_root' => ['?tidyNode', 'tidy'=>'tidy'], -'tidy_get_status' => ['int', 'tidy'=>'tidy'], -'tidy_getopt' => ['string|int|bool', 'tidy'=>'tidy', 'option'=>'string'], -'tidy_is_xhtml' => ['bool', 'tidy'=>'tidy'], -'tidy_is_xml' => ['bool', 'tidy'=>'tidy'], -'tidy_load_config' => ['void', 'filename'=>'string', 'encoding'=>'string'], -'tidy_parse_file' => ['tidy', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], -'tidy_parse_string' => ['tidy', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], -'tidy_repair_file' => ['string', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], -'tidy_repair_string' => ['string', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], -'tidy_reset_config' => ['bool'], -'tidy_save_config' => ['bool', 'filename'=>'string'], -'tidy_set_encoding' => ['bool', 'encoding'=>'string'], -'tidy_setopt' => ['bool', 'option'=>'string', 'value'=>'mixed'], -'tidy_warning_count' => ['int', 'tidy'=>'tidy'], -'tidyNode::__construct' => ['void'], -'tidyNode::getParent' => ['?tidyNode'], -'tidyNode::hasChildren' => ['bool'], -'tidyNode::hasSiblings' => ['bool'], -'tidyNode::isAsp' => ['bool'], -'tidyNode::isComment' => ['bool'], -'tidyNode::isHtml' => ['bool'], -'tidyNode::isJste' => ['bool'], -'tidyNode::isPhp' => ['bool'], -'tidyNode::isText' => ['bool'], -'time' => ['positive-int'], -'time_nanosleep' => ['array{0:0|positive-int,1:0|positive-int}|bool', 'seconds'=>'positive-int', 'nanoseconds'=>'positive-int'], -'time_sleep_until' => ['bool', 'timestamp'=>'float'], -'timezone_abbreviations_list' => ['array>'], -'timezone_identifiers_list' => ['list', 'timezoneGroup='=>'int', 'countryCode='=>'?string'], -'timezone_location_get' => ['array|false', 'object'=>'DateTimeZone'], -'timezone_name_from_abbr' => ['string|false', 'abbr'=>'string', 'utcOffset='=>'int', 'isDST='=>'int'], -'timezone_name_get' => ['string', 'object'=>'DateTimeZone'], -'timezone_offset_get' => ['int', 'object'=>'DateTimeZone', 'datetime'=>'DateTimeInterface'], -'timezone_open' => ['DateTimeZone|false', 'timezone'=>'string'], -'timezone_transitions_get' => ['list|false', 'object'=>'DateTimeZone', 'timestampBegin='=>'int', 'timestampEnd='=>'int'], -'timezone_version_get' => ['string'], -'tmpfile' => ['resource|false'], -'token_get_all' => ['list', 'code'=>'string', 'flags='=>'int'], -'token_name' => ['string', 'id'=>'int'], -'TokyoTyrant::__construct' => ['void', 'host='=>'string', 'port='=>'int', 'options='=>'array'], -'TokyoTyrant::add' => ['int|float', 'key'=>'string', 'increment'=>'float', 'type='=>'int'], -'TokyoTyrant::connect' => ['TokyoTyrant', 'host'=>'string', 'port='=>'int', 'options='=>'array'], -'TokyoTyrant::connectUri' => ['TokyoTyrant', 'uri'=>'string'], -'TokyoTyrant::copy' => ['TokyoTyrant', 'path'=>'string'], -'TokyoTyrant::ext' => ['string', 'name'=>'string', 'options'=>'int', 'key'=>'string', 'value'=>'string'], -'TokyoTyrant::fwmKeys' => ['array', 'prefix'=>'string', 'max_recs'=>'int'], -'TokyoTyrant::get' => ['array', 'keys'=>'mixed'], -'TokyoTyrant::getIterator' => ['TokyoTyrantIterator'], -'TokyoTyrant::num' => ['int'], -'TokyoTyrant::out' => ['string', 'keys'=>'mixed'], -'TokyoTyrant::put' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], -'TokyoTyrant::putCat' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], -'TokyoTyrant::putKeep' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], -'TokyoTyrant::putNr' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], -'TokyoTyrant::putShl' => ['mixed', 'key'=>'string', 'value'=>'string', 'width'=>'int'], -'TokyoTyrant::restore' => ['mixed', 'log_dir'=>'string', 'timestamp'=>'int', 'check_consistency='=>'bool'], -'TokyoTyrant::setMaster' => ['mixed', 'host'=>'string', 'port'=>'int', 'timestamp'=>'int', 'check_consistency='=>'bool'], -'TokyoTyrant::size' => ['int', 'key'=>'string'], -'TokyoTyrant::stat' => ['array'], -'TokyoTyrant::sync' => ['mixed'], -'TokyoTyrant::tune' => ['TokyoTyrant', 'timeout'=>'float', 'options='=>'int'], -'TokyoTyrant::vanish' => ['mixed'], -'TokyoTyrantIterator::__construct' => ['void', 'object'=>'mixed'], -'TokyoTyrantIterator::current' => ['mixed'], -'TokyoTyrantIterator::key' => ['mixed'], -'TokyoTyrantIterator::next' => ['mixed'], -'TokyoTyrantIterator::rewind' => ['void'], -'TokyoTyrantIterator::valid' => ['bool'], -'TokyoTyrantQuery::__construct' => ['void', 'table'=>'TokyoTyrantTable'], -'TokyoTyrantQuery::addCond' => ['mixed', 'name'=>'string', 'op'=>'int', 'expr'=>'string'], -'TokyoTyrantQuery::count' => ['int'], -'TokyoTyrantQuery::current' => ['array'], -'TokyoTyrantQuery::hint' => ['string'], -'TokyoTyrantQuery::key' => ['string'], -'TokyoTyrantQuery::metaSearch' => ['array', 'queries'=>'array', 'type'=>'int'], -'TokyoTyrantQuery::next' => ['array'], -'TokyoTyrantQuery::out' => ['TokyoTyrantQuery'], -'TokyoTyrantQuery::rewind' => ['bool'], -'TokyoTyrantQuery::search' => ['array'], -'TokyoTyrantQuery::setLimit' => ['mixed', 'max='=>'int', 'skip='=>'int'], -'TokyoTyrantQuery::setOrder' => ['mixed', 'name'=>'string', 'type'=>'int'], -'TokyoTyrantQuery::valid' => ['bool'], -'TokyoTyrantTable::add' => ['void', 'key'=>'string', 'increment'=>'mixed', 'type='=>'string'], -'TokyoTyrantTable::genUid' => ['int'], -'TokyoTyrantTable::get' => ['array', 'keys'=>'mixed'], -'TokyoTyrantTable::getIterator' => ['TokyoTyrantIterator'], -'TokyoTyrantTable::getQuery' => ['TokyoTyrantQuery'], -'TokyoTyrantTable::out' => ['void', 'keys'=>'mixed'], -'TokyoTyrantTable::put' => ['int', 'key'=>'string', 'columns'=>'array'], -'TokyoTyrantTable::putCat' => ['void', 'key'=>'string', 'columns'=>'array'], -'TokyoTyrantTable::putKeep' => ['void', 'key'=>'string', 'columns'=>'array'], -'TokyoTyrantTable::putNr' => ['void', 'keys'=>'mixed', 'value='=>'string'], -'TokyoTyrantTable::putShl' => ['void', 'key'=>'string', 'value'=>'string', 'width'=>'int'], -'TokyoTyrantTable::setIndex' => ['mixed', 'column'=>'string', 'type'=>'int'], -'touch' => ['bool', 'filename'=>'string', 'mtime='=>'?int', 'atime='=>'?int'], -'trader_acos' => ['array', 'real'=>'array'], -'trader_ad' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array'], -'trader_add' => ['array', 'real0'=>'array', 'real1'=>'array'], -'trader_adosc' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int'], -'trader_adx' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_adxr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_apo' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'mAType='=>'int'], -'trader_aroon' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], -'trader_aroonosc' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], -'trader_asin' => ['array', 'real'=>'array'], -'trader_atan' => ['array', 'real'=>'array'], -'trader_atr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_avgprice' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_bbands' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDevUp='=>'float', 'nbDevDn='=>'float', 'mAType='=>'int'], -'trader_beta' => ['array', 'real0'=>'array', 'real1'=>'array', 'timePeriod='=>'int'], -'trader_bop' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cci' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_cdl2crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3blackcrows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3inside' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3linestrike' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3outside' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3starsinsouth' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdl3whitesoldiers' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlabandonedbaby' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdladvanceblock' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlbelthold' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlbreakaway' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlclosingmarubozu' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlconcealbabyswall' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlcounterattack' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdldarkcloudcover' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdldoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdldojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdldragonflydoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlengulfing' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdleveningdojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdleveningstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdlgapsidesidewhite' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlgravestonedoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhammer' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhangingman' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlharami' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlharamicross' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhighwave' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhikkake' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhikkakemod' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlhomingpigeon' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlidentical3crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlinneck' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlinvertedhammer' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlkicking' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlkickingbylength' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlladderbottom' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdllongleggeddoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdllongline' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlmarubozu' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlmatchinglow' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlmathold' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdlmorningdojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdlmorningstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], -'trader_cdlonneck' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlpiercing' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlrickshawman' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlrisefall3methods' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlseparatinglines' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlshootingstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlshortline' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlspinningtop' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlstalledpattern' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlsticksandwich' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdltakuri' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdltasukigap' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlthrusting' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdltristar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlunique3river' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlupsidegap2crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_cdlxsidegap3methods' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_ceil' => ['array', 'real'=>'array'], -'trader_cmo' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_correl' => ['array', 'real0'=>'array', 'real1'=>'array', 'timePeriod='=>'int'], -'trader_cos' => ['array', 'real'=>'array'], -'trader_cosh' => ['array', 'real'=>'array'], -'trader_dema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_div' => ['array', 'real0'=>'array', 'real1'=>'array'], -'trader_dx' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_ema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_errno' => ['int'], -'trader_exp' => ['array', 'real'=>'array'], -'trader_floor' => ['array', 'real'=>'array'], -'trader_get_compat' => ['int'], -'trader_get_unstable_period' => ['int', 'functionId'=>'int'], -'trader_ht_dcperiod' => ['array', 'real'=>'array'], -'trader_ht_dcphase' => ['array', 'real'=>'array'], -'trader_ht_phasor' => ['array', 'real'=>'array'], -'trader_ht_sine' => ['array', 'real'=>'array'], -'trader_ht_trendline' => ['array', 'real'=>'array'], -'trader_ht_trendmode' => ['array', 'real'=>'array'], -'trader_kama' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_linearreg' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_linearreg_angle' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_linearreg_intercept' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_linearreg_slope' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_ln' => ['array', 'real'=>'array'], -'trader_log10' => ['array', 'real'=>'array'], -'trader_ma' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'mAType='=>'int'], -'trader_macd' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'signalPeriod='=>'int'], -'trader_macdext' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'fastMAType='=>'int', 'slowPeriod='=>'int', 'slowMAType='=>'int', 'signalPeriod='=>'int', 'signalMAType='=>'int'], -'trader_macdfix' => ['array', 'real'=>'array', 'signalPeriod='=>'int'], -'trader_mama' => ['array', 'real'=>'array', 'fastLimit='=>'float', 'slowLimit='=>'float'], -'trader_mavp' => ['array', 'real'=>'array', 'periods'=>'array', 'minPeriod='=>'int', 'maxPeriod='=>'int', 'mAType='=>'int'], -'trader_max' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_maxindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_medprice' => ['array', 'high'=>'array', 'low'=>'array'], -'trader_mfi' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array', 'timePeriod='=>'int'], -'trader_midpoint' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_midprice' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], -'trader_min' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_minindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_minmax' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_minmaxindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_minus_di' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_minus_dm' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], -'trader_mom' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_mult' => ['array', 'real0'=>'array', 'real1'=>'array'], -'trader_natr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_obv' => ['array', 'real'=>'array', 'volume'=>'array'], -'trader_plus_di' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_plus_dm' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], -'trader_ppo' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'mAType='=>'int'], -'trader_roc' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_rocp' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_rocr' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_rocr100' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_rsi' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_sar' => ['array', 'high'=>'array', 'low'=>'array', 'acceleration='=>'float', 'maximum='=>'float'], -'trader_sarext' => ['array', 'high'=>'array', 'low'=>'array', 'startValue='=>'float', 'offsetOnReverse='=>'float', 'accelerationInitLong='=>'float', 'accelerationLong='=>'float', 'accelerationMaxLong='=>'float', 'accelerationInitShort='=>'float', 'accelerationShort='=>'float', 'accelerationMaxShort='=>'float'], -'trader_set_compat' => ['void', 'compatId'=>'int'], -'trader_set_unstable_period' => ['void', 'functionId'=>'int', 'timePeriod'=>'int'], -'trader_sin' => ['array', 'real'=>'array'], -'trader_sinh' => ['array', 'real'=>'array'], -'trader_sma' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_sqrt' => ['array', 'real'=>'array'], -'trader_stddev' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDev='=>'float'], -'trader_stoch' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'fastK_Period='=>'int', 'slowK_Period='=>'int', 'slowK_MAType='=>'int', 'slowD_Period='=>'int', 'slowD_MAType='=>'int'], -'trader_stochf' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'fastK_Period='=>'int', 'fastD_Period='=>'int', 'fastD_MAType='=>'int'], -'trader_stochrsi' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'fastK_Period='=>'int', 'fastD_Period='=>'int', 'fastD_MAType='=>'int'], -'trader_sub' => ['array', 'real0'=>'array', 'real1'=>'array'], -'trader_sum' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_t3' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'vFactor='=>'float'], -'trader_tan' => ['array', 'real'=>'array'], -'trader_tanh' => ['array', 'real'=>'array'], -'trader_tema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_trange' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_trima' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_trix' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_tsf' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trader_typprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_ultosc' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod1='=>'int', 'timePeriod2='=>'int', 'timePeriod3='=>'int'], -'trader_var' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDev='=>'float'], -'trader_wclprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], -'trader_willr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], -'trader_wma' => ['array', 'real'=>'array', 'timePeriod='=>'int'], -'trait_exists' => ['bool', 'trait'=>'string', 'autoload='=>'bool'], -'Transliterator::create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'], -'Transliterator::createFromRules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'], -'Transliterator::createInverse' => ['?Transliterator'], -'Transliterator::getErrorCode' => ['int'], -'Transliterator::getErrorMessage' => ['string'], -'Transliterator::listIDs' => ['array'], -'Transliterator::transliterate' => ['string|false', 'string'=>'string', 'start='=>'int', 'end='=>'int'], -'transliterator_create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'], -'transliterator_create_from_rules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'], -'transliterator_create_inverse' => ['?Transliterator', 'transliterator'=>'Transliterator'], -'transliterator_get_error_code' => ['int', 'transliterator'=>'Transliterator'], -'transliterator_get_error_message' => ['string', 'transliterator'=>'Transliterator'], -'transliterator_list_ids' => ['array'], -'transliterator_transliterate' => ['string|false', 'transliterator'=>'Transliterator|string', 'string'=>'string', 'start='=>'int', 'end='=>'int'], -'trigger_error' => ['bool', 'message'=>'string', 'error_level='=>'256|512|1024|16384'], -'trim' => ['string', 'string'=>'string', 'characters='=>'string'], -'TypeError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'TypeError::__toString' => ['string'], -'TypeError::getCode' => ['int'], -'TypeError::getFile' => ['string'], -'TypeError::getLine' => ['int'], -'TypeError::getMessage' => ['string'], -'TypeError::getPrevious' => ['?Throwable'], -'TypeError::getTrace' => ['list\',args?:array}>'], -'TypeError::getTraceAsString' => ['string'], -'uasort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], -'ucfirst' => ['string', 'string'=>'string'], -'UConverter::__construct' => ['void', 'destination_encoding='=>'?string', 'source_encoding='=>'?string'], -'UConverter::convert' => ['string', 'str'=>'string', 'reverse='=>'bool'], -'UConverter::fromUCallback' => ['string|int|array|null', 'reason'=>'int', 'source'=>'array', 'codePoint'=>'int', '&w_error'=>'int'], -'UConverter::getAliases' => ['array|false|null', 'name'=>'string'], -'UConverter::getAvailable' => ['array'], -'UConverter::getDestinationEncoding' => ['string|false|null'], -'UConverter::getDestinationType' => ['int|false|null'], -'UConverter::getErrorCode' => ['int'], -'UConverter::getErrorMessage' => ['?string'], -'UConverter::getSourceEncoding' => ['string|false|null'], -'UConverter::getSourceType' => ['int|false|null'], -'UConverter::getStandards' => ['?array'], -'UConverter::getSubstChars' => ['string|false|null'], -'UConverter::reasonText' => ['string', 'reason'=>'int'], -'UConverter::setDestinationEncoding' => ['bool', 'encoding'=>'string'], -'UConverter::setSourceEncoding' => ['bool', 'encoding'=>'string'], -'UConverter::setSubstChars' => ['bool', 'chars'=>'string'], -'UConverter::toUCallback' => ['string|int|array|null', 'reason'=>'int', 'source'=>'string', 'codeUnits'=>'string', '&w_error'=>'int'], -'UConverter::transcode' => ['string', 'str'=>'string', 'toEncoding'=>'string', 'fromEncoding'=>'string', 'options='=>'?array'], -'ucwords' => ['string', 'string'=>'string', 'separators='=>'string'], -'udm_add_search_limit' => ['bool', 'agent'=>'resource', 'var'=>'int', 'value'=>'string'], -'udm_alloc_agent' => ['resource', 'dbaddr'=>'string', 'dbmode='=>'string'], -'udm_alloc_agent_array' => ['resource', 'databases'=>'array'], -'udm_api_version' => ['int'], -'udm_cat_list' => ['array', 'agent'=>'resource', 'category'=>'string'], -'udm_cat_path' => ['array', 'agent'=>'resource', 'category'=>'string'], -'udm_check_charset' => ['bool', 'agent'=>'resource', 'charset'=>'string'], -'udm_check_stored' => ['int', 'agent'=>'', 'link'=>'int', 'doc_id'=>'string'], -'udm_clear_search_limits' => ['bool', 'agent'=>'resource'], -'udm_close_stored' => ['int', 'agent'=>'', 'link'=>'int'], -'udm_crc32' => ['int', 'agent'=>'resource', 'string'=>'string'], -'udm_errno' => ['int', 'agent'=>'resource'], -'udm_error' => ['string', 'agent'=>'resource'], -'udm_find' => ['resource', 'agent'=>'resource', 'query'=>'string'], -'udm_free_agent' => ['int', 'agent'=>'resource'], -'udm_free_ispell_data' => ['bool', 'agent'=>'int'], -'udm_free_res' => ['bool', 'res'=>'resource'], -'udm_get_doc_count' => ['int', 'agent'=>'resource'], -'udm_get_res_field' => ['string', 'res'=>'resource', 'row'=>'int', 'field'=>'int'], -'udm_get_res_param' => ['string', 'res'=>'resource', 'param'=>'int'], -'udm_hash32' => ['int', 'agent'=>'resource', 'string'=>'string'], -'udm_load_ispell_data' => ['bool', 'agent'=>'resource', 'var'=>'int', 'val1'=>'string', 'val2'=>'string', 'flag'=>'int'], -'udm_open_stored' => ['int', 'agent'=>'', 'storedaddr'=>'string'], -'udm_set_agent_param' => ['bool', 'agent'=>'resource', 'var'=>'int', 'val'=>'string'], -'ui\area::onDraw' => ['', 'pen'=>'UI\Draw\Pen', 'areaSize'=>'UI\Size', 'clipPoint'=>'UI\Point', 'clipSize'=>'UI\Size'], -'ui\area::onKey' => ['', 'key'=>'string', 'ext'=>'int', 'flags'=>'int'], -'ui\area::onMouse' => ['', 'areaPoint'=>'UI\Point', 'areaSize'=>'UI\Size', 'flags'=>'int'], -'ui\area::redraw' => [''], -'ui\area::scrollTo' => ['', 'point'=>'UI\Point', 'size'=>'UI\Size'], -'ui\area::setSize' => ['', 'size'=>'UI\Size'], -'ui\control::destroy' => [''], -'ui\control::disable' => [''], -'ui\control::enable' => [''], -'ui\control::getParent' => ['UI\Control'], -'ui\control::getTopLevel' => ['int'], -'ui\control::hide' => [''], -'ui\control::isEnabled' => ['bool'], -'ui\control::isVisible' => ['bool'], -'ui\control::setParent' => ['', 'parent'=>'UI\Control'], -'ui\control::show' => [''], -'ui\controls\box::append' => ['int', 'control'=>'Control', 'stretchy='=>'bool'], -'ui\controls\box::delete' => ['bool', 'index'=>'int'], -'ui\controls\box::getOrientation' => ['int'], -'ui\controls\box::isPadded' => ['bool'], -'ui\controls\box::setPadded' => ['', 'padded'=>'bool'], -'ui\controls\button::getText' => ['string'], -'ui\controls\button::onClick' => [''], -'ui\controls\button::setText' => ['', 'text'=>'string'], -'ui\controls\check::getText' => ['string'], -'ui\controls\check::isChecked' => ['bool'], -'ui\controls\check::onToggle' => [''], -'ui\controls\check::setChecked' => ['', 'checked'=>'bool'], -'ui\controls\check::setText' => ['', 'text'=>'string'], -'ui\controls\colorbutton::getColor' => ['UI\Color'], -'ui\controls\colorbutton::onChange' => [''], -'ui\controls\combo::append' => ['', 'text'=>'string'], -'ui\controls\combo::getSelected' => ['int'], -'ui\controls\combo::onSelected' => [''], -'ui\controls\combo::setSelected' => ['', 'index'=>'int'], -'ui\controls\editablecombo::append' => ['', 'text'=>'string'], -'ui\controls\editablecombo::getText' => ['string'], -'ui\controls\editablecombo::onChange' => [''], -'ui\controls\editablecombo::setText' => ['', 'text'=>'string'], -'ui\controls\entry::getText' => ['string'], -'ui\controls\entry::isReadOnly' => ['bool'], -'ui\controls\entry::onChange' => [''], -'ui\controls\entry::setReadOnly' => ['', 'readOnly'=>'bool'], -'ui\controls\entry::setText' => ['', 'text'=>'string'], -'ui\controls\form::append' => ['int', 'label'=>'string', 'control'=>'UI\Control', 'stretchy='=>'bool'], -'ui\controls\form::delete' => ['bool', 'index'=>'int'], -'ui\controls\form::isPadded' => ['bool'], -'ui\controls\form::setPadded' => ['', 'padded'=>'bool'], -'ui\controls\grid::append' => ['', 'control'=>'UI\Control', 'left'=>'int', 'top'=>'int', 'xspan'=>'int', 'yspan'=>'int', 'hexpand'=>'bool', 'halign'=>'int', 'vexpand'=>'bool', 'valign'=>'int'], -'ui\controls\grid::isPadded' => ['bool'], -'ui\controls\grid::setPadded' => ['', 'padding'=>'bool'], -'ui\controls\group::append' => ['', 'control'=>'UI\Control'], -'ui\controls\group::getTitle' => ['string'], -'ui\controls\group::hasMargin' => ['bool'], -'ui\controls\group::setMargin' => ['', 'margin'=>'bool'], -'ui\controls\group::setTitle' => ['', 'title'=>'string'], -'ui\controls\label::getText' => ['string'], -'ui\controls\label::setText' => ['', 'text'=>'string'], -'ui\controls\multilineentry::append' => ['', 'text'=>'string'], -'ui\controls\multilineentry::getText' => ['string'], -'ui\controls\multilineentry::isReadOnly' => ['bool'], -'ui\controls\multilineentry::onChange' => [''], -'ui\controls\multilineentry::setReadOnly' => ['', 'readOnly'=>'bool'], -'ui\controls\multilineentry::setText' => ['', 'text'=>'string'], -'ui\controls\progress::getValue' => ['int'], -'ui\controls\progress::setValue' => ['', 'value'=>'int'], -'ui\controls\radio::append' => ['', 'text'=>'string'], -'ui\controls\radio::getSelected' => ['int'], -'ui\controls\radio::onSelected' => [''], -'ui\controls\radio::setSelected' => ['', 'index'=>'int'], -'ui\controls\slider::getValue' => ['int'], -'ui\controls\slider::onChange' => [''], -'ui\controls\slider::setValue' => ['', 'value'=>'int'], -'ui\controls\spin::getValue' => ['int'], -'ui\controls\spin::onChange' => [''], -'ui\controls\spin::setValue' => ['', 'value'=>'int'], -'ui\controls\tab::append' => ['int', 'name'=>'string', 'control'=>'UI\Control'], -'ui\controls\tab::delete' => ['bool', 'index'=>'int'], -'ui\controls\tab::hasMargin' => ['bool', 'page'=>'int'], -'ui\controls\tab::insertAt' => ['', 'name'=>'string', 'page'=>'int', 'control'=>'UI\Control'], -'ui\controls\tab::pages' => ['int'], -'ui\controls\tab::setMargin' => ['', 'page'=>'int', 'margin'=>'bool'], -'ui\draw\brush::getColor' => ['UI\Draw\Color'], -'ui\draw\brush\gradient::delStop' => ['int', 'index'=>'int'], -'ui\draw\color::getChannel' => ['float', 'channel'=>'int'], -'ui\draw\color::setChannel' => ['void', 'channel'=>'int', 'value'=>'float'], -'ui\draw\matrix::invert' => [''], -'ui\draw\matrix::isInvertible' => ['bool'], -'ui\draw\matrix::multiply' => ['UI\Draw\Matrix', 'matrix'=>'UI\Draw\Matrix'], -'ui\draw\matrix::rotate' => ['', 'point'=>'UI\Point', 'amount'=>'float'], -'ui\draw\matrix::scale' => ['', 'center'=>'UI\Point', 'point'=>'UI\Point'], -'ui\draw\matrix::skew' => ['', 'point'=>'UI\Point', 'amount'=>'UI\Point'], -'ui\draw\matrix::translate' => ['', 'point'=>'UI\Point'], -'ui\draw\path::addRectangle' => ['', 'point'=>'UI\Point', 'size'=>'UI\Size'], -'ui\draw\path::arcTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], -'ui\draw\path::bezierTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], -'ui\draw\path::closeFigure' => [''], -'ui\draw\path::end' => [''], -'ui\draw\path::lineTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], -'ui\draw\path::newFigure' => ['', 'point'=>'UI\Point'], -'ui\draw\path::newFigureWithArc' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], -'ui\draw\pen::clip' => ['', 'path'=>'UI\Draw\Path'], -'ui\draw\pen::restore' => [''], -'ui\draw\pen::save' => [''], -'ui\draw\pen::transform' => ['', 'matrix'=>'UI\Draw\Matrix'], -'ui\draw\pen::write' => ['', 'point'=>'UI\Point', 'layout'=>'UI\Draw\Text\Layout'], -'ui\draw\stroke::getCap' => ['int'], -'ui\draw\stroke::getJoin' => ['int'], -'ui\draw\stroke::getMiterLimit' => ['float'], -'ui\draw\stroke::getThickness' => ['float'], -'ui\draw\stroke::setCap' => ['', 'cap'=>'int'], -'ui\draw\stroke::setJoin' => ['', 'join'=>'int'], -'ui\draw\stroke::setMiterLimit' => ['', 'limit'=>'float'], -'ui\draw\stroke::setThickness' => ['', 'thickness'=>'float'], -'ui\draw\text\font::getAscent' => ['float'], -'ui\draw\text\font::getDescent' => ['float'], -'ui\draw\text\font::getLeading' => ['float'], -'ui\draw\text\font::getUnderlinePosition' => ['float'], -'ui\draw\text\font::getUnderlineThickness' => ['float'], -'ui\draw\text\font\descriptor::getFamily' => ['string'], -'ui\draw\text\font\descriptor::getItalic' => ['int'], -'ui\draw\text\font\descriptor::getSize' => ['float'], -'ui\draw\text\font\descriptor::getStretch' => ['int'], -'ui\draw\text\font\descriptor::getWeight' => ['int'], -'ui\draw\text\font\fontfamilies' => ['array'], -'ui\draw\text\layout::setWidth' => ['', 'width'=>'float'], -'ui\executor::kill' => ['void'], -'ui\executor::onExecute' => ['void'], -'ui\menu::append' => ['UI\MenuItem', 'name'=>'string', 'type='=>'string'], -'ui\menu::appendAbout' => ['UI\MenuItem', 'type='=>'string'], -'ui\menu::appendCheck' => ['UI\MenuItem', 'name'=>'string', 'type='=>'string'], -'ui\menu::appendPreferences' => ['UI\MenuItem', 'type='=>'string'], -'ui\menu::appendQuit' => ['UI\MenuItem', 'type='=>'string'], -'ui\menu::appendSeparator' => [''], -'ui\menuitem::disable' => [''], -'ui\menuitem::enable' => [''], -'ui\menuitem::isChecked' => ['bool'], -'ui\menuitem::onClick' => [''], -'ui\menuitem::setChecked' => ['', 'checked'=>'bool'], -'ui\point::getX' => ['float'], -'ui\point::getY' => ['float'], -'ui\point::setX' => ['', 'point'=>'float'], -'ui\point::setY' => ['', 'point'=>'float'], -'ui\quit' => ['void'], -'ui\run' => ['void', 'flags='=>'int'], -'ui\size::getHeight' => ['float'], -'ui\size::getWidth' => ['float'], -'ui\size::setHeight' => ['', 'size'=>'float'], -'ui\size::setWidth' => ['', 'size'=>'float'], -'ui\window::add' => ['', 'control'=>'UI\Control'], -'ui\window::error' => ['', 'title'=>'string', 'msg'=>'string'], -'ui\window::getSize' => ['UI\Size'], -'ui\window::getTitle' => ['string'], -'ui\window::hasBorders' => ['bool'], -'ui\window::hasMargin' => ['bool'], -'ui\window::isFullScreen' => ['bool'], -'ui\window::msg' => ['', 'title'=>'string', 'msg'=>'string'], -'ui\window::onClosing' => ['int'], -'ui\window::open' => ['string'], -'ui\window::save' => ['string'], -'ui\window::setBorders' => ['', 'borders'=>'bool'], -'ui\window::setFullScreen' => ['', 'full'=>'bool'], -'ui\window::setMargin' => ['', 'margin'=>'bool'], -'ui\window::setSize' => ['', 'size'=>'UI\Size'], -'ui\window::setTitle' => ['', 'title'=>'string'], -'uksort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], -'umask' => ['int', 'mask='=>'?int'], -'UnderflowException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'UnderflowException::__toString' => ['string'], -'UnderflowException::getCode' => ['int'], -'UnderflowException::getFile' => ['string'], -'UnderflowException::getLine' => ['int'], -'UnderflowException::getMessage' => ['string'], -'UnderflowException::getPrevious' => ['?Throwable'], -'UnderflowException::getTrace' => ['list\',args?:array}>'], -'UnderflowException::getTraceAsString' => ['string'], -'UnexpectedValueException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], -'UnexpectedValueException::__toString' => ['string'], -'UnexpectedValueException::getCode' => ['int'], -'UnexpectedValueException::getFile' => ['string'], -'UnexpectedValueException::getLine' => ['int'], -'UnexpectedValueException::getMessage' => ['string'], -'UnexpectedValueException::getPrevious' => ['?Throwable'], -'UnexpectedValueException::getTrace' => ['list\',args?:array}>'], -'UnexpectedValueException::getTraceAsString' => ['string'], -'uniqid' => ['non-empty-string', 'prefix='=>'string', 'more_entropy='=>'bool'], -'unixtojd' => ['int|false', 'timestamp='=>'?int'], -'unlink' => ['bool', 'filename'=>'string', 'context='=>'resource'], -'unpack' => ['array|false', 'format'=>'string', 'string'=>'string', 'offset='=>'int'], -'unregister_tick_function' => ['void', 'callback'=>'callable'], -'unserialize' => ['mixed', 'data'=>'string', 'options='=>'array{allowed_classes?:class-string[]|bool}'], -'unset' => ['void', 'var='=>'mixed', '...args='=>'mixed'], -'untaint' => ['bool', '&rw_string'=>'string', '&...rw_strings='=>'string'], -'uopz_allow_exit' => ['void', 'allow'=>'bool'], -'uopz_backup' => ['void', 'class'=>'string', 'function'=>'string'], -'uopz_backup\'1' => ['void', 'function'=>'string'], -'uopz_compose' => ['void', 'name'=>'string', 'classes'=>'array', 'methods='=>'array', 'properties='=>'array', 'flags='=>'int'], -'uopz_copy' => ['Closure', 'class'=>'string', 'function'=>'string'], -'uopz_copy\'1' => ['Closure', 'function'=>'string'], -'uopz_delete' => ['void', 'class'=>'string', 'function'=>'string'], -'uopz_delete\'1' => ['void', 'function'=>'string'], -'uopz_extend' => ['bool', 'class'=>'string', 'parent'=>'string'], -'uopz_flags' => ['int', 'class'=>'string', 'function'=>'string', 'flags'=>'int'], -'uopz_flags\'1' => ['int', 'function'=>'string', 'flags'=>'int'], -'uopz_function' => ['void', 'class'=>'string', 'function'=>'string', 'handler'=>'Closure', 'modifiers='=>'int'], -'uopz_function\'1' => ['void', 'function'=>'string', 'handler'=>'Closure', 'modifiers='=>'int'], -'uopz_get_exit_status' => ['?int'], -'uopz_get_hook' => ['?Closure', 'class'=>'string', 'function'=>'string'], -'uopz_get_hook\'1' => ['?Closure', 'function'=>'string'], -'uopz_get_mock' => ['string|object|null', 'class'=>'string'], -'uopz_get_property' => ['mixed', 'class'=>'object|string', 'property'=>'string'], -'uopz_get_return' => ['mixed', 'class='=>'class-string', 'function='=>'string'], -'uopz_get_static' => ['?array', 'class'=>'string', 'function'=>'string'], -'uopz_implement' => ['bool', 'class'=>'string', 'interface'=>'string'], -'uopz_overload' => ['void', 'opcode'=>'int', 'callable'=>'Callable'], -'uopz_redefine' => ['bool', 'class'=>'string', 'constant'=>'string', 'value'=>'mixed'], -'uopz_redefine\'1' => ['bool', 'constant'=>'string', 'value'=>'mixed'], -'uopz_rename' => ['void', 'class'=>'string', 'function'=>'string', 'rename'=>'string'], -'uopz_rename\'1' => ['void', 'function'=>'string', 'rename'=>'string'], -'uopz_restore' => ['void', 'class'=>'string', 'function'=>'string'], -'uopz_restore\'1' => ['void', 'function'=>'string'], -'uopz_set_hook' => ['bool', 'class'=>'string', 'function'=>'string', 'hook'=>'Closure'], -'uopz_set_hook\'1' => ['bool', 'function'=>'string', 'hook'=>'Closure'], -'uopz_set_mock' => ['void', 'class'=>'string', 'mock'=>'object|string'], -'uopz_set_property' => ['void', 'class'=>'object|string', 'property'=>'string', 'value'=>'mixed'], -'uopz_set_return' => ['bool', 'class'=>'string', 'function'=>'string', 'value'=>'mixed', 'execute='=>'bool'], -'uopz_set_return\'1' => ['bool', 'function'=>'string', 'value'=>'mixed', 'execute='=>'bool'], -'uopz_set_static' => ['void', 'class'=>'string', 'function'=>'string', 'static'=>'array'], -'uopz_undefine' => ['bool', 'class'=>'string', 'constant'=>'string'], -'uopz_undefine\'1' => ['bool', 'constant'=>'string'], -'uopz_unset_hook' => ['bool', 'class'=>'string', 'function'=>'string'], -'uopz_unset_hook\'1' => ['bool', 'function'=>'string'], -'uopz_unset_mock' => ['void', 'class'=>'string'], -'uopz_unset_return' => ['bool', 'class='=>'class-string', 'function='=>'string'], -'uopz_unset_return\'1' => ['bool', 'function'=>'string'], -'urldecode' => ['string', 'string'=>'string'], -'urlencode' => ['string', 'string'=>'string'], -'use_soap_error_handler' => ['bool', 'enable='=>'bool'], -'user_error' => ['bool', 'message'=>'string', 'error_level='=>'int'], -'usleep' => ['void', 'microseconds'=>'positive-int|0'], -'usort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], -'utf8_decode' => ['string', 'string'=>'string'], -'utf8_encode' => ['string', 'string'=>'string'], -'V8Js::__construct' => ['void', 'object_name='=>'string', 'variables='=>'array', 'extensions='=>'array', 'report_uncaught_exceptions='=>'bool', 'snapshot_blob='=>'string'], -'V8Js::clearPendingException' => [''], -'V8Js::compileString' => ['resource', 'script'=>'', 'identifier='=>'string'], -'V8Js::createSnapshot' => ['false|string', 'embed_source'=>'string'], -'V8Js::executeScript' => ['', 'script'=>'resource', 'flags='=>'int', 'time_limit='=>'int', 'memory_limit='=>'int'], -'V8Js::executeString' => ['mixed', 'script'=>'string', 'identifier='=>'string', 'flags='=>'int'], -'V8Js::getExtensions' => ['string[]'], -'V8Js::getPendingException' => ['?V8JsException'], -'V8Js::registerExtension' => ['bool', 'extension_name'=>'string', 'script'=>'string', 'dependencies='=>'array', 'auto_enable='=>'bool'], -'V8Js::setAverageObjectSize' => ['', 'average_object_size'=>'int'], -'V8Js::setMemoryLimit' => ['', 'limit'=>'int'], -'V8Js::setModuleLoader' => ['', 'loader'=>'callable'], -'V8Js::setModuleNormaliser' => ['', 'normaliser'=>'callable'], -'V8Js::setTimeLimit' => ['', 'limit'=>'int'], -'V8JsException::getJsFileName' => ['string'], -'V8JsException::getJsLineNumber' => ['int'], -'V8JsException::getJsSourceLine' => ['int'], -'V8JsException::getJsTrace' => ['string'], -'V8JsScriptException::__clone' => ['void'], -'V8JsScriptException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'V8JsScriptException::__toString' => ['string'], -'V8JsScriptException::__wakeup' => ['void'], -'V8JsScriptException::getCode' => ['int'], -'V8JsScriptException::getFile' => ['string'], -'V8JsScriptException::getJsEndColumn' => ['int'], -'V8JsScriptException::getJsFileName' => ['string'], -'V8JsScriptException::getJsLineNumber' => ['int'], -'V8JsScriptException::getJsSourceLine' => ['string'], -'V8JsScriptException::getJsStartColumn' => ['int'], -'V8JsScriptException::getJsTrace' => ['string'], -'V8JsScriptException::getLine' => ['int'], -'V8JsScriptException::getMessage' => ['string'], -'V8JsScriptException::getPrevious' => ['Exception|Throwable'], -'V8JsScriptException::getTrace' => ['list\',args?:array}>'], -'V8JsScriptException::getTraceAsString' => ['string'], -'var_dump' => ['void', 'value'=>'mixed', '...values='=>'mixed'], -'var_export' => ['?string', 'value'=>'mixed', 'return='=>'bool'], -'VARIANT::__construct' => ['void', 'value='=>'mixed', 'type='=>'int', 'codepage='=>'int'], -'variant_abs' => ['mixed', 'value'=>'mixed'], -'variant_add' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_and' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_cast' => ['VARIANT', 'variant'=>'VARIANT', 'type'=>'int'], -'variant_cat' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_cmp' => ['int', 'left'=>'mixed', 'right'=>'mixed', 'locale_id='=>'int', 'flags='=>'int'], -'variant_date_from_timestamp' => ['VARIANT', 'timestamp'=>'int'], -'variant_date_to_timestamp' => ['int', 'variant'=>'VARIANT'], -'variant_div' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_eqv' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_fix' => ['mixed', 'value'=>'mixed'], -'variant_get_type' => ['int', 'variant'=>'VARIANT'], -'variant_idiv' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_imp' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_int' => ['mixed', 'value'=>'mixed'], -'variant_mod' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_mul' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_neg' => ['mixed', 'value'=>'mixed'], -'variant_not' => ['mixed', 'value'=>'mixed'], -'variant_or' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_pow' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_round' => ['mixed', 'value'=>'mixed', 'decimals'=>'int'], -'variant_set' => ['void', 'variant'=>'object', 'value'=>'mixed'], -'variant_set_type' => ['void', 'variant'=>'object', 'type'=>'int'], -'variant_sub' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'variant_xor' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], -'VarnishAdmin::__construct' => ['void', 'args='=>'array'], -'VarnishAdmin::auth' => ['bool'], -'VarnishAdmin::ban' => ['int', 'vcl_regex'=>'string'], -'VarnishAdmin::banUrl' => ['int', 'vcl_regex'=>'string'], -'VarnishAdmin::clearPanic' => ['int'], -'VarnishAdmin::connect' => ['bool'], -'VarnishAdmin::disconnect' => ['bool'], -'VarnishAdmin::getPanic' => ['string'], -'VarnishAdmin::getParams' => ['array'], -'VarnishAdmin::isRunning' => ['bool'], -'VarnishAdmin::setCompat' => ['void', 'compat'=>'int'], -'VarnishAdmin::setHost' => ['void', 'host'=>'string'], -'VarnishAdmin::setIdent' => ['void', 'ident'=>'string'], -'VarnishAdmin::setParam' => ['int', 'name'=>'string', 'value'=>'string|int'], -'VarnishAdmin::setPort' => ['void', 'port'=>'int'], -'VarnishAdmin::setSecret' => ['void', 'secret'=>'string'], -'VarnishAdmin::setTimeout' => ['void', 'timeout'=>'int'], -'VarnishAdmin::start' => ['int'], -'VarnishAdmin::stop' => ['int'], -'VarnishLog::__construct' => ['void', 'args='=>'array'], -'VarnishLog::getLine' => ['array'], -'VarnishLog::getTagName' => ['string', 'index'=>'int'], -'VarnishStat::__construct' => ['void', 'args='=>'array'], -'VarnishStat::getSnapshot' => ['array'], -'version_compare' => ['bool', 'version1'=>'string', 'version2'=>'string', 'operator'=>'\'<\'|\'lt\'|\'<=\'|\'le\'|\'>\'|\'gt\'|\'>=\'|\'ge\'|\'==\'|\'=\'|\'eq\'|\'!=\'|\'<>\'|\'ne\''], -'version_compare\'1' => ['int', 'version1'=>'string', 'version2'=>'string'], -'vfprintf' => ['int<0, max>', 'stream'=>'resource', 'format'=>'string', 'values'=>'array'], -'virtual' => ['bool', 'uri'=>'string'], -'vpopmail_add_alias_domain' => ['bool', 'domain'=>'string', 'aliasdomain'=>'string'], -'vpopmail_add_alias_domain_ex' => ['bool', 'olddomain'=>'string', 'newdomain'=>'string'], -'vpopmail_add_domain' => ['bool', 'domain'=>'string', 'dir'=>'string', 'uid'=>'int', 'gid'=>'int'], -'vpopmail_add_domain_ex' => ['bool', 'domain'=>'string', 'passwd'=>'string', 'quota='=>'string', 'bounce='=>'string', 'apop='=>'bool'], -'vpopmail_add_user' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'gecos='=>'string', 'apop='=>'bool'], -'vpopmail_alias_add' => ['bool', 'user'=>'string', 'domain'=>'string', 'alias'=>'string'], -'vpopmail_alias_del' => ['bool', 'user'=>'string', 'domain'=>'string'], -'vpopmail_alias_del_domain' => ['bool', 'domain'=>'string'], -'vpopmail_alias_get' => ['array', 'alias'=>'string', 'domain'=>'string'], -'vpopmail_alias_get_all' => ['array', 'domain'=>'string'], -'vpopmail_auth_user' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'apop='=>'string'], -'vpopmail_del_domain' => ['bool', 'domain'=>'string'], -'vpopmail_del_domain_ex' => ['bool', 'domain'=>'string'], -'vpopmail_del_user' => ['bool', 'user'=>'string', 'domain'=>'string'], -'vpopmail_error' => ['string'], -'vpopmail_passwd' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'apop='=>'bool'], -'vpopmail_set_user_quota' => ['bool', 'user'=>'string', 'domain'=>'string', 'quota'=>'string'], -'vprintf' => ['int<0, max>', 'format'=>'string', 'values'=>'array'], -'vsprintf' => ['string', 'format'=>'string', 'values'=>'array'], -'Vtiful\Kernel\Chart::__construct' => ['void', 'handle'=>'resource', 'type'=>'int'], -'Vtiful\Kernel\Chart::axisNameX' => ['Vtiful\Kernel\Chart', 'name'=>'string'], -'Vtiful\Kernel\Chart::axisNameY' => ['Vtiful\Kernel\Chart', 'name'=>'string'], -'Vtiful\Kernel\Chart::legendSetPosition' => ['Vtiful\Kernel\Chart', 'type'=>'int'], -'Vtiful\Kernel\Chart::series' => ['Vtiful\Kernel\Chart', 'value'=>'string', 'categories='=>'string'], -'Vtiful\Kernel\Chart::seriesName' => ['Vtiful\Kernel\Chart', 'value'=>'string'], -'Vtiful\Kernel\Chart::style' => ['Vtiful\Kernel\Chart', 'style'=>'int'], -'Vtiful\Kernel\Chart::title' => ['Vtiful\Kernel\Chart', 'title'=>'string'], -'Vtiful\Kernel\Chart::toResource' => ['resource'], -'Vtiful\Kernel\Excel::__construct' => ['void', 'config'=>'array'], -'Vtiful\Kernel\Excel::activateSheet' => ['bool', 'sheet_name'=>'string'], -'Vtiful\Kernel\Excel::addSheet' => ['Vtiful\Kernel\Excel', 'sheet_name='=>'?string'], -'Vtiful\Kernel\Excel::autoFilter' => ['Vtiful\Kernel\Excel', 'range'=>'string'], -'Vtiful\Kernel\Excel::checkoutSheet' => ['Vtiful\Kernel\Excel', 'sheet_name'=>'string'], -'Vtiful\Kernel\Excel::close' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::columnIndexFromString' => ['int', 'index'=>'string'], -'Vtiful\Kernel\Excel::constMemory' => ['Vtiful\Kernel\Excel', 'file_name'=>'string', 'sheet_name='=>'?string'], -'Vtiful\Kernel\Excel::data' => ['Vtiful\Kernel\Excel', 'data'=>'array'], -'Vtiful\Kernel\Excel::defaultFormat' => ['Vtiful\Kernel\Excel', 'format_handle'=>'resource'], -'Vtiful\Kernel\Excel::existSheet' => ['bool', 'sheet_name'=>'string'], -'Vtiful\Kernel\Excel::fileName' => ['Vtiful\Kernel\Excel', 'file_name'=>'string', 'sheet_name='=>'?string'], -'Vtiful\Kernel\Excel::freezePanes' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int'], -'Vtiful\Kernel\Excel::getHandle' => ['resource'], -'Vtiful\Kernel\Excel::getSheetData' => ['array|false'], -'Vtiful\Kernel\Excel::gridline' => ['Vtiful\Kernel\Excel', 'option='=>'int'], -'Vtiful\Kernel\Excel::header' => ['Vtiful\Kernel\Excel', 'header'=>'array', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::insertChart' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'chart_resource'=>'resource'], -'Vtiful\Kernel\Excel::insertComment' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'comment'=>'string'], -'Vtiful\Kernel\Excel::insertDate' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'timestamp'=>'int', 'format='=>'?string', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::insertFormula' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'formula'=>'string', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::insertImage' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'image'=>'string', 'width='=>'?float', 'height='=>'?float'], -'Vtiful\Kernel\Excel::insertText' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'data'=>'int|string|double', 'format='=>'?string', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::insertUrl' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'url'=>'string', 'text='=>'?string', 'tool_tip='=>'?string', 'format='=>'?resource'], -'Vtiful\Kernel\Excel::mergeCells' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'data'=>'string', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::nextCellCallback' => ['void', 'fci'=>'callable(int,int,mixed)', 'sheet_name='=>'?string'], -'Vtiful\Kernel\Excel::nextRow' => ['array|false', 'zv_type_t='=>'?array'], -'Vtiful\Kernel\Excel::openFile' => ['Vtiful\Kernel\Excel', 'zs_file_name'=>'string'], -'Vtiful\Kernel\Excel::openSheet' => ['Vtiful\Kernel\Excel', 'zs_sheet_name='=>'?string', 'zl_flag='=>'?int'], -'Vtiful\Kernel\Excel::output' => ['string'], -'Vtiful\Kernel\Excel::protection' => ['Vtiful\Kernel\Excel', 'password='=>'?string'], -'Vtiful\Kernel\Excel::putCSV' => ['bool', 'fp'=>'resource', 'delimiter_str='=>'?string', 'enclosure_str='=>'?string', 'escape_str='=>'?string'], -'Vtiful\Kernel\Excel::putCSVCallback' => ['bool', 'callback'=>'callable(array):array', 'fp'=>'resource', 'delimiter_str='=>'?string', 'enclosure_str='=>'?string', 'escape_str='=>'?string'], -'Vtiful\Kernel\Excel::setColumn' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'width'=>'float', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::setCurrentSheetHide' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::setCurrentSheetIsFirst' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::setGlobalType' => ['Vtiful\Kernel\Excel', 'zv_type_t'=>'int'], -'Vtiful\Kernel\Excel::setLandscape' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::setMargins' => ['Vtiful\Kernel\Excel', 'left='=>'?float', 'right='=>'?float', 'top='=>'?float', 'bottom='=>'?float'], -'Vtiful\Kernel\Excel::setPaper' => ['Vtiful\Kernel\Excel', 'paper'=>'int'], -'Vtiful\Kernel\Excel::setPortrait' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::setRow' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'height'=>'float', 'format_handle='=>'?resource'], -'Vtiful\Kernel\Excel::setSkipRows' => ['Vtiful\Kernel\Excel', 'zv_skip_t'=>'int'], -'Vtiful\Kernel\Excel::setType' => ['Vtiful\Kernel\Excel', 'zv_type_t'=>'array'], -'Vtiful\Kernel\Excel::sheetList' => ['array'], -'Vtiful\Kernel\Excel::showComment' => ['Vtiful\Kernel\Excel'], -'Vtiful\Kernel\Excel::stringFromColumnIndex' => ['string', 'index'=>'int'], -'Vtiful\Kernel\Excel::timestampFromDateDouble' => ['int', 'index'=>'?float'], -'Vtiful\Kernel\Excel::validation' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'validation_resource'=>'resource'], -'Vtiful\Kernel\Excel::zoom' => ['Vtiful\Kernel\Excel', 'scale'=>'int'], -'Vtiful\Kernel\Format::__construct' => ['void', 'handle'=>'resource'], -'Vtiful\Kernel\Format::align' => ['Vtiful\Kernel\Format', '...style'=>'int'], -'Vtiful\Kernel\Format::background' => ['Vtiful\Kernel\Format', 'color'=>'int', 'pattern='=>'int'], -'Vtiful\Kernel\Format::bold' => ['Vtiful\Kernel\Format'], -'Vtiful\Kernel\Format::border' => ['Vtiful\Kernel\Format', 'style'=>'int'], -'Vtiful\Kernel\Format::font' => ['Vtiful\Kernel\Format', 'font'=>'string'], -'Vtiful\Kernel\Format::fontColor' => ['Vtiful\Kernel\Format', 'color'=>'int'], -'Vtiful\Kernel\Format::fontSize' => ['Vtiful\Kernel\Format', 'size'=>'float'], -'Vtiful\Kernel\Format::italic' => ['Vtiful\Kernel\Format'], -'Vtiful\Kernel\Format::number' => ['Vtiful\Kernel\Format', 'format'=>'string'], -'Vtiful\Kernel\Format::strikeout' => ['Vtiful\Kernel\Format'], -'Vtiful\Kernel\Format::toResource' => ['resource'], -'Vtiful\Kernel\Format::underline' => ['Vtiful\Kernel\Format', 'style'=>'int'], -'Vtiful\Kernel\Format::unlocked' => ['Vtiful\Kernel\Format'], -'Vtiful\Kernel\Format::wrap' => ['Vtiful\Kernel\Format'], -'Vtiful\Kernel\Validation::__construct' => ['void'], -'Vtiful\Kernel\Validation::criteriaType' => ['?Vtiful\Kernel\Validation', 'type'=>'int'], -'Vtiful\Kernel\Validation::maximumFormula' => ['?Vtiful\Kernel\Validation', 'maximum_formula'=>'string'], -'Vtiful\Kernel\Validation::maximumNumber' => ['?Vtiful\Kernel\Validation', 'maximum_number'=>'float'], -'Vtiful\Kernel\Validation::minimumFormula' => ['?Vtiful\Kernel\Validation', 'minimum_formula'=>'string'], -'Vtiful\Kernel\Validation::minimumNumber' => ['?Vtiful\Kernel\Validation', 'minimum_number'=>'float'], -'Vtiful\Kernel\Validation::toResource' => ['resource'], -'Vtiful\Kernel\Validation::validationType' => ['?Vtiful\Kernel\Validation', 'type'=>'int'], -'Vtiful\Kernel\Validation::valueList' => ['?Vtiful\Kernel\Validation', 'value_list'=>'array'], -'Vtiful\Kernel\Validation::valueNumber' => ['?Vtiful\Kernel\Validation', 'value_number'=>'int'], -'w32api_deftype' => ['bool', 'typename'=>'string', 'member1_type'=>'string', 'member1_name'=>'string', '...args='=>'string'], -'w32api_init_dtype' => ['resource', 'typename'=>'string', 'value'=>'', '...args='=>''], -'w32api_invoke_function' => ['', 'funcname'=>'string', 'argument'=>'', '...args='=>''], -'w32api_register_function' => ['bool', 'library'=>'string', 'function_name'=>'string', 'return_type'=>'string'], -'w32api_set_call_method' => ['', 'method'=>'int'], -'wddx_add_vars' => ['bool', 'packet_id'=>'resource', 'var_names'=>'mixed', '...vars='=>'mixed'], -'wddx_deserialize' => ['mixed', 'packet'=>'string'], -'wddx_packet_end' => ['string', 'packet_id'=>'resource'], -'wddx_packet_start' => ['resource|false', 'comment='=>'string'], -'wddx_serialize_value' => ['string|false', 'value'=>'mixed', 'comment='=>'string'], -'wddx_serialize_vars' => ['string|false', 'var_name'=>'mixed', '...vars='=>'mixed'], -'WeakMap::count' => ['int'], -'WeakMap::getIterator' => ['Iterator'], -'WeakMap::offsetExists' => ['bool', 'object'=>'object'], -'WeakMap::offsetGet' => ['mixed', 'object'=>'object'], -'WeakMap::offsetSet' => ['void', 'object'=>'object', 'value'=>'mixed'], -'WeakMap::offsetUnset' => ['void', 'object'=>'object'], -'Weakref::acquire' => ['bool'], -'Weakref::get' => ['object'], -'Weakref::release' => ['bool'], -'Weakref::valid' => ['bool'], -'webObj::convertToString' => ['string'], -'webObj::free' => ['void'], -'webObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], -'webObj::updateFromString' => ['int', 'snippet'=>'string'], -'win32_continue_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], -'win32_create_service' => ['int|false', 'details'=>'array', 'machine='=>'string'], -'win32_delete_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], -'win32_get_last_control_message' => ['int'], -'win32_pause_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], -'win32_ps_list_procs' => ['array'], -'win32_ps_stat_mem' => ['array'], -'win32_ps_stat_proc' => ['array', 'pid='=>'int'], -'win32_query_service_status' => ['array|false|int', 'servicename'=>'string', 'machine='=>'string'], -'win32_send_custom_control' => ['int', 'servicename'=>'string', 'control'=>'int', 'machine='=>'string'], -'win32_set_service_exit_code' => ['int', 'exitCode='=>'int'], -'win32_set_service_exit_mode' => ['bool', 'gracefulMode='=>'bool'], -'win32_set_service_status' => ['bool|int', 'status'=>'int', 'checkpoint='=>'int'], -'win32_start_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], -'win32_start_service_ctrl_dispatcher' => ['bool|int', 'name'=>'string'], -'win32_stop_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], -'wincache_fcache_fileinfo' => ['array|false', 'summaryonly='=>'bool'], -'wincache_fcache_meminfo' => ['array|false'], -'wincache_lock' => ['bool', 'key'=>'string', 'isglobal='=>'bool'], -'wincache_ocache_fileinfo' => ['array|false', 'summaryonly='=>'bool'], -'wincache_ocache_meminfo' => ['array|false'], -'wincache_refresh_if_changed' => ['bool', 'files='=>'array'], -'wincache_rplist_fileinfo' => ['array|false', 'summaryonly='=>'bool'], -'wincache_rplist_meminfo' => ['array|false'], -'wincache_scache_info' => ['array|false', 'summaryonly='=>'bool'], -'wincache_scache_meminfo' => ['array|false'], -'wincache_ucache_add' => ['bool', 'key'=>'string', 'value'=>'mixed', 'ttl='=>'int'], -'wincache_ucache_add\'1' => ['bool', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'wincache_ucache_cas' => ['bool', 'key'=>'string', 'old_value'=>'int', 'new_value'=>'int'], -'wincache_ucache_clear' => ['bool'], -'wincache_ucache_dec' => ['int|false', 'key'=>'string', 'dec_by='=>'int', 'success='=>'bool'], -'wincache_ucache_delete' => ['bool', 'key'=>'mixed'], -'wincache_ucache_exists' => ['bool', 'key'=>'string'], -'wincache_ucache_get' => ['mixed', 'key'=>'mixed', '&w_success='=>'bool'], -'wincache_ucache_inc' => ['int|false', 'key'=>'string', 'inc_by='=>'int', 'success='=>'bool'], -'wincache_ucache_info' => ['array|false', 'summaryonly='=>'bool', 'key='=>'string'], -'wincache_ucache_meminfo' => ['array|false'], -'wincache_ucache_set' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int'], -'wincache_ucache_set\'1' => ['bool', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], -'wincache_unlock' => ['bool', 'key'=>'string'], -'wkhtmltox\image\converter::convert' => ['?string'], -'wkhtmltox\image\converter::getVersion' => ['string'], -'wkhtmltox\pdf\converter::add' => ['void', 'object'=>'wkhtmltox\PDF\Object'], -'wkhtmltox\pdf\converter::convert' => ['?string'], -'wkhtmltox\pdf\converter::getVersion' => ['string'], -'wordwrap' => ['string', 'string'=>'string', 'width='=>'int', 'break='=>'string', 'cut_long_words='=>'bool'], -'Worker::__construct' => ['void'], -'Worker::addRef' => ['void'], -'Worker::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], -'Worker::collect' => ['int', 'collector='=>'Callable'], -'Worker::count' => ['int'], -'Worker::delRef' => ['void'], -'Worker::detach' => ['void'], -'Worker::extend' => ['bool', 'class'=>'string'], -'Worker::getCreatorId' => ['int'], -'Worker::getCurrentThread' => ['Thread'], -'Worker::getCurrentThreadId' => ['int'], -'Worker::getRefCount' => ['int'], -'Worker::getStacked' => ['int'], -'Worker::getTerminationInfo' => ['array'], -'Worker::getThreadId' => ['int'], -'Worker::globally' => ['mixed'], -'Worker::isGarbage' => ['bool'], -'Worker::isJoined' => ['bool'], -'Worker::isRunning' => ['bool'], -'Worker::isShutdown' => ['bool'], -'Worker::isStarted' => ['bool'], -'Worker::isTerminated' => ['bool'], -'Worker::isWaiting' => ['bool'], -'Worker::isWorking' => ['bool'], -'Worker::join' => ['bool'], -'Worker::kill' => ['bool'], -'Worker::lock' => ['bool'], -'Worker::merge' => ['bool', 'from'=>'', 'overwrite='=>'mixed'], -'Worker::notify' => ['bool'], -'Worker::notifyOne' => ['bool'], -'Worker::offsetExists' => ['bool', 'offset'=>'int|string'], -'Worker::offsetGet' => ['mixed', 'offset'=>'int|string'], -'Worker::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], -'Worker::offsetUnset' => ['void', 'offset'=>'int|string'], -'Worker::pop' => ['bool'], -'Worker::run' => ['void'], -'Worker::setGarbage' => ['void'], -'Worker::shift' => ['bool'], -'Worker::shutdown' => ['bool'], -'Worker::stack' => ['int', '&rw_work'=>'Threaded'], -'Worker::start' => ['bool', 'options='=>'int'], -'Worker::synchronized' => ['mixed', 'block'=>'Closure', '_='=>'mixed'], -'Worker::unlock' => ['bool'], -'Worker::unstack' => ['int', '&rw_work='=>'Threaded'], -'Worker::wait' => ['bool', 'timeout='=>'int'], -'xattr_get' => ['string', 'filename'=>'string', 'name'=>'string', 'flags='=>'int'], -'xattr_list' => ['array', 'filename'=>'string', 'flags='=>'int'], -'xattr_remove' => ['bool', 'filename'=>'string', 'name'=>'string', 'flags='=>'int'], -'xattr_set' => ['bool', 'filename'=>'string', 'name'=>'string', 'value'=>'string', 'flags='=>'int'], -'xattr_supported' => ['bool', 'filename'=>'string', 'flags='=>'int'], -'xcache_asm' => ['string', 'filename'=>'string'], -'xcache_clear_cache' => ['void', 'type'=>'int', 'id='=>'int'], -'xcache_coredump' => ['string', 'op_type'=>'int'], -'xcache_count' => ['int', 'type'=>'int'], -'xcache_coverager_decode' => ['array', 'data'=>'string'], -'xcache_coverager_get' => ['array', 'clean='=>'bool'], -'xcache_coverager_start' => ['void', 'clean='=>'bool'], -'xcache_coverager_stop' => ['void', 'clean='=>'bool'], -'xcache_dasm_file' => ['string', 'filename'=>'string'], -'xcache_dasm_string' => ['string', 'code'=>'string'], -'xcache_dec' => ['int', 'name'=>'string', 'value='=>'int|mixed', 'ttl='=>'int'], -'xcache_decode' => ['bool', 'filename'=>'string'], -'xcache_encode' => ['string', 'filename'=>'string'], -'xcache_get' => ['mixed', 'name'=>'string'], -'xcache_get_data_type' => ['string', 'type'=>'int'], -'xcache_get_op_spec' => ['string', 'op_type'=>'int'], -'xcache_get_op_type' => ['string', 'op_type'=>'int'], -'xcache_get_opcode' => ['string', 'opcode'=>'int'], -'xcache_get_opcode_spec' => ['string', 'opcode'=>'int'], -'xcache_inc' => ['int', 'name'=>'string', 'value='=>'int|mixed', 'ttl='=>'int'], -'xcache_info' => ['array', 'type'=>'int', 'id'=>'int'], -'xcache_is_autoglobal' => ['string', 'name'=>'string'], -'xcache_isset' => ['bool', 'name'=>'string'], -'xcache_list' => ['array', 'type'=>'int', 'id'=>'int'], -'xcache_set' => ['bool', 'name'=>'string', 'value'=>'mixed', 'ttl='=>'int'], -'xcache_unset' => ['bool', 'name'=>'string'], -'xcache_unset_by_prefix' => ['bool', 'prefix'=>'string'], -'Xcom::__construct' => ['void', 'fabric_url='=>'string', 'fabric_token='=>'string', 'capability_token='=>'string'], -'Xcom::decode' => ['object', 'avro_msg'=>'string', 'json_schema'=>'string'], -'Xcom::encode' => ['string', 'data'=>'stdClass', 'avro_schema'=>'string'], -'Xcom::getDebugOutput' => ['string'], -'Xcom::getLastResponse' => ['string'], -'Xcom::getLastResponseInfo' => ['array'], -'Xcom::getOnboardingURL' => ['string', 'capability_name'=>'string', 'agreement_url'=>'string'], -'Xcom::send' => ['int', 'topic'=>'string', 'data'=>'mixed', 'json_schema='=>'string', 'http_headers='=>'array'], -'Xcom::sendAsync' => ['int', 'topic'=>'string', 'data'=>'mixed', 'json_schema='=>'string', 'http_headers='=>'array'], -'xdebug_break' => ['bool'], -'xdebug_call_class' => ['string', 'depth='=>'int'], -'xdebug_call_file' => ['string', 'depth='=>'int'], -'xdebug_call_function' => ['string', 'depth='=>'int'], -'xdebug_call_line' => ['int', 'depth='=>'int'], -'xdebug_clear_aggr_profiling_data' => ['bool'], -'xdebug_code_coverage_started' => ['bool'], -'xdebug_debug_zval' => ['void', '...varName'=>'string'], -'xdebug_debug_zval_stdout' => ['void', '...varName'=>'string'], -'xdebug_disable' => ['void'], -'xdebug_dump_aggr_profiling_data' => ['bool'], -'xdebug_dump_superglobals' => ['void'], -'xdebug_enable' => ['void'], -'xdebug_get_code_coverage' => ['array'], -'xdebug_get_collected_errors' => ['string', 'clean='=>'bool'], -'xdebug_get_declared_vars' => ['array'], -'xdebug_get_formatted_function_stack' => [''], -'xdebug_get_function_count' => ['int'], -'xdebug_get_function_stack' => ['array', 'message='=>'string', 'options='=>'int'], -'xdebug_get_headers' => ['array'], -'xdebug_get_monitored_functions' => ['array'], -'xdebug_get_profiler_filename' => ['string|false'], -'xdebug_get_stack_depth' => ['int'], -'xdebug_get_tracefile_name' => ['string'], -'xdebug_info' => ['mixed', 'category='=>'string'], -'xdebug_is_debugger_active' => ['bool'], -'xdebug_is_enabled' => ['bool'], -'xdebug_memory_usage' => ['int'], -'xdebug_peak_memory_usage' => ['int'], -'xdebug_print_function_stack' => ['array', 'message='=>'string', 'options='=>'int'], -'xdebug_set_filter' => ['void', 'group'=>'int', 'list_type'=>'int', 'configuration'=>'array'], -'xdebug_start_code_coverage' => ['void', 'options='=>'int'], -'xdebug_start_error_collection' => ['void'], -'xdebug_start_function_monitor' => ['void', 'list_of_functions_to_monitor'=>'string[]'], -'xdebug_start_trace' => ['void', 'trace_file'=>'', 'options='=>'int|mixed'], -'xdebug_stop_code_coverage' => ['void', 'cleanup='=>'bool'], -'xdebug_stop_error_collection' => ['void'], -'xdebug_stop_function_monitor' => ['void'], -'xdebug_stop_trace' => ['void'], -'xdebug_time_index' => ['float'], -'xdebug_var_dump' => ['void', '...var'=>''], -'xdiff_file_bdiff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], -'xdiff_file_bdiff_size' => ['int', 'file'=>'string'], -'xdiff_file_bpatch' => ['bool', 'file'=>'string', 'patch'=>'string', 'dest'=>'string'], -'xdiff_file_diff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string', 'context='=>'int', 'minimal='=>'bool'], -'xdiff_file_diff_binary' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], -'xdiff_file_merge3' => ['mixed', 'old_file'=>'string', 'new_file1'=>'string', 'new_file2'=>'string', 'dest'=>'string'], -'xdiff_file_patch' => ['mixed', 'file'=>'string', 'patch'=>'string', 'dest'=>'string', 'flags='=>'int'], -'xdiff_file_patch_binary' => ['bool', 'file'=>'string', 'patch'=>'string', 'dest'=>'string'], -'xdiff_file_rabdiff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], -'xdiff_string_bdiff' => ['string', 'old_data'=>'string', 'new_data'=>'string'], -'xdiff_string_bdiff_size' => ['int', 'patch'=>'string'], -'xdiff_string_bpatch' => ['string', 'string'=>'string', 'patch'=>'string'], -'xdiff_string_diff' => ['string', 'old_data'=>'string', 'new_data'=>'string', 'context='=>'int', 'minimal='=>'bool'], -'xdiff_string_diff_binary' => ['string', 'old_data'=>'string', 'new_data'=>'string'], -'xdiff_string_merge3' => ['mixed', 'old_data'=>'string', 'new_data1'=>'string', 'new_data2'=>'string', 'error='=>'string'], -'xdiff_string_patch' => ['string', 'string'=>'string', 'patch'=>'string', 'flags='=>'int', '&w_error='=>'string'], -'xdiff_string_patch_binary' => ['string', 'string'=>'string', 'patch'=>'string'], -'xdiff_string_rabdiff' => ['string', 'old_data'=>'string', 'new_data'=>'string'], -'xhprof_disable' => ['array'], -'xhprof_enable' => ['void', 'flags='=>'int', 'options='=>'array'], -'xhprof_sample_disable' => ['array'], -'xhprof_sample_enable' => ['void'], -'xlswriter_get_author' => ['string'], -'xlswriter_get_version' => ['string'], -'xml_error_string' => ['?string', 'error_code'=>'int'], -'xml_get_current_byte_index' => ['int', 'parser'=>'XMLParser'], -'xml_get_current_column_number' => ['int', 'parser'=>'XMLParser'], -'xml_get_current_line_number' => ['int', 'parser'=>'XMLParser'], -'xml_get_error_code' => ['int', 'parser'=>'XMLParser'], -'xml_parse' => ['int', 'parser'=>'XMLParser', 'data'=>'string', 'is_final='=>'bool'], -'xml_parse_into_struct' => ['int', 'parser'=>'XMLParser', 'data'=>'string', '&w_values'=>'array', '&w_index='=>'array'], -'xml_parser_create' => ['XMLParser', 'encoding='=>'?string'], -'xml_parser_create_ns' => ['XMLParser', 'encoding='=>'?string', 'separator='=>'string'], -'xml_parser_free' => ['bool', 'parser'=>'XMLParser'], -'xml_parser_get_option' => ['string|int', 'parser'=>'XMLParser', 'option'=>'int'], -'xml_parser_set_option' => ['bool', 'parser'=>'XMLParser', 'option'=>'int', 'value'=>'mixed'], -'xml_set_character_data_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_default_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_element_handler' => ['true', 'parser'=>'XMLParser', 'start_handler'=>'callable', 'end_handler'=>'callable'], -'xml_set_end_namespace_decl_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_external_entity_ref_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_notation_decl_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_object' => ['true', 'parser'=>'XMLParser', 'object'=>'object'], -'xml_set_processing_instruction_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_start_namespace_decl_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'xml_set_unparsed_entity_decl_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], -'XMLDiff\Base::__construct' => ['void', 'nsname'=>'string'], -'XMLDiff\Base::diff' => ['mixed', 'from'=>'mixed', 'to'=>'mixed'], -'XMLDiff\Base::merge' => ['mixed', 'src'=>'mixed', 'diff'=>'mixed'], -'XMLDiff\DOM::diff' => ['DOMDocument', 'from'=>'DOMDocument', 'to'=>'DOMDocument'], -'XMLDiff\DOM::merge' => ['DOMDocument', 'src'=>'DOMDocument', 'diff'=>'DOMDocument'], -'XMLDiff\File::diff' => ['string', 'from'=>'string', 'to'=>'string'], -'XMLDiff\File::merge' => ['string', 'src'=>'string', 'diff'=>'string'], -'XMLDiff\Memory::diff' => ['string', 'from'=>'string', 'to'=>'string'], -'XMLDiff\Memory::merge' => ['string', 'src'=>'string', 'diff'=>'string'], -'XMLReader::close' => ['bool'], -'XMLReader::expand' => ['DOMNode|false', 'baseNode='=>'?DOMNode'], -'XMLReader::getAttribute' => ['?string', 'name'=>'string'], -'XMLReader::getAttributeNo' => ['?string', 'index'=>'int'], -'XMLReader::getAttributeNs' => ['?string', 'name'=>'string', 'namespace'=>'string'], -'XMLReader::getParserProperty' => ['bool', 'property'=>'int'], -'XMLReader::isValid' => ['bool'], -'XMLReader::lookupNamespace' => ['?string', 'prefix'=>'string'], -'XMLReader::moveToAttribute' => ['bool', 'name'=>'string'], -'XMLReader::moveToAttributeNo' => ['bool', 'index'=>'int'], -'XMLReader::moveToAttributeNs' => ['bool', 'name'=>'string', 'namespace'=>'string'], -'XMLReader::moveToElement' => ['bool'], -'XMLReader::moveToFirstAttribute' => ['bool'], -'XMLReader::moveToNextAttribute' => ['bool'], -'XMLReader::next' => ['bool', 'name='=>'?string'], -'XMLReader::open' => ['bool|XmlReader', 'uri'=>'string', 'encoding='=>'?string', 'flags='=>'int'], -'XMLReader::read' => ['bool'], -'XMLReader::readInnerXML' => ['string'], -'XMLReader::readOuterXML' => ['string'], -'XMLReader::readString' => ['string'], -'XMLReader::setParserProperty' => ['bool', 'property'=>'int', 'value'=>'bool'], -'XMLReader::setRelaxNGSchema' => ['bool', 'filename'=>'?string'], -'XMLReader::setRelaxNGSchemaSource' => ['bool', 'source'=>'?string'], -'XMLReader::setSchema' => ['bool', 'filename'=>'?string'], -'XMLReader::XML' => ['bool|XMLReader', 'source'=>'string', 'encoding='=>'?string', 'flags='=>'int'], -'XMLWriter::endAttribute' => ['bool'], -'XMLWriter::endCdata' => ['bool'], -'XMLWriter::endComment' => ['bool'], -'XMLWriter::endDocument' => ['bool'], -'XMLWriter::endDtd' => ['bool'], -'XMLWriter::endDtdAttlist' => ['bool'], -'XMLWriter::endDtdElement' => ['bool'], -'XMLWriter::endDtdEntity' => ['bool'], -'XMLWriter::endElement' => ['bool'], -'XMLWriter::endPi' => ['bool'], -'XMLWriter::flush' => ['string|int', 'empty='=>'bool'], -'XMLWriter::fullEndElement' => ['bool'], -'XMLWriter::openMemory' => ['bool'], -'XMLWriter::openUri' => ['bool', 'uri'=>'string'], -'XMLWriter::outputMemory' => ['string', 'flush='=>'bool'], -'XMLWriter::setIndent' => ['bool', 'enable'=>'bool'], -'XMLWriter::setIndentString' => ['bool', 'indentation'=>'string'], -'XMLWriter::startAttribute' => ['bool', 'name'=>'string'], -'XMLWriter::startAttributeNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], -'XMLWriter::startCdata' => ['bool'], -'XMLWriter::startComment' => ['bool'], -'XMLWriter::startDocument' => ['bool', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], -'XMLWriter::startDtd' => ['bool', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], -'XMLWriter::startDtdAttlist' => ['bool', 'name'=>'string'], -'XMLWriter::startDtdElement' => ['bool', 'qualifiedName'=>'string'], -'XMLWriter::startDtdEntity' => ['bool', 'name'=>'string', 'isParam'=>'bool'], -'XMLWriter::startElement' => ['bool', 'name'=>'string'], -'XMLWriter::startElementNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], -'XMLWriter::startPi' => ['bool', 'target'=>'string'], -'XMLWriter::text' => ['bool', 'content'=>'string'], -'XMLWriter::writeAttribute' => ['bool', 'name'=>'string', 'value'=>'string'], -'XMLWriter::writeAttributeNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], -'XMLWriter::writeCdata' => ['bool', 'content'=>'string'], -'XMLWriter::writeComment' => ['bool', 'content'=>'string'], -'XMLWriter::writeDtd' => ['bool', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], -'XMLWriter::writeDtdAttlist' => ['bool', 'name'=>'string', 'content'=>'string'], -'XMLWriter::writeDtdElement' => ['bool', 'name'=>'string', 'content'=>'string'], -'XMLWriter::writeDtdEntity' => ['bool', 'name'=>'string', 'content'=>'string', 'isParam='=>'bool', 'publicId='=>'?string', 'systemId='=>'?string', 'notationData='=>'?string'], -'XMLWriter::writeElement' => ['bool', 'name'=>'string', 'content='=>'?string'], -'XMLWriter::writeElementNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'content='=>'?string'], -'XMLWriter::writePi' => ['bool', 'target'=>'string', 'content'=>'string'], -'XMLWriter::writeRaw' => ['bool', 'content'=>'string'], -'xmlwriter_end_attribute' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_cdata' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_comment' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_document' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_dtd' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_dtd_attlist' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_dtd_element' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_dtd_entity' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_element' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_end_pi' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_flush' => ['string|int', 'writer'=>'XMLWriter', 'empty='=>'bool'], -'xmlwriter_full_end_element' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_open_memory' => ['XMLWriter|false'], -'xmlwriter_open_uri' => ['XMLWriter|false', 'uri'=>'string'], -'xmlwriter_output_memory' => ['string', 'writer'=>'XMLWriter', 'flush='=>'bool'], -'xmlwriter_set_indent' => ['bool', 'writer'=>'XMLWriter', 'enable'=>'bool'], -'xmlwriter_set_indent_string' => ['bool', 'writer'=>'XMLWriter', 'indentation'=>'string'], -'xmlwriter_start_attribute' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], -'xmlwriter_start_attribute_ns' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], -'xmlwriter_start_cdata' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_start_comment' => ['bool', 'writer'=>'XMLWriter'], -'xmlwriter_start_document' => ['bool', 'writer'=>'XMLWriter', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], -'xmlwriter_start_dtd' => ['bool', 'writer'=>'XMLWriter', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], -'xmlwriter_start_dtd_attlist' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], -'xmlwriter_start_dtd_element' => ['bool', 'writer'=>'XMLWriter', 'qualifiedName'=>'string'], -'xmlwriter_start_dtd_entity' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'isParam'=>'bool'], -'xmlwriter_start_element' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], -'xmlwriter_start_element_ns' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], -'xmlwriter_start_pi' => ['bool', 'writer'=>'XMLWriter', 'target'=>'string'], -'xmlwriter_text' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], -'xmlwriter_write_attribute' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'value'=>'string'], -'xmlwriter_write_attribute_ns' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], -'xmlwriter_write_cdata' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], -'xmlwriter_write_comment' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], -'xmlwriter_write_dtd' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], -'xmlwriter_write_dtd_attlist' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string'], -'xmlwriter_write_dtd_element' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string'], -'xmlwriter_write_dtd_entity' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string', 'isParam='=>'bool', 'publicId='=>'?string', 'systemId='=>'?string', 'notationData='=>'?string'], -'xmlwriter_write_element' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content='=>'?string'], -'xmlwriter_write_element_ns' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'content='=>'?string'], -'xmlwriter_write_pi' => ['bool', 'writer'=>'XMLWriter', 'target'=>'string', 'content'=>'string'], -'xmlwriter_write_raw' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], -'xpath_new_context' => ['XPathContext', 'dom_document'=>'DOMDocument'], -'xpath_register_ns' => ['bool', 'xpath_context'=>'xpathcontext', 'prefix'=>'string', 'uri'=>'string'], -'xpath_register_ns_auto' => ['bool', 'xpath_context'=>'xpathcontext', 'context_node='=>'object'], -'xptr_new_context' => ['XPathContext'], -'XSLTProcessor::getParameter' => ['string|false', 'namespace'=>'string', 'name'=>'string'], -'XsltProcessor::getSecurityPrefs' => ['int'], -'XSLTProcessor::hasExsltSupport' => ['bool'], -'XSLTProcessor::importStylesheet' => ['bool', 'stylesheet'=>'object'], -'XSLTProcessor::registerPHPFunctions' => ['void', 'functions='=>'array|string|null'], -'XSLTProcessor::removeParameter' => ['bool', 'namespace'=>'string', 'name'=>'string'], -'XSLTProcessor::setParameter' => ['bool', 'namespace'=>'string', 'name'=>'string', 'value'=>'string'], -'XSLTProcessor::setParameter\'1' => ['bool', 'namespace'=>'string', 'options'=>'array'], -'XSLTProcessor::setProfiling' => ['bool', 'filename'=>'?string'], -'XsltProcessor::setSecurityPrefs' => ['int', 'preferences'=>'int'], -'XSLTProcessor::transformToDoc' => ['DOMDocument|false', 'document'=>'DOMNode', 'returnClass='=>'?string'], -'XSLTProcessor::transformToURI' => ['int', 'document'=>'DOMDocument', 'uri'=>'string'], -'XSLTProcessor::transformToXML' => ['string|false', 'document'=>'DOMDocument'], -'yac::__construct' => ['void', 'prefix='=>'string'], -'yac::__get' => ['mixed', 'key'=>'string'], -'yac::__set' => ['mixed', 'key'=>'string', 'value'=>'mixed'], -'yac::delete' => ['bool', 'keys'=>'string|array', 'ttl='=>'int'], -'yac::dump' => ['mixed', 'num'=>'int'], -'yac::flush' => ['bool'], -'yac::get' => ['mixed', 'key'=>'string|array', 'cas='=>'int'], -'yac::info' => ['array'], -'Yaconf::get' => ['mixed', 'name'=>'string', 'default_value='=>'mixed'], -'Yaconf::has' => ['bool', 'name'=>'string'], -'Yaf\Action_Abstract::__clone' => ['void'], -'Yaf\Action_Abstract::__construct' => ['void', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract', 'view'=>'Yaf\View_Interface', 'invokeArgs='=>'?array'], -'Yaf\Action_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf\Action_Abstract::execute' => ['mixed'], -'Yaf\Action_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], -'Yaf\Action_Abstract::getController' => ['Yaf\Controller_Abstract'], -'Yaf\Action_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], -'Yaf\Action_Abstract::getInvokeArgs' => ['array'], -'Yaf\Action_Abstract::getModuleName' => ['string'], -'Yaf\Action_Abstract::getRequest' => ['Yaf\Request_Abstract'], -'Yaf\Action_Abstract::getResponse' => ['Yaf\Response_Abstract'], -'Yaf\Action_Abstract::getView' => ['Yaf\View_Interface'], -'Yaf\Action_Abstract::getViewpath' => ['string'], -'Yaf\Action_Abstract::init' => [''], -'Yaf\Action_Abstract::initView' => ['Yaf\Response_Abstract', 'options='=>'?array'], -'Yaf\Action_Abstract::redirect' => ['bool', 'url'=>'string'], -'Yaf\Action_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf\Action_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], -'Yaf\Application::__clone' => ['void'], -'Yaf\Application::__construct' => ['void', 'config'=>'array|string', 'envrion='=>'string'], -'Yaf\Application::__destruct' => ['void'], -'Yaf\Application::__sleep' => ['string[]'], -'Yaf\Application::__wakeup' => ['void'], -'Yaf\Application::app' => ['?Yaf\Application'], -'Yaf\Application::bootstrap' => ['Yaf\Application', 'bootstrap='=>'?Yaf\Bootstrap_Abstract'], -'Yaf\Application::clearLastError' => ['void'], -'Yaf\Application::environ' => ['string'], -'Yaf\Application::execute' => ['void', 'entry'=>'callable', '_='=>'string'], -'Yaf\Application::getAppDirectory' => ['string'], -'Yaf\Application::getConfig' => ['Yaf\Config_Abstract'], -'Yaf\Application::getDispatcher' => ['Yaf\Dispatcher'], -'Yaf\Application::getLastErrorMsg' => ['string'], -'Yaf\Application::getLastErrorNo' => ['int'], -'Yaf\Application::getModules' => ['array'], -'Yaf\Application::run' => ['void'], -'Yaf\Application::setAppDirectory' => ['Yaf\Application', 'directory'=>'string'], -'Yaf\Config\Ini::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], -'Yaf\Config\Ini::__get' => ['', 'name='=>'mixed'], -'Yaf\Config\Ini::__isset' => ['', 'name'=>'string'], -'Yaf\Config\Ini::__set' => ['void', 'name'=>'', 'value'=>''], -'Yaf\Config\Ini::count' => ['int'], -'Yaf\Config\Ini::current' => ['mixed'], -'Yaf\Config\Ini::get' => ['mixed', 'name='=>'mixed'], -'Yaf\Config\Ini::key' => ['int|string'], -'Yaf\Config\Ini::next' => ['void'], -'Yaf\Config\Ini::offsetExists' => ['bool', 'name'=>'int|string'], -'Yaf\Config\Ini::offsetGet' => ['mixed', 'name'=>'int|string'], -'Yaf\Config\Ini::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], -'Yaf\Config\Ini::offsetUnset' => ['void', 'name'=>'int|string'], -'Yaf\Config\Ini::readonly' => ['bool'], -'Yaf\Config\Ini::rewind' => ['void'], -'Yaf\Config\Ini::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], -'Yaf\Config\Ini::toArray' => ['array'], -'Yaf\Config\Ini::valid' => ['bool'], -'Yaf\Config\Simple::__construct' => ['void', 'array'=>'array', 'readonly='=>'string'], -'Yaf\Config\Simple::__get' => ['', 'name='=>'mixed'], -'Yaf\Config\Simple::__isset' => ['', 'name'=>'string'], -'Yaf\Config\Simple::__set' => ['void', 'name'=>'', 'value'=>''], -'Yaf\Config\Simple::count' => ['int'], -'Yaf\Config\Simple::current' => ['mixed'], -'Yaf\Config\Simple::get' => ['mixed', 'name='=>'mixed'], -'Yaf\Config\Simple::key' => ['int|string'], -'Yaf\Config\Simple::next' => ['void'], -'Yaf\Config\Simple::offsetExists' => ['bool', 'name'=>'int|string'], -'Yaf\Config\Simple::offsetGet' => ['mixed', 'name'=>'int|string'], -'Yaf\Config\Simple::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], -'Yaf\Config\Simple::offsetUnset' => ['void', 'name'=>'int|string'], -'Yaf\Config\Simple::readonly' => ['bool'], -'Yaf\Config\Simple::rewind' => ['void'], -'Yaf\Config\Simple::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], -'Yaf\Config\Simple::toArray' => ['array'], -'Yaf\Config\Simple::valid' => ['bool'], -'Yaf\Config_Abstract::__construct' => ['void'], -'Yaf\Config_Abstract::get' => ['mixed', 'name='=>'string'], -'Yaf\Config_Abstract::readonly' => ['bool'], -'Yaf\Config_Abstract::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], -'Yaf\Config_Abstract::toArray' => ['array'], -'Yaf\Controller_Abstract::__clone' => ['void'], -'Yaf\Controller_Abstract::__construct' => ['void', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract', 'view'=>'Yaf\View_Interface', 'invokeArgs='=>'?array'], -'Yaf\Controller_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf\Controller_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], -'Yaf\Controller_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], -'Yaf\Controller_Abstract::getInvokeArgs' => ['array'], -'Yaf\Controller_Abstract::getModuleName' => ['string'], -'Yaf\Controller_Abstract::getRequest' => ['Yaf\Request_Abstract'], -'Yaf\Controller_Abstract::getResponse' => ['Yaf\Response_Abstract'], -'Yaf\Controller_Abstract::getView' => ['Yaf\View_Interface'], -'Yaf\Controller_Abstract::getViewpath' => ['string'], -'Yaf\Controller_Abstract::init' => [''], -'Yaf\Controller_Abstract::initView' => ['Yaf\Response_Abstract', 'options='=>'?array'], -'Yaf\Controller_Abstract::redirect' => ['bool', 'url'=>'string'], -'Yaf\Controller_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf\Controller_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], -'Yaf\Dispatcher::__clone' => ['void'], -'Yaf\Dispatcher::__construct' => ['void'], -'Yaf\Dispatcher::__sleep' => ['list'], -'Yaf\Dispatcher::__wakeup' => ['void'], -'Yaf\Dispatcher::autoRender' => ['Yaf\Dispatcher', 'flag='=>'bool'], -'Yaf\Dispatcher::catchException' => ['Yaf\Dispatcher', 'flag='=>'bool'], -'Yaf\Dispatcher::disableView' => ['bool'], -'Yaf\Dispatcher::dispatch' => ['Yaf\Response_Abstract', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Dispatcher::enableView' => ['Yaf\Dispatcher'], -'Yaf\Dispatcher::flushInstantly' => ['Yaf\Dispatcher', 'flag='=>'bool'], -'Yaf\Dispatcher::getApplication' => ['Yaf\Application'], -'Yaf\Dispatcher::getInstance' => ['Yaf\Dispatcher'], -'Yaf\Dispatcher::getRequest' => ['Yaf\Request_Abstract'], -'Yaf\Dispatcher::getRouter' => ['Yaf\Router'], -'Yaf\Dispatcher::initView' => ['Yaf\View_Interface', 'templates_dir'=>'string', 'options='=>'?array'], -'Yaf\Dispatcher::registerPlugin' => ['Yaf\Dispatcher', 'plugin'=>'Yaf\Plugin_Abstract'], -'Yaf\Dispatcher::returnResponse' => ['Yaf\Dispatcher', 'flag'=>'bool'], -'Yaf\Dispatcher::setDefaultAction' => ['Yaf\Dispatcher', 'action'=>'string'], -'Yaf\Dispatcher::setDefaultController' => ['Yaf\Dispatcher', 'controller'=>'string'], -'Yaf\Dispatcher::setDefaultModule' => ['Yaf\Dispatcher', 'module'=>'string'], -'Yaf\Dispatcher::setErrorHandler' => ['Yaf\Dispatcher', 'callback'=>'callable', 'error_types'=>'int'], -'Yaf\Dispatcher::setRequest' => ['Yaf\Dispatcher', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Dispatcher::setView' => ['Yaf\Dispatcher', 'view'=>'Yaf\View_Interface'], -'Yaf\Dispatcher::throwException' => ['Yaf\Dispatcher', 'flag='=>'bool'], -'Yaf\Loader::__clone' => ['void'], -'Yaf\Loader::__construct' => ['void'], -'Yaf\Loader::__sleep' => ['list'], -'Yaf\Loader::__wakeup' => ['void'], -'Yaf\Loader::autoload' => ['bool', 'class_name'=>'string'], -'Yaf\Loader::clearLocalNamespace' => [''], -'Yaf\Loader::getInstance' => ['Yaf\Loader', 'local_library_path='=>'string', 'global_library_path='=>'string'], -'Yaf\Loader::getLibraryPath' => ['string', 'is_global='=>'bool'], -'Yaf\Loader::getLocalNamespace' => ['string'], -'Yaf\Loader::import' => ['bool', 'file'=>'string'], -'Yaf\Loader::isLocalName' => ['bool', 'class_name'=>'string'], -'Yaf\Loader::registerLocalNamespace' => ['bool', 'name_prefix'=>'string|string[]'], -'Yaf\Loader::setLibraryPath' => ['Yaf\Loader', 'directory'=>'string', 'global='=>'bool'], -'Yaf\Plugin_Abstract::dispatchLoopShutdown' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::dispatchLoopStartup' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::postDispatch' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::preDispatch' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::preResponse' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::routerShutdown' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Plugin_Abstract::routerStartup' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], -'Yaf\Registry::__clone' => ['void'], -'Yaf\Registry::__construct' => ['void'], -'Yaf\Registry::del' => ['bool|void', 'name'=>'string'], -'Yaf\Registry::get' => ['mixed', 'name'=>'string'], -'Yaf\Registry::has' => ['bool', 'name'=>'string'], -'Yaf\Registry::set' => ['bool', 'name'=>'string', 'value'=>'mixed'], -'Yaf\Request\Http::__clone' => ['void'], -'Yaf\Request\Http::__construct' => ['void', 'request_uri'=>'string', 'base_uri'=>'string'], -'Yaf\Request\Http::get' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf\Request\Http::getActionName' => ['string'], -'Yaf\Request\Http::getBaseUri' => ['string'], -'Yaf\Request\Http::getControllerName' => ['string'], -'Yaf\Request\Http::getCookie' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getException' => ['Yaf\Exception'], -'Yaf\Request\Http::getFiles' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getLanguage' => ['string'], -'Yaf\Request\Http::getMethod' => ['string'], -'Yaf\Request\Http::getModuleName' => ['string'], -'Yaf\Request\Http::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getParams' => ['array'], -'Yaf\Request\Http::getPost' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getQuery' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getRequest' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::getRequestUri' => ['string'], -'Yaf\Request\Http::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Http::isCli' => ['bool'], -'Yaf\Request\Http::isDispatched' => ['bool'], -'Yaf\Request\Http::isGet' => ['bool'], -'Yaf\Request\Http::isHead' => ['bool'], -'Yaf\Request\Http::isOptions' => ['bool'], -'Yaf\Request\Http::isPost' => ['bool'], -'Yaf\Request\Http::isPut' => ['bool'], -'Yaf\Request\Http::isRouted' => ['bool'], -'Yaf\Request\Http::isXmlHttpRequest' => ['bool'], -'Yaf\Request\Http::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], -'Yaf\Request\Http::setBaseUri' => ['bool', 'uri'=>'string'], -'Yaf\Request\Http::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], -'Yaf\Request\Http::setDispatched' => ['bool'], -'Yaf\Request\Http::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], -'Yaf\Request\Http::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], -'Yaf\Request\Http::setRequestUri' => ['', 'uri'=>'string'], -'Yaf\Request\Http::setRouted' => ['Yaf\Request_Abstract|bool'], -'Yaf\Request\Simple::__clone' => ['void'], -'Yaf\Request\Simple::__construct' => ['void', 'method'=>'string', 'controller'=>'string', 'action'=>'string', 'params='=>'string'], -'Yaf\Request\Simple::get' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf\Request\Simple::getActionName' => ['string'], -'Yaf\Request\Simple::getBaseUri' => ['string'], -'Yaf\Request\Simple::getControllerName' => ['string'], -'Yaf\Request\Simple::getCookie' => ['mixed', 'name='=>'string', 'default='=>'string'], -'Yaf\Request\Simple::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Simple::getException' => ['Yaf\Exception'], -'Yaf\Request\Simple::getFiles' => ['array', 'name='=>'mixed', 'default='=>'null'], -'Yaf\Request\Simple::getLanguage' => ['string'], -'Yaf\Request\Simple::getMethod' => ['string'], -'Yaf\Request\Simple::getModuleName' => ['string'], -'Yaf\Request\Simple::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'Yaf\Request\Simple::getParams' => ['array'], -'Yaf\Request\Simple::getPost' => ['mixed', 'name='=>'string', 'default='=>'string'], -'Yaf\Request\Simple::getQuery' => ['mixed', 'name='=>'string', 'default='=>'string'], -'Yaf\Request\Simple::getRequest' => ['mixed', 'name='=>'string', 'default='=>'string'], -'Yaf\Request\Simple::getRequestUri' => ['string'], -'Yaf\Request\Simple::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request\Simple::isCli' => ['bool'], -'Yaf\Request\Simple::isDispatched' => ['bool'], -'Yaf\Request\Simple::isGet' => ['bool'], -'Yaf\Request\Simple::isHead' => ['bool'], -'Yaf\Request\Simple::isOptions' => ['bool'], -'Yaf\Request\Simple::isPost' => ['bool'], -'Yaf\Request\Simple::isPut' => ['bool'], -'Yaf\Request\Simple::isRouted' => ['bool'], -'Yaf\Request\Simple::isXmlHttpRequest' => ['bool'], -'Yaf\Request\Simple::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], -'Yaf\Request\Simple::setBaseUri' => ['bool', 'uri'=>'string'], -'Yaf\Request\Simple::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], -'Yaf\Request\Simple::setDispatched' => ['bool'], -'Yaf\Request\Simple::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], -'Yaf\Request\Simple::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], -'Yaf\Request\Simple::setRequestUri' => ['', 'uri'=>'string'], -'Yaf\Request\Simple::setRouted' => ['Yaf\Request_Abstract|bool'], -'Yaf\Request_Abstract::getActionName' => ['string'], -'Yaf\Request_Abstract::getBaseUri' => ['string'], -'Yaf\Request_Abstract::getControllerName' => ['string'], -'Yaf\Request_Abstract::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request_Abstract::getException' => ['Yaf\Exception'], -'Yaf\Request_Abstract::getLanguage' => ['string'], -'Yaf\Request_Abstract::getMethod' => ['string'], -'Yaf\Request_Abstract::getModuleName' => ['string'], -'Yaf\Request_Abstract::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'Yaf\Request_Abstract::getParams' => ['array'], -'Yaf\Request_Abstract::getRequestUri' => ['string'], -'Yaf\Request_Abstract::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf\Request_Abstract::isCli' => ['bool'], -'Yaf\Request_Abstract::isDispatched' => ['bool'], -'Yaf\Request_Abstract::isGet' => ['bool'], -'Yaf\Request_Abstract::isHead' => ['bool'], -'Yaf\Request_Abstract::isOptions' => ['bool'], -'Yaf\Request_Abstract::isPost' => ['bool'], -'Yaf\Request_Abstract::isPut' => ['bool'], -'Yaf\Request_Abstract::isRouted' => ['bool'], -'Yaf\Request_Abstract::isXmlHttpRequest' => ['bool'], -'Yaf\Request_Abstract::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], -'Yaf\Request_Abstract::setBaseUri' => ['bool', 'uri'=>'string'], -'Yaf\Request_Abstract::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], -'Yaf\Request_Abstract::setDispatched' => ['bool'], -'Yaf\Request_Abstract::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], -'Yaf\Request_Abstract::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], -'Yaf\Request_Abstract::setRequestUri' => ['', 'uri'=>'string'], -'Yaf\Request_Abstract::setRouted' => ['Yaf\Request_Abstract|bool'], -'Yaf\Response\Cli::__clone' => ['void'], -'Yaf\Response\Cli::__construct' => ['void'], -'Yaf\Response\Cli::__destruct' => ['void'], -'Yaf\Response\Cli::__toString' => ['string'], -'Yaf\Response\Cli::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Cli::clearBody' => ['bool', 'key='=>'string'], -'Yaf\Response\Cli::getBody' => ['mixed', 'key='=>'?string'], -'Yaf\Response\Cli::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Cli::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Http::__clone' => ['void'], -'Yaf\Response\Http::__construct' => ['void'], -'Yaf\Response\Http::__destruct' => ['void'], -'Yaf\Response\Http::__toString' => ['string'], -'Yaf\Response\Http::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Http::clearBody' => ['bool', 'key='=>'string'], -'Yaf\Response\Http::clearHeaders' => ['Yaf\Response_Abstract|false', 'name='=>'string'], -'Yaf\Response\Http::getBody' => ['mixed', 'key='=>'?string'], -'Yaf\Response\Http::getHeader' => ['mixed', 'name='=>'string'], -'Yaf\Response\Http::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Http::response' => ['bool'], -'Yaf\Response\Http::setAllHeaders' => ['bool', 'headers'=>'array'], -'Yaf\Response\Http::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response\Http::setHeader' => ['bool', 'name'=>'string', 'value'=>'string', 'replace='=>'bool', 'response_code='=>'int'], -'Yaf\Response\Http::setRedirect' => ['bool', 'url'=>'string'], -'Yaf\Response_Abstract::__clone' => ['void'], -'Yaf\Response_Abstract::__construct' => ['void'], -'Yaf\Response_Abstract::__destruct' => ['void'], -'Yaf\Response_Abstract::__toString' => ['void'], -'Yaf\Response_Abstract::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response_Abstract::clearBody' => ['bool', 'key='=>'string'], -'Yaf\Response_Abstract::getBody' => ['mixed', 'key='=>'?string'], -'Yaf\Response_Abstract::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Response_Abstract::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf\Route\Map::__construct' => ['void', 'controller_prefer='=>'bool', 'delimiter='=>'string'], -'Yaf\Route\Map::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route\Map::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route\Regex::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'map='=>'?array', 'verify='=>'?array', 'reverse='=>'string'], -'Yaf\Route\Regex::addConfig' => ['Yaf\Router|bool', 'config'=>'Yaf\Config_Abstract'], -'Yaf\Route\Regex::addRoute' => ['Yaf\Router|bool', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], -'Yaf\Route\Regex::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route\Regex::getCurrentRoute' => ['string'], -'Yaf\Route\Regex::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], -'Yaf\Route\Regex::getRoutes' => ['Yaf\Route_Interface[]'], -'Yaf\Route\Regex::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route\Rewrite::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'verify='=>'?array', 'reverse='=>'string'], -'Yaf\Route\Rewrite::addConfig' => ['Yaf\Router|bool', 'config'=>'Yaf\Config_Abstract'], -'Yaf\Route\Rewrite::addRoute' => ['Yaf\Router|bool', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], -'Yaf\Route\Rewrite::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route\Rewrite::getCurrentRoute' => ['string'], -'Yaf\Route\Rewrite::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], -'Yaf\Route\Rewrite::getRoutes' => ['Yaf\Route_Interface[]'], -'Yaf\Route\Rewrite::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route\Simple::__construct' => ['void', 'module_name'=>'string', 'controller_name'=>'string', 'action_name'=>'string'], -'Yaf\Route\Simple::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route\Simple::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route\Supervar::__construct' => ['void', 'supervar_name'=>'string'], -'Yaf\Route\Supervar::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route\Supervar::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route_Interface::__construct' => ['Yaf\Route_Interface'], -'Yaf\Route_Interface::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route_Interface::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Route_Static::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], -'Yaf\Route_Static::match' => ['bool', 'uri'=>'string'], -'Yaf\Route_Static::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Router::__construct' => ['void'], -'Yaf\Router::addConfig' => ['Yaf\Router|false', 'config'=>'Yaf\Config_Abstract'], -'Yaf\Router::addRoute' => ['Yaf\Router|false', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], -'Yaf\Router::getCurrentRoute' => ['string'], -'Yaf\Router::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], -'Yaf\Router::getRoutes' => ['Yaf\Route_Interface[]'], -'Yaf\Router::route' => ['Yaf\Router|false', 'request'=>'Yaf\Request_Abstract'], -'Yaf\Session::__clone' => ['void'], -'Yaf\Session::__construct' => ['void'], -'Yaf\Session::__get' => ['void', 'name'=>''], -'Yaf\Session::__isset' => ['void', 'name'=>''], -'Yaf\Session::__set' => ['void', 'name'=>'', 'value'=>''], -'Yaf\Session::__sleep' => ['list'], -'Yaf\Session::__unset' => ['void', 'name'=>''], -'Yaf\Session::__wakeup' => ['void'], -'Yaf\Session::count' => ['int'], -'Yaf\Session::current' => ['mixed'], -'Yaf\Session::del' => ['Yaf\Session|false', 'name'=>'string'], -'Yaf\Session::get' => ['mixed', 'name'=>'string'], -'Yaf\Session::getInstance' => ['Yaf\Session'], -'Yaf\Session::has' => ['bool', 'name'=>'string'], -'Yaf\Session::key' => ['int|string'], -'Yaf\Session::next' => ['void'], -'Yaf\Session::offsetExists' => ['bool', 'name'=>'int|string'], -'Yaf\Session::offsetGet' => ['mixed', 'name'=>'int|string'], -'Yaf\Session::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], -'Yaf\Session::offsetUnset' => ['void', 'name'=>'int|string'], -'Yaf\Session::rewind' => ['void'], -'Yaf\Session::set' => ['Yaf\Session|false', 'name'=>'string', 'value'=>'mixed'], -'Yaf\Session::start' => ['Yaf\Session'], -'Yaf\Session::valid' => ['bool'], -'Yaf\View\Simple::__construct' => ['void', 'template_dir'=>'string', 'options='=>'?array'], -'Yaf\View\Simple::__get' => ['mixed', 'name='=>'null'], -'Yaf\View\Simple::__isset' => ['', 'name'=>'string'], -'Yaf\View\Simple::__set' => ['void', 'name'=>'string', 'value='=>'mixed'], -'Yaf\View\Simple::assign' => ['Yaf\View\Simple', 'name'=>'array|string', 'value='=>'mixed'], -'Yaf\View\Simple::assignRef' => ['Yaf\View\Simple', 'name'=>'string', '&value'=>'mixed'], -'Yaf\View\Simple::clear' => ['Yaf\View\Simple', 'name='=>'string'], -'Yaf\View\Simple::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'?array'], -'Yaf\View\Simple::eval' => ['bool|void', 'tpl_str'=>'string', 'vars='=>'?array'], -'Yaf\View\Simple::getScriptPath' => ['string'], -'Yaf\View\Simple::render' => ['string|void', 'tpl'=>'string', 'tpl_vars='=>'?array'], -'Yaf\View\Simple::setScriptPath' => ['Yaf\View\Simple', 'template_dir'=>'string'], -'Yaf\View_Interface::assign' => ['bool', 'name'=>'array|string', 'value'=>'mixed'], -'Yaf\View_Interface::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'?array'], -'Yaf\View_Interface::getScriptPath' => ['string'], -'Yaf\View_Interface::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'?array'], -'Yaf\View_Interface::setScriptPath' => ['void', 'template_dir'=>'string'], -'Yaf_Action_Abstract::__clone' => ['void'], -'Yaf_Action_Abstract::__construct' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract', 'view'=>'Yaf_View_Interface', 'invokeArgs='=>'?array'], -'Yaf_Action_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf_Action_Abstract::execute' => ['mixed', 'arg='=>'mixed', '...args='=>'mixed'], -'Yaf_Action_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], -'Yaf_Action_Abstract::getController' => ['Yaf_Controller_Abstract'], -'Yaf_Action_Abstract::getControllerName' => ['string'], -'Yaf_Action_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], -'Yaf_Action_Abstract::getInvokeArgs' => ['array'], -'Yaf_Action_Abstract::getModuleName' => ['string'], -'Yaf_Action_Abstract::getRequest' => ['Yaf_Request_Abstract'], -'Yaf_Action_Abstract::getResponse' => ['Yaf_Response_Abstract'], -'Yaf_Action_Abstract::getView' => ['Yaf_View_Interface'], -'Yaf_Action_Abstract::getViewpath' => ['string'], -'Yaf_Action_Abstract::init' => [''], -'Yaf_Action_Abstract::initView' => ['Yaf_Response_Abstract', 'options='=>'?array'], -'Yaf_Action_Abstract::redirect' => ['bool', 'url'=>'string'], -'Yaf_Action_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], -'Yaf_Action_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], -'Yaf_Application::__clone' => ['void'], -'Yaf_Application::__construct' => ['void', 'config'=>'mixed', 'envrion='=>'string'], -'Yaf_Application::__destruct' => ['void'], -'Yaf_Application::__sleep' => ['list'], -'Yaf_Application::__wakeup' => ['void'], -'Yaf_Application::app' => ['?Yaf_Application'], -'Yaf_Application::bootstrap' => ['Yaf_Application', 'bootstrap='=>'Yaf_Bootstrap_Abstract'], -'Yaf_Application::clearLastError' => ['Yaf_Application'], -'Yaf_Application::environ' => ['string'], -'Yaf_Application::execute' => ['void', 'entry'=>'callable', '...args'=>'string'], -'Yaf_Application::getAppDirectory' => ['Yaf_Application'], -'Yaf_Application::getConfig' => ['Yaf_Config_Abstract'], -'Yaf_Application::getDispatcher' => ['Yaf_Dispatcher'], -'Yaf_Application::getLastErrorMsg' => ['string'], -'Yaf_Application::getLastErrorNo' => ['int'], -'Yaf_Application::getModules' => ['array'], -'Yaf_Application::run' => ['void'], -'Yaf_Application::setAppDirectory' => ['Yaf_Application', 'directory'=>'string'], -'Yaf_Config_Abstract::__construct' => ['void'], -'Yaf_Config_Abstract::get' => ['mixed', 'name'=>'string', 'value'=>'mixed'], -'Yaf_Config_Abstract::readonly' => ['bool'], -'Yaf_Config_Abstract::set' => ['Yaf_Config_Abstract'], -'Yaf_Config_Abstract::toArray' => ['array'], -'Yaf_Config_Ini::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], -'Yaf_Config_Ini::__get' => ['void', 'name='=>'string'], -'Yaf_Config_Ini::__isset' => ['void', 'name'=>'string'], -'Yaf_Config_Ini::__set' => ['void', 'name'=>'string', 'value'=>'mixed'], -'Yaf_Config_Ini::count' => ['void'], -'Yaf_Config_Ini::current' => ['void'], -'Yaf_Config_Ini::get' => ['mixed', 'name='=>'mixed'], -'Yaf_Config_Ini::key' => ['void'], -'Yaf_Config_Ini::next' => ['void'], -'Yaf_Config_Ini::offsetExists' => ['void', 'name'=>'string'], -'Yaf_Config_Ini::offsetGet' => ['void', 'name'=>'string'], -'Yaf_Config_Ini::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], -'Yaf_Config_Ini::offsetUnset' => ['void', 'name'=>'string'], -'Yaf_Config_Ini::readonly' => ['void'], -'Yaf_Config_Ini::rewind' => ['void'], -'Yaf_Config_Ini::set' => ['Yaf_Config_Abstract', 'name'=>'string', 'value'=>'mixed'], -'Yaf_Config_Ini::toArray' => ['array'], -'Yaf_Config_Ini::valid' => ['void'], -'Yaf_Config_Simple::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], -'Yaf_Config_Simple::__get' => ['void', 'name='=>'string'], -'Yaf_Config_Simple::__isset' => ['void', 'name'=>'string'], -'Yaf_Config_Simple::__set' => ['void', 'name'=>'string', 'value'=>'string'], -'Yaf_Config_Simple::count' => ['void'], -'Yaf_Config_Simple::current' => ['void'], -'Yaf_Config_Simple::get' => ['mixed', 'name='=>'mixed'], -'Yaf_Config_Simple::key' => ['void'], -'Yaf_Config_Simple::next' => ['void'], -'Yaf_Config_Simple::offsetExists' => ['void', 'name'=>'string'], -'Yaf_Config_Simple::offsetGet' => ['void', 'name'=>'string'], -'Yaf_Config_Simple::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], -'Yaf_Config_Simple::offsetUnset' => ['void', 'name'=>'string'], -'Yaf_Config_Simple::readonly' => ['void'], -'Yaf_Config_Simple::rewind' => ['void'], -'Yaf_Config_Simple::set' => ['Yaf_Config_Abstract', 'name'=>'string', 'value'=>'mixed'], -'Yaf_Config_Simple::toArray' => ['array'], -'Yaf_Config_Simple::valid' => ['void'], -'Yaf_Controller_Abstract::__clone' => ['void'], -'Yaf_Controller_Abstract::__construct' => ['void'], -'Yaf_Controller_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'array'], -'Yaf_Controller_Abstract::forward' => ['void', 'action'=>'string', 'parameters='=>'array'], -'Yaf_Controller_Abstract::forward\'1' => ['void', 'controller'=>'string', 'action'=>'string', 'parameters='=>'array'], -'Yaf_Controller_Abstract::forward\'2' => ['void', 'module'=>'string', 'controller'=>'string', 'action'=>'string', 'parameters='=>'array'], -'Yaf_Controller_Abstract::getInvokeArg' => ['void', 'name'=>'string'], -'Yaf_Controller_Abstract::getInvokeArgs' => ['void'], -'Yaf_Controller_Abstract::getModuleName' => ['string'], -'Yaf_Controller_Abstract::getName' => ['string'], -'Yaf_Controller_Abstract::getRequest' => ['Yaf_Request_Abstract'], -'Yaf_Controller_Abstract::getResponse' => ['Yaf_Response_Abstract'], -'Yaf_Controller_Abstract::getView' => ['Yaf_View_Interface'], -'Yaf_Controller_Abstract::getViewpath' => ['void'], -'Yaf_Controller_Abstract::init' => ['void'], -'Yaf_Controller_Abstract::initView' => ['void', 'options='=>'array'], -'Yaf_Controller_Abstract::redirect' => ['bool', 'url'=>'string'], -'Yaf_Controller_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'array'], -'Yaf_Controller_Abstract::setViewpath' => ['void', 'view_directory'=>'string'], -'Yaf_Dispatcher::__clone' => ['void'], -'Yaf_Dispatcher::__construct' => ['void'], -'Yaf_Dispatcher::__sleep' => ['list'], -'Yaf_Dispatcher::__wakeup' => ['void'], -'Yaf_Dispatcher::autoRender' => ['Yaf_Dispatcher', 'flag='=>'bool'], -'Yaf_Dispatcher::catchException' => ['Yaf_Dispatcher', 'flag='=>'bool'], -'Yaf_Dispatcher::disableView' => ['bool'], -'Yaf_Dispatcher::dispatch' => ['Yaf_Response_Abstract', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Dispatcher::enableView' => ['Yaf_Dispatcher'], -'Yaf_Dispatcher::flushInstantly' => ['Yaf_Dispatcher', 'flag='=>'bool'], -'Yaf_Dispatcher::getApplication' => ['Yaf_Application'], -'Yaf_Dispatcher::getDefaultAction' => ['string'], -'Yaf_Dispatcher::getDefaultController' => ['string'], -'Yaf_Dispatcher::getDefaultModule' => ['string'], -'Yaf_Dispatcher::getInstance' => ['Yaf_Dispatcher'], -'Yaf_Dispatcher::getRequest' => ['Yaf_Request_Abstract'], -'Yaf_Dispatcher::getRouter' => ['Yaf_Router'], -'Yaf_Dispatcher::initView' => ['Yaf_View_Interface', 'templates_dir'=>'string', 'options='=>'array'], -'Yaf_Dispatcher::registerPlugin' => ['Yaf_Dispatcher', 'plugin'=>'Yaf_Plugin_Abstract'], -'Yaf_Dispatcher::returnResponse' => ['Yaf_Dispatcher', 'flag'=>'bool'], -'Yaf_Dispatcher::setDefaultAction' => ['Yaf_Dispatcher', 'action'=>'string'], -'Yaf_Dispatcher::setDefaultController' => ['Yaf_Dispatcher', 'controller'=>'string'], -'Yaf_Dispatcher::setDefaultModule' => ['Yaf_Dispatcher', 'module'=>'string'], -'Yaf_Dispatcher::setErrorHandler' => ['Yaf_Dispatcher', 'callback'=>'callable', 'error_types'=>'int'], -'Yaf_Dispatcher::setRequest' => ['Yaf_Dispatcher', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Dispatcher::setView' => ['Yaf_Dispatcher', 'view'=>'Yaf_View_Interface'], -'Yaf_Dispatcher::throwException' => ['Yaf_Dispatcher', 'flag='=>'bool'], -'Yaf_Exception::__construct' => ['void'], -'Yaf_Exception::getPrevious' => ['void'], -'Yaf_Loader::__clone' => ['void'], -'Yaf_Loader::__construct' => ['void'], -'Yaf_Loader::__sleep' => ['list'], -'Yaf_Loader::__wakeup' => ['void'], -'Yaf_Loader::autoload' => ['void'], -'Yaf_Loader::clearLocalNamespace' => ['void'], -'Yaf_Loader::getInstance' => ['Yaf_Loader'], -'Yaf_Loader::getLibraryPath' => ['Yaf_Loader', 'is_global='=>'bool'], -'Yaf_Loader::getLocalNamespace' => ['void'], -'Yaf_Loader::getNamespacePath' => ['string', 'namespaces'=>'string'], -'Yaf_Loader::import' => ['bool'], -'Yaf_Loader::isLocalName' => ['bool'], -'Yaf_Loader::registerLocalNamespace' => ['void', 'prefix'=>'mixed'], -'Yaf_Loader::registerNamespace' => ['bool', 'namespaces'=>'string|array', 'path='=>'string'], -'Yaf_Loader::setLibraryPath' => ['Yaf_Loader', 'directory'=>'string', 'is_global='=>'bool'], -'Yaf_Plugin_Abstract::dispatchLoopShutdown' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::dispatchLoopStartup' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::postDispatch' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::preDispatch' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::preResponse' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::routerShutdown' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Plugin_Abstract::routerStartup' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], -'Yaf_Registry::__clone' => ['void'], -'Yaf_Registry::__construct' => ['void'], -'Yaf_Registry::del' => ['void', 'name'=>'string'], -'Yaf_Registry::get' => ['mixed', 'name'=>'string'], -'Yaf_Registry::has' => ['bool', 'name'=>'string'], -'Yaf_Registry::set' => ['bool', 'name'=>'string', 'value'=>'string'], -'Yaf_Request_Abstract::clearParams' => ['bool'], -'Yaf_Request_Abstract::getActionName' => ['void'], -'Yaf_Request_Abstract::getBaseUri' => ['void'], -'Yaf_Request_Abstract::getControllerName' => ['void'], -'Yaf_Request_Abstract::getEnv' => ['void', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Abstract::getException' => ['void'], -'Yaf_Request_Abstract::getLanguage' => ['void'], -'Yaf_Request_Abstract::getMethod' => ['void'], -'Yaf_Request_Abstract::getModuleName' => ['void'], -'Yaf_Request_Abstract::getParam' => ['void', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Abstract::getParams' => ['void'], -'Yaf_Request_Abstract::getRequestUri' => ['void'], -'Yaf_Request_Abstract::getServer' => ['void', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Abstract::isCli' => ['void'], -'Yaf_Request_Abstract::isDispatched' => ['void'], -'Yaf_Request_Abstract::isGet' => ['void'], -'Yaf_Request_Abstract::isHead' => ['void'], -'Yaf_Request_Abstract::isOptions' => ['void'], -'Yaf_Request_Abstract::isPost' => ['void'], -'Yaf_Request_Abstract::isPut' => ['void'], -'Yaf_Request_Abstract::isRouted' => ['void'], -'Yaf_Request_Abstract::isXmlHttpRequest' => ['void'], -'Yaf_Request_Abstract::setActionName' => ['void', 'action'=>'string'], -'Yaf_Request_Abstract::setBaseUri' => ['bool', 'uir'=>'string'], -'Yaf_Request_Abstract::setControllerName' => ['void', 'controller'=>'string'], -'Yaf_Request_Abstract::setDispatched' => ['void'], -'Yaf_Request_Abstract::setModuleName' => ['void', 'module'=>'string'], -'Yaf_Request_Abstract::setParam' => ['void', 'name'=>'string', 'value='=>'string'], -'Yaf_Request_Abstract::setRequestUri' => ['void', 'uir'=>'string'], -'Yaf_Request_Abstract::setRouted' => ['void', 'flag='=>'string'], -'Yaf_Request_Http::__clone' => ['void'], -'Yaf_Request_Http::__construct' => ['void'], -'Yaf_Request_Http::get' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Http::getActionName' => ['string'], -'Yaf_Request_Http::getBaseUri' => ['string'], -'Yaf_Request_Http::getControllerName' => ['string'], -'Yaf_Request_Http::getCookie' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Http::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf_Request_Http::getException' => ['Yaf_Exception'], -'Yaf_Request_Http::getFiles' => ['void'], -'Yaf_Request_Http::getLanguage' => ['string'], -'Yaf_Request_Http::getMethod' => ['string'], -'Yaf_Request_Http::getModuleName' => ['string'], -'Yaf_Request_Http::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'Yaf_Request_Http::getParams' => ['array'], -'Yaf_Request_Http::getPost' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Http::getQuery' => ['mixed', 'name'=>'string', 'default='=>'string'], -'Yaf_Request_Http::getRaw' => ['mixed'], -'Yaf_Request_Http::getRequest' => ['void'], -'Yaf_Request_Http::getRequestUri' => ['string'], -'Yaf_Request_Http::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf_Request_Http::isCli' => ['bool'], -'Yaf_Request_Http::isDispatched' => ['bool'], -'Yaf_Request_Http::isGet' => ['bool'], -'Yaf_Request_Http::isHead' => ['bool'], -'Yaf_Request_Http::isOptions' => ['bool'], -'Yaf_Request_Http::isPost' => ['bool'], -'Yaf_Request_Http::isPut' => ['bool'], -'Yaf_Request_Http::isRouted' => ['bool'], -'Yaf_Request_Http::isXmlHttpRequest' => ['bool'], -'Yaf_Request_Http::setActionName' => ['Yaf_Request_Abstract|bool', 'action'=>'string'], -'Yaf_Request_Http::setBaseUri' => ['bool', 'uri'=>'string'], -'Yaf_Request_Http::setControllerName' => ['Yaf_Request_Abstract|bool', 'controller'=>'string'], -'Yaf_Request_Http::setDispatched' => ['bool'], -'Yaf_Request_Http::setModuleName' => ['Yaf_Request_Abstract|bool', 'module'=>'string'], -'Yaf_Request_Http::setParam' => ['Yaf_Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], -'Yaf_Request_Http::setRequestUri' => ['', 'uri'=>'string'], -'Yaf_Request_Http::setRouted' => ['Yaf_Request_Abstract|bool'], -'Yaf_Request_Simple::__clone' => ['void'], -'Yaf_Request_Simple::__construct' => ['void'], -'Yaf_Request_Simple::get' => ['void'], -'Yaf_Request_Simple::getActionName' => ['string'], -'Yaf_Request_Simple::getBaseUri' => ['string'], -'Yaf_Request_Simple::getControllerName' => ['string'], -'Yaf_Request_Simple::getCookie' => ['void'], -'Yaf_Request_Simple::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf_Request_Simple::getException' => ['Yaf_Exception'], -'Yaf_Request_Simple::getFiles' => ['void'], -'Yaf_Request_Simple::getLanguage' => ['string'], -'Yaf_Request_Simple::getMethod' => ['string'], -'Yaf_Request_Simple::getModuleName' => ['string'], -'Yaf_Request_Simple::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], -'Yaf_Request_Simple::getParams' => ['array'], -'Yaf_Request_Simple::getPost' => ['void'], -'Yaf_Request_Simple::getQuery' => ['void'], -'Yaf_Request_Simple::getRequest' => ['void'], -'Yaf_Request_Simple::getRequestUri' => ['string'], -'Yaf_Request_Simple::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], -'Yaf_Request_Simple::isCli' => ['bool'], -'Yaf_Request_Simple::isDispatched' => ['bool'], -'Yaf_Request_Simple::isGet' => ['bool'], -'Yaf_Request_Simple::isHead' => ['bool'], -'Yaf_Request_Simple::isOptions' => ['bool'], -'Yaf_Request_Simple::isPost' => ['bool'], -'Yaf_Request_Simple::isPut' => ['bool'], -'Yaf_Request_Simple::isRouted' => ['bool'], -'Yaf_Request_Simple::isXmlHttpRequest' => ['void'], -'Yaf_Request_Simple::setActionName' => ['Yaf_Request_Abstract|bool', 'action'=>'string'], -'Yaf_Request_Simple::setBaseUri' => ['bool', 'uri'=>'string'], -'Yaf_Request_Simple::setControllerName' => ['Yaf_Request_Abstract|bool', 'controller'=>'string'], -'Yaf_Request_Simple::setDispatched' => ['bool'], -'Yaf_Request_Simple::setModuleName' => ['Yaf_Request_Abstract|bool', 'module'=>'string'], -'Yaf_Request_Simple::setParam' => ['Yaf_Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], -'Yaf_Request_Simple::setRequestUri' => ['', 'uri'=>'string'], -'Yaf_Request_Simple::setRouted' => ['Yaf_Request_Abstract|bool'], -'Yaf_Response_Abstract::__clone' => ['void'], -'Yaf_Response_Abstract::__construct' => ['void'], -'Yaf_Response_Abstract::__destruct' => ['void'], -'Yaf_Response_Abstract::__toString' => ['string'], -'Yaf_Response_Abstract::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Abstract::clearBody' => ['bool', 'key='=>'string'], -'Yaf_Response_Abstract::clearHeaders' => ['void'], -'Yaf_Response_Abstract::getBody' => ['mixed', 'key='=>'string'], -'Yaf_Response_Abstract::getHeader' => ['void'], -'Yaf_Response_Abstract::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Abstract::response' => ['void'], -'Yaf_Response_Abstract::setAllHeaders' => ['void'], -'Yaf_Response_Abstract::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Abstract::setHeader' => ['void'], -'Yaf_Response_Abstract::setRedirect' => ['void'], -'Yaf_Response_Cli::__clone' => ['void'], -'Yaf_Response_Cli::__construct' => ['void'], -'Yaf_Response_Cli::__destruct' => ['void'], -'Yaf_Response_Cli::__toString' => ['string'], -'Yaf_Response_Cli::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Cli::clearBody' => ['bool', 'key='=>'string'], -'Yaf_Response_Cli::getBody' => ['mixed', 'key='=>'?string'], -'Yaf_Response_Cli::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Cli::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Http::__clone' => ['void'], -'Yaf_Response_Http::__construct' => ['void'], -'Yaf_Response_Http::__destruct' => ['void'], -'Yaf_Response_Http::__toString' => ['string'], -'Yaf_Response_Http::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Http::clearBody' => ['bool', 'key='=>'string'], -'Yaf_Response_Http::clearHeaders' => ['Yaf_Response_Abstract|false', 'name='=>'string'], -'Yaf_Response_Http::getBody' => ['mixed', 'key='=>'?string'], -'Yaf_Response_Http::getHeader' => ['mixed', 'name='=>'string'], -'Yaf_Response_Http::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Http::response' => ['bool'], -'Yaf_Response_Http::setAllHeaders' => ['bool', 'headers'=>'array'], -'Yaf_Response_Http::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], -'Yaf_Response_Http::setHeader' => ['bool', 'name'=>'string', 'value'=>'string', 'replace='=>'bool', 'response_code='=>'int'], -'Yaf_Response_Http::setRedirect' => ['bool', 'url'=>'string'], -'Yaf_Route_Interface::__construct' => ['void'], -'Yaf_Route_Interface::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Interface::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Map::__construct' => ['void', 'controller_prefer='=>'string', 'delimiter='=>'string'], -'Yaf_Route_Map::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Map::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Regex::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'map='=>'array', 'verify='=>'array', 'reverse='=>'string'], -'Yaf_Route_Regex::addConfig' => ['Yaf_Router|bool', 'config'=>'Yaf_Config_Abstract'], -'Yaf_Route_Regex::addRoute' => ['Yaf_Router|bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], -'Yaf_Route_Regex::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Regex::getCurrentRoute' => ['string'], -'Yaf_Route_Regex::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], -'Yaf_Route_Regex::getRoutes' => ['Yaf_Route_Interface[]'], -'Yaf_Route_Regex::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Rewrite::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'verify='=>'array'], -'Yaf_Route_Rewrite::addConfig' => ['Yaf_Router|bool', 'config'=>'Yaf_Config_Abstract'], -'Yaf_Route_Rewrite::addRoute' => ['Yaf_Router|bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], -'Yaf_Route_Rewrite::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Rewrite::getCurrentRoute' => ['string'], -'Yaf_Route_Rewrite::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], -'Yaf_Route_Rewrite::getRoutes' => ['Yaf_Route_Interface[]'], -'Yaf_Route_Rewrite::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Simple::__construct' => ['void', 'module_name'=>'string', 'controller_name'=>'string', 'action_name'=>'string'], -'Yaf_Route_Simple::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Simple::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Static::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Static::match' => ['void', 'uri'=>'string'], -'Yaf_Route_Static::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Route_Supervar::__construct' => ['void', 'supervar_name'=>'string'], -'Yaf_Route_Supervar::assemble' => ['string', 'info'=>'array', 'query='=>'array'], -'Yaf_Route_Supervar::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Router::__construct' => ['void'], -'Yaf_Router::addConfig' => ['bool', 'config'=>'Yaf_Config_Abstract'], -'Yaf_Router::addRoute' => ['bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], -'Yaf_Router::getCurrentRoute' => ['string'], -'Yaf_Router::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], -'Yaf_Router::getRoutes' => ['mixed'], -'Yaf_Router::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], -'Yaf_Session::__clone' => ['void'], -'Yaf_Session::__construct' => ['void'], -'Yaf_Session::__get' => ['void', 'name'=>'string'], -'Yaf_Session::__isset' => ['void', 'name'=>'string'], -'Yaf_Session::__set' => ['void', 'name'=>'string', 'value'=>'string'], -'Yaf_Session::__sleep' => ['list'], -'Yaf_Session::__unset' => ['void', 'name'=>'string'], -'Yaf_Session::__wakeup' => ['void'], -'Yaf_Session::count' => ['void'], -'Yaf_Session::current' => ['void'], -'Yaf_Session::del' => ['void', 'name'=>'string'], -'Yaf_Session::get' => ['mixed', 'name'=>'string'], -'Yaf_Session::getInstance' => ['void'], -'Yaf_Session::has' => ['void', 'name'=>'string'], -'Yaf_Session::key' => ['void'], -'Yaf_Session::next' => ['void'], -'Yaf_Session::offsetExists' => ['void', 'name'=>'string'], -'Yaf_Session::offsetGet' => ['void', 'name'=>'string'], -'Yaf_Session::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], -'Yaf_Session::offsetUnset' => ['void', 'name'=>'string'], -'Yaf_Session::rewind' => ['void'], -'Yaf_Session::set' => ['Yaf_Session|bool', 'name'=>'string', 'value'=>'mixed'], -'Yaf_Session::start' => ['void'], -'Yaf_Session::valid' => ['void'], -'Yaf_View_Interface::assign' => ['bool', 'name'=>'string', 'value='=>'string'], -'Yaf_View_Interface::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'array'], -'Yaf_View_Interface::getScriptPath' => ['string'], -'Yaf_View_Interface::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'array'], -'Yaf_View_Interface::setScriptPath' => ['void', 'template_dir'=>'string'], -'Yaf_View_Simple::__construct' => ['void', 'tempalte_dir'=>'string', 'options='=>'array'], -'Yaf_View_Simple::__get' => ['void', 'name='=>'string'], -'Yaf_View_Simple::__isset' => ['void', 'name'=>'string'], -'Yaf_View_Simple::__set' => ['void', 'name'=>'string', 'value'=>'mixed'], -'Yaf_View_Simple::assign' => ['bool', 'name'=>'string', 'value='=>'mixed'], -'Yaf_View_Simple::assignRef' => ['bool', 'name'=>'string', '&rw_value'=>'mixed'], -'Yaf_View_Simple::clear' => ['bool', 'name='=>'string'], -'Yaf_View_Simple::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'array'], -'Yaf_View_Simple::eval' => ['string', 'tpl_content'=>'string', 'tpl_vars='=>'array'], -'Yaf_View_Simple::getScriptPath' => ['string'], -'Yaf_View_Simple::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'array'], -'Yaf_View_Simple::setScriptPath' => ['bool', 'template_dir'=>'string'], -'yaml_emit' => ['string', 'data'=>'mixed', 'encoding='=>'int', 'linebreak='=>'int', 'callbacks='=>'array'], -'yaml_emit_file' => ['bool', 'filename'=>'string', 'data'=>'mixed', 'encoding='=>'int', 'linebreak='=>'int', 'callbacks='=>'array'], -'yaml_parse' => ['mixed|false', 'input'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], -'yaml_parse_file' => ['mixed|false', 'filename'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], -'yaml_parse_url' => ['mixed|false', 'url'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], -'Yar_Client::__call' => ['void', 'method'=>'string', 'parameters'=>'array'], -'Yar_Client::__construct' => ['void', 'url'=>'string'], -'Yar_Client::setOpt' => ['Yar_Client|false', 'name'=>'int', 'value'=>'mixed'], -'Yar_Client_Exception::__clone' => ['void'], -'Yar_Client_Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'Yar_Client_Exception::__toString' => ['string'], -'Yar_Client_Exception::__wakeup' => ['void'], -'Yar_Client_Exception::getCode' => ['int'], -'Yar_Client_Exception::getFile' => ['string'], -'Yar_Client_Exception::getLine' => ['int'], -'Yar_Client_Exception::getMessage' => ['string'], -'Yar_Client_Exception::getPrevious' => ['?Exception|?Throwable'], -'Yar_Client_Exception::getTrace' => ['list\',args?:array}>'], -'Yar_Client_Exception::getTraceAsString' => ['string'], -'Yar_Client_Exception::getType' => ['string'], -'Yar_Concurrent_Client::call' => ['int', 'uri'=>'string', 'method'=>'string', 'parameters'=>'array', 'callback='=>'callable'], -'Yar_Concurrent_Client::loop' => ['bool', 'callback='=>'callable', 'error_callback='=>'callable'], -'Yar_Concurrent_Client::reset' => ['bool'], -'Yar_Server::__construct' => ['void', 'object'=>'Object'], -'Yar_Server::handle' => ['bool'], -'Yar_Server_Exception::__clone' => ['void'], -'Yar_Server_Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], -'Yar_Server_Exception::__toString' => ['string'], -'Yar_Server_Exception::__wakeup' => ['void'], -'Yar_Server_Exception::getCode' => ['int'], -'Yar_Server_Exception::getFile' => ['string'], -'Yar_Server_Exception::getLine' => ['int'], -'Yar_Server_Exception::getMessage' => ['string'], -'Yar_Server_Exception::getPrevious' => ['?Exception|?Throwable'], -'Yar_Server_Exception::getTrace' => ['list\',args?:array}>'], -'Yar_Server_Exception::getTraceAsString' => ['string'], -'Yar_Server_Exception::getType' => ['string'], -'yaz_addinfo' => ['string', 'id'=>'resource'], -'yaz_ccl_conf' => ['void', 'id'=>'resource', 'config'=>'array'], -'yaz_ccl_parse' => ['bool', 'id'=>'resource', 'query'=>'string', '&w_result'=>'array'], -'yaz_close' => ['bool', 'id'=>'resource'], -'yaz_connect' => ['mixed', 'zurl'=>'string', 'options='=>'mixed'], -'yaz_database' => ['bool', 'id'=>'resource', 'databases'=>'string'], -'yaz_element' => ['bool', 'id'=>'resource', 'elementset'=>'string'], -'yaz_errno' => ['int', 'id'=>'resource'], -'yaz_error' => ['string', 'id'=>'resource'], -'yaz_es' => ['void', 'id'=>'resource', 'type'=>'string', 'args'=>'array'], -'yaz_es_result' => ['array', 'id'=>'resource'], -'yaz_get_option' => ['string', 'id'=>'resource', 'name'=>'string'], -'yaz_hits' => ['int', 'id'=>'resource', 'searchresult='=>'array'], -'yaz_itemorder' => ['void', 'id'=>'resource', 'args'=>'array'], -'yaz_present' => ['bool', 'id'=>'resource'], -'yaz_range' => ['void', 'id'=>'resource', 'start'=>'int', 'number'=>'int'], -'yaz_record' => ['string', 'id'=>'resource', 'pos'=>'int', 'type'=>'string'], -'yaz_scan' => ['void', 'id'=>'resource', 'type'=>'string', 'startterm'=>'string', 'flags='=>'array'], -'yaz_scan_result' => ['array', 'id'=>'resource', 'result='=>'array'], -'yaz_schema' => ['void', 'id'=>'resource', 'schema'=>'string'], -'yaz_search' => ['bool', 'id'=>'resource', 'type'=>'string', 'query'=>'string'], -'yaz_set_option' => ['', 'id'=>'', 'name'=>'string', 'value'=>'string', 'options'=>'array'], -'yaz_sort' => ['void', 'id'=>'resource', 'criteria'=>'string'], -'yaz_syntax' => ['void', 'id'=>'resource', 'syntax'=>'string'], -'yaz_wait' => ['mixed', '&rw_options='=>'array'], -'yp_all' => ['void', 'domain'=>'string', 'map'=>'string', 'callback'=>'string'], -'yp_cat' => ['array', 'domain'=>'string', 'map'=>'string'], -'yp_err_string' => ['string', 'errorcode'=>'int'], -'yp_errno' => ['int'], -'yp_first' => ['array', 'domain'=>'string', 'map'=>'string'], -'yp_get_default_domain' => ['string'], -'yp_master' => ['string', 'domain'=>'string', 'map'=>'string'], -'yp_match' => ['string', 'domain'=>'string', 'map'=>'string', 'key'=>'string'], -'yp_next' => ['array', 'domain'=>'string', 'map'=>'string', 'key'=>'string'], -'yp_order' => ['int', 'domain'=>'string', 'map'=>'string'], -'zem_get_extension_info_by_id' => [''], -'zem_get_extension_info_by_name' => [''], -'zem_get_extensions_info' => [''], -'zem_get_license_info' => [''], -'zend_current_obfuscation_level' => ['int'], -'zend_disk_cache_clear' => ['bool', 'namespace='=>'mixed|string'], -'zend_disk_cache_delete' => ['mixed|null', 'key'=>'string'], -'zend_disk_cache_fetch' => ['mixed|null', 'key'=>'string'], -'zend_disk_cache_store' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int|mixed'], -'zend_get_id' => ['array', 'all_ids='=>'all_ids|false'], -'zend_is_configuration_changed' => [''], -'zend_loader_current_file' => ['string'], -'zend_loader_enabled' => ['bool'], -'zend_loader_file_encoded' => ['bool'], -'zend_loader_file_licensed' => ['array'], -'zend_loader_install_license' => ['bool', 'license_file'=>'string', 'override'=>'bool'], -'zend_logo_guid' => ['string'], -'zend_obfuscate_class_name' => ['string', 'class_name'=>'string'], -'zend_obfuscate_function_name' => ['string', 'function_name'=>'string'], -'zend_optimizer_version' => ['string'], -'zend_runtime_obfuscate' => ['void'], -'zend_send_buffer' => ['null|false', 'buffer'=>'string', 'mime_type='=>'string', 'custom_headers='=>'string'], -'zend_send_file' => ['null|false', 'filename'=>'string', 'mime_type='=>'string', 'custom_headers='=>'string'], -'zend_set_configuration_changed' => [''], -'zend_shm_cache_clear' => ['bool', 'namespace='=>'mixed|string'], -'zend_shm_cache_delete' => ['mixed|null', 'key'=>'string'], -'zend_shm_cache_fetch' => ['mixed|null', 'key'=>'string'], -'zend_shm_cache_store' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int|mixed'], -'zend_thread_id' => ['int'], -'zend_version' => ['string'], -'ZendAPI_Job::addJobToQueue' => ['int', 'jobqueue_url'=>'string', 'password'=>'string'], -'ZendAPI_Job::getApplicationID' => [''], -'ZendAPI_Job::getEndTime' => [''], -'ZendAPI_Job::getGlobalVariables' => [''], -'ZendAPI_Job::getHost' => [''], -'ZendAPI_Job::getID' => [''], -'ZendAPI_Job::getInterval' => [''], -'ZendAPI_Job::getJobDependency' => [''], -'ZendAPI_Job::getJobName' => [''], -'ZendAPI_Job::getJobPriority' => [''], -'ZendAPI_Job::getJobStatus' => ['int'], -'ZendAPI_Job::getLastPerformedStatus' => ['int'], -'ZendAPI_Job::getOutput' => ['An'], -'ZendAPI_Job::getPreserved' => [''], -'ZendAPI_Job::getProperties' => ['array'], -'ZendAPI_Job::getScheduledTime' => [''], -'ZendAPI_Job::getScript' => [''], -'ZendAPI_Job::getTimeToNextRepeat' => ['int'], -'ZendAPI_Job::getUserVariables' => [''], -'ZendAPI_Job::setApplicationID' => ['', 'app_id'=>''], -'ZendAPI_Job::setGlobalVariables' => ['', 'vars'=>''], -'ZendAPI_Job::setJobDependency' => ['', 'job_id'=>''], -'ZendAPI_Job::setJobName' => ['', 'name'=>''], -'ZendAPI_Job::setJobPriority' => ['', 'priority'=>'int'], -'ZendAPI_Job::setPreserved' => ['', 'preserved'=>''], -'ZendAPI_Job::setRecurrenceData' => ['', 'interval'=>'', 'end_time='=>'mixed'], -'ZendAPI_Job::setScheduledTime' => ['', 'timestamp'=>''], -'ZendAPI_Job::setScript' => ['', 'script'=>''], -'ZendAPI_Job::setUserVariables' => ['', 'vars'=>''], -'ZendAPI_Job::ZendAPI_Job' => ['Job', 'script'=>'script'], -'ZendAPI_Queue::addJob' => ['int', '&job'=>'Job'], -'ZendAPI_Queue::getAllApplicationIDs' => ['array'], -'ZendAPI_Queue::getAllhosts' => ['array'], -'ZendAPI_Queue::getHistoricJobs' => ['array', 'status'=>'int', 'start_time'=>'', 'end_time'=>'', 'index'=>'int', 'count'=>'int', '&total'=>'int'], -'ZendAPI_Queue::getJob' => ['Job', 'job_id'=>'int'], -'ZendAPI_Queue::getJobsInQueue' => ['array', 'filter_options='=>'array', 'max_jobs='=>'int', 'with_globals_and_output='=>'bool'], -'ZendAPI_Queue::getLastError' => ['string'], -'ZendAPI_Queue::getNumOfJobsInQueue' => ['int', 'filter_options='=>'array'], -'ZendAPI_Queue::getStatistics' => ['array'], -'ZendAPI_Queue::isScriptExists' => ['bool', 'path'=>'string'], -'ZendAPI_Queue::isSuspend' => ['bool'], -'ZendAPI_Queue::login' => ['bool', 'password'=>'string', 'application_id='=>'int'], -'ZendAPI_Queue::removeJob' => ['bool', 'job_id'=>'array|int'], -'ZendAPI_Queue::requeueJob' => ['bool', 'job'=>'Job'], -'ZendAPI_Queue::resumeJob' => ['bool', 'job_id'=>'array|int'], -'ZendAPI_Queue::resumeQueue' => ['bool'], -'ZendAPI_Queue::setMaxHistoryTime' => ['bool'], -'ZendAPI_Queue::suspendJob' => ['bool', 'job_id'=>'array|int'], -'ZendAPI_Queue::suspendQueue' => ['bool'], -'ZendAPI_Queue::updateJob' => ['int', '&job'=>'Job'], -'ZendAPI_Queue::zendapi_queue' => ['ZendAPI_Queue', 'queue_url'=>'string'], -'zip_close' => ['void', 'zip'=>'resource'], -'zip_entry_close' => ['bool', 'zip_entry'=>'resource'], -'zip_entry_compressedsize' => ['int', 'zip_entry'=>'resource'], -'zip_entry_compressionmethod' => ['string', 'zip_entry'=>'resource'], -'zip_entry_filesize' => ['int', 'zip_entry'=>'resource'], -'zip_entry_name' => ['string|false', 'zip_entry'=>'resource'], -'zip_entry_open' => ['bool', 'zip_dp'=>'resource', 'zip_entry'=>'resource', 'mode='=>'string'], -'zip_entry_read' => ['string|false', 'zip_entry'=>'resource', 'len='=>'int'], -'zip_open' => ['resource|int|false', 'filename'=>'string'], -'zip_read' => ['resource', 'zip'=>'resource'], -'ZipArchive::addEmptyDir' => ['bool', 'dirname'=>'string', 'flags='=>'int'], -'ZipArchive::addFile' => ['bool', 'filepath'=>'string', 'entryname='=>'string', 'start='=>'int', 'length='=>'int', 'flags='=>'int'], -'ZipArchive::addFromString' => ['bool', 'name'=>'string', 'content'=>'string', 'flags='=>'int'], -'ZipArchive::addGlob' => ['array|false', 'pattern'=>'string', 'flags='=>'int', 'options='=>'array'], -'ZipArchive::addPattern' => ['array|false', 'pattern'=>'string', 'path='=>'string', 'options='=>'array'], -'ZipArchive::clearError' => ['void'], -'ZipArchive::close' => ['bool'], -'ZipArchive::count' => ['int'], -'ZipArchive::deleteIndex' => ['bool', 'index'=>'int'], -'ZipArchive::deleteName' => ['bool', 'name'=>'string'], -'ZipArchive::extractTo' => ['bool', 'pathto'=>'string', 'files='=>'string[]|string|null'], -'ZipArchive::getArchiveComment' => ['string|false', 'flags='=>'int'], -'ZipArchive::getCommentIndex' => ['string|false', 'index'=>'int', 'flags='=>'int'], -'ZipArchive::getCommentName' => ['string|false', 'name'=>'string', 'flags='=>'int'], -'ZipArchive::getExternalAttributesIndex' => ['bool', 'index'=>'int', '&w_opsys'=>'int', '&w_attr'=>'int', 'flags='=>'int'], -'ZipArchive::getExternalAttributesName' => ['bool', 'name'=>'string', '&w_opsys'=>'int', '&w_attr'=>'int', 'flags='=>'int'], -'ZipArchive::getFromIndex' => ['string|false', 'index'=>'int', 'len='=>'int', 'flags='=>'int'], -'ZipArchive::getFromName' => ['string|false', 'name'=>'string', 'len='=>'int', 'flags='=>'int'], -'ZipArchive::getNameIndex' => ['string|false', 'index'=>'int', 'flags='=>'int'], -'ZipArchive::getStatusString' => ['string'], -'ZipArchive::getStream' => ['resource|false', 'name'=>'string'], -'ZipArchive::getStreamIndex' => ['resource|false', 'index'=>'int', 'flags='=>'int'], -'ZipArchive::getStreamName' => ['resource|false', 'name'=>'string', 'flags='=>'int'], -'ZipArchive::isCompressionMethodSupported' => ['bool', 'method'=>'int', 'enc='=>'bool'], -'ZipArchive::isEncryptionMethodSupported' => ['bool', 'method'=>'int', 'enc='=>'bool'], -'ZipArchive::locateName' => ['int|false', 'name'=>'string', 'flags='=>'int'], -'ZipArchive::open' => ['int|bool', 'filename'=>'string', 'flags='=>'int'], -'ZipArchive::registerCancelCallback' => ['bool', 'callback'=>'callable'], -'ZipArchive::registerProgressCallback' => ['bool', 'rate'=>'float', 'callback'=>'callable'], -'ZipArchive::renameIndex' => ['bool', 'index'=>'int', 'new_name'=>'string'], -'ZipArchive::renameName' => ['bool', 'name'=>'string', 'new_name'=>'string'], -'ZipArchive::replaceFile' => ['bool', 'filepath'=>'string', 'index'=>'int', 'start='=>'int', 'length='=>'int', 'flags='=>'int'], -'ZipArchive::setArchiveComment' => ['bool', 'comment'=>'string'], -'ZipArchive::setCommentIndex' => ['bool', 'index'=>'int', 'comment'=>'string'], -'ZipArchive::setCommentName' => ['bool', 'name'=>'string', 'comment'=>'string'], -'ZipArchive::setCompressionIndex' => ['bool', 'index'=>'int', 'method'=>'int', 'compflags='=>'int'], -'ZipArchive::setCompressionName' => ['bool', 'name'=>'string', 'method'=>'int', 'compflags='=>'int'], -'ZipArchive::setEncryptionIndex' => ['bool', 'index'=>'int', 'method'=>'int', 'password='=>'?string'], -'ZipArchive::setEncryptionName' => ['bool', 'name'=>'string', 'method'=>'int', 'password='=>'?string'], -'ZipArchive::setExternalAttributesIndex' => ['bool', 'index'=>'int', 'opsys'=>'int', 'attr'=>'int', 'flags='=>'int'], -'ZipArchive::setExternalAttributesName' => ['bool', 'name'=>'string', 'opsys'=>'int', 'attr'=>'int', 'flags='=>'int'], -'ZipArchive::setMtimeIndex' => ['bool', 'index'=>'int', 'timestamp'=>'int', 'flags='=>'int'], -'ZipArchive::setMtimeName' => ['bool', 'name'=>'string', 'timestamp'=>'int', 'flags='=>'int'], -'ZipArchive::setPassword' => ['bool', 'password'=>'string'], -'ZipArchive::statIndex' => ['array|false', 'index'=>'int', 'flags='=>'int'], -'ZipArchive::statName' => ['array|false', 'name'=>'string', 'flags='=>'int'], -'ZipArchive::unchangeAll' => ['bool'], -'ZipArchive::unchangeArchive' => ['bool'], -'ZipArchive::unchangeIndex' => ['bool', 'index'=>'int'], -'ZipArchive::unchangeName' => ['bool', 'name'=>'string'], -'zlib_decode' => ['string|false', 'data'=>'string', 'max_length='=>'int'], -'zlib_encode' => ['string|false', 'data'=>'string', 'encoding'=>'int', 'level='=>'int'], -'zlib_get_coding_type' => ['string|false'], -'ZMQ::__construct' => ['void'], -'ZMQContext::__construct' => ['void', 'io_threads='=>'int', 'is_persistent='=>'bool'], -'ZMQContext::getOpt' => ['int|string', 'key'=>'string'], -'ZMQContext::getSocket' => ['ZMQSocket', 'type'=>'int', 'persistent_id='=>'string', 'on_new_socket='=>'callable'], -'ZMQContext::isPersistent' => ['bool'], -'ZMQContext::setOpt' => ['ZMQContext', 'key'=>'int', 'value'=>'mixed'], -'ZMQDevice::__construct' => ['void', 'frontend'=>'ZMQSocket', 'backend'=>'ZMQSocket', 'listener='=>'ZMQSocket'], -'ZMQDevice::getIdleTimeout' => ['ZMQDevice'], -'ZMQDevice::getTimerTimeout' => ['ZMQDevice'], -'ZMQDevice::run' => ['void'], -'ZMQDevice::setIdleCallback' => ['ZMQDevice', 'cb_func'=>'callable', 'timeout'=>'int', 'user_data='=>'mixed'], -'ZMQDevice::setIdleTimeout' => ['ZMQDevice', 'timeout'=>'int'], -'ZMQDevice::setTimerCallback' => ['ZMQDevice', 'cb_func'=>'callable', 'timeout'=>'int', 'user_data='=>'mixed'], -'ZMQDevice::setTimerTimeout' => ['ZMQDevice', 'timeout'=>'int'], -'ZMQPoll::add' => ['string', 'entry'=>'mixed', 'type'=>'int'], -'ZMQPoll::clear' => ['ZMQPoll'], -'ZMQPoll::count' => ['int'], -'ZMQPoll::getLastErrors' => ['array'], -'ZMQPoll::poll' => ['int', '&w_readable'=>'array', '&w_writable'=>'array', 'timeout='=>'int'], -'ZMQPoll::remove' => ['bool', 'item'=>'mixed'], -'ZMQSocket::__construct' => ['void', 'context'=>'ZMQContext', 'type'=>'int', 'persistent_id='=>'string', 'on_new_socket='=>'callable'], -'ZMQSocket::bind' => ['ZMQSocket', 'dsn'=>'string', 'force='=>'bool'], -'ZMQSocket::connect' => ['ZMQSocket', 'dsn'=>'string', 'force='=>'bool'], -'ZMQSocket::disconnect' => ['ZMQSocket', 'dsn'=>'string'], -'ZMQSocket::getEndpoints' => ['array'], -'ZMQSocket::getPersistentId' => ['?string'], -'ZMQSocket::getSocketType' => ['int'], -'ZMQSocket::getSockOpt' => ['int|string', 'key'=>'string'], -'ZMQSocket::isPersistent' => ['bool'], -'ZMQSocket::recv' => ['string', 'mode='=>'int'], -'ZMQSocket::recvMulti' => ['string[]', 'mode='=>'int'], -'ZMQSocket::send' => ['ZMQSocket', 'message'=>'array', 'mode='=>'int'], -'ZMQSocket::send\'1' => ['ZMQSocket', 'message'=>'string', 'mode='=>'int'], -'ZMQSocket::sendmulti' => ['ZMQSocket', 'message'=>'array', 'mode='=>'int'], -'ZMQSocket::setSockOpt' => ['ZMQSocket', 'key'=>'int', 'value'=>'mixed'], -'ZMQSocket::unbind' => ['ZMQSocket', 'dsn'=>'string'], -'Zookeeper::addAuth' => ['bool', 'scheme'=>'string', 'cert'=>'string', 'completion_cb='=>'callable'], -'Zookeeper::close' => ['void'], -'Zookeeper::connect' => ['void', 'host'=>'string', 'watcher_cb='=>'callable', 'recv_timeout='=>'int'], -'Zookeeper::create' => ['string', 'path'=>'string', 'value'=>'string', 'acls'=>'array', 'flags='=>'int'], -'Zookeeper::delete' => ['bool', 'path'=>'string', 'version='=>'int'], -'Zookeeper::exists' => ['bool', 'path'=>'string', 'watcher_cb='=>'callable'], -'Zookeeper::get' => ['string', 'path'=>'string', 'watcher_cb='=>'callable', 'stat='=>'array', 'max_size='=>'int'], -'Zookeeper::getAcl' => ['array', 'path'=>'string'], -'Zookeeper::getChildren' => ['array|false', 'path'=>'string', 'watcher_cb='=>'callable'], -'Zookeeper::getClientId' => ['int'], -'Zookeeper::getConfig' => ['ZookeeperConfig'], -'Zookeeper::getRecvTimeout' => ['int'], -'Zookeeper::getState' => ['int'], -'Zookeeper::isRecoverable' => ['bool'], -'Zookeeper::set' => ['bool', 'path'=>'string', 'value'=>'string', 'version='=>'int', 'stat='=>'array'], -'Zookeeper::setAcl' => ['bool', 'path'=>'string', 'version'=>'int', 'acl'=>'array'], -'Zookeeper::setDebugLevel' => ['bool', 'logLevel'=>'int'], -'Zookeeper::setDeterministicConnOrder' => ['bool', 'yesOrNo'=>'bool'], -'Zookeeper::setLogStream' => ['bool', 'stream'=>'resource'], -'Zookeeper::setWatcher' => ['bool', 'watcher_cb'=>'callable'], -'zookeeper_dispatch' => ['void'], -'ZookeeperConfig::add' => ['void', 'members'=>'string', 'version='=>'int', 'stat='=>'array'], -'ZookeeperConfig::get' => ['string', 'watcher_cb='=>'callable', 'stat='=>'array'], -'ZookeeperConfig::remove' => ['void', 'id_list'=>'string', 'version='=>'int', 'stat='=>'array'], -'ZookeeperConfig::set' => ['void', 'members'=>'string', 'version='=>'int', 'stat='=>'array'], -]; +return array ( + '_' => + array ( + 0 => 'string', + 'message' => 'string', + ), + '__halt_compiler' => + array ( + 0 => 'void', + ), + 'abs' => + array ( + 0 => 'int<0, max>', + 'num' => 'int', + ), + 'abs\'1' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'abs\'2' => + array ( + 0 => 'numeric', + 'num' => 'numeric', + ), + 'accelerator_get_configuration' => + array ( + 0 => 'array', + ), + 'accelerator_get_scripts' => + array ( + 0 => 'array', + ), + 'accelerator_get_status' => + array ( + 0 => 'array', + 'fetch_scripts' => 'bool', + ), + 'accelerator_reset' => + array ( + 0 => 'mixed', + ), + 'accelerator_set_status' => + array ( + 0 => 'void', + 'status' => 'bool', + ), + 'acos' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'acosh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'addcslashes' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters' => 'string', + ), + 'addslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'AMQPBasicProperties::__construct' => + array ( + 0 => 'void', + 'content_type=' => 'string', + 'content_encoding=' => 'string', + 'headers=' => 'array', + 'delivery_mode=' => 'int', + 'priority=' => 'int', + 'correlation_id=' => 'string', + 'reply_to=' => 'string', + 'expiration=' => 'string', + 'message_id=' => 'string', + 'timestamp=' => 'int', + 'type=' => 'string', + 'user_id=' => 'string', + 'app_id=' => 'string', + 'cluster_id=' => 'string', + ), + 'AMQPBasicProperties::getAppId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getClusterId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getContentEncoding' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getContentType' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getCorrelationId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getDeliveryMode' => + array ( + 0 => 'int', + ), + 'AMQPBasicProperties::getExpiration' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getHeaders' => + array ( + 0 => 'array', + ), + 'AMQPBasicProperties::getMessageId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getPriority' => + array ( + 0 => 'int', + ), + 'AMQPBasicProperties::getReplyTo' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getTimestamp' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getType' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getUserId' => + array ( + 0 => 'string', + ), + 'AMQPChannel::__construct' => + array ( + 0 => 'void', + 'amqp_connection' => 'AMQPConnection', + ), + 'AMQPChannel::basicRecover' => + array ( + 0 => 'mixed', + 'requeue=' => 'bool', + ), + 'AMQPChannel::close' => + array ( + 0 => 'mixed', + ), + 'AMQPChannel::commitTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::confirmSelect' => + array ( + 0 => 'mixed', + ), + 'AMQPChannel::getChannelId' => + array ( + 0 => 'int', + ), + 'AMQPChannel::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPChannel::getConsumers' => + array ( + 0 => 'array', + ), + 'AMQPChannel::getPrefetchCount' => + array ( + 0 => 'int', + ), + 'AMQPChannel::getPrefetchSize' => + array ( + 0 => 'int', + ), + 'AMQPChannel::isConnected' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::qos' => + array ( + 0 => 'bool', + 'size' => 'int', + 'count' => 'int', + ), + 'AMQPChannel::rollbackTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::setConfirmCallback' => + array ( + 0 => 'mixed', + 'ack_callback=' => 'callable|null', + 'nack_callback=' => 'callable|null', + ), + 'AMQPChannel::setPrefetchCount' => + array ( + 0 => 'bool', + 'count' => 'int', + ), + 'AMQPChannel::setPrefetchSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'AMQPChannel::setReturnCallback' => + array ( + 0 => 'mixed', + 'return_callback=' => 'callable|null', + ), + 'AMQPChannel::startTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::waitForBasicReturn' => + array ( + 0 => 'mixed', + 'timeout=' => 'float', + ), + 'AMQPChannel::waitForConfirm' => + array ( + 0 => 'mixed', + 'timeout=' => 'float', + ), + 'AMQPConnection::__construct' => + array ( + 0 => 'void', + 'credentials=' => 'array', + ), + 'AMQPConnection::connect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::disconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::getCACert' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getCert' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getHeartbeatInterval' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getHost' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getKey' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getLogin' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getMaxChannels' => + array ( + 0 => 'int|null', + ), + 'AMQPConnection::getMaxFrameSize' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getPassword' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getPort' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getReadTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::getTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::getUsedChannels' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getVerify' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::getVhost' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getWriteTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::isConnected' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::isPersistent' => + array ( + 0 => 'bool|null', + ), + 'AMQPConnection::pconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::pdisconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::preconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::reconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::setCACert' => + array ( + 0 => 'mixed', + 'cacert' => 'string', + ), + 'AMQPConnection::setCert' => + array ( + 0 => 'mixed', + 'cert' => 'string', + ), + 'AMQPConnection::setHost' => + array ( + 0 => 'bool', + 'host' => 'string', + ), + 'AMQPConnection::setKey' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'AMQPConnection::setLogin' => + array ( + 0 => 'bool', + 'login' => 'string', + ), + 'AMQPConnection::setPassword' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'AMQPConnection::setPort' => + array ( + 0 => 'bool', + 'port' => 'int', + ), + 'AMQPConnection::setReadTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPConnection::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPConnection::setVerify' => + array ( + 0 => 'mixed', + 'verify' => 'bool', + ), + 'AMQPConnection::setVhost' => + array ( + 0 => 'bool', + 'vhost' => 'string', + ), + 'AMQPConnection::setWriteTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPDecimal::__construct' => + array ( + 0 => 'void', + 'exponent' => 'mixed', + 'significand' => 'mixed', + ), + 'AMQPDecimal::getExponent' => + array ( + 0 => 'int', + ), + 'AMQPDecimal::getSignificand' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::__construct' => + array ( + 0 => 'void', + ), + 'AMQPEnvelope::getAppId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getBody' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getClusterId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getConsumerTag' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getContentEncoding' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getContentType' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getCorrelationId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getDeliveryMode' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::getDeliveryTag' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getExchangeName' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getExpiration' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getHeader' => + array ( + 0 => 'false|string', + 'header_key' => 'string', + ), + 'AMQPEnvelope::getHeaders' => + array ( + 0 => 'array', + ), + 'AMQPEnvelope::getMessageId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getPriority' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::getReplyTo' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getRoutingKey' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getTimeStamp' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getType' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getUserId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::hasHeader' => + array ( + 0 => 'bool', + 'header_key' => 'string', + ), + 'AMQPEnvelope::isRedelivery' => + array ( + 0 => 'bool', + ), + 'AMQPExchange::__construct' => + array ( + 0 => 'void', + 'amqp_channel' => 'AMQPChannel', + ), + 'AMQPExchange::bind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPExchange::declareExchange' => + array ( + 0 => 'bool', + ), + 'AMQPExchange::delete' => + array ( + 0 => 'bool', + 'exchangeName=' => 'string', + 'flags=' => 'int', + ), + 'AMQPExchange::getArgument' => + array ( + 0 => 'false|int|string', + 'key' => 'string', + ), + 'AMQPExchange::getArguments' => + array ( + 0 => 'array', + ), + 'AMQPExchange::getChannel' => + array ( + 0 => 'AMQPChannel', + ), + 'AMQPExchange::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPExchange::getFlags' => + array ( + 0 => 'int', + ), + 'AMQPExchange::getName' => + array ( + 0 => 'string', + ), + 'AMQPExchange::getType' => + array ( + 0 => 'string', + ), + 'AMQPExchange::hasArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'AMQPExchange::publish' => + array ( + 0 => 'bool', + 'message' => 'string', + 'routing_key=' => 'string', + 'flags=' => 'int', + 'attributes=' => 'array', + ), + 'AMQPExchange::setArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int|string', + ), + 'AMQPExchange::setArguments' => + array ( + 0 => 'bool', + 'arguments' => 'array', + ), + 'AMQPExchange::setFlags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'AMQPExchange::setName' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + ), + 'AMQPExchange::setType' => + array ( + 0 => 'bool', + 'exchange_type' => 'string', + ), + 'AMQPExchange::unbind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPQueue::__construct' => + array ( + 0 => 'void', + 'amqp_channel' => 'AMQPChannel', + ), + 'AMQPQueue::ack' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::bind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPQueue::cancel' => + array ( + 0 => 'bool', + 'consumer_tag=' => 'string', + ), + 'AMQPQueue::consume' => + array ( + 0 => 'void', + 'callback=' => 'callable|null', + 'flags=' => 'int', + 'consumerTag=' => 'string', + ), + 'AMQPQueue::declareQueue' => + array ( + 0 => 'int', + ), + 'AMQPQueue::delete' => + array ( + 0 => 'int', + 'flags=' => 'int', + ), + 'AMQPQueue::get' => + array ( + 0 => 'AMQPEnvelope|false', + 'flags=' => 'int', + ), + 'AMQPQueue::getArgument' => + array ( + 0 => 'false|int|string', + 'key' => 'string', + ), + 'AMQPQueue::getArguments' => + array ( + 0 => 'array', + ), + 'AMQPQueue::getChannel' => + array ( + 0 => 'AMQPChannel', + ), + 'AMQPQueue::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPQueue::getConsumerTag' => + array ( + 0 => 'null|string', + ), + 'AMQPQueue::getFlags' => + array ( + 0 => 'int', + ), + 'AMQPQueue::getName' => + array ( + 0 => 'string', + ), + 'AMQPQueue::hasArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'AMQPQueue::nack' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::purge' => + array ( + 0 => 'bool', + ), + 'AMQPQueue::reject' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::setArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + ), + 'AMQPQueue::setArguments' => + array ( + 0 => 'bool', + 'arguments' => 'array', + ), + 'AMQPQueue::setFlags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'AMQPQueue::setName' => + array ( + 0 => 'bool', + 'queue_name' => 'string', + ), + 'AMQPQueue::unbind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPTimestamp::__construct' => + array ( + 0 => 'void', + 'timestamp' => 'string', + ), + 'AMQPTimestamp::__toString' => + array ( + 0 => 'string', + ), + 'AMQPTimestamp::getTimestamp' => + array ( + 0 => 'string', + ), + 'apache_child_terminate' => + array ( + 0 => 'bool', + ), + 'apache_get_modules' => + array ( + 0 => 'array', + ), + 'apache_get_version' => + array ( + 0 => 'false|string', + ), + 'apache_getenv' => + array ( + 0 => 'false|string', + 'variable' => 'string', + 'walk_to_top=' => 'bool', + ), + 'apache_lookup_uri' => + array ( + 0 => 'object', + 'filename' => 'string', + ), + 'apache_note' => + array ( + 0 => 'false|string', + 'note_name' => 'string', + 'note_value=' => 'string', + ), + 'apache_request_headers' => + array ( + 0 => 'array|false', + ), + 'apache_reset_timeout' => + array ( + 0 => 'bool', + ), + 'apache_response_headers' => + array ( + 0 => 'array|false', + ), + 'apache_setenv' => + array ( + 0 => 'bool', + 'variable' => 'string', + 'value' => 'string', + 'walk_to_top=' => 'bool', + ), + 'apc_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_add\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_bin_dump' => + array ( + 0 => 'false|null|string', + 'files=' => 'array', + 'user_vars=' => 'array', + ), + 'apc_bin_dumpfile' => + array ( + 0 => 'false|int', + 'files' => 'array', + 'user_vars' => 'array', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'apc_bin_load' => + array ( + 0 => 'bool', + 'data' => 'string', + 'flags=' => 'int', + ), + 'apc_bin_loadfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'context=' => 'resource', + 'flags=' => 'int', + ), + 'apc_cache_info' => + array ( + 0 => 'array|false', + 'cache_type=' => 'string', + 'limited=' => 'bool', + ), + 'apc_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old' => 'int', + 'new' => 'int', + ), + 'apc_clear_cache' => + array ( + 0 => 'bool', + 'cache_type=' => 'string', + ), + 'apc_compile_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'atomic=' => 'bool', + ), + 'apc_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + ), + 'apc_define_constants' => + array ( + 0 => 'bool', + 'key' => 'string', + 'constants' => 'array', + 'case_sensitive=' => 'bool', + ), + 'apc_delete' => + array ( + 0 => 'bool', + 'key' => 'APCIterator|array|string', + ), + 'apc_delete_file' => + array ( + 0 => 'array|bool', + 'keys' => 'mixed', + ), + 'apc_exists' => + array ( + 0 => 'bool', + 'keys' => 'string', + ), + 'apc_exists\'1' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'apc_fetch' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + '&w_success=' => 'bool', + ), + 'apc_fetch\'1' => + array ( + 0 => 'array|false', + 'key' => 'array', + '&w_success=' => 'bool', + ), + 'apc_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + ), + 'apc_load_constants' => + array ( + 0 => 'bool', + 'key' => 'string', + 'case_sensitive=' => 'bool', + ), + 'apc_sma_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apc_store' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_store\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'APCIterator::__construct' => + array ( + 0 => 'void', + 'cache' => 'string', + 'search=' => 'array|null|string', + 'format=' => 'int', + 'chunk_size=' => 'int', + 'list=' => 'int', + ), + 'APCIterator::current' => + array ( + 0 => 'false|mixed', + ), + 'APCIterator::getTotalCount' => + array ( + 0 => 'false|int', + ), + 'APCIterator::getTotalHits' => + array ( + 0 => 'false|int', + ), + 'APCIterator::getTotalSize' => + array ( + 0 => 'false|int', + ), + 'APCIterator::key' => + array ( + 0 => 'string', + ), + 'APCIterator::next' => + array ( + 0 => 'void', + ), + 'APCIterator::rewind' => + array ( + 0 => 'void', + ), + 'APCIterator::valid' => + array ( + 0 => 'bool', + ), + 'apcu_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_add\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_cache_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apcu_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old' => 'int', + 'new' => 'int', + ), + 'apcu_clear_cache' => + array ( + 0 => 'bool', + ), + 'apcu_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + 'ttl=' => 'int', + ), + 'apcu_delete' => + array ( + 0 => 'bool', + 'key' => 'APCuIterator|string', + ), + 'apcu_delete\'1' => + array ( + 0 => 'list', + 'key' => 'array', + ), + 'apcu_enabled' => + array ( + 0 => 'bool', + ), + 'apcu_entry' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'generator' => 'callable(string):mixed', + 'ttl=' => 'int', + ), + 'apcu_exists' => + array ( + 0 => 'bool', + 'keys' => 'string', + ), + 'apcu_exists\'1' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'apcu_fetch' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + '&w_success=' => 'bool', + ), + 'apcu_fetch\'1' => + array ( + 0 => 'array|false', + 'key' => 'array', + '&w_success=' => 'bool', + ), + 'apcu_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + 'ttl=' => 'int', + ), + 'apcu_key_info' => + array ( + 0 => 'array|null', + 'key' => 'string', + ), + 'apcu_sma_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apcu_store' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var=' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_store\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'APCuIterator::__construct' => + array ( + 0 => 'void', + 'search=' => 'array|null|string', + 'format=' => 'int', + 'chunk_size=' => 'int', + 'list=' => 'int', + ), + 'APCuIterator::current' => + array ( + 0 => 'mixed', + ), + 'APCuIterator::getTotalCount' => + array ( + 0 => 'int', + ), + 'APCuIterator::getTotalHits' => + array ( + 0 => 'int', + ), + 'APCuIterator::getTotalSize' => + array ( + 0 => 'int', + ), + 'APCuIterator::key' => + array ( + 0 => 'string', + ), + 'APCuIterator::next' => + array ( + 0 => 'void', + ), + 'APCuIterator::rewind' => + array ( + 0 => 'void', + ), + 'APCuIterator::valid' => + array ( + 0 => 'bool', + ), + 'apd_breakpoint' => + array ( + 0 => 'bool', + 'debug_level' => 'int', + ), + 'apd_callstack' => + array ( + 0 => 'array', + ), + 'apd_clunk' => + array ( + 0 => 'void', + 'warning' => 'string', + 'delimiter=' => 'string', + ), + 'apd_continue' => + array ( + 0 => 'bool', + 'debug_level' => 'int', + ), + 'apd_croak' => + array ( + 0 => 'void', + 'warning' => 'string', + 'delimiter=' => 'string', + ), + 'apd_dump_function_table' => + array ( + 0 => 'void', + ), + 'apd_dump_persistent_resources' => + array ( + 0 => 'array', + ), + 'apd_dump_regular_resources' => + array ( + 0 => 'array', + ), + 'apd_echo' => + array ( + 0 => 'bool', + 'output' => 'string', + ), + 'apd_get_active_symbols' => + array ( + 0 => 'array', + ), + 'apd_set_pprof_trace' => + array ( + 0 => 'string', + 'dump_directory=' => 'string', + 'fragment=' => 'string', + ), + 'apd_set_session' => + array ( + 0 => 'void', + 'debug_level' => 'int', + ), + 'apd_set_session_trace' => + array ( + 0 => 'void', + 'debug_level' => 'int', + 'dump_directory=' => 'string', + ), + 'apd_set_session_trace_socket' => + array ( + 0 => 'bool', + 'tcp_server' => 'string', + 'socket_type' => 'int', + 'port' => 'int', + 'debug_level' => 'int', + ), + 'AppendIterator::__construct' => + array ( + 0 => 'void', + ), + 'AppendIterator::append' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'AppendIterator::current' => + array ( + 0 => 'mixed', + ), + 'AppendIterator::getArrayIterator' => + array ( + 0 => 'ArrayIterator', + ), + 'AppendIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'AppendIterator::getIteratorIndex' => + array ( + 0 => 'int', + ), + 'AppendIterator::key' => + array ( + 0 => 'scalar', + ), + 'AppendIterator::next' => + array ( + 0 => 'void', + ), + 'AppendIterator::rewind' => + array ( + 0 => 'void', + ), + 'AppendIterator::valid' => + array ( + 0 => 'bool', + ), + 'ArgumentCountError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ArgumentCountError::__toString' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::__wakeup' => + array ( + 0 => 'void', + ), + 'ArgumentCountError::getCode' => + array ( + 0 => 'int', + ), + 'ArgumentCountError::getFile' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::getLine' => + array ( + 0 => 'int', + ), + 'ArgumentCountError::getMessage' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ArgumentCountError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ArgumentCountError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'ArithmeticError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ArithmeticError::__toString' => + array ( + 0 => 'string', + ), + 'ArithmeticError::__wakeup' => + array ( + 0 => 'void', + ), + 'ArithmeticError::getCode' => + array ( + 0 => 'int', + ), + 'ArithmeticError::getFile' => + array ( + 0 => 'string', + ), + 'ArithmeticError::getLine' => + array ( + 0 => 'int', + ), + 'ArithmeticError::getMessage' => + array ( + 0 => 'string', + ), + 'ArithmeticError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ArithmeticError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ArithmeticError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'array_change_key_case' => + array ( + 0 => 'array', + 'array' => 'array', + 'case=' => 'int', + ), + 'array_chunk' => + array ( + 0 => 'list>>', + 'array' => 'array', + 'length' => 'int', + 'preserve_keys=' => 'bool', + ), + 'array_column' => + array ( + 0 => 'array', + 'array' => 'array', + 'column_key' => 'int|null|string', + 'index_key=' => 'int|null|string', + ), + 'array_combine' => + array ( + 0 => 'array', + 'keys' => 'array', + 'values' => 'array', + ), + 'array_count_values' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'array_diff' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_diff_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_diff_key' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_diff_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_diff_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_diff_ukey' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_diff_ukey\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_fill' => + array ( + 0 => 'array', + 'start_index' => 'int', + 'count' => 'int', + 'value' => 'mixed', + ), + 'array_fill_keys' => + array ( + 0 => 'array', + 'keys' => 'array', + 'value' => 'mixed', + ), + 'array_filter' => + array ( + 0 => 'array', + 'array' => 'array', + 'callback=' => 'callable(mixed, array-key=):mixed|null', + 'mode=' => 'int', + ), + 'array_flip' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'array_intersect' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_intersect_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_intersect_key' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_intersect_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_intersect_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest' => 'array|callable(mixed, mixed):int', + ), + 'array_intersect_ukey' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_intersect_ukey\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest' => 'array|callable(mixed, mixed):int', + ), + 'array_is_list' => + array ( + 0 => 'bool', + 'array' => 'array', + ), + 'array_key_exists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array', + ), + 'array_key_first' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + 'array_key_last' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + 'array_keys' => + array ( + 0 => 'list', + 'array' => 'array', + 'filter_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'array_map' => + array ( + 0 => 'array', + 'callback' => 'callable|null', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_merge' => + array ( + 0 => 'array', + '...arrays=' => 'array', + ), + 'array_merge_recursive' => + array ( + 0 => 'array', + '...arrays=' => 'array', + ), + 'array_multisort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'rest=' => 'array|int', + 'array1_sort_flags=' => 'array|int', + '...args=' => 'array|int', + ), + 'array_pad' => + array ( + 0 => 'array', + 'array' => 'array', + 'length' => 'int', + 'value' => 'mixed', + ), + 'array_pop' => + array ( + 0 => 'mixed', + '&rw_array' => 'array', + ), + 'array_product' => + array ( + 0 => 'float|int', + 'array' => 'array', + ), + 'array_push' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values=' => 'mixed', + ), + 'array_rand' => + array ( + 0 => 'array|int|string', + 'array' => 'non-empty-array', + 'num' => 'int', + ), + 'array_rand\'1' => + array ( + 0 => 'int|string', + 'array' => 'array', + ), + 'array_reduce' => + array ( + 0 => 'mixed', + 'array' => 'array', + 'callback' => 'callable(mixed, mixed):mixed', + 'initial=' => 'mixed', + ), + 'array_replace' => + array ( + 0 => 'array', + 'array' => 'array', + '...replacements=' => 'array', + ), + 'array_replace_recursive' => + array ( + 0 => 'array', + 'array' => 'array', + '...replacements=' => 'array', + ), + 'array_reverse' => + array ( + 0 => 'array', + 'array' => 'array', + 'preserve_keys=' => 'bool', + ), + 'array_search' => + array ( + 0 => 'false|int|string', + 'needle' => 'mixed', + 'haystack' => 'array', + 'strict=' => 'bool', + ), + 'array_shift' => + array ( + 0 => 'mixed|null', + '&rw_array' => 'array', + ), + 'array_slice' => + array ( + 0 => 'array', + 'array' => 'array', + 'offset' => 'int', + 'length=' => 'int|null', + 'preserve_keys=' => 'bool', + ), + 'array_splice' => + array ( + 0 => 'array', + '&rw_array' => 'array', + 'offset' => 'int', + 'length=' => 'int|null', + 'replacement=' => 'array|string', + ), + 'array_sum' => + array ( + 0 => 'float|int', + 'array' => 'array', + ), + 'array_udiff' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_udiff_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff_assoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_udiff_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + 'arg5' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect_assoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + 'arg5' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_unique' => + array ( + 0 => 'array', + 'array' => 'array', + 'flags=' => 'int', + ), + 'array_unshift' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values=' => 'mixed', + ), + 'array_values' => + array ( + 0 => 'list', + 'array' => 'array', + ), + 'array_walk' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk\'1' => + array ( + 0 => 'bool', + '&rw_array' => 'object', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk_recursive' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk_recursive\'1' => + array ( + 0 => 'bool', + '&rw_array' => 'object', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'ArrayAccess::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'ArrayAccess::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'ArrayAccess::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayAccess::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'ArrayIterator::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + ), + 'ArrayIterator::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ArrayIterator::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayIterator::count' => + array ( + 0 => 'int', + ), + 'ArrayIterator::current' => + array ( + 0 => 'mixed', + ), + 'ArrayIterator::getArrayCopy' => + array ( + 0 => 'array', + ), + 'ArrayIterator::getFlags' => + array ( + 0 => 'int', + ), + 'ArrayIterator::key' => + array ( + 0 => 'int|null|string', + ), + 'ArrayIterator::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayIterator::natcasesort' => + array ( + 0 => 'true', + ), + 'ArrayIterator::natsort' => + array ( + 0 => 'true', + ), + 'ArrayIterator::next' => + array ( + 0 => 'void', + ), + 'ArrayIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'ArrayIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'int|string', + ), + 'ArrayIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'ArrayIterator::rewind' => + array ( + 0 => 'void', + ), + 'ArrayIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'ArrayIterator::serialize' => + array ( + 0 => 'string', + ), + 'ArrayIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'ArrayIterator::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayIterator::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayIterator::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'ArrayIterator::valid' => + array ( + 0 => 'bool', + ), + 'ArrayObject::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + 'iteratorClass=' => 'class-string', + ), + 'ArrayObject::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ArrayObject::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayObject::count' => + array ( + 0 => 'int', + ), + 'ArrayObject::exchangeArray' => + array ( + 0 => 'array', + 'array' => 'array|object', + ), + 'ArrayObject::getArrayCopy' => + array ( + 0 => 'array', + ), + 'ArrayObject::getFlags' => + array ( + 0 => 'int', + ), + 'ArrayObject::getIterator' => + array ( + 0 => 'ArrayIterator', + ), + 'ArrayObject::getIteratorClass' => + array ( + 0 => 'string', + ), + 'ArrayObject::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayObject::natcasesort' => + array ( + 0 => 'true', + ), + 'ArrayObject::natsort' => + array ( + 0 => 'true', + ), + 'ArrayObject::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'ArrayObject::offsetGet' => + array ( + 0 => 'mixed|null', + 'key' => 'int|string', + ), + 'ArrayObject::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayObject::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'ArrayObject::serialize' => + array ( + 0 => 'string', + ), + 'ArrayObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'ArrayObject::setIteratorClass' => + array ( + 0 => 'void', + 'iteratorClass' => 'class-string', + ), + 'ArrayObject::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayObject::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayObject::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'arsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'asin' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'asinh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'asort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'assert' => + array ( + 0 => 'bool', + 'assertion' => 'bool|int|string', + 'description=' => 'Throwable|null|string', + ), + 'assert_options' => + array ( + 0 => 'false|mixed', + 'option' => 'int', + 'value=' => 'mixed', + ), + 'ast\\get_kind_name' => + array ( + 0 => 'string', + 'kind' => 'int', + ), + 'ast\\get_metadata' => + array ( + 0 => 'array', + ), + 'ast\\get_supported_versions' => + array ( + 0 => 'array', + 'exclude_deprecated=' => 'bool', + ), + 'ast\\kind_uses_flags' => + array ( + 0 => 'bool', + 'kind' => 'int', + ), + 'ast\\Node::__construct' => + array ( + 0 => 'void', + 'kind=' => 'int', + 'flags=' => 'int', + 'children=' => 'array', + 'start_line=' => 'int', + ), + 'ast\\parse_code' => + array ( + 0 => 'ast\\Node', + 'code' => 'string', + 'version' => 'int', + 'filename=' => 'string', + ), + 'ast\\parse_file' => + array ( + 0 => 'ast\\Node', + 'filename' => 'string', + 'version' => 'int', + ), + 'atan' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'atan2' => + array ( + 0 => 'float', + 'y' => 'float', + 'x' => 'float', + ), + 'atanh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'BadFunctionCallException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'BadFunctionCallException::__toString' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getCode' => + array ( + 0 => 'int', + ), + 'BadFunctionCallException::getFile' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getLine' => + array ( + 0 => 'int', + ), + 'BadFunctionCallException::getMessage' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'BadFunctionCallException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'BadFunctionCallException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'BadMethodCallException::__toString' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getCode' => + array ( + 0 => 'int', + ), + 'BadMethodCallException::getFile' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getLine' => + array ( + 0 => 'int', + ), + 'BadMethodCallException::getMessage' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'BadMethodCallException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'BadMethodCallException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'base64_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'strict=' => 'false', + ), + 'base64_decode\'1' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'strict=' => 'true', + ), + 'base64_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'base_convert' => + array ( + 0 => 'string', + 'num' => 'string', + 'from_base' => 'int', + 'to_base' => 'int', + ), + 'basename' => + array ( + 0 => 'string', + 'path' => 'string', + 'suffix=' => 'string', + ), + 'bbcode_add_element' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'tag_name' => 'string', + 'tag_rules' => 'array', + ), + 'bbcode_add_smiley' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'smiley' => 'string', + 'replace_by' => 'string', + ), + 'bbcode_create' => + array ( + 0 => 'resource', + 'bbcode_initial_tags=' => 'array', + ), + 'bbcode_destroy' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + ), + 'bbcode_parse' => + array ( + 0 => 'string', + 'bbcode_container' => 'resource', + 'to_parse' => 'string', + ), + 'bbcode_set_arg_parser' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'bbcode_arg_parser' => 'resource', + ), + 'bbcode_set_flags' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'flags' => 'int', + 'mode=' => 'int', + ), + 'bcadd' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bccomp' => + array ( + 0 => 'int', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcdiv' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcmod' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcmul' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcompiler_load' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'bcompiler_load_exe' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'bcompiler_parse_class' => + array ( + 0 => 'bool', + 'class' => 'string', + 'callback' => 'string', + ), + 'bcompiler_read' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'bcompiler_write_class' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'classname' => 'string', + 'extends=' => 'string', + ), + 'bcompiler_write_constant' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'constantname' => 'string', + ), + 'bcompiler_write_exe_footer' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'startpos' => 'int', + ), + 'bcompiler_write_file' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcompiler_write_footer' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'bcompiler_write_function' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'functionname' => 'string', + ), + 'bcompiler_write_functions_from_file' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcompiler_write_header' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'write_ver=' => 'string', + ), + 'bcompiler_write_included_filename' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcpow' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcpowmod' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'modulus' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcscale' => + array ( + 0 => 'int', + 'scale=' => 'int|null', + ), + 'bcsqrt' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bcsub' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + 'bin2hex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'bind_textdomain_codeset' => + array ( + 0 => 'string', + 'domain' => 'string', + 'codeset' => 'null|string', + ), + 'bindec' => + array ( + 0 => 'float|int', + 'binary_string' => 'string', + ), + 'bindtextdomain' => + array ( + 0 => 'string', + 'domain' => 'string', + 'directory' => 'null|string', + ), + 'birdstep_autocommit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_close' => + array ( + 0 => 'bool', + 'id' => 'int', + ), + 'birdstep_commit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_connect' => + array ( + 0 => 'int', + 'server' => 'string', + 'user' => 'string', + 'pass' => 'string', + ), + 'birdstep_exec' => + array ( + 0 => 'int', + 'index' => 'int', + 'exec_str' => 'string', + ), + 'birdstep_fetch' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_fieldname' => + array ( + 0 => 'string', + 'index' => 'int', + 'col' => 'int', + ), + 'birdstep_fieldnum' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'birdstep_freeresult' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_off_autocommit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_result' => + array ( + 0 => 'mixed', + 'index' => 'int', + 'col' => 'mixed', + ), + 'birdstep_rollback' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'blenc_encrypt' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'encodedfile' => 'string', + 'encryption_key=' => 'string', + ), + 'boolval' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'bson_decode' => + array ( + 0 => 'array', + 'bson' => 'string', + ), + 'bson_encode' => + array ( + 0 => 'string', + 'anything' => 'mixed', + ), + 'bzclose' => + array ( + 0 => 'bool', + 'bz' => 'resource', + ), + 'bzcompress' => + array ( + 0 => 'int|string', + 'data' => 'string', + 'block_size=' => 'int', + 'work_factor=' => 'int', + ), + 'bzdecompress' => + array ( + 0 => 'false|int|string', + 'data' => 'string', + 'use_less_memory=' => 'bool', + ), + 'bzerrno' => + array ( + 0 => 'int', + 'bz' => 'resource', + ), + 'bzerror' => + array ( + 0 => 'array', + 'bz' => 'resource', + ), + 'bzerrstr' => + array ( + 0 => 'string', + 'bz' => 'resource', + ), + 'bzflush' => + array ( + 0 => 'bool', + 'bz' => 'resource', + ), + 'bzopen' => + array ( + 0 => 'false|resource', + 'file' => 'resource|string', + 'mode' => 'string', + ), + 'bzread' => + array ( + 0 => 'false|string', + 'bz' => 'resource', + 'length=' => 'int', + ), + 'bzwrite' => + array ( + 0 => 'false|int', + 'bz' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'CachingIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'flags=' => 'mixed', + ), + 'CachingIterator::__toString' => + array ( + 0 => 'string', + ), + 'CachingIterator::count' => + array ( + 0 => 'int', + ), + 'CachingIterator::current' => + array ( + 0 => 'mixed', + ), + 'CachingIterator::getCache' => + array ( + 0 => 'array', + ), + 'CachingIterator::getFlags' => + array ( + 0 => 'int', + ), + 'CachingIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'CachingIterator::hasNext' => + array ( + 0 => 'bool', + ), + 'CachingIterator::key' => + array ( + 0 => 'scalar', + ), + 'CachingIterator::next' => + array ( + 0 => 'void', + ), + 'CachingIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'CachingIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'CachingIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'mixed', + ), + 'CachingIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'CachingIterator::rewind' => + array ( + 0 => 'void', + ), + 'CachingIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'CachingIterator::valid' => + array ( + 0 => 'bool', + ), + 'cal_days_in_month' => + array ( + 0 => 'int', + 'calendar' => 'int', + 'month' => 'int', + 'year' => 'int', + ), + 'cal_from_jd' => + array ( + 0 => 'array{abbrevdayname: string, abbrevmonth: string, date: string, day: int, dayname: string, dow: int, month: int, monthname: string, year: int}', + 'julian_day' => 'int', + 'calendar' => 'int', + ), + 'cal_info' => + array ( + 0 => 'array', + 'calendar=' => 'int', + ), + 'cal_to_jd' => + array ( + 0 => 'int', + 'calendar' => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'calcul_hmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'siretcode' => 'string', + 'price' => 'string', + 'reference' => 'string', + 'validity' => 'string', + 'taxation' => 'string', + 'devise' => 'string', + 'language' => 'string', + ), + 'calculhmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'call_user_func' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'call_user_func_array' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + 'args' => 'list', + ), + 'call_user_method' => + array ( + 0 => 'mixed', + 'method_name' => 'string', + 'object' => 'object', + 'parameter=' => 'mixed', + '...args=' => 'mixed', + ), + 'call_user_method_array' => + array ( + 0 => 'mixed', + 'method_name' => 'string', + 'object' => 'object', + 'params' => 'list', + ), + 'CallbackFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'callback' => 'callable(mixed, mixed=, mixed=):bool', + ), + 'CallbackFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'CallbackFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'CallbackFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'CallbackFilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'CallbackFilterIterator::next' => + array ( + 0 => 'void', + ), + 'CallbackFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'CallbackFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'ceil' => + array ( + 0 => 'float', + 'num' => 'float|int', + ), + 'chdb::__construct' => + array ( + 0 => 'void', + 'pathname' => 'string', + ), + 'chdb::get' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'chdb_create' => + array ( + 0 => 'bool', + 'pathname' => 'string', + 'data' => 'array', + ), + 'chdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'checkdate' => + array ( + 0 => 'bool', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'checkdnsrr' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'type=' => 'string', + ), + 'chgrp' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'group' => 'int|string', + ), + 'chmod' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'permissions' => 'int', + ), + 'chop' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'chown' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'user' => 'int|string', + ), + 'chr' => + array ( + 0 => 'non-empty-string', + 'codepoint' => 'int', + ), + 'chroot' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'chunk_split' => + array ( + 0 => 'string', + 'string' => 'string', + 'length=' => 'int', + 'separator=' => 'string', + ), + 'class_alias' => + array ( + 0 => 'bool', + 'class' => 'string', + 'alias' => 'string', + 'autoload=' => 'bool', + ), + 'class_exists' => + array ( + 0 => 'bool', + 'class' => 'string', + 'autoload=' => 'bool', + ), + 'class_implements' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'class_parents' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'class_uses' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'classkit_import' => + array ( + 0 => 'array', + 'filename' => 'string', + ), + 'classkit_method_add' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + ), + 'classkit_method_copy' => + array ( + 0 => 'bool', + 'dclass' => 'string', + 'dmethod' => 'string', + 'sclass' => 'string', + 'smethod=' => 'string', + ), + 'classkit_method_redefine' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + ), + 'classkit_method_remove' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + ), + 'classkit_method_rename' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'newname' => 'string', + ), + 'classObj::__construct' => + array ( + 0 => 'void', + 'layer' => 'layerObj', + 'class' => 'classObj', + ), + 'classObj::addLabel' => + array ( + 0 => 'int', + 'label' => 'labelObj', + ), + 'classObj::convertToString' => + array ( + 0 => 'string', + ), + 'classObj::createLegendIcon' => + array ( + 0 => 'imageObj', + 'width' => 'int', + 'height' => 'int', + ), + 'classObj::deletestyle' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::drawLegendIcon' => + array ( + 0 => 'int', + 'width' => 'int', + 'height' => 'int', + 'im' => 'imageObj', + 'dstX' => 'int', + 'dstY' => 'int', + ), + 'classObj::free' => + array ( + 0 => 'void', + ), + 'classObj::getExpressionString' => + array ( + 0 => 'string', + ), + 'classObj::getLabel' => + array ( + 0 => 'labelObj', + 'index' => 'int', + ), + 'classObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'classObj::getStyle' => + array ( + 0 => 'styleObj', + 'index' => 'int', + ), + 'classObj::getTextString' => + array ( + 0 => 'string', + ), + 'classObj::movestyledown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::movestyleup' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::ms_newClassObj' => + array ( + 0 => 'classObj', + 'layer' => 'layerObj', + 'class' => 'classObj', + ), + 'classObj::removeLabel' => + array ( + 0 => 'labelObj', + 'index' => 'int', + ), + 'classObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'classObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'classObj::setExpression' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'classObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'classObj::settext' => + array ( + 0 => 'int', + 'text' => 'string', + ), + 'classObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'clearstatcache' => + array ( + 0 => 'void', + 'clear_realpath_cache=' => 'bool', + 'filename=' => 'string', + ), + 'cli_get_process_title' => + array ( + 0 => 'null|string', + ), + 'cli_set_process_title' => + array ( + 0 => 'bool', + 'title' => 'string', + ), + 'ClosedGeneratorException::__toString' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getCode' => + array ( + 0 => 'int', + ), + 'ClosedGeneratorException::getFile' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getLine' => + array ( + 0 => 'int', + ), + 'ClosedGeneratorException::getMessage' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ClosedGeneratorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ClosedGeneratorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'closedir' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'closelog' => + array ( + 0 => 'true', + ), + 'Closure::__construct' => + array ( + 0 => 'void', + ), + 'Closure::__invoke' => + array ( + 0 => 'mixed', + '...args=' => 'mixed', + ), + 'Closure::bind' => + array ( + 0 => 'Closure|null', + 'closure' => 'Closure', + 'newThis' => 'null|object', + 'newScope=' => 'null|object|string', + ), + 'Closure::bindTo' => + array ( + 0 => 'Closure|null', + 'newThis' => 'null|object', + 'newScope=' => 'null|object|string', + ), + 'Closure::call' => + array ( + 0 => 'mixed', + 'newThis' => 'object', + '...args=' => 'mixed', + ), + 'Closure::fromCallable' => + array ( + 0 => 'Closure', + 'callback' => 'callable', + ), + 'clusterObj::convertToString' => + array ( + 0 => 'string', + ), + 'clusterObj::getFilterString' => + array ( + 0 => 'string', + ), + 'clusterObj::getGroupString' => + array ( + 0 => 'string', + ), + 'clusterObj::setFilter' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'clusterObj::setGroup' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'Collator::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + ), + 'Collator::asort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'Collator::compare' => + array ( + 0 => 'false|int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'Collator::create' => + array ( + 0 => 'Collator|null', + 'locale' => 'string', + ), + 'Collator::getAttribute' => + array ( + 0 => 'false|int', + 'attribute' => 'int', + ), + 'Collator::getErrorCode' => + array ( + 0 => 'int', + ), + 'Collator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'Collator::getLocale' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'Collator::getSortKey' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'Collator::getStrength' => + array ( + 0 => 'int', + ), + 'Collator::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'int', + ), + 'Collator::setStrength' => + array ( + 0 => 'bool', + 'strength' => 'int', + ), + 'Collator::sort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'Collator::sortWithSortKeys' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'collator_asort' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'collator_compare' => + array ( + 0 => 'int', + 'object' => 'collator', + 'string1' => 'string', + 'string2' => 'string', + ), + 'collator_create' => + array ( + 0 => 'Collator|null', + 'locale' => 'string', + ), + 'collator_get_attribute' => + array ( + 0 => 'false|int', + 'object' => 'collator', + 'attribute' => 'int', + ), + 'collator_get_error_code' => + array ( + 0 => 'int', + 'object' => 'collator', + ), + 'collator_get_error_message' => + array ( + 0 => 'string', + 'object' => 'collator', + ), + 'collator_get_locale' => + array ( + 0 => 'string', + 'object' => 'collator', + 'type' => 'int', + ), + 'collator_get_sort_key' => + array ( + 0 => 'string', + 'object' => 'collator', + 'string' => 'string', + ), + 'collator_get_strength' => + array ( + 0 => 'int', + 'object' => 'collator', + ), + 'collator_set_attribute' => + array ( + 0 => 'bool', + 'object' => 'collator', + 'attribute' => 'int', + 'value' => 'int', + ), + 'collator_set_strength' => + array ( + 0 => 'bool', + 'object' => 'collator', + 'strength' => 'int', + ), + 'collator_sort' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'collator_sort_with_sort_keys' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + ), + 'Collectable::isGarbage' => + array ( + 0 => 'bool', + ), + 'Collectable::setGarbage' => + array ( + 0 => 'void', + ), + 'colorObj::setHex' => + array ( + 0 => 'int', + 'hex' => 'string', + ), + 'colorObj::toHex' => + array ( + 0 => 'string', + ), + 'COM::__call' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'args' => 'mixed', + ), + 'COM::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'server_name=' => 'mixed', + 'codepage=' => 'int', + 'typelib=' => 'string', + ), + 'COM::__get' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + ), + 'COM::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'com_addref' => + array ( + 0 => 'mixed', + ), + 'com_create_guid' => + array ( + 0 => 'string', + ), + 'com_event_sink' => + array ( + 0 => 'bool', + 'variant' => 'VARIANT', + 'sink_object' => 'object', + 'sink_interface=' => 'mixed', + ), + 'com_get_active_object' => + array ( + 0 => 'VARIANT', + 'prog_id' => 'string', + 'codepage=' => 'int', + ), + 'com_isenum' => + array ( + 0 => 'bool', + 'com_module' => 'variant', + ), + 'com_load_typelib' => + array ( + 0 => 'bool', + 'typelib_name' => 'string', + 'case_insensitive=' => 'true', + ), + 'com_message_pump' => + array ( + 0 => 'bool', + 'timeout_milliseconds=' => 'int', + ), + 'com_print_typeinfo' => + array ( + 0 => 'bool', + 'variant' => 'object', + 'dispatch_interface=' => 'string', + 'display_sink=' => 'bool', + ), + 'commonmark\\cql::__invoke' => + array ( + 0 => 'mixed', + 'root' => 'CommonMark\\Node', + 'handler' => 'callable', + ), + 'commonmark\\interfaces\\ivisitable::accept' => + array ( + 0 => 'void', + 'visitor' => 'CommonMark\\Interfaces\\IVisitor', + ), + 'commonmark\\interfaces\\ivisitor::enter' => + array ( + 0 => 'IVisitable|int|null', + 'visitable' => 'IVisitable', + ), + 'commonmark\\interfaces\\ivisitor::leave' => + array ( + 0 => 'IVisitable|int|null', + 'visitable' => 'IVisitable', + ), + 'commonmark\\node::accept' => + array ( + 0 => 'void', + 'visitor' => 'CommonMark\\Interfaces\\IVisitor', + ), + 'commonmark\\node::appendChild' => + array ( + 0 => 'CommonMark\\Node', + 'child' => 'CommonMark\\Node', + ), + 'commonmark\\node::insertAfter' => + array ( + 0 => 'CommonMark\\Node', + 'sibling' => 'CommonMark\\Node', + ), + 'commonmark\\node::insertBefore' => + array ( + 0 => 'CommonMark\\Node', + 'sibling' => 'CommonMark\\Node', + ), + 'commonmark\\node::prependChild' => + array ( + 0 => 'CommonMark\\Node', + 'child' => 'CommonMark\\Node', + ), + 'commonmark\\node::replace' => + array ( + 0 => 'CommonMark\\Node', + 'target' => 'CommonMark\\Node', + ), + 'commonmark\\node::unlink' => + array ( + 0 => 'void', + ), + 'commonmark\\parse' => + array ( + 0 => 'CommonMark\\Node', + 'content' => 'string', + 'options=' => 'int', + ), + 'commonmark\\parser::finish' => + array ( + 0 => 'CommonMark\\Node', + ), + 'commonmark\\parser::parse' => + array ( + 0 => 'void', + 'buffer' => 'string', + ), + 'commonmark\\render' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\html' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + ), + 'commonmark\\render\\latex' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\man' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\xml' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + ), + 'compact' => + array ( + 0 => 'array', + 'var_name' => 'array|string', + '...var_names=' => 'array|string', + ), + 'COMPersistHelper::__construct' => + array ( + 0 => 'void', + 'variant' => 'object', + ), + 'COMPersistHelper::GetCurFile' => + array ( + 0 => 'string', + ), + 'COMPersistHelper::GetCurFileName' => + array ( + 0 => 'string', + ), + 'COMPersistHelper::GetMaxStreamSize' => + array ( + 0 => 'int', + ), + 'COMPersistHelper::InitNew' => + array ( + 0 => 'int', + ), + 'COMPersistHelper::LoadFromFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + ), + 'COMPersistHelper::LoadFromStream' => + array ( + 0 => 'mixed', + 'stream' => 'mixed', + ), + 'COMPersistHelper::SaveToFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'remember' => 'bool', + ), + 'COMPersistHelper::SaveToStream' => + array ( + 0 => 'int', + 'stream' => 'mixed', + ), + 'componere\\abstract\\definition::addInterface' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'interface' => 'string', + ), + 'componere\\abstract\\definition::addMethod' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'name' => 'string', + 'method' => 'Componere\\Method', + ), + 'componere\\abstract\\definition::addTrait' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'trait' => 'string', + ), + 'componere\\abstract\\definition::getReflector' => + array ( + 0 => 'ReflectionClass', + ), + 'componere\\cast' => + array ( + 0 => 'object', + 'arg1' => 'string', + 'object' => 'object', + ), + 'componere\\cast_by_ref' => + array ( + 0 => 'object', + 'arg1' => 'string', + 'object' => 'object', + ), + 'componere\\definition::addConstant' => + array ( + 0 => 'Componere\\Definition', + 'name' => 'string', + 'value' => 'Componere\\Value', + ), + 'componere\\definition::addProperty' => + array ( + 0 => 'Componere\\Definition', + 'name' => 'string', + 'value' => 'Componere\\Value', + ), + 'componere\\definition::getClosure' => + array ( + 0 => 'Closure', + 'name' => 'string', + ), + 'componere\\definition::getClosures' => + array ( + 0 => 'array', + ), + 'componere\\definition::isRegistered' => + array ( + 0 => 'bool', + ), + 'componere\\definition::register' => + array ( + 0 => 'void', + ), + 'componere\\method::getReflector' => + array ( + 0 => 'ReflectionMethod', + ), + 'componere\\method::setPrivate' => + array ( + 0 => 'Method', + ), + 'componere\\method::setProtected' => + array ( + 0 => 'Method', + ), + 'componere\\method::setStatic' => + array ( + 0 => 'Method', + ), + 'componere\\patch::apply' => + array ( + 0 => 'void', + ), + 'componere\\patch::derive' => + array ( + 0 => 'Componere\\Patch', + 'instance' => 'object', + ), + 'componere\\patch::getClosure' => + array ( + 0 => 'Closure', + 'name' => 'string', + ), + 'componere\\patch::getClosures' => + array ( + 0 => 'array', + ), + 'componere\\patch::isApplied' => + array ( + 0 => 'bool', + ), + 'componere\\patch::revert' => + array ( + 0 => 'void', + ), + 'componere\\value::hasDefault' => + array ( + 0 => 'bool', + ), + 'componere\\value::isPrivate' => + array ( + 0 => 'bool', + ), + 'componere\\value::isProtected' => + array ( + 0 => 'bool', + ), + 'componere\\value::isStatic' => + array ( + 0 => 'bool', + ), + 'componere\\value::setPrivate' => + array ( + 0 => 'Value', + ), + 'componere\\value::setProtected' => + array ( + 0 => 'Value', + ), + 'componere\\value::setStatic' => + array ( + 0 => 'Value', + ), + 'Cond::broadcast' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::create' => + array ( + 0 => 'long', + ), + 'Cond::destroy' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::signal' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::wait' => + array ( + 0 => 'bool', + 'condition' => 'long', + 'mutex' => 'long', + 'timeout=' => 'long', + ), + 'confirm_pdo_ibm_compiled' => + array ( + 0 => 'mixed', + ), + 'connection_aborted' => + array ( + 0 => 'int', + ), + 'connection_status' => + array ( + 0 => 'int', + ), + 'connection_timeout' => + array ( + 0 => 'int', + ), + 'constant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'convert_cyr_string' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'convert_uudecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'convert_uuencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + 'context=' => 'resource', + ), + 'cos' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'cosh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'Couchbase\\AnalyticsQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\AnalyticsQuery::fromString' => + array ( + 0 => 'Couchbase\\AnalyticsQuery', + 'statement' => 'string', + ), + 'Couchbase\\basicDecoderV1' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + 'options' => 'array', + ), + 'Couchbase\\basicEncoderV1' => + array ( + 0 => 'array', + 'value' => 'mixed', + 'options' => 'array', + ), + 'Couchbase\\BooleanFieldSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BooleanFieldSearchQuery::boost' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\BooleanFieldSearchQuery::field' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\BooleanFieldSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\BooleanSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BooleanSearchQuery::boost' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\BooleanSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\BooleanSearchQuery::must' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\BooleanSearchQuery::mustNot' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\BooleanSearchQuery::should' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\Bucket::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\Bucket::__get' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'Couchbase\\Bucket::__set' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'int', + ), + 'Couchbase\\Bucket::append' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::counter' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'delta=' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::decryptFields' => + array ( + 0 => 'array', + 'document' => 'array', + 'fieldOptions' => 'mixed', + 'prefix=' => 'string', + ), + 'Couchbase\\Bucket::diag' => + array ( + 0 => 'array', + 'reportId=' => 'string', + ), + 'Couchbase\\Bucket::encryptFields' => + array ( + 0 => 'array', + 'document' => 'array', + 'fieldOptions' => 'mixed', + 'prefix=' => 'string', + ), + 'Couchbase\\Bucket::get' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getAndLock' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'lockTime' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getAndTouch' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'expiry' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getFromReplica' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getName' => + array ( + 0 => 'string', + ), + 'Couchbase\\Bucket::insert' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::listExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listGet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + ), + 'Couchbase\\Bucket::listPush' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + ), + 'Couchbase\\Bucket::listSet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listShift' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::lookupIn' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'id' => 'string', + ), + 'Couchbase\\Bucket::manager' => + array ( + 0 => 'Couchbase\\BucketManager', + ), + 'Couchbase\\Bucket::mapAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::mapGet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + ), + 'Couchbase\\Bucket::mapRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + ), + 'Couchbase\\Bucket::mapSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::mutateIn' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'id' => 'string', + 'cas' => 'string', + ), + 'Couchbase\\Bucket::ping' => + array ( + 0 => 'array', + 'services=' => 'int', + 'reportId=' => 'string', + ), + 'Couchbase\\Bucket::prepend' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::query' => + array ( + 0 => 'object', + 'query' => 'Couchbase\\AnalyticsQuery|Couchbase\\N1qlQuery|Couchbase\\SearchQuery|Couchbase\\SpatialViewQuery|Couchbase\\ViewQuery', + 'jsonAsArray=' => 'bool', + ), + 'Couchbase\\Bucket::queueAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::queueExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::queueRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + ), + 'Couchbase\\Bucket::queueSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::remove' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::replace' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::retrieveIn' => + array ( + 0 => 'Couchbase\\DocumentFragment', + 'id' => 'string', + '...paths=' => 'array', + ), + 'Couchbase\\Bucket::setAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::setTranscoder' => + array ( + 0 => 'mixed', + 'encoder' => 'callable', + 'decoder' => 'callable', + ), + 'Couchbase\\Bucket::touch' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'expiry' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::unlock' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::upsert' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\BucketManager::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BucketManager::createN1qlIndex' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'fields' => 'array', + 'whereClause=' => 'string', + 'ignoreIfExist=' => 'bool', + 'defer=' => 'bool', + ), + 'Couchbase\\BucketManager::createN1qlPrimaryIndex' => + array ( + 0 => 'mixed', + 'customName=' => 'string', + 'ignoreIfExist=' => 'bool', + 'defer=' => 'bool', + ), + 'Couchbase\\BucketManager::dropN1qlIndex' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'ignoreIfNotExist=' => 'bool', + ), + 'Couchbase\\BucketManager::dropN1qlPrimaryIndex' => + array ( + 0 => 'mixed', + 'customName=' => 'string', + 'ignoreIfNotExist=' => 'bool', + ), + 'Couchbase\\BucketManager::flush' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\BucketManager::getDesignDocument' => + array ( + 0 => 'array', + 'name' => 'string', + ), + 'Couchbase\\BucketManager::info' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::insertDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'document' => 'array', + ), + 'Couchbase\\BucketManager::listDesignDocuments' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::listN1qlIndexes' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::removeDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Couchbase\\BucketManager::upsertDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'document' => 'array', + ), + 'Couchbase\\ClassicAuthenticator::bucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'password' => 'string', + ), + 'Couchbase\\ClassicAuthenticator::cluster' => + array ( + 0 => 'mixed', + 'username' => 'string', + 'password' => 'string', + ), + 'Couchbase\\Cluster::__construct' => + array ( + 0 => 'void', + 'connstr' => 'string', + ), + 'Couchbase\\Cluster::authenticate' => + array ( + 0 => 'null', + 'authenticator' => 'Couchbase\\Authenticator', + ), + 'Couchbase\\Cluster::authenticateAs' => + array ( + 0 => 'null', + 'username' => 'string', + 'password' => 'string', + ), + 'Couchbase\\Cluster::manager' => + array ( + 0 => 'Couchbase\\ClusterManager', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Couchbase\\Cluster::openBucket' => + array ( + 0 => 'Couchbase\\Bucket', + 'name=' => 'string', + 'password=' => 'string', + ), + 'Couchbase\\ClusterManager::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ClusterManager::createBucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\ClusterManager::getUser' => + array ( + 0 => 'array', + 'username' => 'string', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::info' => + array ( + 0 => 'array', + ), + 'Couchbase\\ClusterManager::listBuckets' => + array ( + 0 => 'array', + ), + 'Couchbase\\ClusterManager::listUsers' => + array ( + 0 => 'array', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::removeBucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Couchbase\\ClusterManager::removeUser' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::upsertUser' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'settings' => 'Couchbase\\UserSettings', + 'domain=' => 'int', + ), + 'Couchbase\\ConjunctionSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ConjunctionSearchQuery::boost' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\ConjunctionSearchQuery::every' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\ConjunctionSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DateRangeSearchFacet::addRange' => + array ( + 0 => 'Couchbase\\DateRangeSearchFacet', + 'name' => 'string', + 'start' => 'int|string', + 'end' => 'int|string', + ), + 'Couchbase\\DateRangeSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DateRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DateRangeSearchQuery::dateTimeParser' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'dateTimeParser' => 'string', + ), + 'Couchbase\\DateRangeSearchQuery::end' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'end' => 'int|string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\DateRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\DateRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchQuery::start' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'start' => 'int|string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\defaultDecoder' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + ), + 'Couchbase\\defaultEncoder' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'Couchbase\\DisjunctionSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DisjunctionSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DisjunctionSearchQuery::either' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\DisjunctionSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DisjunctionSearchQuery::min' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + 'min' => 'int', + ), + 'Couchbase\\DocIdSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DocIdSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DocIdSearchQuery::docIds' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + '...documentIds=' => 'array', + ), + 'Couchbase\\DocIdSearchQuery::field' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\DocIdSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\fastlzCompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\fastlzDecompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::boost' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::field' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\GeoDistanceSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\GeoDistanceSearchQuery::boost' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\GeoDistanceSearchQuery::field' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\GeoDistanceSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\LookupInBuilder::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\LookupInBuilder::execute' => + array ( + 0 => 'Couchbase\\DocumentFragment', + ), + 'Couchbase\\LookupInBuilder::exists' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\LookupInBuilder::get' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\LookupInBuilder::getCount' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\MatchAllSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchAllSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchAllSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchAllSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchNoneSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchNoneSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchNoneSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchNoneSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchPhraseSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchPhraseSearchQuery::analyzer' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'analyzer' => 'string', + ), + 'Couchbase\\MatchPhraseSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchPhraseSearchQuery::field' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\MatchPhraseSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchSearchQuery::analyzer' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'analyzer' => 'string', + ), + 'Couchbase\\MatchSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchSearchQuery::field' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\MatchSearchQuery::fuzziness' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'fuzziness' => 'int', + ), + 'Couchbase\\MatchSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchSearchQuery::prefixLength' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'prefixLength' => 'int', + ), + 'Couchbase\\MutateInBuilder::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutateInBuilder::arrayAddUnique' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayAppend' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayAppendAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayInsert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::arrayInsertAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::arrayPrepend' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayPrependAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::counter' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'delta' => 'int', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::execute' => + array ( + 0 => 'Couchbase\\DocumentFragment', + ), + 'Couchbase\\MutateInBuilder::insert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::modeDocument' => + array ( + 0 => 'mixed', + 'mode' => 'int', + ), + 'Couchbase\\MutateInBuilder::remove' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::replace' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::upsert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::withExpiry' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'expiry' => 'Couchbase\\expiry', + ), + 'Couchbase\\MutationState::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutationState::add' => + array ( + 0 => 'mixed', + 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', + ), + 'Couchbase\\MutationState::from' => + array ( + 0 => 'Couchbase\\MutationState', + 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', + ), + 'Couchbase\\MutationToken::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutationToken::bucketName' => + array ( + 0 => 'string', + ), + 'Couchbase\\MutationToken::from' => + array ( + 0 => 'mixed', + 'bucketName' => 'string', + 'vbucketId' => 'int', + 'vbucketUuid' => 'string', + 'sequenceNumber' => 'string', + ), + 'Couchbase\\MutationToken::sequenceNumber' => + array ( + 0 => 'string', + ), + 'Couchbase\\MutationToken::vbucketId' => + array ( + 0 => 'int', + ), + 'Couchbase\\MutationToken::vbucketUuid' => + array ( + 0 => 'string', + ), + 'Couchbase\\N1qlIndex::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\N1qlQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\N1qlQuery::adhoc' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'adhoc' => 'bool', + ), + 'Couchbase\\N1qlQuery::consistency' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'consistency' => 'int', + ), + 'Couchbase\\N1qlQuery::consistentWith' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'state' => 'Couchbase\\MutationState', + ), + 'Couchbase\\N1qlQuery::crossBucket' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'crossBucket' => 'bool', + ), + 'Couchbase\\N1qlQuery::fromString' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'statement' => 'string', + ), + 'Couchbase\\N1qlQuery::maxParallelism' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'maxParallelism' => 'int', + ), + 'Couchbase\\N1qlQuery::namedParams' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'params' => 'array', + ), + 'Couchbase\\N1qlQuery::pipelineBatch' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'pipelineBatch' => 'int', + ), + 'Couchbase\\N1qlQuery::pipelineCap' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'pipelineCap' => 'int', + ), + 'Couchbase\\N1qlQuery::positionalParams' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'params' => 'array', + ), + 'Couchbase\\N1qlQuery::profile' => + array ( + 0 => 'mixed', + 'profileType' => 'string', + ), + 'Couchbase\\N1qlQuery::readonly' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'readonly' => 'bool', + ), + 'Couchbase\\N1qlQuery::scanCap' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'scanCap' => 'int', + ), + 'Couchbase\\NumericRangeSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\NumericRangeSearchFacet::addRange' => + array ( + 0 => 'Couchbase\\NumericRangeSearchFacet', + 'name' => 'string', + 'min' => 'float', + 'max' => 'float', + ), + 'Couchbase\\NumericRangeSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\NumericRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\NumericRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\NumericRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\NumericRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\NumericRangeSearchQuery::max' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'max' => 'float', + 'inclusive=' => 'bool', + ), + 'Couchbase\\NumericRangeSearchQuery::min' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'min' => 'float', + 'inclusive=' => 'bool', + ), + 'Couchbase\\passthruDecoder' => + array ( + 0 => 'string', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + ), + 'Couchbase\\passthruEncoder' => + array ( + 0 => 'array', + 'value' => 'string', + ), + 'Couchbase\\PasswordAuthenticator::password' => + array ( + 0 => 'Couchbase\\PasswordAuthenticator', + 'password' => 'string', + ), + 'Couchbase\\PasswordAuthenticator::username' => + array ( + 0 => 'Couchbase\\PasswordAuthenticator', + 'username' => 'string', + ), + 'Couchbase\\PhraseSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\PhraseSearchQuery::boost' => + array ( + 0 => 'Couchbase\\PhraseSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\PhraseSearchQuery::field' => + array ( + 0 => 'Couchbase\\PhraseSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\PhraseSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\PrefixSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\PrefixSearchQuery::boost' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\PrefixSearchQuery::field' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\PrefixSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\QueryStringSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\QueryStringSearchQuery::boost' => + array ( + 0 => 'Couchbase\\QueryStringSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\QueryStringSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\RegexpSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\RegexpSearchQuery::boost' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\RegexpSearchQuery::field' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\RegexpSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\SearchQuery::__construct' => + array ( + 0 => 'void', + 'indexName' => 'string', + 'queryPart' => 'Couchbase\\SearchQueryPart', + ), + 'Couchbase\\SearchQuery::addFacet' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'name' => 'string', + 'facet' => 'Couchbase\\SearchFacet', + ), + 'Couchbase\\SearchQuery::boolean' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + ), + 'Couchbase\\SearchQuery::booleanField' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'value' => 'bool', + ), + 'Couchbase\\SearchQuery::conjuncts' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\SearchQuery::consistentWith' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'state' => 'Couchbase\\MutationState', + ), + 'Couchbase\\SearchQuery::dateRange' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::dateRangeFacet' => + array ( + 0 => 'Couchbase\\DateRangeSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::disjuncts' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\SearchQuery::docId' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + '...documentIds=' => 'array', + ), + 'Couchbase\\SearchQuery::explain' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'explain' => 'bool', + ), + 'Couchbase\\SearchQuery::fields' => + array ( + 0 => 'Couchbase\\SearchQuery', + '...fields=' => 'array', + ), + 'Couchbase\\SearchQuery::geoBoundingBox' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'topLeftLongitude' => 'float', + 'topLeftLatitude' => 'float', + 'bottomRightLongitude' => 'float', + 'bottomRightLatitude' => 'float', + ), + 'Couchbase\\SearchQuery::geoDistance' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'longitude' => 'float', + 'latitude' => 'float', + 'distance' => 'string', + ), + 'Couchbase\\SearchQuery::highlight' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'style' => 'string', + '...fields=' => 'array', + ), + 'Couchbase\\SearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\SearchQuery::limit' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::match' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'match' => 'string', + ), + 'Couchbase\\SearchQuery::matchAll' => + array ( + 0 => 'Couchbase\\MatchAllSearchQuery', + ), + 'Couchbase\\SearchQuery::matchNone' => + array ( + 0 => 'Couchbase\\MatchNoneSearchQuery', + ), + 'Couchbase\\SearchQuery::matchPhrase' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + '...terms=' => 'array', + ), + 'Couchbase\\SearchQuery::numericRange' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::numericRangeFacet' => + array ( + 0 => 'Couchbase\\NumericRangeSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::prefix' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'prefix' => 'string', + ), + 'Couchbase\\SearchQuery::queryString' => + array ( + 0 => 'Couchbase\\QueryStringSearchQuery', + 'queryString' => 'string', + ), + 'Couchbase\\SearchQuery::regexp' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'regexp' => 'string', + ), + 'Couchbase\\SearchQuery::serverSideTimeout' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'serverSideTimeout' => 'int', + ), + 'Couchbase\\SearchQuery::skip' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'skip' => 'int', + ), + 'Couchbase\\SearchQuery::sort' => + array ( + 0 => 'Couchbase\\SearchQuery', + '...sort=' => 'array', + ), + 'Couchbase\\SearchQuery::term' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'term' => 'string', + ), + 'Couchbase\\SearchQuery::termFacet' => + array ( + 0 => 'Couchbase\\TermSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::termRange' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::wildcard' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'wildcard' => 'string', + ), + 'Couchbase\\SearchSort::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSort::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSort::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSort::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSort::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortField::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortField::descending' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortField::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortField::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortField::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortField::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortField::missing' => + array ( + 0 => 'mixed', + 'missing' => 'string', + ), + 'Couchbase\\SearchSortField::mode' => + array ( + 0 => 'mixed', + 'mode' => 'string', + ), + 'Couchbase\\SearchSortField::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortField::type' => + array ( + 0 => 'mixed', + 'type' => 'string', + ), + 'Couchbase\\SearchSortGeoDistance::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortGeoDistance::descending' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortGeoDistance::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortGeoDistance::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortGeoDistance::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortGeoDistance::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortGeoDistance::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortGeoDistance::unit' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'unit' => 'string', + ), + 'Couchbase\\SearchSortId::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortId::descending' => + array ( + 0 => 'Couchbase\\SearchSortId', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortId::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortId::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortId::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortId::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortId::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortScore::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortScore::descending' => + array ( + 0 => 'Couchbase\\SearchSortScore', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortScore::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortScore::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortScore::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortScore::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortScore::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SpatialViewQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SpatialViewQuery::bbox' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'bbox' => 'array', + ), + 'Couchbase\\SpatialViewQuery::consistency' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'consistency' => 'int', + ), + 'Couchbase\\SpatialViewQuery::custom' => + array ( + 0 => 'mixed', + 'customParameters' => 'array', + ), + 'Couchbase\\SpatialViewQuery::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\SpatialViewQuery::endRange' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'range' => 'array', + ), + 'Couchbase\\SpatialViewQuery::limit' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'limit' => 'int', + ), + 'Couchbase\\SpatialViewQuery::order' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'order' => 'int', + ), + 'Couchbase\\SpatialViewQuery::skip' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'skip' => 'int', + ), + 'Couchbase\\SpatialViewQuery::startRange' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'range' => 'array', + ), + 'Couchbase\\TermRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\TermRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\TermRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermRangeSearchQuery::max' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'max' => 'string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\TermRangeSearchQuery::min' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'min' => 'string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\TermSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermSearchQuery::boost' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\TermSearchQuery::field' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\TermSearchQuery::fuzziness' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'fuzziness' => 'int', + ), + 'Couchbase\\TermSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermSearchQuery::prefixLength' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'prefixLength' => 'int', + ), + 'Couchbase\\UserSettings::fullName' => + array ( + 0 => 'Couchbase\\UserSettings', + 'fullName' => 'string', + ), + 'Couchbase\\UserSettings::password' => + array ( + 0 => 'Couchbase\\UserSettings', + 'password' => 'string', + ), + 'Couchbase\\UserSettings::role' => + array ( + 0 => 'Couchbase\\UserSettings', + 'role' => 'string', + 'bucket=' => 'string', + ), + 'Couchbase\\ViewQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ViewQuery::consistency' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'consistency' => 'int', + ), + 'Couchbase\\ViewQuery::custom' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'customParameters' => 'array', + ), + 'Couchbase\\ViewQuery::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\ViewQuery::from' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'designDocumentName' => 'string', + 'viewName' => 'string', + ), + 'Couchbase\\ViewQuery::fromSpatial' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'designDocumentName' => 'string', + 'viewName' => 'string', + ), + 'Couchbase\\ViewQuery::group' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'group' => 'bool', + ), + 'Couchbase\\ViewQuery::groupLevel' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'groupLevel' => 'int', + ), + 'Couchbase\\ViewQuery::idRange' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'startKeyDocumentId' => 'string', + 'endKeyDocumentId' => 'string', + ), + 'Couchbase\\ViewQuery::key' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'key' => 'mixed', + ), + 'Couchbase\\ViewQuery::keys' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'keys' => 'array', + ), + 'Couchbase\\ViewQuery::limit' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'limit' => 'int', + ), + 'Couchbase\\ViewQuery::order' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'order' => 'int', + ), + 'Couchbase\\ViewQuery::range' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'startKey' => 'mixed', + 'endKey' => 'mixed', + 'inclusiveEnd=' => 'bool', + ), + 'Couchbase\\ViewQuery::reduce' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'reduce' => 'bool', + ), + 'Couchbase\\ViewQuery::skip' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'skip' => 'int', + ), + 'Couchbase\\ViewQueryEncodable::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\WildcardSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\WildcardSearchQuery::boost' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\WildcardSearchQuery::field' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\WildcardSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\zlibCompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\zlibDecompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'count' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|array', + 'mode=' => 'int', + ), + 'count_chars' => + array ( + 0 => 'array', + 'input' => 'string', + 'mode=' => '0|1|2', + ), + 'count_chars\'1' => + array ( + 0 => 'string', + 'input' => 'string', + 'mode=' => '3|4', + ), + 'Countable::count' => + array ( + 0 => 'int', + ), + 'crack_check' => + array ( + 0 => 'bool', + 'dictionary' => 'mixed', + 'password' => 'string', + ), + 'crack_closedict' => + array ( + 0 => 'bool', + 'dictionary=' => 'resource', + ), + 'crack_getlastmessage' => + array ( + 0 => 'string', + ), + 'crack_opendict' => + array ( + 0 => 'false|resource', + 'dictionary' => 'string', + ), + 'crash' => + array ( + 0 => 'mixed', + ), + 'crc32' => + array ( + 0 => 'int', + 'string' => 'string', + ), + 'crypt' => + array ( + 0 => 'string', + 'string' => 'string', + 'salt' => 'string', + ), + 'ctype_alnum' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_alpha' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_cntrl' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_digit' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_graph' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_lower' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_print' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_punct' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_space' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_upper' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'ctype_xdigit' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'cubrid_affected_rows' => + array ( + 0 => 'int', + 'req_identifier=' => 'mixed', + ), + 'cubrid_bind' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'bind_param' => 'int', + 'bind_value' => 'mixed', + 'bind_value_type=' => 'string', + ), + 'cubrid_client_encoding' => + array ( + 0 => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_close' => + array ( + 0 => 'bool', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_close_prepare' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_close_request' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_col_get' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + ), + 'cubrid_col_size' => + array ( + 0 => 'int', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + ), + 'cubrid_column_names' => + array ( + 0 => 'array', + 'req_identifier' => 'resource', + ), + 'cubrid_column_types' => + array ( + 0 => 'array', + 'req_identifier' => 'resource', + ), + 'cubrid_commit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_connect' => + array ( + 0 => 'resource', + 'host' => 'string', + 'port' => 'int', + 'dbname' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_connect_with_url' => + array ( + 0 => 'resource', + 'conn_url' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_current_oid' => + array ( + 0 => 'string', + 'req_identifier' => 'resource', + ), + 'cubrid_data_seek' => + array ( + 0 => 'bool', + 'req_identifier' => 'mixed', + 'row_number' => 'int', + ), + 'cubrid_db_name' => + array ( + 0 => 'string', + 'result' => 'array', + 'index' => 'int', + ), + 'cubrid_db_parameter' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_disconnect' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_errno' => + array ( + 0 => 'int', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_error' => + array ( + 0 => 'string', + 'connection=' => 'mixed', + ), + 'cubrid_error_code' => + array ( + 0 => 'int', + ), + 'cubrid_error_code_facility' => + array ( + 0 => 'int', + ), + 'cubrid_error_msg' => + array ( + 0 => 'string', + ), + 'cubrid_execute' => + array ( + 0 => 'bool', + 'conn_identifier' => 'mixed', + 'sql' => 'string', + 'option=' => 'int', + 'request_identifier=' => 'mixed', + ), + 'cubrid_fetch' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'type=' => 'int', + ), + 'cubrid_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'type=' => 'int', + ), + 'cubrid_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'cubrid_fetch_lengths' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'class_name=' => 'string', + 'params=' => 'array', + ), + 'cubrid_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'cubrid_field_table' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_free_result' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_get' => + array ( + 0 => 'mixed', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr=' => 'mixed', + ), + 'cubrid_get_autocommit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_charset' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_class_name' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_get_client_info' => + array ( + 0 => 'string', + ), + 'cubrid_get_db_parameter' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_query_timeout' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_get_server_info' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + ), + 'cubrid_insert_id' => + array ( + 0 => 'string', + 'conn_identifier=' => 'resource', + ), + 'cubrid_is_instance' => + array ( + 0 => 'int', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_list_dbs' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_load_from_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + 'file_name' => 'string', + ), + 'cubrid_lob2_bind' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'bind_index' => 'int', + 'bind_value' => 'mixed', + 'bind_value_type=' => 'string', + ), + 'cubrid_lob2_close' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_export' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'file_name' => 'string', + ), + 'cubrid_lob2_import' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'file_name' => 'string', + ), + 'cubrid_lob2_new' => + array ( + 0 => 'resource', + 'conn_identifier=' => 'resource', + 'type=' => 'string', + ), + 'cubrid_lob2_read' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + 'length' => 'int', + ), + 'cubrid_lob2_seek' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'offset' => 'int', + 'origin=' => 'int', + ), + 'cubrid_lob2_seek64' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'offset' => 'string', + 'origin=' => 'int', + ), + 'cubrid_lob2_size' => + array ( + 0 => 'int', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_size64' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_tell' => + array ( + 0 => 'int', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_tell64' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_write' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'buf' => 'string', + ), + 'cubrid_lob_close' => + array ( + 0 => 'bool', + 'lob_identifier_array' => 'array', + ), + 'cubrid_lob_export' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'lob_identifier' => 'resource', + 'path_name' => 'string', + ), + 'cubrid_lob_get' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'sql' => 'string', + ), + 'cubrid_lob_send' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob_size' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lock_read' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_lock_write' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_move_cursor' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + 'offset' => 'int', + 'origin=' => 'int', + ), + 'cubrid_new_glo' => + array ( + 0 => 'string', + 'conn_identifier' => 'mixed', + 'class_name' => 'string', + 'file_name' => 'string', + ), + 'cubrid_next_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'cubrid_num_cols' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'cubrid_num_rows' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_pconnect' => + array ( + 0 => 'resource', + 'host' => 'string', + 'port' => 'int', + 'dbname' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_pconnect_with_url' => + array ( + 0 => 'resource', + 'conn_url' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_ping' => + array ( + 0 => 'bool', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_prepare' => + array ( + 0 => 'resource', + 'conn_identifier' => 'resource', + 'prepare_stmt' => 'string', + 'option=' => 'int', + ), + 'cubrid_put' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr=' => 'string', + 'value=' => 'mixed', + ), + 'cubrid_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_real_escape_string' => + array ( + 0 => 'string', + 'unescaped_string' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_result' => + array ( + 0 => 'string', + 'result' => 'resource', + 'row' => 'int', + 'field=' => 'mixed', + ), + 'cubrid_rollback' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_save_to_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + 'file_name' => 'string', + ), + 'cubrid_schema' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'schema_type' => 'int', + 'class_name=' => 'string', + 'attr_name=' => 'string', + ), + 'cubrid_send_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + ), + 'cubrid_seq_add' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'seq_element' => 'string', + ), + 'cubrid_seq_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + ), + 'cubrid_seq_insert' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + 'seq_element' => 'string', + ), + 'cubrid_seq_put' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + 'seq_element' => 'string', + ), + 'cubrid_set_add' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'set_element' => 'string', + ), + 'cubrid_set_autocommit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'mode' => 'bool', + ), + 'cubrid_set_db_parameter' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'param_type' => 'int', + 'param_value' => 'int', + ), + 'cubrid_set_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'set_element' => 'string', + ), + 'cubrid_set_query_timeout' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'timeout' => 'int', + ), + 'cubrid_unbuffered_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_version' => + array ( + 0 => 'string', + ), + 'curl_close' => + array ( + 0 => 'void', + 'handle' => 'CurlHandle', + ), + 'curl_copy_handle' => + array ( + 0 => 'CurlHandle|false', + 'handle' => 'CurlHandle', + ), + 'curl_errno' => + array ( + 0 => 'int', + 'handle' => 'CurlHandle', + ), + 'curl_error' => + array ( + 0 => 'string', + 'handle' => 'CurlHandle', + ), + 'curl_escape' => + array ( + 0 => 'false|string', + 'handle' => 'CurlHandle', + 'string' => 'string', + ), + 'curl_exec' => + array ( + 0 => 'bool|string', + 'handle' => 'CurlHandle', + ), + 'curl_file_create' => + array ( + 0 => 'CURLFile', + 'filename' => 'string', + 'mime_type=' => 'null|string', + 'posted_filename=' => 'null|string', + ), + 'curl_getinfo' => + array ( + 0 => 'mixed', + 'handle' => 'CurlHandle', + 'option=' => 'int|null', + ), + 'curl_init' => + array ( + 0 => 'CurlHandle|false', + 'url=' => 'null|string', + ), + 'curl_multi_add_handle' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'handle' => 'CurlHandle', + ), + 'curl_multi_close' => + array ( + 0 => 'void', + 'multi_handle' => 'CurlMultiHandle', + ), + 'curl_multi_errno' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + ), + 'curl_multi_exec' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + '&w_still_running' => 'int', + ), + 'curl_multi_getcontent' => + array ( + 0 => 'string', + 'handle' => 'CurlHandle', + ), + 'curl_multi_info_read' => + array ( + 0 => 'array|false', + 'multi_handle' => 'CurlMultiHandle', + '&w_queued_messages=' => 'int', + ), + 'curl_multi_init' => + array ( + 0 => 'CurlMultiHandle', + ), + 'curl_multi_remove_handle' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'handle' => 'CurlHandle', + ), + 'curl_multi_select' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'timeout=' => 'float', + ), + 'curl_multi_setopt' => + array ( + 0 => 'bool', + 'multi_handle' => 'CurlMultiHandle', + 'option' => 'int', + 'value' => 'mixed', + ), + 'curl_multi_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'curl_pause' => + array ( + 0 => 'int', + 'handle' => 'CurlHandle', + 'flags' => 'int', + ), + 'curl_reset' => + array ( + 0 => 'void', + 'handle' => 'CurlHandle', + ), + 'curl_setopt' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + 'option' => 'int', + 'value' => 'callable|mixed', + ), + 'curl_setopt_array' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + 'options' => 'array', + ), + 'curl_share_close' => + array ( + 0 => 'void', + 'share_handle' => 'CurlShareHandle', + ), + 'curl_share_errno' => + array ( + 0 => 'int', + 'share_handle' => 'CurlShareHandle', + ), + 'curl_share_init' => + array ( + 0 => 'CurlShareHandle', + ), + 'curl_share_setopt' => + array ( + 0 => 'bool', + 'share_handle' => 'CurlShareHandle', + 'option' => 'int', + 'value' => 'mixed', + ), + 'curl_share_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'curl_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'curl_upkeep' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + ), + 'curl_unescape' => + array ( + 0 => 'false|string', + 'handle' => 'CurlHandle', + 'string' => 'string', + ), + 'curl_version' => + array ( + 0 => 'array', + 'version=' => 'int', + ), + 'CURLFile::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mime_type=' => 'null|string', + 'posted_filename=' => 'null|string', + ), + 'CURLFile::getFilename' => + array ( + 0 => 'string', + ), + 'CURLFile::getMimeType' => + array ( + 0 => 'string', + ), + 'CURLFile::getPostFilename' => + array ( + 0 => 'string', + ), + 'CURLFile::setMimeType' => + array ( + 0 => 'void', + 'mime_type' => 'string', + ), + 'CURLFile::setPostFilename' => + array ( + 0 => 'void', + 'posted_filename' => 'string', + ), + 'CURLStringFile::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'postname' => 'string', + 'mime=' => 'string', + ), + 'current' => + array ( + 0 => 'false|mixed', + 'array' => 'array', + ), + 'cyrus_authenticate' => + array ( + 0 => 'void', + 'connection' => 'resource', + 'mechlist=' => 'string', + 'service=' => 'string', + 'user=' => 'string', + 'minssf=' => 'int', + 'maxssf=' => 'int', + 'authname=' => 'string', + 'password=' => 'string', + ), + 'cyrus_bind' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'callbacks' => 'array', + ), + 'cyrus_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'cyrus_connect' => + array ( + 0 => 'resource', + 'host=' => 'string', + 'port=' => 'string', + 'flags=' => 'int', + ), + 'cyrus_query' => + array ( + 0 => 'array', + 'connection' => 'resource', + 'query' => 'string', + ), + 'cyrus_unbind' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'trigger_name' => 'string', + ), + 'date' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + 'date_add' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'date_create' => + array ( + 0 => 'DateTime|false', + 'datetime=' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_from_format' => + array ( + 0 => 'DateTime|false', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_immutable' => + array ( + 0 => 'DateTimeImmutable|false', + 'datetime=' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_immutable_from_format' => + array ( + 0 => 'DateTimeImmutable|false', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_date_set' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + 'date_default_timezone_get' => + array ( + 0 => 'non-empty-string', + ), + 'date_default_timezone_set' => + array ( + 0 => 'bool', + 'timezoneId' => 'non-empty-string', + ), + 'date_diff' => + array ( + 0 => 'DateInterval', + 'baseObject' => 'DateTimeInterface', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'date_format' => + array ( + 0 => 'string', + 'object' => 'DateTimeInterface', + 'format' => 'string', + ), + 'date_get_last_errors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'date_interval_create_from_date_string' => + array ( + 0 => 'DateInterval', + 'datetime' => 'string', + ), + 'date_interval_format' => + array ( + 0 => 'string', + 'object' => 'DateInterval', + 'format' => 'string', + ), + 'date_isodate_set' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'year' => 'int', + 'week' => 'int', + 'dayOfWeek=' => 'int', + ), + 'date_modify' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'modifier' => 'string', + ), + 'date_offset_get' => + array ( + 0 => 'int', + 'object' => 'DateTimeInterface', + ), + 'date_parse' => + array ( + 0 => 'array', + 'datetime' => 'string', + ), + 'date_parse_from_format' => + array ( + 0 => 'array', + 'format' => 'string', + 'datetime' => 'string', + ), + 'date_sub' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'date_sun_info' => + array ( + 0 => 'array', + 'timestamp' => 'int', + 'latitude' => 'float', + 'longitude' => 'float', + ), + 'date_sunrise' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float|null', + 'longitude=' => 'float|null', + 'zenith=' => 'float|null', + 'utcOffset=' => 'float|null', + ), + 'date_sunset' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float|null', + 'longitude=' => 'float|null', + 'zenith=' => 'float|null', + 'utcOffset=' => 'float|null', + ), + 'date_time_set' => + array ( + 0 => 'DateTime', + 'object' => 'mixed', + 'hour' => 'mixed', + 'minute' => 'mixed', + 'second=' => 'mixed', + 'microsecond=' => 'mixed', + ), + 'date_timestamp_get' => + array ( + 0 => 'int', + 'object' => 'DateTimeInterface', + ), + 'date_timestamp_set' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'timestamp' => 'int', + ), + 'date_timezone_get' => + array ( + 0 => 'DateTimeZone|false', + 'object' => 'DateTimeInterface', + ), + 'date_timezone_set' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'timezone' => 'DateTimeZone', + ), + 'datefmt_create' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'datefmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + 'datetime' => 'DateTime|IntlCalendar|array|int', + ), + 'datefmt_format_object' => + array ( + 0 => 'false|string', + 'datetime' => 'object', + 'format=' => 'mixed', + 'locale=' => 'null|string', + ), + 'datefmt_get_calendar' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_calendar_object' => + array ( + 0 => 'IntlCalendar|false|null', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_datetype' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_locale' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + 'type=' => 'int', + ), + 'datefmt_get_pattern' => + array ( + 0 => 'string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timetype' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timezone' => + array ( + 0 => 'IntlTimeZone|false', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timezone_id' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_is_lenient' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_localtime' => + array ( + 0 => 'array|false', + 'formatter' => 'IntlDateFormatter', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'datefmt_parse' => + array ( + 0 => 'false|float|int', + 'formatter' => 'IntlDateFormatter', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'datefmt_set_calendar' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'calendar' => 'IntlCalendar|int|null', + ), + 'datefmt_set_lenient' => + array ( + 0 => 'void', + 'formatter' => 'IntlDateFormatter', + 'lenient' => 'bool', + ), + 'datefmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'pattern' => 'string', + ), + 'datefmt_set_timezone' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'DateInterval::__construct' => + array ( + 0 => 'void', + 'duration' => 'string', + ), + 'DateInterval::__set_state' => + array ( + 0 => 'DateInterval', + 'array' => 'array', + ), + 'DateInterval::__wakeup' => + array ( + 0 => 'void', + ), + 'DateInterval::createFromDateString' => + array ( + 0 => 'DateInterval|false', + 'datetime' => 'string', + ), + 'DateInterval::format' => + array ( + 0 => 'string', + 'format' => 'string', + ), + 'DatePeriod::__construct' => + array ( + 0 => 'void', + 'start' => 'DateTimeInterface', + 'interval' => 'DateInterval', + 'recur' => 'int', + 'options=' => 'int', + ), + 'DatePeriod::__construct\'1' => + array ( + 0 => 'void', + 'start' => 'DateTimeInterface', + 'interval' => 'DateInterval', + 'end' => 'DateTimeInterface', + 'options=' => 'int', + ), + 'DatePeriod::__construct\'2' => + array ( + 0 => 'void', + 'iso' => 'string', + 'options=' => 'int', + ), + 'DatePeriod::__wakeup' => + array ( + 0 => 'void', + ), + 'DatePeriod::getDateInterval' => + array ( + 0 => 'DateInterval', + ), + 'DatePeriod::getEndDate' => + array ( + 0 => 'DateTimeInterface|null', + ), + 'DatePeriod::getStartDate' => + array ( + 0 => 'DateTimeInterface', + ), + 'DateTime::__construct' => + array ( + 0 => 'void', + 'time=' => 'string', + ), + 'DateTime::__construct\'1' => + array ( + 0 => 'void', + 'time' => 'null|string', + 'timezone' => 'DateTimeZone|null', + ), + 'DateTime::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTime::add' => + array ( + 0 => 'static', + 'interval' => 'DateInterval', + ), + 'DateTime::createFromFormat' => + array ( + 0 => 'false|static', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'DateTime::createFromImmutable' => + array ( + 0 => 'static', + 'object' => 'DateTimeImmutable', + ), + 'DateTime::createFromInterface' => + array ( + 0 => 'static', + 'object' => 'DateTimeInterface', + ), + 'DateTime::diff' => + array ( + 0 => 'DateInterval', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'DateTime::format' => + array ( + 0 => 'string', + 'format' => 'string', + ), + 'DateTime::getLastErrors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'DateTime::getOffset' => + array ( + 0 => 'int', + ), + 'DateTime::getTimestamp' => + array ( + 0 => 'int', + ), + 'DateTime::getTimezone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'DateTime::modify' => + array ( + 0 => 'false|static', + 'modifier' => 'string', + ), + 'DateTime::setDate' => + array ( + 0 => 'static', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + 'DateTime::setISODate' => + array ( + 0 => 'static', + 'year' => 'int', + 'week' => 'int', + 'dayOfWeek=' => 'int', + ), + 'DateTime::setTime' => + array ( + 0 => 'static', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', + ), + 'DateTime::setTimestamp' => + array ( + 0 => 'static', + 'timestamp' => 'int', + ), + 'DateTime::setTimezone' => + array ( + 0 => 'static', + 'timezone' => 'DateTimeZone', + ), + 'DateTime::sub' => + array ( + 0 => 'static', + 'interval' => 'DateInterval', + ), + 'DateTimeImmutable::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTimeImmutable::createFromInterface' => + array ( + 0 => 'static', + 'object' => 'DateTimeInterface', + ), + 'DateTimeImmutable::getLastErrors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'DateTimeInterface::diff' => + array ( + 0 => 'DateInterval', + 'datetime2' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'DateTimeInterface::format' => + array ( + 0 => 'string', + 'format' => 'string', + ), + 'DateTimeInterface::getOffset' => + array ( + 0 => 'int', + ), + 'DateTimeInterface::getTimestamp' => + array ( + 0 => 'int', + ), + 'DateTimeInterface::getTimezone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'DateTimeInterface::__serialize' => + array ( + 0 => 'array', + ), + 'DateTimeInterface::__unserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + 'DateTimeZone::__construct' => + array ( + 0 => 'void', + 'timezone' => 'non-empty-string', + ), + 'DateTimeZone::__set_state' => + array ( + 0 => 'DateTimeZone', + 'array' => 'array', + ), + 'DateTimeZone::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTimeZone::getLocation' => + array ( + 0 => 'array|false', + ), + 'DateTimeZone::getName' => + array ( + 0 => 'non-empty-string', + ), + 'DateTimeZone::getOffset' => + array ( + 0 => 'int', + 'datetime' => 'DateTimeInterface', + ), + 'DateTimeZone::getTransitions' => + array ( + 0 => 'false|list', + 'timestampBegin=' => 'int', + 'timestampEnd=' => 'int', + ), + 'DateTimeZone::listAbbreviations' => + array ( + 0 => 'array>', + ), + 'DateTimeZone::listIdentifiers' => + array ( + 0 => 'list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + 'db2_autocommit' => + array ( + 0 => '0|1|bool', + 'connection' => 'resource', + 'value=' => '0|1', + ), + 'db2_bind_param' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'parameter_number' => 'int', + 'variable_name' => 'string', + 'parameter_type=' => 'int', + 'data_type=' => 'int', + 'precision=' => 'int', + 'scale=' => 'int', + ), + 'db2_client_info' => + array ( + 0 => 'false|stdClass', + 'connection' => 'resource', + ), + 'db2_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_column_privileges' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'column_name=' => 'null|string', + ), + 'db2_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'column_name=' => 'null|string', + ), + 'db2_commit' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_conn_error' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'db2_conn_errormsg' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'db2_connect' => + array ( + 0 => 'false|resource', + 'database' => 'string', + 'username' => 'null|string', + 'password' => 'null|string', + 'options=' => 'array', + ), + 'db2_cursor_type' => + array ( + 0 => 'int', + 'stmt' => 'resource', + ), + 'db2_escape_string' => + array ( + 0 => 'string', + 'string_literal' => 'string', + ), + 'db2_exec' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement' => 'string', + 'options=' => 'array', + ), + 'db2_execute' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'parameters=' => 'array', + ), + 'db2_fetch_array' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_assoc' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_both' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_object' => + array ( + 0 => 'false|stdClass', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_row' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_field_display_size' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_name' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_num' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_precision' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_scale' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_type' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_width' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_foreign_keys' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + ), + 'db2_free_result' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'db2_free_stmt' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'db2_get_option' => + array ( + 0 => 'false|string', + 'resource' => 'resource', + 'option' => 'string', + ), + 'db2_last_insert_id' => + array ( + 0 => 'null|string', + 'resource' => 'resource', + ), + 'db2_lob_read' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'colnum' => 'int', + 'length' => 'int', + ), + 'db2_next_result' => + array ( + 0 => 'false|resource', + 'stmt' => 'resource', + ), + 'db2_num_fields' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'db2_num_rows' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'db2_pclose' => + array ( + 0 => 'bool', + 'resource' => 'resource', + ), + 'db2_pconnect' => + array ( + 0 => 'false|resource', + 'database' => 'string', + 'username' => 'null|string', + 'password' => 'null|string', + 'options=' => 'array', + ), + 'db2_prepare' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement' => 'string', + 'options=' => 'array', + ), + 'db2_primary_keys' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + ), + 'db2_primarykeys' => + array ( + 0 => 'mixed', + ), + 'db2_procedure_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'procedure' => 'string', + 'parameter' => 'null|string', + ), + 'db2_procedurecolumns' => + array ( + 0 => 'mixed', + ), + 'db2_procedures' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'procedure' => 'string', + ), + 'db2_result' => + array ( + 0 => 'mixed', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_rollback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_server_info' => + array ( + 0 => 'false|stdClass', + 'connection' => 'resource', + ), + 'db2_set_option' => + array ( + 0 => 'bool', + 'resource' => 'resource', + 'options' => 'array', + 'type' => 'int', + ), + 'db2_setoption' => + array ( + 0 => 'mixed', + ), + 'db2_special_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'table_name' => 'string', + 'scope' => 'int', + ), + 'db2_specialcolumns' => + array ( + 0 => 'mixed', + ), + 'db2_statistics' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + 'unique' => 'bool', + ), + 'db2_stmt_error' => + array ( + 0 => 'string', + 'stmt=' => 'resource', + ), + 'db2_stmt_errormsg' => + array ( + 0 => 'string', + 'stmt=' => 'resource', + ), + 'db2_table_privileges' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + ), + 'db2_tableprivileges' => + array ( + 0 => 'mixed', + ), + 'db2_tables' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'table_type=' => 'null|string', + ), + 'dba_close' => + array ( + 0 => 'void', + 'dba' => 'resource', + ), + 'dba_delete' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'dba' => 'resource', + ), + 'dba_exists' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'dba' => 'resource', + ), + 'dba_fetch' => + array ( + 0 => 'false|string', + 'key' => 'array|string', + 'skip' => 'int', + 'dba' => 'resource', + ), + 'dba_fetch\'1' => + array ( + 0 => 'false|string', + 'key' => 'array|string', + 'skip' => 'resource', + ), + 'dba_firstkey' => + array ( + 0 => 'string', + 'dba' => 'resource', + ), + 'dba_handlers' => + array ( + 0 => 'array', + 'full_info=' => 'bool', + ), + 'dba_insert' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'value' => 'string', + 'dba' => 'resource', + ), + 'dba_key_split' => + array ( + 0 => 'array|false', + 'key' => 'false|null|string', + ), + 'dba_list' => + array ( + 0 => 'array', + ), + 'dba_nextkey' => + array ( + 0 => 'string', + 'dba' => 'resource', + ), + 'dba_open' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'null|string', + 'permission=' => 'int', + 'map_size=' => 'int', + 'flags=' => 'int|null', + ), + 'dba_optimize' => + array ( + 0 => 'bool', + 'dba' => 'resource', + ), + 'dba_popen' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'null|string', + 'permission=' => 'int', + 'map_size=' => 'int', + 'flags=' => 'int|null', + ), + 'dba_replace' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'value' => 'string', + 'dba' => 'resource', + ), + 'dba_sync' => + array ( + 0 => 'bool', + 'dba' => 'resource', + ), + 'dbase_add_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record' => 'array', + ), + 'dbase_close' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + ), + 'dbase_create' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'fields' => 'array', + ), + 'dbase_delete_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_get_header_info' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + ), + 'dbase_get_record' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_get_record_with_names' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_numfields' => + array ( + 0 => 'int', + 'dbase_identifier' => 'resource', + ), + 'dbase_numrecords' => + array ( + 0 => 'int', + 'dbase_identifier' => 'resource', + ), + 'dbase_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'int', + ), + 'dbase_pack' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + ), + 'dbase_replace_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record' => 'array', + 'record_number' => 'int', + ), + 'dbplus_add' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_aql' => + array ( + 0 => 'resource', + 'query' => 'string', + 'server=' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_chdir' => + array ( + 0 => 'string', + 'newdir=' => 'string', + ), + 'dbplus_close' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + ), + 'dbplus_curr' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_errcode' => + array ( + 0 => 'string', + 'errno=' => 'int', + ), + 'dbplus_errno' => + array ( + 0 => 'int', + ), + 'dbplus_find' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'constraints' => 'array', + 'tuple' => 'mixed', + ), + 'dbplus_first' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_flush' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_freealllocks' => + array ( + 0 => 'int', + ), + 'dbplus_freelock' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'string', + ), + 'dbplus_freerlocks' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_getlock' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'string', + ), + 'dbplus_getunique' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'uniqueid' => 'int', + ), + 'dbplus_info' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'key' => 'string', + 'result' => 'array', + ), + 'dbplus_last' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_lockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_next' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_open' => + array ( + 0 => 'resource', + 'name' => 'string', + ), + 'dbplus_prev' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_rchperm' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'mask' => 'int', + 'user' => 'string', + 'group' => 'string', + ), + 'dbplus_rcreate' => + array ( + 0 => 'resource', + 'name' => 'string', + 'domlist' => 'mixed', + 'overwrite=' => 'bool', + ), + 'dbplus_rcrtexact' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'relation' => 'resource', + 'overwrite=' => 'bool', + ), + 'dbplus_rcrtlike' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'relation' => 'resource', + 'overwrite=' => 'int', + ), + 'dbplus_resolve' => + array ( + 0 => 'array', + 'relation_name' => 'string', + ), + 'dbplus_restorepos' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_rkeys' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + 'domlist' => 'mixed', + ), + 'dbplus_ropen' => + array ( + 0 => 'resource', + 'name' => 'string', + ), + 'dbplus_rquery' => + array ( + 0 => 'resource', + 'query' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_rrename' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'name' => 'string', + ), + 'dbplus_rsecindex' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + 'domlist' => 'mixed', + 'type' => 'int', + ), + 'dbplus_runlink' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_rzap' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_savepos' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_setindex' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'idx_name' => 'string', + ), + 'dbplus_setindexbynumber' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'idx_number' => 'int', + ), + 'dbplus_sql' => + array ( + 0 => 'resource', + 'query' => 'string', + 'server=' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_tcl' => + array ( + 0 => 'string', + 'sid' => 'int', + 'script' => 'string', + ), + 'dbplus_tremove' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + 'current=' => 'array', + ), + 'dbplus_undo' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_undoprepare' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_unlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_unselect' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_update' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'old' => 'array', + 'new' => 'array', + ), + 'dbplus_xlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_xunlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbx_close' => + array ( + 0 => 'int', + 'link_identifier' => 'object', + ), + 'dbx_compare' => + array ( + 0 => 'int', + 'row_a' => 'array', + 'row_b' => 'array', + 'column_key' => 'string', + 'flags=' => 'int', + ), + 'dbx_connect' => + array ( + 0 => 'object', + 'module' => 'mixed', + 'host' => 'string', + 'database' => 'string', + 'username' => 'string', + 'password' => 'string', + 'persistent=' => 'int', + ), + 'dbx_error' => + array ( + 0 => 'string', + 'link_identifier' => 'object', + ), + 'dbx_escape_string' => + array ( + 0 => 'string', + 'link_identifier' => 'object', + 'text' => 'string', + ), + 'dbx_fetch_row' => + array ( + 0 => 'mixed', + 'result_identifier' => 'object', + ), + 'dbx_query' => + array ( + 0 => 'mixed', + 'link_identifier' => 'object', + 'sql_statement' => 'string', + 'flags=' => 'int', + ), + 'dbx_sort' => + array ( + 0 => 'bool', + 'result' => 'object', + 'user_compare_function' => 'string', + ), + 'dcgettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'message' => 'string', + 'category' => 'int', + ), + 'dcngettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + 'category' => 'int', + ), + 'deaggregate' => + array ( + 0 => 'mixed', + 'object' => 'object', + 'class_name=' => 'string', + ), + 'debug_backtrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, object?: object, type?: string}>', + 'options=' => 'int', + 'limit=' => 'int', + ), + 'debug_print_backtrace' => + array ( + 0 => 'void', + 'options=' => 'int', + 'limit=' => 'int', + ), + 'debug_zval_dump' => + array ( + 0 => 'void', + 'value' => 'mixed', + '...values=' => 'mixed', + ), + 'debugger_connect' => + array ( + 0 => 'mixed', + ), + 'debugger_connector_pid' => + array ( + 0 => 'mixed', + ), + 'debugger_get_server_start_time' => + array ( + 0 => 'mixed', + ), + 'debugger_print' => + array ( + 0 => 'mixed', + ), + 'debugger_start_debug' => + array ( + 0 => 'mixed', + ), + 'decbin' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'dechex' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'decoct' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'define' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'array|null|scalar', + 'case_insensitive=' => 'false', + ), + 'define_syslog_variables' => + array ( + 0 => 'void', + ), + 'defined' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + ), + 'deflate_add' => + array ( + 0 => 'false|string', + 'context' => 'DeflateContext', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'deflate_init' => + array ( + 0 => 'DeflateContext|false', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'deg2rad' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'dgettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'message' => 'string', + ), + 'dio_close' => + array ( + 0 => 'void', + 'fd' => 'resource', + ), + 'dio_fcntl' => + array ( + 0 => 'mixed', + 'fd' => 'resource', + 'cmd' => 'int', + 'args=' => 'mixed', + ), + 'dio_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'flags' => 'int', + 'mode=' => 'int', + ), + 'dio_read' => + array ( + 0 => 'string', + 'fd' => 'resource', + 'length=' => 'int', + ), + 'dio_seek' => + array ( + 0 => 'int', + 'fd' => 'resource', + 'pos' => 'int', + 'whence=' => 'int', + ), + 'dio_stat' => + array ( + 0 => 'array|null', + 'fd' => 'resource', + ), + 'dio_tcsetattr' => + array ( + 0 => 'bool', + 'fd' => 'resource', + 'options' => 'array', + ), + 'dio_truncate' => + array ( + 0 => 'bool', + 'fd' => 'resource', + 'offset' => 'int', + ), + 'dio_write' => + array ( + 0 => 'int', + 'fd' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'dir' => + array ( + 0 => 'Directory|false', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'Directory::close' => + array ( + 0 => 'void', + ), + 'Directory::read' => + array ( + 0 => 'false|string', + ), + 'Directory::rewind' => + array ( + 0 => 'void', + ), + 'DirectoryIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'DirectoryIterator::__toString' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::current' => + array ( + 0 => 'DirectoryIterator', + ), + 'DirectoryIterator::getATime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'DirectoryIterator::getCTime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getExtension' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'DirectoryIterator::getFilename' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getGroup' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getInode' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getMTime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getOwner' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getPath' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'DirectoryIterator::getPathname' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getPerms' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'DirectoryIterator::getSize' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getType' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::isDir' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isDot' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isFile' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isLink' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::key' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::next' => + array ( + 0 => 'void', + ), + 'DirectoryIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'DirectoryIterator::rewind' => + array ( + 0 => 'void', + ), + 'DirectoryIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'DirectoryIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'DirectoryIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'DirectoryIterator::valid' => + array ( + 0 => 'bool', + ), + 'dirname' => + array ( + 0 => 'string', + 'path' => 'string', + 'levels=' => 'int<1, max>', + ), + 'disk_free_space' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'disk_total_space' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'diskfreespace' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'display_disabled_function' => + array ( + 0 => 'mixed', + ), + 'dl' => + array ( + 0 => 'bool', + 'extension_filename' => 'string', + ), + 'dngettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + ), + 'dns_check_record' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'type=' => 'string', + ), + 'dns_get_mx' => + array ( + 0 => 'bool', + 'hostname' => 'string', + '&w_hosts' => 'array', + '&w_weights=' => 'array', + ), + 'dns_get_record' => + array ( + 0 => 'false|list>', + 'hostname' => 'string', + 'type=' => 'int', + '&w_authoritative_name_servers=' => 'array', + '&w_additional_records=' => 'array', + 'raw=' => 'bool', + ), + 'dom_document_relaxNG_validate_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'dom_document_relaxNG_validate_xml' => + array ( + 0 => 'bool', + 'source' => 'string', + ), + 'dom_document_schema_validate' => + array ( + 0 => 'bool', + 'source' => 'string', + 'flags' => 'int', + ), + 'dom_document_schema_validate_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + ), + 'dom_document_xinclude' => + array ( + 0 => 'int', + 'options' => 'int', + ), + 'dom_import_simplexml' => + array ( + 0 => 'DOMElement', + 'node' => 'SimpleXMLElement', + ), + 'dom_xpath_evaluate' => + array ( + 0 => 'mixed', + 'expr' => 'string', + 'context' => 'DOMNode', + 'registernodens' => 'bool', + ), + 'dom_xpath_query' => + array ( + 0 => 'DOMNodeList', + 'expr' => 'string', + 'context' => 'DOMNode', + 'registernodens' => 'bool', + ), + 'dom_xpath_register_ns' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'uri' => 'string', + ), + 'dom_xpath_register_php_functions' => + array ( + 0 => 'mixed', + ), + 'DomainException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'DomainException::__toString' => + array ( + 0 => 'string', + ), + 'DomainException::__wakeup' => + array ( + 0 => 'void', + ), + 'DomainException::getCode' => + array ( + 0 => 'int', + ), + 'DomainException::getFile' => + array ( + 0 => 'string', + ), + 'DomainException::getLine' => + array ( + 0 => 'int', + ), + 'DomainException::getMessage' => + array ( + 0 => 'string', + ), + 'DomainException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'DomainException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'DomainException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'DOMAttr::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'DOMAttr::getLineNo' => + array ( + 0 => 'int', + ), + 'DOMAttr::getNodePath' => + array ( + 0 => 'null|string', + ), + 'DOMAttr::hasAttributes' => + array ( + 0 => 'bool', + ), + 'DOMAttr::hasChildNodes' => + array ( + 0 => 'bool', + ), + 'DOMAttr::insertBefore' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child=' => 'DOMNode|null', + ), + 'DOMAttr::isDefaultNamespace' => + array ( + 0 => 'bool', + 'namespace' => 'string', + ), + 'DOMAttr::isId' => + array ( + 0 => 'bool', + ), + 'DOMAttr::isSameNode' => + array ( + 0 => 'bool', + 'otherNode' => 'DOMNode', + ), + 'DOMAttr::isSupported' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMAttr::lookupNamespaceUri' => + array ( + 0 => 'null|string', + 'prefix' => 'null|string', + ), + 'DOMAttr::lookupPrefix' => + array ( + 0 => 'null|string', + 'namespace' => 'string', + ), + 'DOMAttr::normalize' => + array ( + 0 => 'void', + ), + 'DOMAttr::removeChild' => + array ( + 0 => 'DOMNode|false', + 'child' => 'DOMNode', + ), + 'DOMAttr::replaceChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child' => 'DOMNode', + ), + 'DomAttribute::name' => + array ( + 0 => 'string', + ), + 'DomAttribute::set_value' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'DomAttribute::specified' => + array ( + 0 => 'bool', + ), + 'DomAttribute::value' => + array ( + 0 => 'string', + ), + 'DOMCdataSection::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'DOMCharacterData::appendData' => + array ( + 0 => 'true', + 'data' => 'string', + ), + 'DOMCharacterData::deleteData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'count' => 'int', + ), + 'DOMCharacterData::insertData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'data' => 'string', + ), + 'DOMCharacterData::replaceData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'count' => 'int', + 'data' => 'string', + ), + 'DOMCharacterData::substringData' => + array ( + 0 => 'string', + 'offset' => 'int', + 'count' => 'int', + ), + 'DOMComment::__construct' => + array ( + 0 => 'void', + 'data=' => 'string', + ), + 'DOMDocument::__construct' => + array ( + 0 => 'void', + 'version=' => 'string', + 'encoding=' => 'string', + ), + 'DOMDocument::createAttribute' => + array ( + 0 => 'DOMAttr|false', + 'localName' => 'string', + ), + 'DOMDocument::createAttributeNS' => + array ( + 0 => 'DOMAttr|false', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + ), + 'DOMDocument::createCDATASection' => + array ( + 0 => 'DOMCDATASection|false', + 'data' => 'string', + ), + 'DOMDocument::createComment' => + array ( + 0 => 'DOMComment', + 'data' => 'string', + ), + 'DOMDocument::createDocumentFragment' => + array ( + 0 => 'DOMDocumentFragment', + ), + 'DOMDocument::createElement' => + array ( + 0 => 'DOMElement|false', + 'localName' => 'string', + 'value=' => 'string', + ), + 'DOMDocument::createElementNS' => + array ( + 0 => 'DOMElement|false', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + 'value=' => 'string', + ), + 'DOMDocument::createEntityReference' => + array ( + 0 => 'DOMEntityReference|false', + 'name' => 'string', + ), + 'DOMDocument::createProcessingInstruction' => + array ( + 0 => 'DOMProcessingInstruction|false', + 'target' => 'string', + 'data=' => 'string', + ), + 'DOMDocument::createTextNode' => + array ( + 0 => 'DOMText', + 'data' => 'string', + ), + 'DOMDocument::getElementById' => + array ( + 0 => 'DOMElement|null', + 'elementId' => 'string', + ), + 'DOMDocument::getElementsByTagName' => + array ( + 0 => 'DOMNodeList', + 'qualifiedName' => 'string', + ), + 'DOMDocument::getElementsByTagNameNS' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMDocument::importNode' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'deep=' => 'bool', + ), + 'DOMDocument::load' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::loadHTML' => + array ( + 0 => 'bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'DOMDocument::loadHTMLFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::loadXML' => + array ( + 0 => 'bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'DOMDocument::normalizeDocument' => + array ( + 0 => 'void', + ), + 'DOMDocument::registerNodeClass' => + array ( + 0 => 'bool', + 'baseClass' => 'string', + 'extendedClass' => 'null|string', + ), + 'DOMDocument::relaxNGValidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'DOMDocument::relaxNGValidateSource' => + array ( + 0 => 'bool', + 'source' => 'string', + ), + 'DOMDocument::save' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::saveHTML' => + array ( + 0 => 'false|string', + 'node=' => 'DOMNode|null', + ), + 'DOMDocument::saveHTMLFile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'DOMDocument::saveXML' => + array ( + 0 => 'false|string', + 'node=' => 'DOMNode|null', + 'options=' => 'int', + ), + 'DOMDocument::schemaValidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'DOMDocument::schemaValidateSource' => + array ( + 0 => 'bool', + 'source' => 'string', + 'flags=' => 'int', + ), + 'DOMDocument::validate' => + array ( + 0 => 'bool', + ), + 'DOMDocument::xinclude' => + array ( + 0 => 'int', + 'options=' => 'int', + ), + 'DOMDocumentFragment::__construct' => + array ( + 0 => 'void', + ), + 'DOMDocumentFragment::appendXML' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'DOMElement::__construct' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'value=' => 'null|string', + 'namespace=' => 'string', + ), + 'DOMElement::getAttribute' => + array ( + 0 => 'string', + 'qualifiedName' => 'string', + ), + 'DOMElement::getAttributeNode' => + array ( + 0 => 'DOMAttr', + 'qualifiedName' => 'string', + ), + 'DOMElement::getAttributeNodeNS' => + array ( + 0 => 'DOMAttr', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::getAttributeNS' => + array ( + 0 => 'string', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::getElementsByTagName' => + array ( + 0 => 'DOMNodeList', + 'qualifiedName' => 'string', + ), + 'DOMElement::getElementsByTagNameNS' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::hasAttribute' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'DOMElement::hasAttributeNS' => + array ( + 0 => 'bool', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::removeAttribute' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'DOMElement::removeAttributeNode' => + array ( + 0 => 'DOMAttr|false', + 'attr' => 'DOMAttr', + ), + 'DOMElement::removeAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::setAttribute' => + array ( + 0 => 'DOMAttr|false', + 'qualifiedName' => 'string', + 'value' => 'string', + ), + 'DOMElement::setAttributeNode' => + array ( + 0 => 'DOMAttr|null', + 'attr' => 'DOMAttr', + ), + 'DOMElement::setAttributeNodeNS' => + array ( + 0 => 'DOMAttr', + 'attr' => 'DOMAttr', + ), + 'DOMElement::setAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + 'value' => 'string', + ), + 'DOMElement::setIdAttribute' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'isId' => 'bool', + ), + 'DOMElement::setIdAttributeNode' => + array ( + 0 => 'void', + 'attr' => 'DOMAttr', + 'isId' => 'bool', + ), + 'DOMElement::setIdAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'string', + 'qualifiedName' => 'string', + 'isId' => 'bool', + ), + 'DOMEntityReference::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'DOMImplementation::__construct' => + array ( + 0 => 'void', + ), + 'DOMImplementation::createDocument' => + array ( + 0 => 'DOMDocument|false', + 'namespace=' => 'null|string', + 'qualifiedName=' => 'string', + 'doctype=' => 'DOMDocumentType|null', + ), + 'DOMImplementation::createDocumentType' => + array ( + 0 => 'DOMDocumentType|false', + 'qualifiedName' => 'string', + 'publicId=' => 'string', + 'systemId=' => 'string', + ), + 'DOMImplementation::hasFeature' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMNamedNodeMap::count' => + array ( + 0 => 'int', + ), + 'DOMNamedNodeMap::getNamedItem' => + array ( + 0 => 'DOMNode|null', + 'qualifiedName' => 'string', + ), + 'DOMNamedNodeMap::getNamedItemNS' => + array ( + 0 => 'DOMNode|null', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMNamedNodeMap::item' => + array ( + 0 => 'DOMNode|null', + 'index' => 'int', + ), + 'DOMNode::appendChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + ), + 'DOMNode::C14N' => + array ( + 0 => 'false|string', + 'exclusive=' => 'bool', + 'withComments=' => 'bool', + 'xpath=' => 'array|null', + 'nsPrefixes=' => 'array|null', + ), + 'DOMNode::C14NFile' => + array ( + 0 => 'false|int', + 'uri' => 'string', + 'exclusive=' => 'bool', + 'withComments=' => 'bool', + 'xpath=' => 'array|null', + 'nsPrefixes=' => 'array|null', + ), + 'DOMNode::cloneNode' => + array ( + 0 => 'DOMNode', + 'deep=' => 'bool', + ), + 'DOMNode::getLineNo' => + array ( + 0 => 'int', + ), + 'DOMNode::getNodePath' => + array ( + 0 => 'null|string', + ), + 'DOMNode::hasAttributes' => + array ( + 0 => 'bool', + ), + 'DOMNode::hasChildNodes' => + array ( + 0 => 'bool', + ), + 'DOMNode::insertBefore' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child=' => 'DOMNode|null', + ), + 'DOMNode::isDefaultNamespace' => + array ( + 0 => 'bool', + 'namespace' => 'string', + ), + 'DOMNode::isSameNode' => + array ( + 0 => 'bool', + 'otherNode' => 'DOMNode', + ), + 'DOMNode::isSupported' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMNode::lookupNamespaceURI' => + array ( + 0 => 'null|string', + 'prefix' => 'null|string', + ), + 'DOMNode::lookupPrefix' => + array ( + 0 => 'null|string', + 'namespace' => 'string', + ), + 'DOMNode::normalize' => + array ( + 0 => 'void', + ), + 'DOMNode::removeChild' => + array ( + 0 => 'DOMNode|false', + 'child' => 'DOMNode', + ), + 'DOMNode::replaceChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child' => 'DOMNode', + ), + 'DOMNodeList::count' => + array ( + 0 => 'int', + ), + 'DOMNodeList::item' => + array ( + 0 => 'DOMNode|null', + 'index' => 'int', + ), + 'DOMProcessingInstruction::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'DOMText::__construct' => + array ( + 0 => 'void', + 'data=' => 'string', + ), + 'DOMText::isElementContentWhitespace' => + array ( + 0 => 'bool', + ), + 'DOMText::isWhitespaceInElementContent' => + array ( + 0 => 'bool', + ), + 'DOMText::splitText' => + array ( + 0 => 'DOMText', + 'offset' => 'int', + ), + 'domxml_new_doc' => + array ( + 0 => 'DomDocument', + 'version' => 'string', + ), + 'domxml_open_file' => + array ( + 0 => 'DomDocument', + 'filename' => 'string', + 'mode=' => 'int', + 'error=' => 'array', + ), + 'domxml_open_mem' => + array ( + 0 => 'DomDocument', + 'string' => 'string', + 'mode=' => 'int', + 'error=' => 'array', + ), + 'domxml_version' => + array ( + 0 => 'string', + ), + 'domxml_xmltree' => + array ( + 0 => 'DomDocument', + 'string' => 'string', + ), + 'domxml_xslt_stylesheet' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_buf' => 'string', + ), + 'domxml_xslt_stylesheet_doc' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_doc' => 'DOMDocument', + ), + 'domxml_xslt_stylesheet_file' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_file' => 'string', + ), + 'domxml_xslt_version' => + array ( + 0 => 'int', + ), + 'DOMXPath::__construct' => + array ( + 0 => 'void', + 'document' => 'DOMDocument', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::evaluate' => + array ( + 0 => 'mixed', + 'expression' => 'string', + 'contextNode=' => 'DOMNode|null', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::query' => + array ( + 0 => 'DOMNodeList|false', + 'expression' => 'string', + 'contextNode=' => 'DOMNode|null', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::registerNamespace' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'DOMXPath::registerPhpFunctions' => + array ( + 0 => 'void', + 'restrict=' => 'array|null|string', + ), + 'DomXsltStylesheet::process' => + array ( + 0 => 'DomDocument', + 'xml_doc' => 'DOMDocument', + 'xslt_params=' => 'array', + 'is_xpath_param=' => 'bool', + 'profile_filename=' => 'string', + ), + 'DomXsltStylesheet::result_dump_file' => + array ( + 0 => 'string', + 'xmldoc' => 'DOMDocument', + 'filename' => 'string', + ), + 'DomXsltStylesheet::result_dump_mem' => + array ( + 0 => 'string', + 'xmldoc' => 'DOMDocument', + ), + 'DOTNET::__call' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'args' => 'mixed', + ), + 'DOTNET::__construct' => + array ( + 0 => 'void', + 'assembly_name' => 'string', + 'datatype_name' => 'string', + 'codepage=' => 'int', + ), + 'DOTNET::__get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'DOTNET::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'dotnet_load' => + array ( + 0 => 'int', + 'assembly_name' => 'string', + 'datatype_name=' => 'string', + 'codepage=' => 'int', + ), + 'doubleval' => + array ( + 0 => 'float', + 'value' => 'mixed', + ), + 'Ds\\Collection::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Collection::copy' => + array ( + 0 => 'Ds\\Collection', + ), + 'Ds\\Collection::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Collection::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Deque::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Deque::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Deque::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Deque::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Deque::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Deque::copy' => + array ( + 0 => 'Ds\\Deque', + ), + 'Ds\\Deque::count' => + array ( + 0 => 'int', + ), + 'Ds\\Deque::filter' => + array ( + 0 => 'Ds\\Deque', + 'callback=' => 'callable', + ), + 'Ds\\Deque::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Deque::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::get' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'Ds\\Deque::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Deque::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Deque::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Deque::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::map' => + array ( + 0 => 'Ds\\Deque', + 'callback' => 'callable', + ), + 'Ds\\Deque::merge' => + array ( + 0 => 'Ds\\Deque', + 'values' => 'mixed', + ), + 'Ds\\Deque::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Deque::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Deque::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Deque::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Deque::reversed' => + array ( + 0 => 'Ds\\Deque', + ), + 'Ds\\Deque::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Deque::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Deque::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::slice' => + array ( + 0 => 'Ds\\Deque', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Deque::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Deque::sorted' => + array ( + 0 => 'Ds\\Deque', + 'comparator=' => 'callable', + ), + 'Ds\\Deque::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Deque::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Hashable::equals' => + array ( + 0 => 'bool', + 'object' => 'mixed', + ), + 'Ds\\Hashable::hash' => + array ( + 0 => 'mixed', + ), + 'Ds\\Map::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Map::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Map::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Map::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Map::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Map::copy' => + array ( + 0 => 'Ds\\Map', + ), + 'Ds\\Map::count' => + array ( + 0 => 'int', + ), + 'Ds\\Map::diff' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::filter' => + array ( + 0 => 'Ds\\Map', + 'callback=' => 'callable', + ), + 'Ds\\Map::first' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Map::get' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'default=' => 'mixed', + ), + 'Ds\\Map::hasKey' => + array ( + 0 => 'bool', + 'key' => 'mixed', + ), + 'Ds\\Map::hasValue' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'Ds\\Map::intersect' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Map::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Map::keys' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Map::ksort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Map::ksorted' => + array ( + 0 => 'Ds\\Map', + 'comparator=' => 'callable', + ), + 'Ds\\Map::last' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Map::map' => + array ( + 0 => 'Ds\\Map', + 'callback' => 'callable', + ), + 'Ds\\Map::merge' => + array ( + 0 => 'Ds\\Map', + 'values' => 'mixed', + ), + 'Ds\\Map::pairs' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Map::put' => + array ( + 0 => 'void', + 'key' => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Map::putAll' => + array ( + 0 => 'void', + 'values' => 'mixed', + ), + 'Ds\\Map::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Map::remove' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'default=' => 'mixed', + ), + 'Ds\\Map::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Map::reversed' => + array ( + 0 => 'Ds\\Map', + ), + 'Ds\\Map::skip' => + array ( + 0 => 'Ds\\Pair', + 'position' => 'int', + ), + 'Ds\\Map::slice' => + array ( + 0 => 'Ds\\Map', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Map::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Map::sorted' => + array ( + 0 => 'Ds\\Map', + 'comparator=' => 'callable', + ), + 'Ds\\Map::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Map::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Map::union' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::values' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Map::xor' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Pair::__construct' => + array ( + 0 => 'void', + 'key=' => 'mixed', + 'value=' => 'mixed', + ), + 'Ds\\Pair::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Pair::copy' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Pair::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Pair::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Pair::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\PriorityQueue::__construct' => + array ( + 0 => 'void', + ), + 'Ds\\PriorityQueue::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\PriorityQueue::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\PriorityQueue::clear' => + array ( + 0 => 'void', + ), + 'Ds\\PriorityQueue::copy' => + array ( + 0 => 'Ds\\PriorityQueue', + ), + 'Ds\\PriorityQueue::count' => + array ( + 0 => 'int', + ), + 'Ds\\PriorityQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\PriorityQueue::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\PriorityQueue::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\PriorityQueue::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\PriorityQueue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'priority' => 'int', + ), + 'Ds\\PriorityQueue::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Queue::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Queue::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Queue::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Queue::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Queue::copy' => + array ( + 0 => 'Ds\\Queue', + ), + 'Ds\\Queue::count' => + array ( + 0 => 'int', + ), + 'Ds\\Queue::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Queue::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Queue::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\Queue::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Queue::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Queue::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Sequence::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Sequence::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Sequence::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Sequence::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::filter' => + array ( + 0 => 'Ds\\Sequence', + 'callback=' => 'callable', + ), + 'Ds\\Sequence::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Sequence::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Sequence::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Sequence::last' => + array ( + 0 => 'void', + ), + 'Ds\\Sequence::map' => + array ( + 0 => 'Ds\\Sequence', + 'callback' => 'callable', + ), + 'Ds\\Sequence::merge' => + array ( + 0 => 'Ds\\Sequence', + 'values' => 'mixed', + ), + 'Ds\\Sequence::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Sequence::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Sequence::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Sequence::reversed' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Sequence::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Sequence::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Sequence::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::slice' => + array ( + 0 => 'Ds\\Sequence', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Sequence::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Sequence::sorted' => + array ( + 0 => 'Ds\\Sequence', + 'comparator=' => 'callable', + ), + 'Ds\\Sequence::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Sequence::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Set::add' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Set::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Set::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Set::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Set::copy' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Set::count' => + array ( + 0 => 'int', + ), + 'Ds\\Set::diff' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::filter' => + array ( + 0 => 'Ds\\Set', + 'callback=' => 'callable', + ), + 'Ds\\Set::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Set::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Set::intersect' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Set::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Set::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Set::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Set::merge' => + array ( + 0 => 'Ds\\Set', + 'values' => 'mixed', + ), + 'Ds\\Set::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Set::remove' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Set::reversed' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Set::slice' => + array ( + 0 => 'Ds\\Set', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Set::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Set::sorted' => + array ( + 0 => 'Ds\\Set', + 'comparator=' => 'callable', + ), + 'Ds\\Set::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Set::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Set::union' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::xor' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Stack::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Stack::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Stack::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Stack::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Stack::copy' => + array ( + 0 => 'Ds\\Stack', + ), + 'Ds\\Stack::count' => + array ( + 0 => 'int', + ), + 'Ds\\Stack::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Stack::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Stack::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\Stack::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Stack::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Stack::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Vector::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Vector::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Vector::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Vector::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Vector::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Vector::copy' => + array ( + 0 => 'Ds\\Vector', + ), + 'Ds\\Vector::count' => + array ( + 0 => 'int', + ), + 'Ds\\Vector::filter' => + array ( + 0 => 'Ds\\Vector', + 'callback=' => 'callable', + ), + 'Ds\\Vector::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Vector::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Vector::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Vector::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Vector::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Vector::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::map' => + array ( + 0 => 'Ds\\Vector', + 'callback' => 'callable', + ), + 'Ds\\Vector::merge' => + array ( + 0 => 'Ds\\Vector', + 'values' => 'mixed', + ), + 'Ds\\Vector::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Vector::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Vector::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Vector::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Vector::reversed' => + array ( + 0 => 'Ds\\Vector', + ), + 'Ds\\Vector::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Vector::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Vector::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::slice' => + array ( + 0 => 'Ds\\Vector', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Vector::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Vector::sorted' => + array ( + 0 => 'Ds\\Vector', + 'comparator=' => 'callable', + ), + 'Ds\\Vector::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Vector::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'easter_date' => + array ( + 0 => 'int', + 'year=' => 'int|null', + 'mode=' => 'int', + ), + 'easter_days' => + array ( + 0 => 'int', + 'year=' => 'int|null', + 'mode=' => 'int', + ), + 'echo' => + array ( + 0 => 'void', + 'arg1' => 'string', + '...args=' => 'string', + ), + 'eio_busy' => + array ( + 0 => 'resource', + 'delay' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_cancel' => + array ( + 0 => 'void', + 'req' => 'resource', + ), + 'eio_chmod' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_chown' => + array ( + 0 => 'resource', + 'path' => 'string', + 'uid' => 'int', + 'gid=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_close' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_custom' => + array ( + 0 => 'resource', + 'execute' => 'callable', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_dup2' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'fd2' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_event_loop' => + array ( + 0 => 'bool', + ), + 'eio_fallocate' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'mode' => 'int', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fchmod' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fchown' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'uid' => 'int', + 'gid=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fdatasync' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fstat' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fstatvfs' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fsync' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_ftruncate' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_futime' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'atime' => 'float', + 'mtime' => 'float', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_get_event_stream' => + array ( + 0 => 'mixed', + ), + 'eio_get_last_error' => + array ( + 0 => 'string', + 'req' => 'resource', + ), + 'eio_grp' => + array ( + 0 => 'resource', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_grp_add' => + array ( + 0 => 'void', + 'grp' => 'resource', + 'req' => 'resource', + ), + 'eio_grp_cancel' => + array ( + 0 => 'void', + 'grp' => 'resource', + ), + 'eio_grp_limit' => + array ( + 0 => 'void', + 'grp' => 'resource', + 'limit' => 'int', + ), + 'eio_init' => + array ( + 0 => 'void', + ), + 'eio_link' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_lstat' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_mkdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_mknod' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'dev' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_nop' => + array ( + 0 => 'resource', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_npending' => + array ( + 0 => 'int', + ), + 'eio_nready' => + array ( + 0 => 'int', + ), + 'eio_nreqs' => + array ( + 0 => 'int', + ), + 'eio_nthreads' => + array ( + 0 => 'int', + ), + 'eio_open' => + array ( + 0 => 'resource', + 'path' => 'string', + 'flags' => 'int', + 'mode' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_poll' => + array ( + 0 => 'int', + ), + 'eio_read' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'length' => 'int', + 'offset' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_readahead' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_readdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'flags' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_readlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_realpath' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_rename' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_rmdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_seek' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'whence' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sendfile' => + array ( + 0 => 'resource', + 'out_fd' => 'mixed', + 'in_fd' => 'mixed', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'string', + ), + 'eio_set_max_idle' => + array ( + 0 => 'void', + 'nthreads' => 'int', + ), + 'eio_set_max_parallel' => + array ( + 0 => 'void', + 'nthreads' => 'int', + ), + 'eio_set_max_poll_reqs' => + array ( + 0 => 'void', + 'nreqs' => 'int', + ), + 'eio_set_max_poll_time' => + array ( + 0 => 'void', + 'nseconds' => 'float', + ), + 'eio_set_min_parallel' => + array ( + 0 => 'void', + 'nthreads' => 'string', + ), + 'eio_stat' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_statvfs' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_symlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sync' => + array ( + 0 => 'resource', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sync_file_range' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'nbytes' => 'int', + 'flags' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_syncfs' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_truncate' => + array ( + 0 => 'resource', + 'path' => 'string', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_unlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_utime' => + array ( + 0 => 'resource', + 'path' => 'string', + 'atime' => 'float', + 'mtime' => 'float', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_write' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'string' => 'string', + 'length=' => 'int', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'empty' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'EmptyIterator::current' => + array ( + 0 => 'never', + ), + 'EmptyIterator::key' => + array ( + 0 => 'never', + ), + 'EmptyIterator::next' => + array ( + 0 => 'void', + ), + 'EmptyIterator::rewind' => + array ( + 0 => 'void', + ), + 'EmptyIterator::valid' => + array ( + 0 => 'false', + ), + 'enchant_broker_describe' => + array ( + 0 => 'array', + 'broker' => 'EnchantBroker', + ), + 'enchant_broker_dict_exists' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + ), + 'enchant_broker_free' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + ), + 'enchant_broker_free_dict' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantBroker', + ), + 'enchant_broker_get_dict_path' => + array ( + 0 => 'string', + 'broker' => 'EnchantBroker', + 'type' => 'int', + ), + 'enchant_broker_get_error' => + array ( + 0 => 'false|string', + 'broker' => 'EnchantBroker', + ), + 'enchant_broker_init' => + array ( + 0 => 'EnchantBroker|false', + ), + 'enchant_broker_list_dicts' => + array ( + 0 => 'array', + 'broker' => 'EnchantBroker', + ), + 'enchant_broker_request_dict' => + array ( + 0 => 'EnchantDictionary|false', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + ), + 'enchant_broker_request_pwl_dict' => + array ( + 0 => 'EnchantDictionary|false', + 'broker' => 'EnchantBroker', + 'filename' => 'string', + ), + 'enchant_broker_set_dict_path' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'type' => 'int', + 'path' => 'string', + ), + 'enchant_broker_set_ordering' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + 'ordering' => 'string', + ), + 'enchant_dict_add_to_personal' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + 'enchant_dict_add_to_session' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + 'enchant_dict_check' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + 'enchant_dict_describe' => + array ( + 0 => 'array', + 'dictionary' => 'EnchantDictionary', + ), + 'enchant_dict_get_error' => + array ( + 0 => 'string', + 'dictionary' => 'EnchantDictionary', + ), + 'enchant_dict_is_in_session' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + 'enchant_dict_quick_check' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + '&w_suggestions=' => 'array', + ), + 'enchant_dict_store_replacement' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'enchant_dict_suggest' => + array ( + 0 => 'array', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + 'end' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array|object', + ), + 'enum_exists' => + array ( + 0 => 'bool', + 'enum' => 'string', + 'autoload=' => 'bool', + ), + 'Error::__clone' => + array ( + 0 => 'void', + ), + 'Error::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'Error::__toString' => + array ( + 0 => 'string', + ), + 'Error::getCode' => + array ( + 0 => 'int', + ), + 'Error::getFile' => + array ( + 0 => 'string', + ), + 'Error::getLine' => + array ( + 0 => 'int', + ), + 'Error::getMessage' => + array ( + 0 => 'string', + ), + 'Error::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Error::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Error::getTraceAsString' => + array ( + 0 => 'string', + ), + 'error_clear_last' => + array ( + 0 => 'void', + ), + 'error_get_last' => + array ( + 0 => 'array{file: string, line: int, message: string, type: int}|null', + ), + 'error_log' => + array ( + 0 => 'bool', + 'message' => 'string', + 'message_type=' => 'int', + 'destination=' => 'null|string', + 'additional_headers=' => 'null|string', + ), + 'error_reporting' => + array ( + 0 => 'int', + 'error_level=' => 'int|null', + ), + 'ErrorException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'severity=' => 'int', + 'filename=' => 'null|string', + 'line=' => 'int|null', + 'previous=' => 'Throwable|null', + ), + 'ErrorException::__toString' => + array ( + 0 => 'string', + ), + 'ErrorException::getCode' => + array ( + 0 => 'int', + ), + 'ErrorException::getFile' => + array ( + 0 => 'string', + ), + 'ErrorException::getLine' => + array ( + 0 => 'int', + ), + 'ErrorException::getMessage' => + array ( + 0 => 'string', + ), + 'ErrorException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ErrorException::getSeverity' => + array ( + 0 => 'int', + ), + 'ErrorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ErrorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'escapeshellarg' => + array ( + 0 => 'string', + 'arg' => 'string', + ), + 'escapeshellcmd' => + array ( + 0 => 'string', + 'command' => 'string', + ), + 'Ev::backend' => + array ( + 0 => 'int', + ), + 'Ev::depth' => + array ( + 0 => 'int', + ), + 'Ev::embeddableBackends' => + array ( + 0 => 'int', + ), + 'Ev::feedSignal' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'Ev::feedSignalEvent' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'Ev::iteration' => + array ( + 0 => 'int', + ), + 'Ev::now' => + array ( + 0 => 'float', + ), + 'Ev::nowUpdate' => + array ( + 0 => 'void', + ), + 'Ev::recommendedBackends' => + array ( + 0 => 'int', + ), + 'Ev::resume' => + array ( + 0 => 'void', + ), + 'Ev::run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'Ev::sleep' => + array ( + 0 => 'void', + 'seconds' => 'float', + ), + 'Ev::stop' => + array ( + 0 => 'void', + 'how=' => 'int', + ), + 'Ev::supportedBackends' => + array ( + 0 => 'int', + ), + 'Ev::suspend' => + array ( + 0 => 'void', + ), + 'Ev::time' => + array ( + 0 => 'float', + ), + 'Ev::verify' => + array ( + 0 => 'void', + ), + 'eval' => + array ( + 0 => 'mixed', + 'code_str' => 'string', + ), + 'EvCheck::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvCheck::clear' => + array ( + 0 => 'int', + ), + 'EvCheck::createStopped' => + array ( + 0 => 'EvCheck', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvCheck::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvCheck::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvCheck::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvCheck::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvCheck::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvCheck::start' => + array ( + 0 => 'void', + ), + 'EvCheck::stop' => + array ( + 0 => 'void', + ), + 'EvChild::__construct' => + array ( + 0 => 'void', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvChild::clear' => + array ( + 0 => 'int', + ), + 'EvChild::createStopped' => + array ( + 0 => 'EvChild', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvChild::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvChild::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvChild::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvChild::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvChild::set' => + array ( + 0 => 'void', + 'pid' => 'int', + 'trace' => 'bool', + ), + 'EvChild::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvChild::start' => + array ( + 0 => 'void', + ), + 'EvChild::stop' => + array ( + 0 => 'void', + ), + 'EvEmbed::__construct' => + array ( + 0 => 'void', + 'other' => 'object', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvEmbed::clear' => + array ( + 0 => 'int', + ), + 'EvEmbed::createStopped' => + array ( + 0 => 'EvEmbed', + 'other' => 'object', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvEmbed::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvEmbed::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvEmbed::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvEmbed::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvEmbed::set' => + array ( + 0 => 'void', + 'other' => 'object', + ), + 'EvEmbed::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvEmbed::start' => + array ( + 0 => 'void', + ), + 'EvEmbed::stop' => + array ( + 0 => 'void', + ), + 'EvEmbed::sweep' => + array ( + 0 => 'void', + ), + 'Event::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'fd' => 'mixed', + 'what' => 'int', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::add' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::addSignal' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::addTimer' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::del' => + array ( + 0 => 'bool', + ), + 'Event::delSignal' => + array ( + 0 => 'bool', + ), + 'Event::delTimer' => + array ( + 0 => 'bool', + ), + 'Event::free' => + array ( + 0 => 'void', + ), + 'Event::getSupportedMethods' => + array ( + 0 => 'array', + ), + 'Event::pending' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'Event::set' => + array ( + 0 => 'bool', + 'base' => 'EventBase', + 'fd' => 'mixed', + 'what=' => 'int', + 'cb=' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::setPriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'Event::setTimer' => + array ( + 0 => 'bool', + 'base' => 'EventBase', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::signal' => + array ( + 0 => 'Event', + 'base' => 'EventBase', + 'signum' => 'int', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::timer' => + array ( + 0 => 'Event', + 'base' => 'EventBase', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'event_add' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_base_free' => + array ( + 0 => 'void', + 'event_base' => 'resource', + ), + 'event_base_loop' => + array ( + 0 => 'int', + 'event_base' => 'resource', + 'flags=' => 'int', + ), + 'event_base_loopbreak' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + ), + 'event_base_loopexit' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + 'timeout=' => 'int', + ), + 'event_base_new' => + array ( + 0 => 'false|resource', + ), + 'event_base_priority_init' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + 'npriorities' => 'int', + ), + 'event_base_reinit' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + ), + 'event_base_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'event_base' => 'resource', + ), + 'event_buffer_base_set' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'event_base' => 'resource', + ), + 'event_buffer_disable' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'events' => 'int', + ), + 'event_buffer_enable' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'events' => 'int', + ), + 'event_buffer_fd_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'fd' => 'resource', + ), + 'event_buffer_free' => + array ( + 0 => 'void', + 'bevent' => 'resource', + ), + 'event_buffer_new' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'readcb' => 'callable|null', + 'writecb' => 'callable|null', + 'errorcb' => 'callable', + 'arg=' => 'mixed', + ), + 'event_buffer_priority_set' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'priority' => 'int', + ), + 'event_buffer_read' => + array ( + 0 => 'string', + 'bevent' => 'resource', + 'data_size' => 'int', + ), + 'event_buffer_set_callback' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'readcb' => 'mixed', + 'writecb' => 'mixed', + 'errorcb' => 'mixed', + 'arg=' => 'mixed', + ), + 'event_buffer_timeout_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'read_timeout' => 'int', + 'write_timeout' => 'int', + ), + 'event_buffer_watermark_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'events' => 'int', + 'lowmark' => 'int', + 'highmark' => 'int', + ), + 'event_buffer_write' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'data' => 'string', + 'data_size=' => 'int', + ), + 'event_del' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'event_free' => + array ( + 0 => 'void', + 'event' => 'resource', + ), + 'event_new' => + array ( + 0 => 'false|resource', + ), + 'event_priority_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'priority' => 'int', + ), + 'event_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'fd' => 'int|resource', + 'events' => 'int', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'event_timer_add' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_timer_del' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'event_timer_new' => + array ( + 0 => 'false|resource', + ), + 'event_timer_pending' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_timer_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'EventBase::__construct' => + array ( + 0 => 'void', + 'cfg=' => 'EventConfig', + ), + 'EventBase::dispatch' => + array ( + 0 => 'void', + ), + 'EventBase::exit' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'EventBase::free' => + array ( + 0 => 'void', + ), + 'EventBase::getFeatures' => + array ( + 0 => 'int', + ), + 'EventBase::getMethod' => + array ( + 0 => 'string', + 'cfg=' => 'EventConfig', + ), + 'EventBase::getTimeOfDayCached' => + array ( + 0 => 'float', + ), + 'EventBase::gotExit' => + array ( + 0 => 'bool', + ), + 'EventBase::gotStop' => + array ( + 0 => 'bool', + ), + 'EventBase::loop' => + array ( + 0 => 'bool', + 'flags=' => 'int', + ), + 'EventBase::priorityInit' => + array ( + 0 => 'bool', + 'n_priorities' => 'int', + ), + 'EventBase::reInit' => + array ( + 0 => 'bool', + ), + 'EventBase::stop' => + array ( + 0 => 'bool', + ), + 'EventBuffer::__construct' => + array ( + 0 => 'void', + ), + 'EventBuffer::add' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBuffer::addBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBuffer::appendFrom' => + array ( + 0 => 'int', + 'buf' => 'EventBuffer', + 'length' => 'int', + ), + 'EventBuffer::copyout' => + array ( + 0 => 'int', + '&w_data' => 'string', + 'max_bytes' => 'int', + ), + 'EventBuffer::drain' => + array ( + 0 => 'bool', + 'length' => 'int', + ), + 'EventBuffer::enableLocking' => + array ( + 0 => 'void', + ), + 'EventBuffer::expand' => + array ( + 0 => 'bool', + 'length' => 'int', + ), + 'EventBuffer::freeze' => + array ( + 0 => 'bool', + 'at_front' => 'bool', + ), + 'EventBuffer::lock' => + array ( + 0 => 'void', + ), + 'EventBuffer::prepend' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBuffer::prependBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBuffer::pullup' => + array ( + 0 => 'string', + 'size' => 'int', + ), + 'EventBuffer::read' => + array ( + 0 => 'string', + 'max_bytes' => 'int', + ), + 'EventBuffer::readFrom' => + array ( + 0 => 'int', + 'fd' => 'mixed', + 'howmuch' => 'int', + ), + 'EventBuffer::readLine' => + array ( + 0 => 'string', + 'eol_style' => 'int', + ), + 'EventBuffer::search' => + array ( + 0 => 'mixed', + 'what' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'EventBuffer::searchEol' => + array ( + 0 => 'mixed', + 'start=' => 'int', + 'eol_style=' => 'int', + ), + 'EventBuffer::substr' => + array ( + 0 => 'string', + 'start' => 'int', + 'length=' => 'int', + ), + 'EventBuffer::unfreeze' => + array ( + 0 => 'bool', + 'at_front' => 'bool', + ), + 'EventBuffer::unlock' => + array ( + 0 => 'bool', + ), + 'EventBuffer::write' => + array ( + 0 => 'int', + 'fd' => 'mixed', + 'howmuch=' => 'int', + ), + 'EventBufferEvent::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'socket=' => 'mixed', + 'options=' => 'int', + 'readcb=' => 'callable', + 'writecb=' => 'callable', + 'eventcb=' => 'callable', + ), + 'EventBufferEvent::close' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::connect' => + array ( + 0 => 'bool', + 'addr' => 'string', + ), + 'EventBufferEvent::connectHost' => + array ( + 0 => 'bool', + 'dns_base' => 'EventDnsBase', + 'hostname' => 'string', + 'port' => 'int', + 'family=' => 'int', + ), + 'EventBufferEvent::createPair' => + array ( + 0 => 'array', + 'base' => 'EventBase', + 'options=' => 'int', + ), + 'EventBufferEvent::disable' => + array ( + 0 => 'bool', + 'events' => 'int', + ), + 'EventBufferEvent::enable' => + array ( + 0 => 'bool', + 'events' => 'int', + ), + 'EventBufferEvent::free' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::getDnsErrorString' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::getEnabled' => + array ( + 0 => 'int', + ), + 'EventBufferEvent::getInput' => + array ( + 0 => 'EventBuffer', + ), + 'EventBufferEvent::getOutput' => + array ( + 0 => 'EventBuffer', + ), + 'EventBufferEvent::read' => + array ( + 0 => 'string', + 'size' => 'int', + ), + 'EventBufferEvent::readBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBufferEvent::setCallbacks' => + array ( + 0 => 'void', + 'readcb' => 'callable', + 'writecb' => 'callable', + 'eventcb' => 'callable', + 'arg=' => 'string', + ), + 'EventBufferEvent::setPriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'EventBufferEvent::setTimeouts' => + array ( + 0 => 'bool', + 'timeout_read' => 'float', + 'timeout_write' => 'float', + ), + 'EventBufferEvent::setWatermark' => + array ( + 0 => 'void', + 'events' => 'int', + 'lowmark' => 'int', + 'highmark' => 'int', + ), + 'EventBufferEvent::sslError' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslFilter' => + array ( + 0 => 'EventBufferEvent', + 'base' => 'EventBase', + 'underlying' => 'EventBufferEvent', + 'ctx' => 'EventSslContext', + 'state' => 'int', + 'options=' => 'int', + ), + 'EventBufferEvent::sslGetCipherInfo' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetCipherName' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetCipherVersion' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetProtocol' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslRenegotiate' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::sslSocket' => + array ( + 0 => 'EventBufferEvent', + 'base' => 'EventBase', + 'socket' => 'mixed', + 'ctx' => 'EventSslContext', + 'state' => 'int', + 'options=' => 'int', + ), + 'EventBufferEvent::write' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBufferEvent::writeBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventConfig::__construct' => + array ( + 0 => 'void', + ), + 'EventConfig::avoidMethod' => + array ( + 0 => 'bool', + 'method' => 'string', + ), + 'EventConfig::requireFeatures' => + array ( + 0 => 'bool', + 'feature' => 'int', + ), + 'EventConfig::setMaxDispatchInterval' => + array ( + 0 => 'void', + 'max_interval' => 'int', + 'max_callbacks' => 'int', + 'min_priority' => 'int', + ), + 'EventDnsBase::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'initialize' => 'bool', + ), + 'EventDnsBase::addNameserverIp' => + array ( + 0 => 'bool', + 'ip' => 'string', + ), + 'EventDnsBase::addSearch' => + array ( + 0 => 'void', + 'domain' => 'string', + ), + 'EventDnsBase::clearSearch' => + array ( + 0 => 'void', + ), + 'EventDnsBase::countNameservers' => + array ( + 0 => 'int', + ), + 'EventDnsBase::loadHosts' => + array ( + 0 => 'bool', + 'hosts' => 'string', + ), + 'EventDnsBase::parseResolvConf' => + array ( + 0 => 'bool', + 'flags' => 'int', + 'filename' => 'string', + ), + 'EventDnsBase::setOption' => + array ( + 0 => 'bool', + 'option' => 'string', + 'value' => 'string', + ), + 'EventDnsBase::setSearchNdots' => + array ( + 0 => 'bool', + 'ndots' => 'int', + ), + 'EventHttp::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'ctx=' => 'EventSslContext', + ), + 'EventHttp::accept' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + ), + 'EventHttp::addServerAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'EventHttp::bind' => + array ( + 0 => 'void', + 'address' => 'string', + 'port' => 'int', + ), + 'EventHttp::removeServerAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'EventHttp::setAllowedMethods' => + array ( + 0 => 'void', + 'methods' => 'int', + ), + 'EventHttp::setCallback' => + array ( + 0 => 'void', + 'path' => 'string', + 'cb' => 'string', + 'arg=' => 'string', + ), + 'EventHttp::setDefaultCallback' => + array ( + 0 => 'void', + 'cb' => 'string', + 'arg=' => 'string', + ), + 'EventHttp::setMaxBodySize' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttp::setMaxHeadersSize' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttp::setTimeout' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttpConnection::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'dns_base' => 'EventDnsBase', + 'address' => 'string', + 'port' => 'int', + 'ctx=' => 'EventSslContext', + ), + 'EventHttpConnection::getBase' => + array ( + 0 => 'EventBase', + ), + 'EventHttpConnection::getPeer' => + array ( + 0 => 'void', + '&w_address' => 'string', + '&w_port' => 'int', + ), + 'EventHttpConnection::makeRequest' => + array ( + 0 => 'bool', + 'req' => 'EventHttpRequest', + 'type' => 'int', + 'uri' => 'string', + ), + 'EventHttpConnection::setCloseCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'EventHttpConnection::setLocalAddress' => + array ( + 0 => 'void', + 'address' => 'string', + ), + 'EventHttpConnection::setLocalPort' => + array ( + 0 => 'void', + 'port' => 'int', + ), + 'EventHttpConnection::setMaxBodySize' => + array ( + 0 => 'void', + 'max_size' => 'string', + ), + 'EventHttpConnection::setMaxHeadersSize' => + array ( + 0 => 'void', + 'max_size' => 'string', + ), + 'EventHttpConnection::setRetries' => + array ( + 0 => 'void', + 'retries' => 'int', + ), + 'EventHttpConnection::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'EventHttpRequest::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'EventHttpRequest::addHeader' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + 'type' => 'int', + ), + 'EventHttpRequest::cancel' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::clearHeaders' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::closeConnection' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::findHeader' => + array ( + 0 => 'void', + 'key' => 'string', + 'type' => 'string', + ), + 'EventHttpRequest::free' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getBufferEvent' => + array ( + 0 => 'EventBufferEvent', + ), + 'EventHttpRequest::getCommand' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getConnection' => + array ( + 0 => 'EventHttpConnection', + ), + 'EventHttpRequest::getHost' => + array ( + 0 => 'string', + ), + 'EventHttpRequest::getInputBuffer' => + array ( + 0 => 'EventBuffer', + ), + 'EventHttpRequest::getInputHeaders' => + array ( + 0 => 'array', + ), + 'EventHttpRequest::getOutputBuffer' => + array ( + 0 => 'EventBuffer', + ), + 'EventHttpRequest::getOutputHeaders' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getResponseCode' => + array ( + 0 => 'int', + ), + 'EventHttpRequest::getUri' => + array ( + 0 => 'string', + ), + 'EventHttpRequest::removeHeader' => + array ( + 0 => 'void', + 'key' => 'string', + 'type' => 'string', + ), + 'EventHttpRequest::sendError' => + array ( + 0 => 'void', + 'error' => 'int', + 'reason=' => 'string', + ), + 'EventHttpRequest::sendReply' => + array ( + 0 => 'void', + 'code' => 'int', + 'reason' => 'string', + 'buf=' => 'EventBuffer', + ), + 'EventHttpRequest::sendReplyChunk' => + array ( + 0 => 'void', + 'buf' => 'EventBuffer', + ), + 'EventHttpRequest::sendReplyEnd' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::sendReplyStart' => + array ( + 0 => 'void', + 'code' => 'int', + 'reason' => 'string', + ), + 'EventListener::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'cb' => 'callable', + 'data' => 'mixed', + 'flags' => 'int', + 'backlog' => 'int', + 'target' => 'mixed', + ), + 'EventListener::disable' => + array ( + 0 => 'bool', + ), + 'EventListener::enable' => + array ( + 0 => 'bool', + ), + 'EventListener::getBase' => + array ( + 0 => 'void', + ), + 'EventListener::getSocketName' => + array ( + 0 => 'bool', + '&w_address' => 'string', + '&w_port=' => 'mixed', + ), + 'EventListener::setCallback' => + array ( + 0 => 'void', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'EventListener::setErrorCallback' => + array ( + 0 => 'void', + 'cb' => 'string', + ), + 'EventSslContext::__construct' => + array ( + 0 => 'void', + 'method' => 'string', + 'options' => 'string', + ), + 'EventUtil::__construct' => + array ( + 0 => 'void', + ), + 'EventUtil::getLastSocketErrno' => + array ( + 0 => 'int', + 'socket=' => 'mixed', + ), + 'EventUtil::getLastSocketError' => + array ( + 0 => 'string', + 'socket=' => 'mixed', + ), + 'EventUtil::getSocketFd' => + array ( + 0 => 'int', + 'socket' => 'mixed', + ), + 'EventUtil::getSocketName' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + '&w_address' => 'string', + '&w_port=' => 'mixed', + ), + 'EventUtil::setSocketOption' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + 'level' => 'int', + 'optname' => 'int', + 'optval' => 'mixed', + ), + 'EventUtil::sslRandPoll' => + array ( + 0 => 'void', + ), + 'EvFork::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvFork::clear' => + array ( + 0 => 'int', + ), + 'EvFork::createStopped' => + array ( + 0 => 'EvFork', + 'callback' => 'callable', + 'data=' => 'string', + 'priority=' => 'string', + ), + 'EvFork::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvFork::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvFork::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvFork::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvFork::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvFork::start' => + array ( + 0 => 'void', + ), + 'EvFork::stop' => + array ( + 0 => 'void', + ), + 'EvIdle::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIdle::clear' => + array ( + 0 => 'int', + ), + 'EvIdle::createStopped' => + array ( + 0 => 'EvIdle', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIdle::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIdle::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvIdle::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIdle::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvIdle::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvIdle::start' => + array ( + 0 => 'void', + ), + 'EvIdle::stop' => + array ( + 0 => 'void', + ), + 'EvIo::__construct' => + array ( + 0 => 'void', + 'fd' => 'mixed', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIo::clear' => + array ( + 0 => 'int', + ), + 'EvIo::createStopped' => + array ( + 0 => 'EvIo', + 'fd' => 'resource', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIo::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIo::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvIo::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIo::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvIo::set' => + array ( + 0 => 'void', + 'fd' => 'resource', + 'events' => 'int', + ), + 'EvIo::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvIo::start' => + array ( + 0 => 'void', + ), + 'EvIo::stop' => + array ( + 0 => 'void', + ), + 'EvLoop::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'data=' => 'mixed', + 'io_interval=' => 'float', + 'timeout_interval=' => 'float', + ), + 'EvLoop::backend' => + array ( + 0 => 'int', + ), + 'EvLoop::check' => + array ( + 0 => 'EvCheck', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::child' => + array ( + 0 => 'EvChild', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::defaultLoop' => + array ( + 0 => 'EvLoop', + 'flags=' => 'int', + 'data=' => 'mixed', + 'io_interval=' => 'float', + 'timeout_interval=' => 'float', + ), + 'EvLoop::embed' => + array ( + 0 => 'EvEmbed', + 'other' => 'EvLoop', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::fork' => + array ( + 0 => 'EvFork', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::idle' => + array ( + 0 => 'EvIdle', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::invokePending' => + array ( + 0 => 'void', + ), + 'EvLoop::io' => + array ( + 0 => 'EvIo', + 'fd' => 'resource', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::loopFork' => + array ( + 0 => 'void', + ), + 'EvLoop::now' => + array ( + 0 => 'float', + ), + 'EvLoop::nowUpdate' => + array ( + 0 => 'void', + ), + 'EvLoop::periodic' => + array ( + 0 => 'EvPeriodic', + 'offset' => 'float', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::prepare' => + array ( + 0 => 'EvPrepare', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::resume' => + array ( + 0 => 'void', + ), + 'EvLoop::run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'EvLoop::signal' => + array ( + 0 => 'EvSignal', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::stat' => + array ( + 0 => 'EvStat', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::stop' => + array ( + 0 => 'void', + 'how=' => 'int', + ), + 'EvLoop::suspend' => + array ( + 0 => 'void', + ), + 'EvLoop::timer' => + array ( + 0 => 'EvTimer', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::verify' => + array ( + 0 => 'void', + ), + 'EvPeriodic::__construct' => + array ( + 0 => 'void', + 'offset' => 'float', + 'interval' => 'string', + 'reschedule_cb' => 'callable', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPeriodic::again' => + array ( + 0 => 'void', + ), + 'EvPeriodic::at' => + array ( + 0 => 'float', + ), + 'EvPeriodic::clear' => + array ( + 0 => 'int', + ), + 'EvPeriodic::createStopped' => + array ( + 0 => 'EvPeriodic', + 'offset' => 'float', + 'interval' => 'float', + 'reschedule_cb' => 'callable', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPeriodic::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPeriodic::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvPeriodic::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPeriodic::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvPeriodic::set' => + array ( + 0 => 'void', + 'offset' => 'float', + 'interval' => 'float', + ), + 'EvPeriodic::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvPeriodic::start' => + array ( + 0 => 'void', + ), + 'EvPeriodic::stop' => + array ( + 0 => 'void', + ), + 'EvPrepare::__construct' => + array ( + 0 => 'void', + 'callback' => 'string', + 'data=' => 'string', + 'priority=' => 'string', + ), + 'EvPrepare::clear' => + array ( + 0 => 'int', + ), + 'EvPrepare::createStopped' => + array ( + 0 => 'EvPrepare', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPrepare::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPrepare::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvPrepare::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPrepare::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvPrepare::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvPrepare::start' => + array ( + 0 => 'void', + ), + 'EvPrepare::stop' => + array ( + 0 => 'void', + ), + 'EvSignal::__construct' => + array ( + 0 => 'void', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvSignal::clear' => + array ( + 0 => 'int', + ), + 'EvSignal::createStopped' => + array ( + 0 => 'EvSignal', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvSignal::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvSignal::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvSignal::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvSignal::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvSignal::set' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'EvSignal::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvSignal::start' => + array ( + 0 => 'void', + ), + 'EvSignal::stop' => + array ( + 0 => 'void', + ), + 'EvStat::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvStat::attr' => + array ( + 0 => 'array', + ), + 'EvStat::clear' => + array ( + 0 => 'int', + ), + 'EvStat::createStopped' => + array ( + 0 => 'EvStat', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvStat::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvStat::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvStat::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvStat::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvStat::prev' => + array ( + 0 => 'array', + ), + 'EvStat::set' => + array ( + 0 => 'void', + 'path' => 'string', + 'interval' => 'float', + ), + 'EvStat::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvStat::start' => + array ( + 0 => 'void', + ), + 'EvStat::stat' => + array ( + 0 => 'bool', + ), + 'EvStat::stop' => + array ( + 0 => 'void', + ), + 'EvTimer::__construct' => + array ( + 0 => 'void', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvTimer::again' => + array ( + 0 => 'void', + ), + 'EvTimer::clear' => + array ( + 0 => 'int', + ), + 'EvTimer::createStopped' => + array ( + 0 => 'EvTimer', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvTimer::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvTimer::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvTimer::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvTimer::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvTimer::set' => + array ( + 0 => 'void', + 'after' => 'float', + 'repeat' => 'float', + ), + 'EvTimer::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvTimer::start' => + array ( + 0 => 'void', + ), + 'EvTimer::stop' => + array ( + 0 => 'void', + ), + 'EvWatcher::__construct' => + array ( + 0 => 'void', + ), + 'EvWatcher::clear' => + array ( + 0 => 'int', + ), + 'EvWatcher::feed' => + array ( + 0 => 'void', + 'revents' => 'int', + ), + 'EvWatcher::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvWatcher::invoke' => + array ( + 0 => 'void', + 'revents' => 'int', + ), + 'EvWatcher::keepalive' => + array ( + 0 => 'bool', + 'value=' => 'bool', + ), + 'EvWatcher::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvWatcher::start' => + array ( + 0 => 'void', + ), + 'EvWatcher::stop' => + array ( + 0 => 'void', + ), + 'Exception::__clone' => + array ( + 0 => 'void', + ), + 'Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'Exception::__toString' => + array ( + 0 => 'string', + ), + 'Exception::getCode' => + array ( + 0 => 'int|string', + ), + 'Exception::getFile' => + array ( + 0 => 'string', + ), + 'Exception::getLine' => + array ( + 0 => 'int', + ), + 'Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Exception::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'exec' => + array ( + 0 => 'false|string', + 'command' => 'string', + '&w_output=' => 'array', + '&w_result_code=' => 'int', + ), + 'exif_imagetype' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'exif_read_data' => + array ( + 0 => 'array|false', + 'file' => 'resource|string', + 'required_sections=' => 'null|string', + 'as_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + 'exif_tagname' => + array ( + 0 => 'false|string', + 'index' => 'int', + ), + 'exif_thumbnail' => + array ( + 0 => 'false|string', + 'file' => 'string', + '&w_width=' => 'int', + '&w_height=' => 'int', + '&w_image_type=' => 'int', + ), + 'exit' => + array ( + 0 => 'mixed', + 'status' => 'int|string', + ), + 'exp' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'expect_expectl' => + array ( + 0 => 'int', + 'expect' => 'resource', + 'cases' => 'array', + 'match=' => 'array', + ), + 'expect_popen' => + array ( + 0 => 'false|resource', + 'command' => 'string', + ), + 'explode' => + array ( + 0 => 'list', + 'separator' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + 'expm1' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'extension_loaded' => + array ( + 0 => 'bool', + 'extension' => 'string', + ), + 'extract' => + array ( + 0 => 'int', + '&rw_array' => 'array', + 'flags=' => 'int', + 'prefix=' => 'string', + ), + 'ezmlm_hash' => + array ( + 0 => 'int', + 'addr' => 'string', + ), + 'fam_cancel_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fam_close' => + array ( + 0 => 'void', + 'fam' => 'resource', + ), + 'fam_monitor_collection' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'dirname' => 'string', + 'depth' => 'int', + 'mask' => 'string', + ), + 'fam_monitor_directory' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'dirname' => 'string', + ), + 'fam_monitor_file' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'filename' => 'string', + ), + 'fam_next_event' => + array ( + 0 => 'array', + 'fam' => 'resource', + ), + 'fam_open' => + array ( + 0 => 'false|resource', + 'appname=' => 'string', + ), + 'fam_pending' => + array ( + 0 => 'int', + 'fam' => 'resource', + ), + 'fam_resume_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fam_suspend_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fann_cascadetrain_on_data' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'data' => 'resource', + 'max_neurons' => 'int', + 'neurons_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_cascadetrain_on_file' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'filename' => 'string', + 'max_neurons' => 'int', + 'neurons_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_clear_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + ), + 'fann_copy' => + array ( + 0 => 'false|resource', + 'ann' => 'resource', + ), + 'fann_create_from_file' => + array ( + 0 => 'resource', + 'configuration_file' => 'string', + ), + 'fann_create_shortcut' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_shortcut_array' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_sparse' => + array ( + 0 => 'false|resource', + 'connection_rate' => 'float', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_sparse_array' => + array ( + 0 => 'false|resource', + 'connection_rate' => 'float', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_standard' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_standard_array' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_train' => + array ( + 0 => 'resource', + 'num_data' => 'int', + 'num_input' => 'int', + 'num_output' => 'int', + ), + 'fann_create_train_from_callback' => + array ( + 0 => 'resource', + 'num_data' => 'int', + 'num_input' => 'int', + 'num_output' => 'int', + 'user_function' => 'callable', + ), + 'fann_descale_input' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input_vector' => 'array', + ), + 'fann_descale_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'output_vector' => 'array', + ), + 'fann_descale_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_destroy' => + array ( + 0 => 'bool', + 'ann' => 'resource', + ), + 'fann_destroy_train' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + ), + 'fann_duplicate_train_data' => + array ( + 0 => 'resource', + 'data' => 'resource', + ), + 'fann_get_activation_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_get_activation_steepness' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_get_bias_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_bit_fail' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_bit_fail_limit' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_functions' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_functions_count' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_steepnesses' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_steepnesses_count' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_change_fraction' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_limit' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_stagnation_epochs' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_max_cand_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_max_out_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_min_cand_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_min_out_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_num_candidate_groups' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_num_candidates' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_output_change_fraction' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_output_stagnation_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_weight_multiplier' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_connection_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_connection_rate' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_errno' => + array ( + 0 => 'false|int', + 'errdat' => 'resource', + ), + 'fann_get_errstr' => + array ( + 0 => 'false|string', + 'errdat' => 'resource', + ), + 'fann_get_layer_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_learning_momentum' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_learning_rate' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_MSE' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_network_type' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_input' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_layers' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_output' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_quickprop_decay' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_quickprop_mu' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_decrease_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_max' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_min' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_zero' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_increase_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_step_error_shift' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_step_error_threshold_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_temperature' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_weight_decay_shift' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_total_connections' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_total_neurons' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_train_error_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_train_stop_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_training_algorithm' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_init_weights' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_length_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_merge_train_data' => + array ( + 0 => 'false|resource', + 'data1' => 'resource', + 'data2' => 'resource', + ), + 'fann_num_input_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_num_output_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_print_error' => + array ( + 0 => 'void', + 'errdat' => 'string', + ), + 'fann_randomize_weights' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'min_weight' => 'float', + 'max_weight' => 'float', + ), + 'fann_read_train_from_file' => + array ( + 0 => 'resource', + 'filename' => 'string', + ), + 'fann_reset_errno' => + array ( + 0 => 'void', + 'errdat' => 'resource', + ), + 'fann_reset_errstr' => + array ( + 0 => 'void', + 'errdat' => 'resource', + ), + 'fann_reset_MSE' => + array ( + 0 => 'bool', + 'ann' => 'string', + ), + 'fann_run' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + 'input' => 'array', + ), + 'fann_save' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'configuration_file' => 'string', + ), + 'fann_save_train' => + array ( + 0 => 'bool', + 'data' => 'resource', + 'file_name' => 'string', + ), + 'fann_scale_input' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input_vector' => 'array', + ), + 'fann_scale_input_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_scale_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'output_vector' => 'array', + ), + 'fann_scale_output_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_scale_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_scale_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_set_activation_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_set_activation_function_hidden' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + ), + 'fann_set_activation_function_layer' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + 'layer' => 'int', + ), + 'fann_set_activation_function_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + ), + 'fann_set_activation_steepness' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_set_activation_steepness_hidden' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + ), + 'fann_set_activation_steepness_layer' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + 'layer' => 'int', + ), + 'fann_set_activation_steepness_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + ), + 'fann_set_bit_fail_limit' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'bit_fail_limit' => 'float', + ), + 'fann_set_callback' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'callback' => 'callable', + ), + 'fann_set_cascade_activation_functions' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_activation_functions' => 'array', + ), + 'fann_set_cascade_activation_steepnesses' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_activation_steepnesses_count' => 'array', + ), + 'fann_set_cascade_candidate_change_fraction' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_change_fraction' => 'float', + ), + 'fann_set_cascade_candidate_limit' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_limit' => 'float', + ), + 'fann_set_cascade_candidate_stagnation_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_stagnation_epochs' => 'int', + ), + 'fann_set_cascade_max_cand_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_max_cand_epochs' => 'int', + ), + 'fann_set_cascade_max_out_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_max_out_epochs' => 'int', + ), + 'fann_set_cascade_min_cand_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_min_cand_epochs' => 'int', + ), + 'fann_set_cascade_min_out_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_min_out_epochs' => 'int', + ), + 'fann_set_cascade_num_candidate_groups' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_num_candidate_groups' => 'int', + ), + 'fann_set_cascade_output_change_fraction' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_output_change_fraction' => 'float', + ), + 'fann_set_cascade_output_stagnation_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_output_stagnation_epochs' => 'int', + ), + 'fann_set_cascade_weight_multiplier' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_weight_multiplier' => 'float', + ), + 'fann_set_error_log' => + array ( + 0 => 'void', + 'errdat' => 'resource', + 'log_file' => 'string', + ), + 'fann_set_input_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_input_min' => 'float', + 'new_input_max' => 'float', + ), + 'fann_set_learning_momentum' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'learning_momentum' => 'float', + ), + 'fann_set_learning_rate' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'learning_rate' => 'float', + ), + 'fann_set_output_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_output_min' => 'float', + 'new_output_max' => 'float', + ), + 'fann_set_quickprop_decay' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'quickprop_decay' => 'float', + ), + 'fann_set_quickprop_mu' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'quickprop_mu' => 'float', + ), + 'fann_set_rprop_decrease_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_decrease_factor' => 'float', + ), + 'fann_set_rprop_delta_max' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_max' => 'float', + ), + 'fann_set_rprop_delta_min' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_min' => 'float', + ), + 'fann_set_rprop_delta_zero' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_zero' => 'float', + ), + 'fann_set_rprop_increase_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_increase_factor' => 'float', + ), + 'fann_set_sarprop_step_error_shift' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_step_error_shift' => 'float', + ), + 'fann_set_sarprop_step_error_threshold_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_step_error_threshold_factor' => 'float', + ), + 'fann_set_sarprop_temperature' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_temperature' => 'float', + ), + 'fann_set_sarprop_weight_decay_shift' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_weight_decay_shift' => 'float', + ), + 'fann_set_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_input_min' => 'float', + 'new_input_max' => 'float', + 'new_output_min' => 'float', + 'new_output_max' => 'float', + ), + 'fann_set_train_error_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'error_function' => 'int', + ), + 'fann_set_train_stop_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'stop_function' => 'int', + ), + 'fann_set_training_algorithm' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'training_algorithm' => 'int', + ), + 'fann_set_weight' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'from_neuron' => 'int', + 'to_neuron' => 'int', + 'weight' => 'float', + ), + 'fann_set_weight_array' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'connections' => 'array', + ), + 'fann_shuffle_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + ), + 'fann_subset_train_data' => + array ( + 0 => 'resource', + 'data' => 'resource', + 'pos' => 'int', + 'length' => 'int', + ), + 'fann_test' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input' => 'array', + 'desired_output' => 'array', + ), + 'fann_test_data' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'data' => 'resource', + ), + 'fann_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input' => 'array', + 'desired_output' => 'array', + ), + 'fann_train_epoch' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'data' => 'resource', + ), + 'fann_train_on_data' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'data' => 'resource', + 'max_epochs' => 'int', + 'epochs_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_train_on_file' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'filename' => 'string', + 'max_epochs' => 'int', + 'epochs_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'FANNConnection::__construct' => + array ( + 0 => 'void', + 'from_neuron' => 'int', + 'to_neuron' => 'int', + 'weight' => 'float', + ), + 'FANNConnection::getFromNeuron' => + array ( + 0 => 'int', + ), + 'FANNConnection::getToNeuron' => + array ( + 0 => 'int', + ), + 'FANNConnection::getWeight' => + array ( + 0 => 'void', + ), + 'FANNConnection::setWeight' => + array ( + 0 => 'bool', + 'weight' => 'float', + ), + 'fastcgi_finish_request' => + array ( + 0 => 'bool', + ), + 'fbsql_affected_rows' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_autocommit' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'onoff=' => 'bool', + ), + 'fbsql_blob_size' => + array ( + 0 => 'int', + 'blob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_change_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'password' => 'string', + 'database=' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_clob_size' => + array ( + 0 => 'int', + 'clob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_commit' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_connect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + ), + 'fbsql_create_blob' => + array ( + 0 => 'string', + 'blob_data' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_create_clob' => + array ( + 0 => 'string', + 'clob_data' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + 'database_options=' => 'string', + ), + 'fbsql_data_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row_number' => 'int', + ), + 'fbsql_database' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'database=' => 'string', + ), + 'fbsql_database_password' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'database_password=' => 'string', + ), + 'fbsql_db_query' => + array ( + 0 => 'resource', + 'database' => 'string', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_db_status' => + array ( + 0 => 'int', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_errno' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_error' => + array ( + 0 => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'fbsql_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_fetch_lengths' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + ), + 'fbsql_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_index=' => 'int', + ), + 'fbsql_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_table' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'fbsql_get_autostart_info' => + array ( + 0 => 'array', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_hostname' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'host_name=' => 'string', + ), + 'fbsql_insert_id' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_dbs' => + array ( + 0 => 'resource', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_fields' => + array ( + 0 => 'resource', + 'database_name' => 'string', + 'table_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_tables' => + array ( + 0 => 'resource', + 'database' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_next_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'fbsql_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_password' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'password=' => 'string', + ), + 'fbsql_pconnect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + ), + 'fbsql_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + 'batch_size=' => 'int', + ), + 'fbsql_read_blob' => + array ( + 0 => 'string', + 'blob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_read_clob' => + array ( + 0 => 'string', + 'clob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_result' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'row=' => 'int', + 'field=' => 'mixed', + ), + 'fbsql_rollback' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_rows_fetched' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_select_db' => + array ( + 0 => 'bool', + 'database_name=' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_set_characterset' => + array ( + 0 => 'void', + 'link_identifier' => 'resource', + 'characterset' => 'int', + 'in_out_both=' => 'int', + ), + 'fbsql_set_lob_mode' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'lob_mode' => 'int', + ), + 'fbsql_set_password' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'user' => 'string', + 'password' => 'string', + 'old_password' => 'string', + ), + 'fbsql_set_transaction' => + array ( + 0 => 'void', + 'link_identifier' => 'resource', + 'locking' => 'int', + 'isolation' => 'int', + ), + 'fbsql_start_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + 'database_options=' => 'string', + ), + 'fbsql_stop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_table_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'fbsql_username' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'username=' => 'string', + ), + 'fbsql_warnings' => + array ( + 0 => 'bool', + 'onoff=' => 'bool', + ), + 'fclose' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fdf_add_doc_javascript' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'script_name' => 'string', + 'script_code' => 'string', + ), + 'fdf_add_template' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'newpage' => 'int', + 'filename' => 'string', + 'template' => 'string', + 'rename' => 'int', + ), + 'fdf_close' => + array ( + 0 => 'void', + 'fdf_document' => 'resource', + ), + 'fdf_create' => + array ( + 0 => 'resource', + ), + 'fdf_enum_values' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'function' => 'callable', + 'userdata=' => 'mixed', + ), + 'fdf_errno' => + array ( + 0 => 'int', + ), + 'fdf_error' => + array ( + 0 => 'string', + 'error_code=' => 'int', + ), + 'fdf_get_ap' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'field' => 'string', + 'face' => 'int', + 'filename' => 'string', + ), + 'fdf_get_attachment' => + array ( + 0 => 'array', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'savepath' => 'string', + ), + 'fdf_get_encoding' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_file' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_flags' => + array ( + 0 => 'int', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'whichflags' => 'int', + ), + 'fdf_get_opt' => + array ( + 0 => 'mixed', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'element=' => 'int', + ), + 'fdf_get_status' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_value' => + array ( + 0 => 'mixed', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'which=' => 'int', + ), + 'fdf_get_version' => + array ( + 0 => 'string', + 'fdf_document=' => 'resource', + ), + 'fdf_header' => + array ( + 0 => 'void', + ), + 'fdf_next_field_name' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + 'fieldname=' => 'string', + ), + 'fdf_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'fdf_open_string' => + array ( + 0 => 'resource', + 'fdf_data' => 'string', + ), + 'fdf_remove_item' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'item' => 'int', + ), + 'fdf_save' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'filename=' => 'string', + ), + 'fdf_save_string' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_set_ap' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'field_name' => 'string', + 'face' => 'int', + 'filename' => 'string', + 'page_number' => 'int', + ), + 'fdf_set_encoding' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'encoding' => 'string', + ), + 'fdf_set_file' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'url' => 'string', + 'target_frame=' => 'string', + ), + 'fdf_set_flags' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'whichflags' => 'int', + 'newflags' => 'int', + ), + 'fdf_set_javascript_action' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'trigger' => 'int', + 'script' => 'string', + ), + 'fdf_set_on_import_javascript' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'script' => 'string', + 'before_data_import' => 'bool', + ), + 'fdf_set_opt' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'element' => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'fdf_set_status' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'status' => 'string', + ), + 'fdf_set_submit_form_action' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'trigger' => 'int', + 'script' => 'string', + 'flags' => 'int', + ), + 'fdf_set_target_frame' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'frame_name' => 'string', + ), + 'fdf_set_value' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'value' => 'mixed', + 'isname=' => 'int', + ), + 'fdf_set_version' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'version' => 'string', + ), + 'fdiv' => + array ( + 0 => 'float', + 'num1' => 'float', + 'num2' => 'float', + ), + 'feof' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fflush' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fsync' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fdatasync' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'ffmpeg_animated_gif::__construct' => + array ( + 0 => 'void', + 'output_file_path' => 'string', + 'width' => 'int', + 'height' => 'int', + 'frame_rate' => 'int', + 'loop_count=' => 'int', + ), + 'ffmpeg_animated_gif::addFrame' => + array ( + 0 => 'mixed', + 'frame_to_add' => 'ffmpeg_frame', + ), + 'ffmpeg_frame::__construct' => + array ( + 0 => 'void', + 'gd_image' => 'resource', + ), + 'ffmpeg_frame::crop' => + array ( + 0 => 'mixed', + 'crop_top' => 'int', + 'crop_bottom=' => 'int', + 'crop_left=' => 'int', + 'crop_right=' => 'int', + ), + 'ffmpeg_frame::getHeight' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getPresentationTimestamp' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getPTS' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getWidth' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::resize' => + array ( + 0 => 'mixed', + 'width' => 'int', + 'height' => 'int', + 'crop_top=' => 'int', + 'crop_bottom=' => 'int', + 'crop_left=' => 'int', + 'crop_right=' => 'int', + ), + 'ffmpeg_frame::toGDImage' => + array ( + 0 => 'resource', + ), + 'ffmpeg_movie::__construct' => + array ( + 0 => 'void', + 'path_to_media' => 'string', + 'persistent' => 'bool', + ), + 'ffmpeg_movie::getArtist' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getAudioBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAudioChannels' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAudioCodec' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getAudioSampleRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAuthor' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getComment' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getCopyright' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getDuration' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFilename' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getFrame' => + array ( + 0 => 'false|ffmpeg_frame', + 'framenumber' => 'int', + ), + 'ffmpeg_movie::getFrameCount' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameHeight' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameNumber' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameWidth' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getGenre' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getNextKeyFrame' => + array ( + 0 => 'false|ffmpeg_frame', + ), + 'ffmpeg_movie::getPixelFormat' => + array ( + 0 => 'mixed', + ), + 'ffmpeg_movie::getTitle' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getTrackNumber' => + array ( + 0 => 'int|string', + ), + 'ffmpeg_movie::getVideoBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getVideoCodec' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getYear' => + array ( + 0 => 'int|string', + ), + 'ffmpeg_movie::hasAudio' => + array ( + 0 => 'bool', + ), + 'ffmpeg_movie::hasVideo' => + array ( + 0 => 'bool', + ), + 'fgetc' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + ), + 'fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'stream' => 'resource', + 'length=' => 'int|null', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'fgets' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + ), + 'Fiber::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Fiber::start' => + array ( + 0 => 'mixed', + '...args' => 'mixed', + ), + 'Fiber::resume' => + array ( + 0 => 'mixed', + 'value=' => 'mixed|null', + ), + 'Fiber::throw' => + array ( + 0 => 'mixed', + 'exception' => 'Throwable', + ), + 'Fiber::isStarted' => + array ( + 0 => 'bool', + ), + 'Fiber::isSuspended' => + array ( + 0 => 'bool', + ), + 'Fiber::isRunning' => + array ( + 0 => 'bool', + ), + 'Fiber::isTerminated' => + array ( + 0 => 'bool', + ), + 'Fiber::getReturn' => + array ( + 0 => 'mixed', + ), + 'Fiber::getCurrent' => + array ( + 0 => 'null|self', + ), + 'Fiber::suspend' => + array ( + 0 => 'mixed', + 'value=' => 'mixed|null', + ), + 'FiberError::__construct' => + array ( + 0 => 'void', + ), + 'file' => + array ( + 0 => 'false|list', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'file_exists' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'file_get_contents' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + 'file_put_contents' => + array ( + 0 => 'false|int<0, max>', + 'filename' => 'string', + 'data' => 'array|resource|string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'fileatime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filectime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filegroup' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileinode' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filemtime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileowner' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileperms' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filepro' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'filepro_fieldcount' => + array ( + 0 => 'int', + ), + 'filepro_fieldname' => + array ( + 0 => 'string', + 'field_number' => 'int', + ), + 'filepro_fieldtype' => + array ( + 0 => 'string', + 'field_number' => 'int', + ), + 'filepro_fieldwidth' => + array ( + 0 => 'int', + 'field_number' => 'int', + ), + 'filepro_retrieve' => + array ( + 0 => 'string', + 'row_number' => 'int', + 'field_number' => 'int', + ), + 'filepro_rowcount' => + array ( + 0 => 'int', + ), + 'filesize' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'FilesystemIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + 'flags=' => 'int', + ), + 'FilesystemIterator::__toString' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'FilesystemIterator::getATime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'FilesystemIterator::getCTime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getExtension' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'FilesystemIterator::getFilename' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getFlags' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getGroup' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getInode' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getMTime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getOwner' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getPath' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'FilesystemIterator::getPathname' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getPerms' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'FilesystemIterator::getSize' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getType' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::isDir' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isDot' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isFile' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isLink' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::key' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::next' => + array ( + 0 => 'void', + ), + 'FilesystemIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'FilesystemIterator::rewind' => + array ( + 0 => 'void', + ), + 'FilesystemIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'FilesystemIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'FilesystemIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'FilesystemIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'FilesystemIterator::valid' => + array ( + 0 => 'bool', + ), + 'filetype' => + array ( + 0 => 'false|string', + 'filename' => 'string', + ), + 'filter_has_var' => + array ( + 0 => 'bool', + 'input_type' => '0|1|2|4|5', + 'var_name' => 'string', + ), + 'filter_id' => + array ( + 0 => 'false|int', + 'name' => 'string', + ), + 'filter_input' => + array ( + 0 => 'false|mixed|null', + 'type' => '0|1|2|4|5', + 'var_name' => 'string', + 'filter=' => 'int', + 'options=' => 'array|int', + ), + 'filter_input_array' => + array ( + 0 => 'array|false|null', + 'type' => '0|1|2|4|5', + 'options=' => 'array|int', + 'add_empty=' => 'bool', + ), + 'filter_list' => + array ( + 0 => 'non-empty-list', + ), + 'filter_var' => + array ( + 0 => 'false|mixed', + 'value' => 'mixed', + 'filter=' => 'int', + 'options=' => 'array|int', + ), + 'filter_var_array' => + array ( + 0 => 'array|false|null', + 'array' => 'array', + 'options=' => 'array|int', + 'add_empty=' => 'bool', + ), + 'FilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'FilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'FilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'FilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'FilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'FilterIterator::next' => + array ( + 0 => 'void', + ), + 'FilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'FilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'finfo::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + 'finfo::buffer' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + 'finfo::file' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + 'finfo::set_flags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'finfo_buffer' => + array ( + 0 => 'false|string', + 'finfo' => 'finfo', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'finfo_close' => + array ( + 0 => 'bool', + 'finfo' => 'finfo', + ), + 'finfo_file' => + array ( + 0 => 'false|string', + 'finfo' => 'finfo', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'finfo_open' => + array ( + 0 => 'false|finfo', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + 'finfo_set_flags' => + array ( + 0 => 'bool', + 'finfo' => 'finfo', + 'flags' => 'int', + ), + 'floatval' => + array ( + 0 => 'float', + 'value' => 'mixed', + ), + 'flock' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'operation' => 'int', + '&w_would_block=' => 'int', + ), + 'floor' => + array ( + 0 => 'float', + 'num' => 'float|int', + ), + 'flush' => + array ( + 0 => 'void', + ), + 'fmod' => + array ( + 0 => 'float', + 'num1' => 'float', + 'num2' => 'float', + ), + 'fnmatch' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'fopen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + ), + 'forward_static_call' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'forward_static_call_array' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + 'args' => 'list', + ), + 'fpassthru' => + array ( + 0 => 'int', + 'stream' => 'resource', + ), + 'fpm_get_status' => + array ( + 0 => 'array|false', + ), + 'fprintf' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'fputcsv' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + 'fputs' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'fread' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + ), + 'frenchtojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'fribidi_log2vis' => + array ( + 0 => 'string', + 'string' => 'string', + 'direction' => 'string', + 'charset' => 'int', + ), + 'fscanf' => + array ( + 0 => 'list', + 'stream' => 'resource', + 'format' => 'string', + ), + 'fscanf\'1' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'fseek' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'fsockopen' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + ), + 'fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'stream' => 'resource', + ), + 'ftell' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + ), + 'ftok' => + array ( + 0 => 'int', + 'filename' => 'string', + 'project_id' => 'string', + ), + 'ftp_alloc' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'size' => 'int', + '&w_response=' => 'string', + ), + 'ftp_append' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + ), + 'ftp_cdup' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + 'ftp_chdir' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + 'ftp_chmod' => + array ( + 0 => 'false|int', + 'ftp' => 'FTP\\Connection', + 'permissions' => 'int', + 'filename' => 'string', + ), + 'ftp_close' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + 'ftp_connect' => + array ( + 0 => 'FTP\\Connection|false', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'ftp_delete' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + 'ftp_exec' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + 'ftp_fget' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_fput' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_get' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_get_option' => + array ( + 0 => 'false|int', + 'ftp' => 'FTP\\Connection', + 'option' => 'int', + ), + 'ftp_login' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'username' => 'string', + 'password' => 'string', + ), + 'ftp_mdtm' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + 'ftp_mkdir' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + 'ftp_mlsd' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + 'ftp_nb_continue' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + ), + 'ftp_nb_fget' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_fput' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_get' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_put' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nlist' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + 'ftp_pasv' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'enable' => 'bool', + ), + 'ftp_put' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_pwd' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + ), + 'ftp_quit' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + 'ftp_raw' => + array ( + 0 => 'array|null', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + 'ftp_rawlist' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + 'recursive=' => 'bool', + ), + 'ftp_rename' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + 'ftp_rmdir' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + 'ftp_set_option' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'option' => 'int', + 'value' => 'mixed', + ), + 'ftp_site' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + 'ftp_size' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + 'ftp_ssl_connect' => + array ( + 0 => 'FTP\\Connection|false', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'ftp_systype' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + ), + 'ftruncate' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'size' => 'int', + ), + 'func_get_arg' => + array ( + 0 => 'false|mixed', + 'position' => 'int', + ), + 'func_get_args' => + array ( + 0 => 'list', + ), + 'func_num_args' => + array ( + 0 => 'int', + ), + 'function_exists' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'fwrite' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'gc_collect_cycles' => + array ( + 0 => 'int', + ), + 'gc_disable' => + array ( + 0 => 'void', + ), + 'gc_enable' => + array ( + 0 => 'void', + ), + 'gc_enabled' => + array ( + 0 => 'bool', + ), + 'gc_mem_caches' => + array ( + 0 => 'int', + ), + 'gc_status' => + array ( + 0 => 'array{application_time: float, buffer_size: int, collected: int, collector_time: float, destructor_time: float, free_time: float, full: bool, protected: bool, roots: int, running: bool, runs: int, threshold: int}', + ), + 'gd_info' => + array ( + 0 => 'array', + ), + 'gearman_bugreport' => + array ( + 0 => 'mixed', + ), + 'gearman_client_add_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_add_server' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'host' => 'mixed', + 'port' => 'mixed', + ), + 'gearman_client_add_servers' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'servers' => 'mixed', + ), + 'gearman_client_add_task' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_high' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_high_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_low' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_low_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'job_handle' => 'mixed', + 'context' => 'mixed', + ), + 'gearman_client_clear_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_clone' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_context' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_create' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_do' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_high' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_high_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_job_handle' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_do_low' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_low_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_normal' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'string', + 'workload' => 'string', + 'unique' => 'string', + ), + 'gearman_client_do_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_echo' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'workload' => 'mixed', + ), + 'gearman_client_errno' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_error' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_job_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'job_handle' => 'mixed', + ), + 'gearman_client_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_remove_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_return_code' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_run_tasks' => + array ( + 0 => 'mixed', + 'data' => 'mixed', + ), + 'gearman_client_set_complete_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_context' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'context' => 'mixed', + ), + 'gearman_client_set_created_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_data_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_exception_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_fail_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_set_status_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_timeout' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_client_set_warning_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_workload_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_timeout' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_wait' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_job_function_name' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_handle' => + array ( + 0 => 'string', + ), + 'gearman_job_return_code' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_send_complete' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'result' => 'mixed', + ), + 'gearman_job_send_data' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'data' => 'mixed', + ), + 'gearman_job_send_exception' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'exception' => 'mixed', + ), + 'gearman_job_send_fail' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_send_status' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'numerator' => 'mixed', + 'denominator' => 'mixed', + ), + 'gearman_job_send_warning' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'warning' => 'mixed', + ), + 'gearman_job_status' => + array ( + 0 => 'array', + 'job_handle' => 'string', + ), + 'gearman_job_unique' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_workload' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_workload_size' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_task_data' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_data_size' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_denominator' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_function_name' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_is_known' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_is_running' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_job_handle' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_numerator' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_recv_data' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + 'data_len' => 'mixed', + ), + 'gearman_task_return_code' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_send_workload' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + 'data' => 'mixed', + ), + 'gearman_task_unique' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_verbose_name' => + array ( + 0 => 'mixed', + 'verbose' => 'mixed', + ), + 'gearman_version' => + array ( + 0 => 'mixed', + ), + 'gearman_worker_add_function' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + 'function' => 'mixed', + 'data' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_add_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_add_server' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'host' => 'mixed', + 'port' => 'mixed', + ), + 'gearman_worker_add_servers' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'servers' => 'mixed', + ), + 'gearman_worker_clone' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_create' => + array ( + 0 => 'mixed', + ), + 'gearman_worker_echo' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'workload' => 'mixed', + ), + 'gearman_worker_errno' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_error' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_grab_job' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_register' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_remove_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_return_code' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_set_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_set_timeout' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_timeout' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_unregister' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + ), + 'gearman_worker_unregister_all' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_wait' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_work' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'GearmanClient::__construct' => + array ( + 0 => 'void', + ), + 'GearmanClient::addOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::addServer' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'GearmanClient::addServers' => + array ( + 0 => 'bool', + 'servers=' => 'string', + ), + 'GearmanClient::addTask' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskHigh' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskHighBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskLow' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskLowBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskStatus' => + array ( + 0 => 'GearmanTask', + 'job_handle' => 'string', + 'context=' => 'string', + ), + 'GearmanClient::clearCallbacks' => + array ( + 0 => 'bool', + ), + 'GearmanClient::clone' => + array ( + 0 => 'GearmanClient', + ), + 'GearmanClient::context' => + array ( + 0 => 'string', + ), + 'GearmanClient::data' => + array ( + 0 => 'string', + ), + 'GearmanClient::do' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doHigh' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doHighBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doJobHandle' => + array ( + 0 => 'string', + ), + 'GearmanClient::doLow' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doLowBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doNormal' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doStatus' => + array ( + 0 => 'array', + ), + 'GearmanClient::echo' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanClient::error' => + array ( + 0 => 'string', + ), + 'GearmanClient::getErrno' => + array ( + 0 => 'int', + ), + 'GearmanClient::jobStatus' => + array ( + 0 => 'array', + 'job_handle' => 'string', + ), + 'GearmanClient::options' => + array ( + 0 => 'mixed', + ), + 'GearmanClient::ping' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanClient::removeOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanClient::runTasks' => + array ( + 0 => 'bool', + ), + 'GearmanClient::setClientCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'GearmanClient::setCompleteCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setContext' => + array ( + 0 => 'bool', + 'context' => 'string', + ), + 'GearmanClient::setCreatedCallback' => + array ( + 0 => 'bool', + 'callback' => 'string', + ), + 'GearmanClient::setData' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanClient::setDataCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setExceptionCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setFailCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::setStatusCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'GearmanClient::setWarningCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setWorkloadCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::timeout' => + array ( + 0 => 'int', + ), + 'GearmanClient::wait' => + array ( + 0 => 'mixed', + ), + 'GearmanJob::__construct' => + array ( + 0 => 'void', + ), + 'GearmanJob::complete' => + array ( + 0 => 'bool', + 'result' => 'string', + ), + 'GearmanJob::data' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanJob::exception' => + array ( + 0 => 'bool', + 'exception' => 'string', + ), + 'GearmanJob::fail' => + array ( + 0 => 'bool', + ), + 'GearmanJob::functionName' => + array ( + 0 => 'string', + ), + 'GearmanJob::handle' => + array ( + 0 => 'string', + ), + 'GearmanJob::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanJob::sendComplete' => + array ( + 0 => 'bool', + 'result' => 'string', + ), + 'GearmanJob::sendData' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanJob::sendException' => + array ( + 0 => 'bool', + 'exception' => 'string', + ), + 'GearmanJob::sendFail' => + array ( + 0 => 'bool', + ), + 'GearmanJob::sendStatus' => + array ( + 0 => 'bool', + 'numerator' => 'int', + 'denominator' => 'int', + ), + 'GearmanJob::sendWarning' => + array ( + 0 => 'bool', + 'warning' => 'string', + ), + 'GearmanJob::setReturn' => + array ( + 0 => 'bool', + 'gearman_return_t' => 'string', + ), + 'GearmanJob::status' => + array ( + 0 => 'bool', + 'numerator' => 'int', + 'denominator' => 'int', + ), + 'GearmanJob::unique' => + array ( + 0 => 'string', + ), + 'GearmanJob::warning' => + array ( + 0 => 'bool', + 'warning' => 'string', + ), + 'GearmanJob::workload' => + array ( + 0 => 'string', + ), + 'GearmanJob::workloadSize' => + array ( + 0 => 'int', + ), + 'GearmanTask::__construct' => + array ( + 0 => 'void', + ), + 'GearmanTask::create' => + array ( + 0 => 'GearmanTask', + ), + 'GearmanTask::data' => + array ( + 0 => 'false|string', + ), + 'GearmanTask::dataSize' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::function' => + array ( + 0 => 'string', + ), + 'GearmanTask::functionName' => + array ( + 0 => 'string', + ), + 'GearmanTask::isKnown' => + array ( + 0 => 'bool', + ), + 'GearmanTask::isRunning' => + array ( + 0 => 'bool', + ), + 'GearmanTask::jobHandle' => + array ( + 0 => 'string', + ), + 'GearmanTask::recvData' => + array ( + 0 => 'array|false', + 'data_len' => 'int', + ), + 'GearmanTask::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanTask::sendData' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'GearmanTask::sendWorkload' => + array ( + 0 => 'false|int', + 'data' => 'string', + ), + 'GearmanTask::taskDenominator' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::taskNumerator' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::unique' => + array ( + 0 => 'false|string', + ), + 'GearmanTask::uuid' => + array ( + 0 => 'string', + ), + 'GearmanWorker::__construct' => + array ( + 0 => 'void', + ), + 'GearmanWorker::addFunction' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'function' => 'callable', + 'context=' => 'mixed', + 'timeout=' => 'int', + ), + 'GearmanWorker::addOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::addServer' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'GearmanWorker::addServers' => + array ( + 0 => 'bool', + 'servers' => 'string', + ), + 'GearmanWorker::clone' => + array ( + 0 => 'void', + ), + 'GearmanWorker::echo' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanWorker::error' => + array ( + 0 => 'string', + ), + 'GearmanWorker::getErrno' => + array ( + 0 => 'int', + ), + 'GearmanWorker::grabJob' => + array ( + 0 => 'mixed', + ), + 'GearmanWorker::options' => + array ( + 0 => 'int', + ), + 'GearmanWorker::register' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'timeout=' => 'int', + ), + 'GearmanWorker::removeOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanWorker::setId' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'GearmanWorker::setOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'GearmanWorker::timeout' => + array ( + 0 => 'int', + ), + 'GearmanWorker::unregister' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'GearmanWorker::unregisterAll' => + array ( + 0 => 'bool', + ), + 'GearmanWorker::wait' => + array ( + 0 => 'bool', + ), + 'GearmanWorker::work' => + array ( + 0 => 'bool', + ), + 'Gender\\Gender::__construct' => + array ( + 0 => 'void', + 'dsn=' => 'string', + ), + 'Gender\\Gender::connect' => + array ( + 0 => 'bool', + 'dsn' => 'string', + ), + 'Gender\\Gender::country' => + array ( + 0 => 'array', + 'country' => 'int', + ), + 'Gender\\Gender::get' => + array ( + 0 => 'int', + 'name' => 'string', + 'country=' => 'int', + ), + 'Gender\\Gender::isNick' => + array ( + 0 => 'array', + 'name0' => 'string', + 'name1' => 'string', + 'country=' => 'int', + ), + 'Gender\\Gender::similarNames' => + array ( + 0 => 'array', + 'name' => 'string', + 'country=' => 'int', + ), + 'Generator::current' => + array ( + 0 => 'mixed', + ), + 'Generator::getReturn' => + array ( + 0 => 'mixed', + ), + 'Generator::key' => + array ( + 0 => 'mixed', + ), + 'Generator::next' => + array ( + 0 => 'void', + ), + 'Generator::rewind' => + array ( + 0 => 'void', + ), + 'Generator::send' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Generator::throw' => + array ( + 0 => 'mixed', + 'exception' => 'Throwable', + ), + 'Generator::valid' => + array ( + 0 => 'bool', + ), + 'geoip_asnum_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_continent_code_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_code3_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_code_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_name_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_database_info' => + array ( + 0 => 'string', + 'database=' => 'int', + ), + 'geoip_db_avail' => + array ( + 0 => 'bool', + 'database' => 'int', + ), + 'geoip_db_filename' => + array ( + 0 => 'string', + 'database' => 'int', + ), + 'geoip_db_get_all_info' => + array ( + 0 => 'array', + ), + 'geoip_domain_by_name' => + array ( + 0 => 'string', + 'hostname' => 'string', + ), + 'geoip_id_by_name' => + array ( + 0 => 'int', + 'hostname' => 'string', + ), + 'geoip_isp_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_netspeedcell_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_org_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_record_by_name' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + ), + 'geoip_region_by_name' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + ), + 'geoip_region_name_by_code' => + array ( + 0 => 'false|string', + 'country_code' => 'string', + 'region_code' => 'string', + ), + 'geoip_setup_custom_directory' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'geoip_time_zone_by_country_and_region' => + array ( + 0 => 'false|string', + 'country_code' => 'string', + 'region_code=' => 'string', + ), + 'GEOSGeometry::__toString' => + array ( + 0 => 'string', + ), + 'GEOSGeometry::project' => + array ( + 0 => 'float', + 'other' => 'GEOSGeometry', + 'normalized' => 'bool', + ), + 'GEOSGeometry::interpolate' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'normalized' => 'bool', + ), + 'GEOSGeometry::buffer' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'styleArray=' => 'array', + ), + 'GEOSGeometry::offsetCurve' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'styleArray' => 'array', + ), + 'GEOSGeometry::envelope' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::intersection' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::convexHull' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::difference' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::symDifference' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::boundary' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::union' => + array ( + 0 => 'GEOSGeometry', + 'otherGeom=' => 'GEOSGeometry', + ), + 'GEOSGeometry::pointOnSurface' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::centroid' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::relate' => + array ( + 0 => 'bool|string', + 'otherGeom' => 'GEOSGeometry', + 'pattern' => 'string', + ), + 'GEOSGeometry::relateBoundaryNodeRule' => + array ( + 0 => 'string', + 'otherGeom' => 'GEOSGeometry', + 'rule' => 'int', + ), + 'GEOSGeometry::simplify' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'preserveTopology=' => 'bool', + ), + 'GEOSGeometry::normalize' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::extractUniquePoints' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::disjoint' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::touches' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::intersects' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::crosses' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::within' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::contains' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::overlaps' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::covers' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::coveredBy' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::equals' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::equalsExact' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + 'tolerance' => 'float', + ), + 'GEOSGeometry::isEmpty' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::checkValidity' => + array ( + 0 => 'array{location?: GEOSGeometry, reason?: string, valid: bool}', + ), + 'GEOSGeometry::isSimple' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::isRing' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::hasZ' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::isClosed' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::typeName' => + array ( + 0 => 'string', + ), + 'GEOSGeometry::typeId' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::getSRID' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::setSRID' => + array ( + 0 => 'void', + 'srid' => 'int', + ), + 'GEOSGeometry::numGeometries' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::geometryN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::numInteriorRings' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::numPoints' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::getX' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::getY' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::interiorRingN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::exteriorRing' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::numCoordinates' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::dimension' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::coordinateDimension' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::pointN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::startPoint' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::endPoint' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::area' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::length' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::distance' => + array ( + 0 => 'float', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::hausdorffDistance' => + array ( + 0 => 'float', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::snapTo' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + 'tolerance' => 'float', + ), + 'GEOSGeometry::node' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::delaunayTriangulation' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'onlyEdges' => 'bool', + ), + 'GEOSGeometry::voronoiDiagram' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'onlyEdges' => 'bool', + 'extent' => 'GEOSGeometry|null', + ), + 'GEOSLineMerge' => + array ( + 0 => 'array', + 'geom' => 'GEOSGeometry', + ), + 'GEOSPolygonize' => + array ( + 0 => 'array{cut_edges?: array, dangles: array, invalid_rings: array, rings: array}', + 'geom' => 'GEOSGeometry', + ), + 'GEOSRelateMatch' => + array ( + 0 => 'bool', + 'matrix' => 'string', + 'pattern' => 'string', + ), + 'GEOSSharedPaths' => + array ( + 0 => 'GEOSGeometry', + 'geom1' => 'GEOSGeometry', + 'geom2' => 'GEOSGeometry', + ), + 'GEOSVersion' => + array ( + 0 => 'string', + ), + 'GEOSWKBReader::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKBReader::read' => + array ( + 0 => 'GEOSGeometry', + 'wkb' => 'string', + ), + 'GEOSWKBReader::readHEX' => + array ( + 0 => 'GEOSGeometry', + 'wkb' => 'string', + ), + 'GEOSWKBWriter::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKBWriter::getOutputDimension' => + array ( + 0 => 'int', + ), + 'GEOSWKBWriter::setOutputDimension' => + array ( + 0 => 'void', + 'dim' => 'int', + ), + 'GEOSWKBWriter::getByteOrder' => + array ( + 0 => 'int', + ), + 'GEOSWKBWriter::setByteOrder' => + array ( + 0 => 'void', + 'byteOrder' => 'int', + ), + 'GEOSWKBWriter::getIncludeSRID' => + array ( + 0 => 'bool', + ), + 'GEOSWKBWriter::setIncludeSRID' => + array ( + 0 => 'void', + 'inc' => 'bool', + ), + 'GEOSWKBWriter::write' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GEOSWKBWriter::writeHEX' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GEOSWKTReader::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKTReader::read' => + array ( + 0 => 'GEOSGeometry', + 'wkt' => 'string', + ), + 'GEOSWKTWriter::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKTWriter::write' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GEOSWKTWriter::setTrim' => + array ( + 0 => 'void', + 'trim' => 'bool', + ), + 'GEOSWKTWriter::setRoundingPrecision' => + array ( + 0 => 'void', + 'prec' => 'int', + ), + 'GEOSWKTWriter::setOutputDimension' => + array ( + 0 => 'void', + 'dim' => 'int', + ), + 'GEOSWKTWriter::getOutputDimension' => + array ( + 0 => 'int', + ), + 'GEOSWKTWriter::setOld3D' => + array ( + 0 => 'void', + 'val' => 'bool', + ), + 'get_browser' => + array ( + 0 => 'array|false|object', + 'user_agent=' => 'null|string', + 'return_array=' => 'bool', + ), + 'get_call_stack' => + array ( + 0 => 'mixed', + ), + 'get_called_class' => + array ( + 0 => 'class-string', + ), + 'get_cfg_var' => + array ( + 0 => 'false|string', + 'option' => 'string', + ), + 'get_class' => + array ( + 0 => 'class-string', + 'object' => 'object', + ), + 'get_class_methods' => + array ( + 0 => 'list', + 'object_or_class' => 'class-string|object', + ), + 'get_class_vars' => + array ( + 0 => 'array', + 'class' => 'string', + ), + 'get_current_user' => + array ( + 0 => 'string', + ), + 'get_debug_type' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'get_declared_classes' => + array ( + 0 => 'list', + ), + 'get_declared_interfaces' => + array ( + 0 => 'list', + ), + 'get_declared_traits' => + array ( + 0 => 'list', + ), + 'get_defined_constants' => + array ( + 0 => 'array|null|resource|scalar>', + 'categorize=' => 'bool', + ), + 'get_defined_functions' => + array ( + 0 => 'array{internal: list, user: list}', + 'exclude_disabled=' => 'bool', + ), + 'get_defined_vars' => + array ( + 0 => 'array', + ), + 'get_extension_funcs' => + array ( + 0 => 'false|list', + 'extension' => 'string', + ), + 'get_headers' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'bool', + 'context=' => 'null|resource', + ), + 'get_html_translation_table' => + array ( + 0 => 'array', + 'table=' => 'int', + 'flags=' => 'int', + 'encoding=' => 'string', + ), + 'get_include_path' => + array ( + 0 => 'string', + ), + 'get_included_files' => + array ( + 0 => 'list', + ), + 'get_loaded_extensions' => + array ( + 0 => 'list', + 'zend_extensions=' => 'bool', + ), + 'get_magic_quotes_gpc' => + array ( + 0 => 'false|int', + ), + 'get_magic_quotes_runtime' => + array ( + 0 => 'false|int', + ), + 'get_meta_tags' => + array ( + 0 => 'array', + 'filename' => 'string', + 'use_include_path=' => 'bool', + ), + 'get_object_vars' => + array ( + 0 => 'array', + 'object' => 'object', + ), + 'get_parent_class' => + array ( + 0 => 'class-string|false', + 'object_or_class' => 'class-string|object', + ), + 'get_required_files' => + array ( + 0 => 'list', + ), + 'get_resource_id' => + array ( + 0 => 'int', + 'resource' => 'resource', + ), + 'get_resource_type' => + array ( + 0 => 'string', + 'resource' => 'resource', + ), + 'get_resources' => + array ( + 0 => 'array', + 'type=' => 'null|string', + ), + 'getallheaders' => + array ( + 0 => 'array|false', + ), + 'getcwd' => + array ( + 0 => 'false|non-falsy-string', + ), + 'getdate' => + array ( + 0 => 'array{0: int, hours: int<0, 23>, mday: int<1, 31>, minutes: int<0, 59>, mon: int<1, 12>, month: \'April\'|\'August\'|\'December\'|\'February\'|\'January\'|\'July\'|\'June\'|\'March\'|\'May\'|\'November\'|\'October\'|\'September\', seconds: int<0, 59>, wday: int<0, 6>, weekday: \'Friday\'|\'Monday\'|\'Saturday\'|\'Sunday\'|\'Thursday\'|\'Tuesday\'|\'Wednesday\', yday: int<0, 365>, year: int}', + 'timestamp=' => 'int|null', + ), + 'getenv' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'local_only=' => 'bool', + ), + 'getenv\'1' => + array ( + 0 => 'array', + ), + 'gethostbyaddr' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'gethostbyname' => + array ( + 0 => 'string', + 'hostname' => 'string', + ), + 'gethostbynamel' => + array ( + 0 => 'false|list', + 'hostname' => 'string', + ), + 'gethostname' => + array ( + 0 => 'false|string', + ), + 'getimagesize' => + array ( + 0 => 'array{0: int, 1: int, 2: int, 3: string, bits?: int, channels?: 3|4, mime: string}|false', + 'filename' => 'string', + '&w_image_info=' => 'array', + ), + 'getimagesizefromstring' => + array ( + 0 => 'array{0: int, 1: int, 2: int, 3: string, bits?: int, channels?: 3|4, mime: string}|false', + 'string' => 'string', + '&w_image_info=' => 'array', + ), + 'getlastmod' => + array ( + 0 => 'false|int', + ), + 'getmxrr' => + array ( + 0 => 'bool', + 'hostname' => 'string', + '&w_hosts' => 'array', + '&w_weights=' => 'array', + ), + 'getmygid' => + array ( + 0 => 'false|int', + ), + 'getmyinode' => + array ( + 0 => 'false|int', + ), + 'getmypid' => + array ( + 0 => 'false|int', + ), + 'getmyuid' => + array ( + 0 => 'false|int', + ), + 'getopt' => + array ( + 0 => 'array|string>|false', + 'short_options' => 'string', + 'long_options=' => 'array', + '&w_rest_index=' => 'int', + ), + 'getprotobyname' => + array ( + 0 => 'false|int', + 'protocol' => 'string', + ), + 'getprotobynumber' => + array ( + 0 => 'string', + 'protocol' => 'int', + ), + 'getrandmax' => + array ( + 0 => 'int<1, max>', + ), + 'getrusage' => + array ( + 0 => 'array', + 'mode=' => 'int', + ), + 'getservbyname' => + array ( + 0 => 'false|int', + 'service' => 'string', + 'protocol' => 'string', + ), + 'getservbyport' => + array ( + 0 => 'false|string', + 'port' => 'int', + 'protocol' => 'string', + ), + 'gettext' => + array ( + 0 => 'string', + 'message' => 'string', + ), + 'gettimeofday' => + array ( + 0 => 'array', + ), + 'gettimeofday\'1' => + array ( + 0 => 'float', + 'as_float=' => 'true', + ), + 'gettype' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'glob' => + array ( + 0 => 'false|list{0?: string, ...}', + 'pattern' => 'string', + 'flags=' => 'int<0, max>', + ), + 'GlobIterator::__construct' => + array ( + 0 => 'void', + 'pattern' => 'string', + 'flags=' => 'int', + ), + 'GlobIterator::count' => + array ( + 0 => 'int', + ), + 'GlobIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'GlobIterator::getATime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'GlobIterator::getCTime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getExtension' => + array ( + 0 => 'string', + ), + 'GlobIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'GlobIterator::getFilename' => + array ( + 0 => 'string', + ), + 'GlobIterator::getFlags' => + array ( + 0 => 'int', + ), + 'GlobIterator::getGroup' => + array ( + 0 => 'int', + ), + 'GlobIterator::getInode' => + array ( + 0 => 'int', + ), + 'GlobIterator::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'GlobIterator::getMTime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getOwner' => + array ( + 0 => 'int', + ), + 'GlobIterator::getPath' => + array ( + 0 => 'string', + ), + 'GlobIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'GlobIterator::getPathname' => + array ( + 0 => 'string', + ), + 'GlobIterator::getPerms' => + array ( + 0 => 'int', + ), + 'GlobIterator::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'GlobIterator::getSize' => + array ( + 0 => 'int', + ), + 'GlobIterator::getType' => + array ( + 0 => 'false|string', + ), + 'GlobIterator::isDir' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isDot' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isFile' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isLink' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::key' => + array ( + 0 => 'string', + ), + 'GlobIterator::next' => + array ( + 0 => 'void', + ), + 'GlobIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'GlobIterator::rewind' => + array ( + 0 => 'void', + ), + 'GlobIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'GlobIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'GlobIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'GlobIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'GlobIterator::valid' => + array ( + 0 => 'bool', + ), + 'Gmagick::__construct' => + array ( + 0 => 'void', + 'filename=' => 'string', + ), + 'Gmagick::addimage' => + array ( + 0 => 'Gmagick', + 'gmagick' => 'gmagick', + ), + 'Gmagick::addnoiseimage' => + array ( + 0 => 'Gmagick', + 'noise' => 'int', + ), + 'Gmagick::annotateimage' => + array ( + 0 => 'Gmagick', + 'gmagickdraw' => 'gmagickdraw', + 'x' => 'float', + 'y' => 'float', + 'angle' => 'float', + 'text' => 'string', + ), + 'Gmagick::blurimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::borderimage' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + 'width' => 'int', + 'height' => 'int', + ), + 'Gmagick::charcoalimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Gmagick::chopimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::clear' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::commentimage' => + array ( + 0 => 'Gmagick', + 'comment' => 'string', + ), + 'Gmagick::compositeimage' => + array ( + 0 => 'Gmagick', + 'source' => 'gmagick', + 'compose' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::cropimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::cropthumbnailimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + ), + 'Gmagick::current' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::cyclecolormapimage' => + array ( + 0 => 'Gmagick', + 'displace' => 'int', + ), + 'Gmagick::deconstructimages' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::despeckleimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::destroy' => + array ( + 0 => 'bool', + ), + 'Gmagick::drawimage' => + array ( + 0 => 'Gmagick', + 'gmagickdraw' => 'gmagickdraw', + ), + 'Gmagick::edgeimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::embossimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Gmagick::enhanceimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::equalizeimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::flipimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::flopimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::frameimage' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + 'width' => 'int', + 'height' => 'int', + 'inner_bevel' => 'int', + 'outer_bevel' => 'int', + ), + 'Gmagick::gammaimage' => + array ( + 0 => 'Gmagick', + 'gamma' => 'float', + ), + 'Gmagick::getcopyright' => + array ( + 0 => 'string', + ), + 'Gmagick::getfilename' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagebackgroundcolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimageblueprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagebordercolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimagechanneldepth' => + array ( + 0 => 'int', + 'channel_type' => 'int', + ), + 'Gmagick::getimagecolors' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagecolorspace' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagecompose' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedelay' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedepth' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedispose' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageextrema' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagefilename' => + array ( + 0 => 'string', + ), + 'Gmagick::getimageformat' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagegamma' => + array ( + 0 => 'float', + ), + 'Gmagick::getimagegreenprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimageheight' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagehistogram' => + array ( + 0 => 'array', + ), + 'Gmagick::getimageindex' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageinterlacescheme' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageiterations' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagematte' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagemattecolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimageprofile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Gmagick::getimageredprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagerenderingintent' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageresolution' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagescene' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagesignature' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagetype' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageunits' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagewhitepoint' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagewidth' => + array ( + 0 => 'int', + ), + 'Gmagick::getpackagename' => + array ( + 0 => 'string', + ), + 'Gmagick::getquantumdepth' => + array ( + 0 => 'array', + ), + 'Gmagick::getreleasedate' => + array ( + 0 => 'string', + ), + 'Gmagick::getsamplingfactors' => + array ( + 0 => 'array', + ), + 'Gmagick::getsize' => + array ( + 0 => 'array', + ), + 'Gmagick::getversion' => + array ( + 0 => 'array', + ), + 'Gmagick::hasnextimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::haspreviousimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::implodeimage' => + array ( + 0 => 'mixed', + 'radius' => 'float', + ), + 'Gmagick::labelimage' => + array ( + 0 => 'mixed', + 'label' => 'string', + ), + 'Gmagick::levelimage' => + array ( + 0 => 'mixed', + 'blackpoint' => 'float', + 'gamma' => 'float', + 'whitepoint' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::magnifyimage' => + array ( + 0 => 'mixed', + ), + 'Gmagick::mapimage' => + array ( + 0 => 'Gmagick', + 'gmagick' => 'gmagick', + 'dither' => 'bool', + ), + 'Gmagick::medianfilterimage' => + array ( + 0 => 'void', + 'radius' => 'float', + ), + 'Gmagick::minifyimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::modulateimage' => + array ( + 0 => 'Gmagick', + 'brightness' => 'float', + 'saturation' => 'float', + 'hue' => 'float', + ), + 'Gmagick::motionblurimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + ), + 'Gmagick::newimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'background' => 'string', + 'format=' => 'string', + ), + 'Gmagick::nextimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::normalizeimage' => + array ( + 0 => 'Gmagick', + 'channel=' => 'int', + ), + 'Gmagick::oilpaintimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::previousimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::profileimage' => + array ( + 0 => 'Gmagick', + 'name' => 'string', + 'profile' => 'string', + ), + 'Gmagick::quantizeimage' => + array ( + 0 => 'Gmagick', + 'numcolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Gmagick::quantizeimages' => + array ( + 0 => 'Gmagick', + 'numcolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Gmagick::queryfontmetrics' => + array ( + 0 => 'array', + 'draw' => 'gmagickdraw', + 'text' => 'string', + ), + 'Gmagick::queryfonts' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Gmagick::queryformats' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Gmagick::radialblurimage' => + array ( + 0 => 'Gmagick', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::raiseimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + 'raise' => 'bool', + ), + 'Gmagick::read' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::readimage' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::readimageblob' => + array ( + 0 => 'Gmagick', + 'imagecontents' => 'string', + 'filename=' => 'string', + ), + 'Gmagick::readimagefile' => + array ( + 0 => 'Gmagick', + 'fp' => 'resource', + 'filename=' => 'string', + ), + 'Gmagick::reducenoiseimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::removeimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::removeimageprofile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Gmagick::resampleimage' => + array ( + 0 => 'Gmagick', + 'xresolution' => 'float', + 'yresolution' => 'float', + 'filter' => 'int', + 'blur' => 'float', + ), + 'Gmagick::resizeimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'filter' => 'int', + 'blur' => 'float', + 'fit=' => 'bool', + ), + 'Gmagick::rollimage' => + array ( + 0 => 'Gmagick', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::rotateimage' => + array ( + 0 => 'Gmagick', + 'color' => 'mixed', + 'degrees' => 'float', + ), + 'Gmagick::scaleimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'fit=' => 'bool', + ), + 'Gmagick::separateimagechannel' => + array ( + 0 => 'Gmagick', + 'channel' => 'int', + ), + 'Gmagick::setCompressionQuality' => + array ( + 0 => 'Gmagick', + 'quality' => 'int', + ), + 'Gmagick::setfilename' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::setimagebackgroundcolor' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + ), + 'Gmagick::setimageblueprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimagebordercolor' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + ), + 'Gmagick::setimagechanneldepth' => + array ( + 0 => 'Gmagick', + 'channel' => 'int', + 'depth' => 'int', + ), + 'Gmagick::setimagecolorspace' => + array ( + 0 => 'Gmagick', + 'colorspace' => 'int', + ), + 'Gmagick::setimagecompose' => + array ( + 0 => 'Gmagick', + 'composite' => 'int', + ), + 'Gmagick::setimagedelay' => + array ( + 0 => 'Gmagick', + 'delay' => 'int', + ), + 'Gmagick::setimagedepth' => + array ( + 0 => 'Gmagick', + 'depth' => 'int', + ), + 'Gmagick::setimagedispose' => + array ( + 0 => 'Gmagick', + 'disposetype' => 'int', + ), + 'Gmagick::setimagefilename' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::setimageformat' => + array ( + 0 => 'Gmagick', + 'imageformat' => 'string', + ), + 'Gmagick::setimagegamma' => + array ( + 0 => 'Gmagick', + 'gamma' => 'float', + ), + 'Gmagick::setimagegreenprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimageindex' => + array ( + 0 => 'Gmagick', + 'index' => 'int', + ), + 'Gmagick::setimageinterlacescheme' => + array ( + 0 => 'Gmagick', + 'interlace' => 'int', + ), + 'Gmagick::setimageiterations' => + array ( + 0 => 'Gmagick', + 'iterations' => 'int', + ), + 'Gmagick::setimageprofile' => + array ( + 0 => 'Gmagick', + 'name' => 'string', + 'profile' => 'string', + ), + 'Gmagick::setimageredprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimagerenderingintent' => + array ( + 0 => 'Gmagick', + 'rendering_intent' => 'int', + ), + 'Gmagick::setimageresolution' => + array ( + 0 => 'Gmagick', + 'xresolution' => 'float', + 'yresolution' => 'float', + ), + 'Gmagick::setimagescene' => + array ( + 0 => 'Gmagick', + 'scene' => 'int', + ), + 'Gmagick::setimagetype' => + array ( + 0 => 'Gmagick', + 'imgtype' => 'int', + ), + 'Gmagick::setimageunits' => + array ( + 0 => 'Gmagick', + 'resolution' => 'int', + ), + 'Gmagick::setimagewhitepoint' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setsamplingfactors' => + array ( + 0 => 'Gmagick', + 'factors' => 'array', + ), + 'Gmagick::setsize' => + array ( + 0 => 'Gmagick', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Gmagick::shearimage' => + array ( + 0 => 'Gmagick', + 'color' => 'mixed', + 'xshear' => 'float', + 'yshear' => 'float', + ), + 'Gmagick::solarizeimage' => + array ( + 0 => 'Gmagick', + 'threshold' => 'int', + ), + 'Gmagick::spreadimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::stripimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::swirlimage' => + array ( + 0 => 'Gmagick', + 'degrees' => 'float', + ), + 'Gmagick::thumbnailimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'fit=' => 'bool', + ), + 'Gmagick::trimimage' => + array ( + 0 => 'Gmagick', + 'fuzz' => 'float', + ), + 'Gmagick::write' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::writeimage' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + 'all_frames=' => 'bool', + ), + 'GmagickDraw::annotate' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'GmagickDraw::arc' => + array ( + 0 => 'GmagickDraw', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + 'sd' => 'float', + 'ed' => 'float', + ), + 'GmagickDraw::bezier' => + array ( + 0 => 'GmagickDraw', + 'coordinate_array' => 'array', + ), + 'GmagickDraw::ellipse' => + array ( + 0 => 'GmagickDraw', + 'ox' => 'float', + 'oy' => 'float', + 'rx' => 'float', + 'ry' => 'float', + 'start' => 'float', + 'end' => 'float', + ), + 'GmagickDraw::getfillcolor' => + array ( + 0 => 'GmagickPixel', + ), + 'GmagickDraw::getfillopacity' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getfont' => + array ( + 0 => 'false|string', + ), + 'GmagickDraw::getfontsize' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getfontstyle' => + array ( + 0 => 'int', + ), + 'GmagickDraw::getfontweight' => + array ( + 0 => 'int', + ), + 'GmagickDraw::getstrokecolor' => + array ( + 0 => 'GmagickPixel', + ), + 'GmagickDraw::getstrokeopacity' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getstrokewidth' => + array ( + 0 => 'float', + ), + 'GmagickDraw::gettextdecoration' => + array ( + 0 => 'int', + ), + 'GmagickDraw::gettextencoding' => + array ( + 0 => 'false|string', + ), + 'GmagickDraw::line' => + array ( + 0 => 'GmagickDraw', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + ), + 'GmagickDraw::point' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + ), + 'GmagickDraw::polygon' => + array ( + 0 => 'GmagickDraw', + 'coordinates' => 'array', + ), + 'GmagickDraw::polyline' => + array ( + 0 => 'GmagickDraw', + 'coordinate_array' => 'array', + ), + 'GmagickDraw::rectangle' => + array ( + 0 => 'GmagickDraw', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'GmagickDraw::rotate' => + array ( + 0 => 'GmagickDraw', + 'degrees' => 'float', + ), + 'GmagickDraw::roundrectangle' => + array ( + 0 => 'GmagickDraw', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'rx' => 'float', + 'ry' => 'float', + ), + 'GmagickDraw::scale' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + ), + 'GmagickDraw::setfillcolor' => + array ( + 0 => 'GmagickDraw', + 'color' => 'string', + ), + 'GmagickDraw::setfillopacity' => + array ( + 0 => 'GmagickDraw', + 'fill_opacity' => 'float', + ), + 'GmagickDraw::setfont' => + array ( + 0 => 'GmagickDraw', + 'font' => 'string', + ), + 'GmagickDraw::setfontsize' => + array ( + 0 => 'GmagickDraw', + 'pointsize' => 'float', + ), + 'GmagickDraw::setfontstyle' => + array ( + 0 => 'GmagickDraw', + 'style' => 'int', + ), + 'GmagickDraw::setfontweight' => + array ( + 0 => 'GmagickDraw', + 'weight' => 'int', + ), + 'GmagickDraw::setstrokecolor' => + array ( + 0 => 'GmagickDraw', + 'color' => 'gmagickpixel', + ), + 'GmagickDraw::setstrokeopacity' => + array ( + 0 => 'GmagickDraw', + 'stroke_opacity' => 'float', + ), + 'GmagickDraw::setstrokewidth' => + array ( + 0 => 'GmagickDraw', + 'width' => 'float', + ), + 'GmagickDraw::settextdecoration' => + array ( + 0 => 'GmagickDraw', + 'decoration' => 'int', + ), + 'GmagickDraw::settextencoding' => + array ( + 0 => 'GmagickDraw', + 'encoding' => 'string', + ), + 'GmagickPixel::__construct' => + array ( + 0 => 'void', + 'color=' => 'string', + ), + 'GmagickPixel::getcolor' => + array ( + 0 => 'mixed', + 'as_array=' => 'bool', + 'normalize_array=' => 'bool', + ), + 'GmagickPixel::getcolorcount' => + array ( + 0 => 'int', + ), + 'GmagickPixel::getcolorvalue' => + array ( + 0 => 'float', + 'color' => 'int', + ), + 'GmagickPixel::setcolor' => + array ( + 0 => 'GmagickPixel', + 'color' => 'string', + ), + 'GmagickPixel::setcolorvalue' => + array ( + 0 => 'GmagickPixel', + 'color' => 'int', + 'value' => 'float', + ), + 'gmdate' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + 'gmmktime' => + array ( + 0 => 'false|int', + 'hour' => 'int', + 'minute=' => 'int|null', + 'second=' => 'int|null', + 'month=' => 'int|null', + 'day=' => 'int|null', + 'year=' => 'int|null', + ), + 'GMP::__serialize' => + array ( + 0 => 'array', + ), + 'GMP::__unserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + 'gmp_abs' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_add' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_and' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_binomial' => + array ( + 0 => 'GMP', + 'n' => 'GMP|int|string', + 'k' => 'int', + ), + 'gmp_clrbit' => + array ( + 0 => 'void', + 'num' => 'GMP', + 'index' => 'int', + ), + 'gmp_cmp' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_com' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_div' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_q' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_qr' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_r' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_divexact' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_export' => + array ( + 0 => 'string', + 'num' => 'GMP|int|string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'gmp_fact' => + array ( + 0 => 'GMP', + 'num' => 'int', + ), + 'gmp_gcd' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_gcdext' => + array ( + 0 => 'array', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_hamdist' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_import' => + array ( + 0 => 'GMP', + 'data' => 'string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'gmp_init' => + array ( + 0 => 'GMP', + 'num' => 'int|string', + 'base=' => 'int', + ), + 'gmp_intval' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_invert' => + array ( + 0 => 'GMP|false', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_jacobi' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_kronecker' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_lcm' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_legendre' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_mod' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_mul' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_neg' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_nextprime' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_or' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_perfect_power' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + ), + 'gmp_perfect_square' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + ), + 'gmp_popcount' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_pow' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'exponent' => 'int', + ), + 'gmp_powm' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'exponent' => 'GMP|int|string', + 'modulus' => 'GMP|int|string', + ), + 'gmp_prob_prime' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + 'repetitions=' => 'int', + ), + 'gmp_random_bits' => + array ( + 0 => 'GMP', + 'bits' => 'int', + ), + 'gmp_random_range' => + array ( + 0 => 'GMP', + 'min' => 'GMP|int|string', + 'max' => 'GMP|int|string', + ), + 'gmp_random_seed' => + array ( + 0 => 'void', + 'seed' => 'GMP|int|string', + ), + 'gmp_root' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'nth' => 'int', + ), + 'gmp_rootrem' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num' => 'GMP|int|string', + 'nth' => 'int', + ), + 'gmp_scan0' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'start' => 'int', + ), + 'gmp_scan1' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'start' => 'int', + ), + 'gmp_setbit' => + array ( + 0 => 'void', + 'num' => 'GMP', + 'index' => 'int', + 'value=' => 'bool', + ), + 'gmp_sign' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_sqrt' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_sqrtrem' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num' => 'GMP|int|string', + ), + 'gmp_strval' => + array ( + 0 => 'numeric-string', + 'num' => 'GMP|int|string', + 'base=' => 'int', + ), + 'gmp_sub' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_testbit' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + 'index' => 'int', + ), + 'gmp_xor' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmstrftime' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + 'gnupg::adddecryptkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + 'passphrase' => 'string', + ), + 'gnupg::addencryptkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + ), + 'gnupg::addsignkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + 'passphrase=' => 'string', + ), + 'gnupg::cleardecryptkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::clearencryptkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::clearsignkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::decrypt' => + array ( + 0 => 'false|string', + 'text' => 'string', + ), + 'gnupg::decryptverify' => + array ( + 0 => 'array|false', + 'text' => 'string', + '&plaintext' => 'string', + ), + 'gnupg::encrypt' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::encryptsign' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::export' => + array ( + 0 => 'false|string', + 'fingerprint' => 'string', + ), + 'gnupg::geterror' => + array ( + 0 => 'false|string', + ), + 'gnupg::getprotocol' => + array ( + 0 => 'int', + ), + 'gnupg::import' => + array ( + 0 => 'array|false', + 'keydata' => 'string', + ), + 'gnupg::keyinfo' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'gnupg::setarmor' => + array ( + 0 => 'bool', + 'armor' => 'int', + ), + 'gnupg::seterrormode' => + array ( + 0 => 'void', + 'errormode' => 'int', + ), + 'gnupg::setsignmode' => + array ( + 0 => 'bool', + 'signmode' => 'int', + ), + 'gnupg::sign' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::verify' => + array ( + 0 => 'array|false', + 'signed_text' => 'string', + 'signature' => 'string', + '&plaintext=' => 'string', + ), + 'gnupg_adddecryptkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + 'passphrase' => 'string', + ), + 'gnupg_addencryptkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + ), + 'gnupg_addsignkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + 'passphrase=' => 'string', + ), + 'gnupg_cleardecryptkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_clearencryptkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_clearsignkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_decrypt' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'text' => 'string', + ), + 'gnupg_decryptverify' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'text' => 'string', + 'plaintext' => 'string', + ), + 'gnupg_encrypt' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_encryptsign' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_export' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'fingerprint' => 'string', + ), + 'gnupg_geterror' => + array ( + 0 => 'string', + 'identifier' => 'resource', + ), + 'gnupg_getprotocol' => + array ( + 0 => 'int', + 'identifier' => 'resource', + ), + 'gnupg_import' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'keydata' => 'string', + ), + 'gnupg_init' => + array ( + 0 => 'resource', + ), + 'gnupg_keyinfo' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'pattern' => 'string', + ), + 'gnupg_setarmor' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'armor' => 'int', + ), + 'gnupg_seterrormode' => + array ( + 0 => 'void', + 'identifier' => 'resource', + 'errormode' => 'int', + ), + 'gnupg_setsignmode' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'signmode' => 'int', + ), + 'gnupg_sign' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_verify' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'signed_text' => 'string', + 'signature' => 'string', + 'plaintext=' => 'string', + ), + 'gopher_parsedir' => + array ( + 0 => 'array', + 'dirent' => 'string', + ), + 'grapheme_extract' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'size' => 'int', + 'type=' => 'int', + 'offset=' => 'int', + '&w_next=' => 'int', + ), + 'grapheme_stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'beforeNeedle=' => 'bool', + ), + 'grapheme_strlen' => + array ( + 0 => 'false|int<0, max>|null', + 'string' => 'string', + ), + 'grapheme_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'beforeNeedle=' => 'bool', + ), + 'grapheme_substr' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + ), + 'gregoriantojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'gridObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'Grpc\\Call::__construct' => + array ( + 0 => 'void', + 'channel' => 'Grpc\\Channel', + 'method' => 'string', + 'absolute_deadline' => 'Grpc\\Timeval', + 'host_override=' => 'mixed', + ), + 'Grpc\\Call::cancel' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Call::getPeer' => + array ( + 0 => 'string', + ), + 'Grpc\\Call::setCredentials' => + array ( + 0 => 'int', + 'creds_obj' => 'Grpc\\CallCredentials', + ), + 'Grpc\\Call::startBatch' => + array ( + 0 => 'object', + 'batch' => 'array', + ), + 'Grpc\\CallCredentials::createComposite' => + array ( + 0 => 'Grpc\\CallCredentials', + 'cred1' => 'Grpc\\CallCredentials', + 'cred2' => 'Grpc\\CallCredentials', + ), + 'Grpc\\CallCredentials::createFromPlugin' => + array ( + 0 => 'Grpc\\CallCredentials', + 'callback' => 'Closure', + ), + 'Grpc\\Channel::__construct' => + array ( + 0 => 'void', + 'target' => 'string', + 'args=' => 'array', + ), + 'Grpc\\Channel::close' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Channel::getConnectivityState' => + array ( + 0 => 'int', + 'try_to_connect=' => 'bool', + ), + 'Grpc\\Channel::getTarget' => + array ( + 0 => 'string', + ), + 'Grpc\\Channel::watchConnectivityState' => + array ( + 0 => 'bool', + 'last_state' => 'int', + 'deadline_obj' => 'Grpc\\Timeval', + ), + 'Grpc\\ChannelCredentials::createComposite' => + array ( + 0 => 'Grpc\\ChannelCredentials', + 'cred1' => 'Grpc\\ChannelCredentials', + 'cred2' => 'Grpc\\CallCredentials', + ), + 'Grpc\\ChannelCredentials::createDefault' => + array ( + 0 => 'Grpc\\ChannelCredentials', + ), + 'Grpc\\ChannelCredentials::createInsecure' => + array ( + 0 => 'null', + ), + 'Grpc\\ChannelCredentials::createSsl' => + array ( + 0 => 'Grpc\\ChannelCredentials', + 'pem_root_certs' => 'string', + 'pem_private_key=' => 'string', + 'pem_cert_chain=' => 'string', + ), + 'Grpc\\ChannelCredentials::setDefaultRootsPem' => + array ( + 0 => 'mixed', + 'pem_roots' => 'string', + ), + 'Grpc\\Server::__construct' => + array ( + 0 => 'void', + 'args' => 'array', + ), + 'Grpc\\Server::addHttp2Port' => + array ( + 0 => 'bool', + 'addr' => 'string', + ), + 'Grpc\\Server::addSecureHttp2Port' => + array ( + 0 => 'bool', + 'addr' => 'string', + 'creds_obj' => 'Grpc\\ServerCredentials', + ), + 'Grpc\\Server::requestCall' => + array ( + 0 => 'mixed', + 'tag_new' => 'int', + 'tag_cancel' => 'int', + ), + 'Grpc\\Server::start' => + array ( + 0 => 'mixed', + ), + 'Grpc\\ServerCredentials::createSsl' => + array ( + 0 => 'object', + 'pem_root_certs' => 'string', + 'pem_private_key' => 'string', + 'pem_cert_chain' => 'string', + ), + 'Grpc\\Timeval::__construct' => + array ( + 0 => 'void', + 'usec' => 'int', + ), + 'Grpc\\Timeval::add' => + array ( + 0 => 'Grpc\\Timeval', + 'other' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::compare' => + array ( + 0 => 'int', + 'a' => 'Grpc\\Timeval', + 'b' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::infFuture' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::infPast' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::now' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::similar' => + array ( + 0 => 'bool', + 'a' => 'Grpc\\Timeval', + 'b' => 'Grpc\\Timeval', + 'threshold' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::sleepUntil' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Timeval::subtract' => + array ( + 0 => 'Grpc\\Timeval', + 'other' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::zero' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'gupnp_context_get_host_ip' => + array ( + 0 => 'string', + 'context' => 'resource', + ), + 'gupnp_context_get_port' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'gupnp_context_get_subscription_timeout' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'gupnp_context_host_path' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'local_path' => 'string', + 'server_path' => 'string', + ), + 'gupnp_context_new' => + array ( + 0 => 'resource', + 'host_ip=' => 'string', + 'port=' => 'int', + ), + 'gupnp_context_set_subscription_timeout' => + array ( + 0 => 'void', + 'context' => 'resource', + 'timeout' => 'int', + ), + 'gupnp_context_timeout_add' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'timeout' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_context_unhost_path' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'server_path' => 'string', + ), + 'gupnp_control_point_browse_start' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + ), + 'gupnp_control_point_browse_stop' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + ), + 'gupnp_control_point_callback_set' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + 'signal' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_control_point_new' => + array ( + 0 => 'resource', + 'context' => 'resource', + 'target' => 'string', + ), + 'gupnp_device_action_callback_set' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + 'signal' => 'int', + 'action_name' => 'string', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_device_info_get' => + array ( + 0 => 'array', + 'root_device' => 'resource', + ), + 'gupnp_device_info_get_service' => + array ( + 0 => 'resource', + 'root_device' => 'resource', + 'type' => 'string', + ), + 'gupnp_root_device_get_available' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_root_device_get_relative_location' => + array ( + 0 => 'string', + 'root_device' => 'resource', + ), + 'gupnp_root_device_new' => + array ( + 0 => 'resource', + 'context' => 'resource', + 'location' => 'string', + 'description_dir' => 'string', + ), + 'gupnp_root_device_set_available' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + 'available' => 'bool', + ), + 'gupnp_root_device_start' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_root_device_stop' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_service_action_get' => + array ( + 0 => 'mixed', + 'action' => 'resource', + 'name' => 'string', + 'type' => 'int', + ), + 'gupnp_service_action_return' => + array ( + 0 => 'bool', + 'action' => 'resource', + ), + 'gupnp_service_action_return_error' => + array ( + 0 => 'bool', + 'action' => 'resource', + 'error_code' => 'int', + 'error_description=' => 'string', + ), + 'gupnp_service_action_set' => + array ( + 0 => 'bool', + 'action' => 'resource', + 'name' => 'string', + 'type' => 'int', + 'value' => 'mixed', + ), + 'gupnp_service_freeze_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + ), + 'gupnp_service_info_get' => + array ( + 0 => 'array', + 'proxy' => 'resource', + ), + 'gupnp_service_info_get_introspection' => + array ( + 0 => 'mixed', + 'proxy' => 'resource', + 'callback=' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_introspection_get_state_variable' => + array ( + 0 => 'array', + 'introspection' => 'resource', + 'variable_name' => 'string', + ), + 'gupnp_service_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + 'name' => 'string', + 'type' => 'int', + 'value' => 'mixed', + ), + 'gupnp_service_proxy_action_get' => + array ( + 0 => 'mixed', + 'proxy' => 'resource', + 'action' => 'string', + 'name' => 'string', + 'type' => 'int', + ), + 'gupnp_service_proxy_action_set' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'action' => 'string', + 'name' => 'string', + 'value' => 'mixed', + 'type' => 'int', + ), + 'gupnp_service_proxy_add_notify' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'value' => 'string', + 'type' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_proxy_callback_set' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'signal' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_proxy_get_subscribed' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + ), + 'gupnp_service_proxy_remove_notify' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'value' => 'string', + ), + 'gupnp_service_proxy_send_action' => + array ( + 0 => 'array', + 'proxy' => 'resource', + 'action' => 'string', + 'in_params' => 'array', + 'out_params' => 'array', + ), + 'gupnp_service_proxy_set_subscribed' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'subscribed' => 'bool', + ), + 'gupnp_service_thaw_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + ), + 'gzclose' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzcompress' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzdecode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzdeflate' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzencode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzeof' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzfile' => + array ( + 0 => 'false|list', + 'filename' => 'string', + 'use_include_path=' => 'int', + ), + 'gzgetc' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + ), + 'gzgets' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + ), + 'gzinflate' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzopen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'string', + 'use_include_path=' => 'int', + ), + 'gzpassthru' => + array ( + 0 => 'int', + 'stream' => 'resource', + ), + 'gzputs' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'gzread' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + ), + 'gzrewind' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzseek' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'gztell' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + ), + 'gzuncompress' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzwrite' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'HaruAnnotation::setBorderStyle' => + array ( + 0 => 'bool', + 'width' => 'float', + 'dash_on' => 'int', + 'dash_off' => 'int', + ), + 'HaruAnnotation::setHighlightMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruAnnotation::setIcon' => + array ( + 0 => 'bool', + 'icon' => 'int', + ), + 'HaruAnnotation::setOpened' => + array ( + 0 => 'bool', + 'opened' => 'bool', + ), + 'HaruDestination::setFit' => + array ( + 0 => 'bool', + ), + 'HaruDestination::setFitB' => + array ( + 0 => 'bool', + ), + 'HaruDestination::setFitBH' => + array ( + 0 => 'bool', + 'top' => 'float', + ), + 'HaruDestination::setFitBV' => + array ( + 0 => 'bool', + 'left' => 'float', + ), + 'HaruDestination::setFitH' => + array ( + 0 => 'bool', + 'top' => 'float', + ), + 'HaruDestination::setFitR' => + array ( + 0 => 'bool', + 'left' => 'float', + 'bottom' => 'float', + 'right' => 'float', + 'top' => 'float', + ), + 'HaruDestination::setFitV' => + array ( + 0 => 'bool', + 'left' => 'float', + ), + 'HaruDestination::setXYZ' => + array ( + 0 => 'bool', + 'left' => 'float', + 'top' => 'float', + 'zoom' => 'float', + ), + 'HaruDoc::__construct' => + array ( + 0 => 'void', + ), + 'HaruDoc::addPage' => + array ( + 0 => 'object', + ), + 'HaruDoc::addPageLabel' => + array ( + 0 => 'bool', + 'first_page' => 'int', + 'style' => 'int', + 'first_num' => 'int', + 'prefix=' => 'string', + ), + 'HaruDoc::createOutline' => + array ( + 0 => 'object', + 'title' => 'string', + 'parent_outline=' => 'object', + 'encoder=' => 'object', + ), + 'HaruDoc::getCurrentEncoder' => + array ( + 0 => 'object', + ), + 'HaruDoc::getCurrentPage' => + array ( + 0 => 'object', + ), + 'HaruDoc::getEncoder' => + array ( + 0 => 'object', + 'encoding' => 'string', + ), + 'HaruDoc::getFont' => + array ( + 0 => 'object', + 'fontname' => 'string', + 'encoding=' => 'string', + ), + 'HaruDoc::getInfoAttr' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'HaruDoc::getPageLayout' => + array ( + 0 => 'int', + ), + 'HaruDoc::getPageMode' => + array ( + 0 => 'int', + ), + 'HaruDoc::getStreamSize' => + array ( + 0 => 'int', + ), + 'HaruDoc::insertPage' => + array ( + 0 => 'object', + 'page' => 'object', + ), + 'HaruDoc::loadJPEG' => + array ( + 0 => 'object', + 'filename' => 'string', + ), + 'HaruDoc::loadPNG' => + array ( + 0 => 'object', + 'filename' => 'string', + 'deferred=' => 'bool', + ), + 'HaruDoc::loadRaw' => + array ( + 0 => 'object', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'color_space' => 'int', + ), + 'HaruDoc::loadTTC' => + array ( + 0 => 'string', + 'fontfile' => 'string', + 'index' => 'int', + 'embed=' => 'bool', + ), + 'HaruDoc::loadTTF' => + array ( + 0 => 'string', + 'fontfile' => 'string', + 'embed=' => 'bool', + ), + 'HaruDoc::loadType1' => + array ( + 0 => 'string', + 'afmfile' => 'string', + 'pfmfile=' => 'string', + ), + 'HaruDoc::output' => + array ( + 0 => 'bool', + ), + 'HaruDoc::readFromStream' => + array ( + 0 => 'string', + 'bytes' => 'int', + ), + 'HaruDoc::resetError' => + array ( + 0 => 'bool', + ), + 'HaruDoc::resetStream' => + array ( + 0 => 'bool', + ), + 'HaruDoc::save' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'HaruDoc::saveToStream' => + array ( + 0 => 'bool', + ), + 'HaruDoc::setCompressionMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruDoc::setCurrentEncoder' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'HaruDoc::setEncryptionMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'key_len=' => 'int', + ), + 'HaruDoc::setInfoAttr' => + array ( + 0 => 'bool', + 'type' => 'int', + 'info' => 'string', + ), + 'HaruDoc::setInfoDateAttr' => + array ( + 0 => 'bool', + 'type' => 'int', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + 'hour' => 'int', + 'min' => 'int', + 'sec' => 'int', + 'ind' => 'string', + 'off_hour' => 'int', + 'off_min' => 'int', + ), + 'HaruDoc::setOpenAction' => + array ( + 0 => 'bool', + 'destination' => 'object', + ), + 'HaruDoc::setPageLayout' => + array ( + 0 => 'bool', + 'layout' => 'int', + ), + 'HaruDoc::setPageMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruDoc::setPagesConfiguration' => + array ( + 0 => 'bool', + 'page_per_pages' => 'int', + ), + 'HaruDoc::setPassword' => + array ( + 0 => 'bool', + 'owner_password' => 'string', + 'user_password' => 'string', + ), + 'HaruDoc::setPermission' => + array ( + 0 => 'bool', + 'permission' => 'int', + ), + 'HaruDoc::useCNSEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNSFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNTEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNTFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useJPEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useJPFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useKREncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useKRFonts' => + array ( + 0 => 'bool', + ), + 'HaruEncoder::getByteType' => + array ( + 0 => 'int', + 'text' => 'string', + 'index' => 'int', + ), + 'HaruEncoder::getType' => + array ( + 0 => 'int', + ), + 'HaruEncoder::getUnicode' => + array ( + 0 => 'int', + 'character' => 'int', + ), + 'HaruEncoder::getWritingMode' => + array ( + 0 => 'int', + ), + 'HaruFont::getAscent' => + array ( + 0 => 'int', + ), + 'HaruFont::getCapHeight' => + array ( + 0 => 'int', + ), + 'HaruFont::getDescent' => + array ( + 0 => 'int', + ), + 'HaruFont::getEncodingName' => + array ( + 0 => 'string', + ), + 'HaruFont::getFontName' => + array ( + 0 => 'string', + ), + 'HaruFont::getTextWidth' => + array ( + 0 => 'array', + 'text' => 'string', + ), + 'HaruFont::getUnicodeWidth' => + array ( + 0 => 'int', + 'character' => 'int', + ), + 'HaruFont::getXHeight' => + array ( + 0 => 'int', + ), + 'HaruFont::measureText' => + array ( + 0 => 'int', + 'text' => 'string', + 'width' => 'float', + 'font_size' => 'float', + 'char_space' => 'float', + 'word_space' => 'float', + 'word_wrap=' => 'bool', + ), + 'HaruImage::getBitsPerComponent' => + array ( + 0 => 'int', + ), + 'HaruImage::getColorSpace' => + array ( + 0 => 'string', + ), + 'HaruImage::getHeight' => + array ( + 0 => 'int', + ), + 'HaruImage::getSize' => + array ( + 0 => 'array', + ), + 'HaruImage::getWidth' => + array ( + 0 => 'int', + ), + 'HaruImage::setColorMask' => + array ( + 0 => 'bool', + 'rmin' => 'int', + 'rmax' => 'int', + 'gmin' => 'int', + 'gmax' => 'int', + 'bmin' => 'int', + 'bmax' => 'int', + ), + 'HaruImage::setMaskImage' => + array ( + 0 => 'bool', + 'mask_image' => 'object', + ), + 'HaruOutline::setDestination' => + array ( + 0 => 'bool', + 'destination' => 'object', + ), + 'HaruOutline::setOpened' => + array ( + 0 => 'bool', + 'opened' => 'bool', + ), + 'HaruPage::arc' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'ray' => 'float', + 'ang1' => 'float', + 'ang2' => 'float', + ), + 'HaruPage::beginText' => + array ( + 0 => 'bool', + ), + 'HaruPage::circle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'ray' => 'float', + ), + 'HaruPage::closePath' => + array ( + 0 => 'bool', + ), + 'HaruPage::concat' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::createDestination' => + array ( + 0 => 'object', + ), + 'HaruPage::createLinkAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'destination' => 'object', + ), + 'HaruPage::createTextAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'text' => 'string', + 'encoder=' => 'object', + ), + 'HaruPage::createURLAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'url' => 'string', + ), + 'HaruPage::curveTo' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::curveTo2' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::curveTo3' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::drawImage' => + array ( + 0 => 'bool', + 'image' => 'object', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'HaruPage::ellipse' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'xray' => 'float', + 'yray' => 'float', + ), + 'HaruPage::endPath' => + array ( + 0 => 'bool', + ), + 'HaruPage::endText' => + array ( + 0 => 'bool', + ), + 'HaruPage::eofill' => + array ( + 0 => 'bool', + ), + 'HaruPage::eoFillStroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::fill' => + array ( + 0 => 'bool', + ), + 'HaruPage::fillStroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::getCharSpace' => + array ( + 0 => 'float', + ), + 'HaruPage::getCMYKFill' => + array ( + 0 => 'array', + ), + 'HaruPage::getCMYKStroke' => + array ( + 0 => 'array', + ), + 'HaruPage::getCurrentFont' => + array ( + 0 => 'object', + ), + 'HaruPage::getCurrentFontSize' => + array ( + 0 => 'float', + ), + 'HaruPage::getCurrentPos' => + array ( + 0 => 'array', + ), + 'HaruPage::getCurrentTextPos' => + array ( + 0 => 'array', + ), + 'HaruPage::getDash' => + array ( + 0 => 'array', + ), + 'HaruPage::getFillingColorSpace' => + array ( + 0 => 'int', + ), + 'HaruPage::getFlatness' => + array ( + 0 => 'float', + ), + 'HaruPage::getGMode' => + array ( + 0 => 'int', + ), + 'HaruPage::getGrayFill' => + array ( + 0 => 'float', + ), + 'HaruPage::getGrayStroke' => + array ( + 0 => 'float', + ), + 'HaruPage::getHeight' => + array ( + 0 => 'float', + ), + 'HaruPage::getHorizontalScaling' => + array ( + 0 => 'float', + ), + 'HaruPage::getLineCap' => + array ( + 0 => 'int', + ), + 'HaruPage::getLineJoin' => + array ( + 0 => 'int', + ), + 'HaruPage::getLineWidth' => + array ( + 0 => 'float', + ), + 'HaruPage::getMiterLimit' => + array ( + 0 => 'float', + ), + 'HaruPage::getRGBFill' => + array ( + 0 => 'array', + ), + 'HaruPage::getRGBStroke' => + array ( + 0 => 'array', + ), + 'HaruPage::getStrokingColorSpace' => + array ( + 0 => 'int', + ), + 'HaruPage::getTextLeading' => + array ( + 0 => 'float', + ), + 'HaruPage::getTextMatrix' => + array ( + 0 => 'array', + ), + 'HaruPage::getTextRenderingMode' => + array ( + 0 => 'int', + ), + 'HaruPage::getTextRise' => + array ( + 0 => 'float', + ), + 'HaruPage::getTextWidth' => + array ( + 0 => 'float', + 'text' => 'string', + ), + 'HaruPage::getTransMatrix' => + array ( + 0 => 'array', + ), + 'HaruPage::getWidth' => + array ( + 0 => 'float', + ), + 'HaruPage::getWordSpace' => + array ( + 0 => 'float', + ), + 'HaruPage::lineTo' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::measureText' => + array ( + 0 => 'int', + 'text' => 'string', + 'width' => 'float', + 'wordwrap=' => 'bool', + ), + 'HaruPage::moveTextPos' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'set_leading=' => 'bool', + ), + 'HaruPage::moveTo' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::moveToNextLine' => + array ( + 0 => 'bool', + ), + 'HaruPage::rectangle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'HaruPage::setCharSpace' => + array ( + 0 => 'bool', + 'char_space' => 'float', + ), + 'HaruPage::setCMYKFill' => + array ( + 0 => 'bool', + 'c' => 'float', + 'm' => 'float', + 'y' => 'float', + 'k' => 'float', + ), + 'HaruPage::setCMYKStroke' => + array ( + 0 => 'bool', + 'c' => 'float', + 'm' => 'float', + 'y' => 'float', + 'k' => 'float', + ), + 'HaruPage::setDash' => + array ( + 0 => 'bool', + 'pattern' => 'array', + 'phase' => 'int', + ), + 'HaruPage::setFlatness' => + array ( + 0 => 'bool', + 'flatness' => 'float', + ), + 'HaruPage::setFontAndSize' => + array ( + 0 => 'bool', + 'font' => 'object', + 'size' => 'float', + ), + 'HaruPage::setGrayFill' => + array ( + 0 => 'bool', + 'value' => 'float', + ), + 'HaruPage::setGrayStroke' => + array ( + 0 => 'bool', + 'value' => 'float', + ), + 'HaruPage::setHeight' => + array ( + 0 => 'bool', + 'height' => 'float', + ), + 'HaruPage::setHorizontalScaling' => + array ( + 0 => 'bool', + 'scaling' => 'float', + ), + 'HaruPage::setLineCap' => + array ( + 0 => 'bool', + 'cap' => 'int', + ), + 'HaruPage::setLineJoin' => + array ( + 0 => 'bool', + 'join' => 'int', + ), + 'HaruPage::setLineWidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'HaruPage::setMiterLimit' => + array ( + 0 => 'bool', + 'limit' => 'float', + ), + 'HaruPage::setRGBFill' => + array ( + 0 => 'bool', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'HaruPage::setRGBStroke' => + array ( + 0 => 'bool', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'HaruPage::setRotate' => + array ( + 0 => 'bool', + 'angle' => 'int', + ), + 'HaruPage::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + 'direction' => 'int', + ), + 'HaruPage::setSlideShow' => + array ( + 0 => 'bool', + 'type' => 'int', + 'disp_time' => 'float', + 'trans_time' => 'float', + ), + 'HaruPage::setTextLeading' => + array ( + 0 => 'bool', + 'text_leading' => 'float', + ), + 'HaruPage::setTextMatrix' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::setTextRenderingMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruPage::setTextRise' => + array ( + 0 => 'bool', + 'rise' => 'float', + ), + 'HaruPage::setWidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'HaruPage::setWordSpace' => + array ( + 0 => 'bool', + 'word_space' => 'float', + ), + 'HaruPage::showText' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'HaruPage::showTextNextLine' => + array ( + 0 => 'bool', + 'text' => 'string', + 'word_space=' => 'float', + 'char_space=' => 'float', + ), + 'HaruPage::stroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::textOut' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'HaruPage::textRect' => + array ( + 0 => 'bool', + 'left' => 'float', + 'top' => 'float', + 'right' => 'float', + 'bottom' => 'float', + 'text' => 'string', + 'align=' => 'int', + ), + 'hash' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + 'options=' => 'array{seed: scalar}', + ), + 'hash_algos' => + array ( + 0 => 'list', + ), + 'hash_copy' => + array ( + 0 => 'HashContext', + 'context' => 'HashContext', + ), + 'hash_equals' => + array ( + 0 => 'bool', + 'known_string' => 'string', + 'user_string' => 'string', + ), + 'hash_file' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'binary=' => 'bool', + 'options=' => 'array{seed: scalar}', + ), + 'hash_final' => + array ( + 0 => 'non-empty-string', + 'context' => 'HashContext', + 'binary=' => 'bool', + ), + 'hash_hkdf' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'key' => 'string', + 'length=' => 'int', + 'info=' => 'string', + 'salt=' => 'string', + ), + 'hash_hmac' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'hash_hmac_algos' => + array ( + 0 => 'list', + ), + 'hash_hmac_file' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'hash_init' => + array ( + 0 => 'HashContext', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + 'options=' => 'array{seed: scalar}', + ), + 'hash_pbkdf2' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'password' => 'string', + 'salt' => 'string', + 'iterations' => 'int', + 'length=' => 'int', + 'binary=' => 'bool', + 'options=' => 'array', + ), + 'hash_update' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'data' => 'string', + ), + 'hash_update_file' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'filename' => 'string', + 'stream_context=' => 'null|resource', + ), + 'hash_update_stream' => + array ( + 0 => 'int', + 'context' => 'HashContext', + 'stream' => 'resource', + 'length=' => 'int', + ), + 'hashTableObj::clear' => + array ( + 0 => 'void', + ), + 'hashTableObj::get' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'hashTableObj::nextkey' => + array ( + 0 => 'string', + 'previousKey' => 'string', + ), + 'hashTableObj::remove' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'hashTableObj::set' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'header' => + array ( + 0 => 'void', + 'header' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'header_register_callback' => + array ( + 0 => 'bool', + 'callback' => 'callable():void', + ), + 'header_remove' => + array ( + 0 => 'void', + 'name=' => 'null|string', + ), + 'headers_list' => + array ( + 0 => 'list', + ), + 'headers_sent' => + array ( + 0 => 'bool', + '&w_filename=' => 'string', + '&w_line=' => 'int', + ), + 'hebrev' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_chars_per_line=' => 'int', + ), + 'hebrevc' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_chars_per_line=' => 'int', + ), + 'hex2bin' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'hexdec' => + array ( + 0 => 'float|int', + 'hex_string' => 'string', + ), + 'highlight_file' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + 'return=' => 'bool', + ), + 'highlight_string' => + array ( + 0 => 'bool|string', + 'string' => 'string', + 'return=' => 'bool', + ), + 'hrtime' => + array ( + 0 => 'array{0: int, 1: int}|false', + 'as_number=' => 'false', + ), + 'hrtime\'1' => + array ( + 0 => 'false|float|int', + 'as_number=' => 'true', + ), + 'HRTime\\PerformanceCounter::getElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getFrequency' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getLastElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getTicksSince' => + array ( + 0 => 'int', + 'start' => 'int', + ), + 'HRTime\\PerformanceCounter::isRunning' => + array ( + 0 => 'bool', + ), + 'HRTime\\PerformanceCounter::start' => + array ( + 0 => 'void', + ), + 'HRTime\\PerformanceCounter::stop' => + array ( + 0 => 'void', + ), + 'HRTime\\StopWatch::getElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\StopWatch::getElapsedTime' => + array ( + 0 => 'float', + 'unit=' => 'int', + ), + 'HRTime\\StopWatch::getLastElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\StopWatch::getLastElapsedTime' => + array ( + 0 => 'float', + 'unit=' => 'int', + ), + 'HRTime\\StopWatch::isRunning' => + array ( + 0 => 'bool', + ), + 'HRTime\\StopWatch::start' => + array ( + 0 => 'void', + ), + 'HRTime\\StopWatch::stop' => + array ( + 0 => 'void', + ), + 'html_entity_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + ), + 'htmlentities' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + 'double_encode=' => 'bool', + ), + 'htmlspecialchars' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + 'double_encode=' => 'bool', + ), + 'htmlspecialchars_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + ), + 'http\\Client::__construct' => + array ( + 0 => 'void', + 'driver=' => 'string', + 'persistent_handle_id=' => 'string', + ), + 'http\\Client::addCookies' => + array ( + 0 => 'http\\Client', + 'cookies=' => 'array|null', + ), + 'http\\Client::addSslOptions' => + array ( + 0 => 'http\\Client', + 'ssl_options=' => 'array|null', + ), + 'http\\Client::attach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'http\\Client::configure' => + array ( + 0 => 'http\\Client', + 'settings' => 'array', + ), + 'http\\Client::count' => + array ( + 0 => 'int', + ), + 'http\\Client::dequeue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::detach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'http\\Client::enableEvents' => + array ( + 0 => 'http\\Client', + 'enable=' => 'mixed', + ), + 'http\\Client::enablePipelining' => + array ( + 0 => 'http\\Client', + 'enable=' => 'mixed', + ), + 'http\\Client::enqueue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + 'callable=' => 'mixed', + ), + 'http\\Client::getAvailableConfiguration' => + array ( + 0 => 'array', + ), + 'http\\Client::getAvailableDrivers' => + array ( + 0 => 'array', + ), + 'http\\Client::getAvailableOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getCookies' => + array ( + 0 => 'array', + ), + 'http\\Client::getHistory' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client::getObservers' => + array ( + 0 => 'SplObjectStorage', + ), + 'http\\Client::getOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getProgressInfo' => + array ( + 0 => 'null|object', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::getResponse' => + array ( + 0 => 'http\\Client\\Response|null', + 'request=' => 'http\\Client\\Request|null', + ), + 'http\\Client::getSslOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getTransferInfo' => + array ( + 0 => 'object', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::notify' => + array ( + 0 => 'void', + 'request=' => 'http\\Client\\Request|null', + ), + 'http\\Client::once' => + array ( + 0 => 'bool', + ), + 'http\\Client::requeue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + 'callable=' => 'mixed', + ), + 'http\\Client::reset' => + array ( + 0 => 'http\\Client', + ), + 'http\\Client::send' => + array ( + 0 => 'http\\Client', + ), + 'http\\Client::setCookies' => + array ( + 0 => 'http\\Client', + 'cookies=' => 'array|null', + ), + 'http\\Client::setDebug' => + array ( + 0 => 'http\\Client', + 'callback' => 'callable', + ), + 'http\\Client::setOptions' => + array ( + 0 => 'http\\Client', + 'options=' => 'array|null', + ), + 'http\\Client::setSslOptions' => + array ( + 0 => 'http\\Client', + 'ssl_option=' => 'array|null', + ), + 'http\\Client::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'mixed', + ), + 'http\\Client\\Curl\\User::init' => + array ( + 0 => 'mixed', + 'run' => 'callable', + ), + 'http\\Client\\Curl\\User::once' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Curl\\User::send' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Curl\\User::socket' => + array ( + 0 => 'mixed', + 'socket' => 'resource', + 'action' => 'int', + ), + 'http\\Client\\Curl\\User::timer' => + array ( + 0 => 'mixed', + 'timeout_ms' => 'int', + ), + 'http\\Client\\Curl\\User::wait' => + array ( + 0 => 'mixed', + 'timeout_ms=' => 'mixed', + ), + 'http\\Client\\Request::__construct' => + array ( + 0 => 'void', + 'method=' => 'mixed', + 'url=' => 'mixed', + 'headers=' => 'array|null', + 'body=' => 'http\\Message\\Body|null', + ), + 'http\\Client\\Request::__toString' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Request::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Client\\Request::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Client\\Request::addQuery' => + array ( + 0 => 'http\\Client\\Request', + 'query_data' => 'mixed', + ), + 'http\\Client\\Request::addSslOptions' => + array ( + 0 => 'http\\Client\\Request', + 'ssl_options=' => 'array|null', + ), + 'http\\Client\\Request::count' => + array ( + 0 => 'int', + ), + 'http\\Client\\Request::current' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Request::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Client\\Request::getContentType' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Client\\Request::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getOptions' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::getQuery' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Client\\Request::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getSslOptions' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getType' => + array ( + 0 => 'int', + ), + 'http\\Client\\Request::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Client\\Request::key' => + array ( + 0 => 'int|string', + ), + 'http\\Client\\Request::next' => + array ( + 0 => 'void', + ), + 'http\\Client\\Request::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Client\\Request::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::rewind' => + array ( + 0 => 'void', + ), + 'http\\Client\\Request::serialize' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Request::setContentType' => + array ( + 0 => 'http\\Client\\Request', + 'content_type' => 'string', + ), + 'http\\Client\\Request::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Client\\Request::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Client\\Request::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Client\\Request::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Client\\Request::setOptions' => + array ( + 0 => 'http\\Client\\Request', + 'options=' => 'array|null', + ), + 'http\\Client\\Request::setQuery' => + array ( + 0 => 'http\\Client\\Request', + 'query_data=' => 'mixed', + ), + 'http\\Client\\Request::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Client\\Request::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Client\\Request::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Client\\Request::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Client\\Request::setSslOptions' => + array ( + 0 => 'http\\Client\\Request', + 'ssl_options=' => 'array|null', + ), + 'http\\Client\\Request::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Client\\Request::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Client\\Request::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Client\\Request::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Client\\Request::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Client\\Request::valid' => + array ( + 0 => 'bool', + ), + 'http\\Client\\Response::__construct' => + array ( + 0 => 'Iterator', + ), + 'http\\Client\\Response::__toString' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Response::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Client\\Response::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Client\\Response::count' => + array ( + 0 => 'int', + ), + 'http\\Client\\Response::current' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Response::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Client\\Response::getCookies' => + array ( + 0 => 'array', + 'flags=' => 'mixed', + 'allowed_extras=' => 'mixed', + ), + 'http\\Client\\Response::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Client\\Response::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Client\\Response::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Response::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Client\\Response::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getTransferInfo' => + array ( + 0 => 'mixed|object', + 'element=' => 'mixed', + ), + 'http\\Client\\Response::getType' => + array ( + 0 => 'int', + ), + 'http\\Client\\Response::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Client\\Response::key' => + array ( + 0 => 'int|string', + ), + 'http\\Client\\Response::next' => + array ( + 0 => 'void', + ), + 'http\\Client\\Response::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Client\\Response::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::rewind' => + array ( + 0 => 'void', + ), + 'http\\Client\\Response::serialize' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Response::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Client\\Response::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Client\\Response::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Client\\Response::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Client\\Response::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Client\\Response::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Client\\Response::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Client\\Response::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Client\\Response::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Client\\Response::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Client\\Response::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Client\\Response::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Client\\Response::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Client\\Response::valid' => + array ( + 0 => 'bool', + ), + 'http\\Cookie::__construct' => + array ( + 0 => 'void', + 'cookie_string=' => 'mixed', + 'parser_flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'http\\Cookie::__toString' => + array ( + 0 => 'string', + ), + 'http\\Cookie::addCookie' => + array ( + 0 => 'http\\Cookie', + 'cookie_name' => 'string', + 'cookie_value' => 'string', + ), + 'http\\Cookie::addCookies' => + array ( + 0 => 'http\\Cookie', + 'cookies' => 'array', + ), + 'http\\Cookie::addExtra' => + array ( + 0 => 'http\\Cookie', + 'extra_name' => 'string', + 'extra_value' => 'string', + ), + 'http\\Cookie::addExtras' => + array ( + 0 => 'http\\Cookie', + 'extras' => 'array', + ), + 'http\\Cookie::getCookie' => + array ( + 0 => 'null|string', + 'name' => 'string', + ), + 'http\\Cookie::getCookies' => + array ( + 0 => 'array', + ), + 'http\\Cookie::getDomain' => + array ( + 0 => 'string', + ), + 'http\\Cookie::getExpires' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getExtra' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'http\\Cookie::getExtras' => + array ( + 0 => 'array', + ), + 'http\\Cookie::getFlags' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getMaxAge' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getPath' => + array ( + 0 => 'string', + ), + 'http\\Cookie::setCookie' => + array ( + 0 => 'http\\Cookie', + 'cookie_name' => 'string', + 'cookie_value=' => 'mixed', + ), + 'http\\Cookie::setCookies' => + array ( + 0 => 'http\\Cookie', + 'cookies=' => 'mixed', + ), + 'http\\Cookie::setDomain' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setExpires' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setExtra' => + array ( + 0 => 'http\\Cookie', + 'extra_name' => 'string', + 'extra_value=' => 'mixed', + ), + 'http\\Cookie::setExtras' => + array ( + 0 => 'http\\Cookie', + 'extras=' => 'mixed', + ), + 'http\\Cookie::setFlags' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setMaxAge' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setPath' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::toArray' => + array ( + 0 => 'array', + ), + 'http\\Cookie::toString' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Debrotli::decode' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Debrotli::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Dechunk::decode' => + array ( + 0 => 'false|string', + 'data' => 'string', + '&decoded_len=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Dechunk::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Dechunk::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Deflate::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Deflate::encode' => + array ( + 0 => 'string', + 'data' => 'string', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Deflate::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Enbrotli::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Enbrotli::encode' => + array ( + 0 => 'string', + 'data' => 'string', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Enbrotli::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Inflate::decode' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Inflate::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Env::getRequestBody' => + array ( + 0 => 'http\\Message\\Body', + 'body_class_name=' => 'mixed', + ), + 'http\\Env::getRequestHeader' => + array ( + 0 => 'array|null|string', + 'header_name=' => 'mixed', + ), + 'http\\Env::getResponseCode' => + array ( + 0 => 'int', + ), + 'http\\Env::getResponseHeader' => + array ( + 0 => 'array|null|string', + 'header_name=' => 'mixed', + ), + 'http\\Env::getResponseStatusForAllCodes' => + array ( + 0 => 'array', + ), + 'http\\Env::getResponseStatusForCode' => + array ( + 0 => 'string', + 'code' => 'int', + ), + 'http\\Env::negotiate' => + array ( + 0 => 'null|string', + 'params' => 'string', + 'supported' => 'array', + 'primary_type_separator=' => 'mixed', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateCharset' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateContentType' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateEncoding' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateLanguage' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::setResponseCode' => + array ( + 0 => 'bool', + 'code' => 'int', + ), + 'http\\Env::setResponseHeader' => + array ( + 0 => 'bool', + 'header_name' => 'string', + 'header_value=' => 'mixed', + 'response_code=' => 'mixed', + 'replace_header=' => 'mixed', + ), + 'http\\Env\\Request::__construct' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::__toString' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Request::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Env\\Request::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Env\\Request::count' => + array ( + 0 => 'int', + ), + 'http\\Env\\Request::current' => + array ( + 0 => 'mixed', + ), + 'http\\Env\\Request::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Env\\Request::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getFiles' => + array ( + 0 => 'array', + ), + 'http\\Env\\Request::getForm' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Env\\Request::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Env\\Request::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Env\\Request::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Env\\Request::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getType' => + array ( + 0 => 'int', + ), + 'http\\Env\\Request::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Env\\Request::key' => + array ( + 0 => 'int|string', + ), + 'http\\Env\\Request::next' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Env\\Request::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::rewind' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::serialize' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Request::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Env\\Request::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Env\\Request::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Env\\Request::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Env\\Request::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Env\\Request::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Env\\Request::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Env\\Request::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Env\\Request::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Env\\Request::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Env\\Request::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Env\\Request::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Env\\Request::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Env\\Request::valid' => + array ( + 0 => 'bool', + ), + 'http\\Env\\Response::__construct' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::__invoke' => + array ( + 0 => 'bool', + 'data' => 'string', + 'ob_flags=' => 'int', + ), + 'http\\Env\\Response::__toString' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Response::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Env\\Response::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Env\\Response::count' => + array ( + 0 => 'int', + ), + 'http\\Env\\Response::current' => + array ( + 0 => 'mixed', + ), + 'http\\Env\\Response::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Env\\Response::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Env\\Response::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Env\\Response::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Env\\Response::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Env\\Response::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getType' => + array ( + 0 => 'int', + ), + 'http\\Env\\Response::isCachedByETag' => + array ( + 0 => 'int', + 'header_name=' => 'string', + ), + 'http\\Env\\Response::isCachedByLastModified' => + array ( + 0 => 'int', + 'header_name=' => 'string', + ), + 'http\\Env\\Response::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Env\\Response::key' => + array ( + 0 => 'int|string', + ), + 'http\\Env\\Response::next' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Env\\Response::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::rewind' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::send' => + array ( + 0 => 'bool', + 'stream=' => 'resource', + ), + 'http\\Env\\Response::serialize' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Response::setCacheControl' => + array ( + 0 => 'http\\Env\\Response', + 'cache_control' => 'string', + ), + 'http\\Env\\Response::setContentDisposition' => + array ( + 0 => 'http\\Env\\Response', + 'disposition_params' => 'array', + ), + 'http\\Env\\Response::setContentEncoding' => + array ( + 0 => 'http\\Env\\Response', + 'content_encoding' => 'int', + ), + 'http\\Env\\Response::setContentType' => + array ( + 0 => 'http\\Env\\Response', + 'content_type' => 'string', + ), + 'http\\Env\\Response::setCookie' => + array ( + 0 => 'http\\Env\\Response', + 'cookie' => 'mixed', + ), + 'http\\Env\\Response::setEnvRequest' => + array ( + 0 => 'http\\Env\\Response', + 'env_request' => 'http\\Message', + ), + 'http\\Env\\Response::setEtag' => + array ( + 0 => 'http\\Env\\Response', + 'etag' => 'string', + ), + 'http\\Env\\Response::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Env\\Response::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Env\\Response::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Env\\Response::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Env\\Response::setLastModified' => + array ( + 0 => 'http\\Env\\Response', + 'last_modified' => 'int', + ), + 'http\\Env\\Response::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Env\\Response::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Env\\Response::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Env\\Response::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Env\\Response::setThrottleRate' => + array ( + 0 => 'http\\Env\\Response', + 'chunk_size' => 'int', + 'delay=' => 'float|int', + ), + 'http\\Env\\Response::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Env\\Response::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Env\\Response::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Env\\Response::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Env\\Response::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Env\\Response::valid' => + array ( + 0 => 'bool', + ), + 'http\\Header::__construct' => + array ( + 0 => 'void', + 'name=' => 'mixed', + 'value=' => 'mixed', + ), + 'http\\Header::__toString' => + array ( + 0 => 'string', + ), + 'http\\Header::getParams' => + array ( + 0 => 'http\\Params', + 'param_sep=' => 'mixed', + 'arg_sep=' => 'mixed', + 'val_sep=' => 'mixed', + 'flags=' => 'mixed', + ), + 'http\\Header::match' => + array ( + 0 => 'bool', + 'value' => 'string', + 'flags=' => 'mixed', + ), + 'http\\Header::negotiate' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result=' => 'mixed', + ), + 'http\\Header::parse' => + array ( + 0 => 'array|false', + 'string' => 'string', + 'header_class=' => 'mixed', + ), + 'http\\Header::serialize' => + array ( + 0 => 'string', + ), + 'http\\Header::toString' => + array ( + 0 => 'string', + ), + 'http\\Header::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Header\\Parser::getState' => + array ( + 0 => 'int', + ), + 'http\\Header\\Parser::parse' => + array ( + 0 => 'int', + 'data' => 'string', + 'flags' => 'int', + '&headers' => 'array', + ), + 'http\\Header\\Parser::stream' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'flags' => 'int', + '&headers' => 'array', + ), + 'http\\Message::__construct' => + array ( + 0 => 'void', + 'message=' => 'mixed', + 'greedy=' => 'bool', + ), + 'http\\Message::__toString' => + array ( + 0 => 'string', + ), + 'http\\Message::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Message::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Message::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Message::count' => + array ( + 0 => 'int', + ), + 'http\\Message::current' => + array ( + 0 => 'mixed', + ), + 'http\\Message::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Message::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Message::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Message::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Message::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Message::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Message::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getType' => + array ( + 0 => 'int', + ), + 'http\\Message::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Message::key' => + array ( + 0 => 'int|string', + ), + 'http\\Message::next' => + array ( + 0 => 'void', + ), + 'http\\Message::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Message::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::rewind' => + array ( + 0 => 'void', + ), + 'http\\Message::serialize' => + array ( + 0 => 'string', + ), + 'http\\Message::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Message::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Message::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Message::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Message::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Message::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Message::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Message::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Message::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Message::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Message::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Message::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Message::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Message::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Message::valid' => + array ( + 0 => 'bool', + ), + 'http\\Message\\Body::__construct' => + array ( + 0 => 'void', + 'stream=' => 'resource', + ), + 'http\\Message\\Body::__toString' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::addForm' => + array ( + 0 => 'http\\Message\\Body', + 'fields=' => 'array|null', + 'files=' => 'array|null', + ), + 'http\\Message\\Body::addPart' => + array ( + 0 => 'http\\Message\\Body', + 'message' => 'http\\Message', + ), + 'http\\Message\\Body::append' => + array ( + 0 => 'http\\Message\\Body', + 'string' => 'string', + ), + 'http\\Message\\Body::etag' => + array ( + 0 => 'false|string', + ), + 'http\\Message\\Body::getBoundary' => + array ( + 0 => 'null|string', + ), + 'http\\Message\\Body::getResource' => + array ( + 0 => 'resource', + ), + 'http\\Message\\Body::serialize' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::stat' => + array ( + 0 => 'int|object', + 'field=' => 'mixed', + ), + 'http\\Message\\Body::toCallback' => + array ( + 0 => 'http\\Message\\Body', + 'callback' => 'callable', + 'offset=' => 'mixed', + 'maxlen=' => 'mixed', + ), + 'http\\Message\\Body::toStream' => + array ( + 0 => 'http\\Message\\Body', + 'stream' => 'resource', + 'offset=' => 'mixed', + 'maxlen=' => 'mixed', + ), + 'http\\Message\\Body::toString' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Message\\Parser::getState' => + array ( + 0 => 'int', + ), + 'http\\Message\\Parser::parse' => + array ( + 0 => 'int', + 'data' => 'string', + 'flags' => 'int', + '&message' => 'http\\Message', + ), + 'http\\Message\\Parser::stream' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'flags' => 'int', + '&message' => 'http\\Message', + ), + 'http\\Params::__construct' => + array ( + 0 => 'void', + 'params=' => 'mixed', + 'param_sep=' => 'mixed', + 'arg_sep=' => 'mixed', + 'val_sep=' => 'mixed', + 'flags=' => 'mixed', + ), + 'http\\Params::__toString' => + array ( + 0 => 'string', + ), + 'http\\Params::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'http\\Params::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'http\\Params::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'http\\Params::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'http\\Params::toArray' => + array ( + 0 => 'array', + ), + 'http\\Params::toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::__construct' => + array ( + 0 => 'void', + 'querystring' => 'string', + ), + 'http\\QueryString::__toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::get' => + array ( + 0 => 'http\\QueryString|mixed|string', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getArray' => + array ( + 0 => 'array|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getBool' => + array ( + 0 => 'bool|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getFloat' => + array ( + 0 => 'float|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getGlobalInstance' => + array ( + 0 => 'http\\QueryString', + ), + 'http\\QueryString::getInt' => + array ( + 0 => 'int|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getIterator' => + array ( + 0 => 'IteratorAggregate', + ), + 'http\\QueryString::getObject' => + array ( + 0 => 'mixed|object', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getString' => + array ( + 0 => 'mixed|string', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::mod' => + array ( + 0 => 'http\\QueryString', + 'params=' => 'mixed', + ), + 'http\\QueryString::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'http\\QueryString::offsetGet' => + array ( + 0 => 'mixed|null', + 'offset' => 'int|string', + ), + 'http\\QueryString::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'http\\QueryString::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'http\\QueryString::serialize' => + array ( + 0 => 'string', + ), + 'http\\QueryString::set' => + array ( + 0 => 'http\\QueryString', + 'params' => 'mixed', + ), + 'http\\QueryString::toArray' => + array ( + 0 => 'array', + ), + 'http\\QueryString::toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\QueryString::xlate' => + array ( + 0 => 'http\\QueryString', + ), + 'http\\Url::__construct' => + array ( + 0 => 'void', + 'old_url=' => 'mixed', + 'new_url=' => 'mixed', + 'flags=' => 'int', + ), + 'http\\Url::__toString' => + array ( + 0 => 'string', + ), + 'http\\Url::mod' => + array ( + 0 => 'http\\Url', + 'parts' => 'mixed', + 'flags=' => 'float|int|mixed', + ), + 'http\\Url::toArray' => + array ( + 0 => 'array', + ), + 'http\\Url::toString' => + array ( + 0 => 'string', + ), + 'http_build_cookie' => + array ( + 0 => 'string', + 'cookie' => 'array', + ), + 'http_build_query' => + array ( + 0 => 'string', + 'data' => 'array|object', + 'numeric_prefix=' => 'string', + 'arg_separator=' => 'null|string', + 'encoding_type=' => 'int', + ), + 'http_build_str' => + array ( + 0 => 'string', + 'query' => 'array', + 'prefix=' => 'null|string', + 'arg_separator=' => 'string', + ), + 'http_build_url' => + array ( + 0 => 'string', + 'url=' => 'array|string', + 'parts=' => 'array|string', + 'flags=' => 'int', + 'new_url=' => 'array', + ), + 'http_cache_etag' => + array ( + 0 => 'bool', + 'etag=' => 'string', + ), + 'http_cache_last_modified' => + array ( + 0 => 'bool', + 'timestamp_or_expires=' => 'int', + ), + 'http_chunked_decode' => + array ( + 0 => 'false|string', + 'encoded' => 'string', + ), + 'http_date' => + array ( + 0 => 'string', + 'timestamp=' => 'int', + ), + 'http_deflate' => + array ( + 0 => 'null|string', + 'data' => 'string', + 'flags=' => 'int', + ), + 'http_get' => + array ( + 0 => 'string', + 'url' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_get_request_body' => + array ( + 0 => 'null|string', + ), + 'http_get_request_body_stream' => + array ( + 0 => 'null|resource', + ), + 'http_get_request_headers' => + array ( + 0 => 'array', + ), + 'http_head' => + array ( + 0 => 'string', + 'url' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_inflate' => + array ( + 0 => 'null|string', + 'data' => 'string', + ), + 'http_match_etag' => + array ( + 0 => 'bool', + 'etag' => 'string', + 'for_range=' => 'bool', + ), + 'http_match_modified' => + array ( + 0 => 'bool', + 'timestamp=' => 'int', + 'for_range=' => 'bool', + ), + 'http_match_request_header' => + array ( + 0 => 'bool', + 'header' => 'string', + 'value' => 'string', + 'match_case=' => 'bool', + ), + 'http_negotiate_charset' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_negotiate_content_type' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_negotiate_language' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_parse_cookie' => + array ( + 0 => 'false|stdClass', + 'cookie' => 'string', + 'flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'http_parse_headers' => + array ( + 0 => 'array|false', + 'header' => 'string', + ), + 'http_parse_message' => + array ( + 0 => 'object', + 'message' => 'string', + ), + 'http_parse_params' => + array ( + 0 => 'stdClass', + 'param' => 'string', + 'flags=' => 'int', + ), + 'http_persistent_handles_clean' => + array ( + 0 => 'string', + 'ident=' => 'string', + ), + 'http_persistent_handles_count' => + array ( + 0 => 'false|stdClass', + ), + 'http_persistent_handles_ident' => + array ( + 0 => 'false|string', + 'ident=' => 'string', + ), + 'http_post_data' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_post_fields' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'array', + 'files=' => 'array', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_data' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_file' => + array ( + 0 => 'string', + 'url' => 'string', + 'file' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_stream' => + array ( + 0 => 'string', + 'url' => 'string', + 'stream' => 'resource', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_redirect' => + array ( + 0 => 'false|int', + 'url=' => 'string', + 'params=' => 'array', + 'session=' => 'bool', + 'status=' => 'int', + ), + 'http_request' => + array ( + 0 => 'string', + 'method' => 'int', + 'url' => 'string', + 'body=' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_request_body_encode' => + array ( + 0 => 'false|string', + 'fields' => 'array', + 'files' => 'array', + ), + 'http_request_method_exists' => + array ( + 0 => 'bool', + 'method' => 'mixed', + ), + 'http_request_method_name' => + array ( + 0 => 'false|string', + 'method' => 'int', + ), + 'http_request_method_register' => + array ( + 0 => 'false|int', + 'method' => 'string', + ), + 'http_request_method_unregister' => + array ( + 0 => 'bool', + 'method' => 'mixed', + ), + 'http_response_code' => + array ( + 0 => 'bool|int', + 'response_code=' => 'int', + ), + 'http_send_content_disposition' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'inline=' => 'bool', + ), + 'http_send_content_type' => + array ( + 0 => 'bool', + 'content_type=' => 'string', + ), + 'http_send_data' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'http_send_file' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'http_send_last_modified' => + array ( + 0 => 'bool', + 'timestamp=' => 'int', + ), + 'http_send_status' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'http_send_stream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'http_support' => + array ( + 0 => 'int', + 'feature=' => 'int', + ), + 'http_throttle' => + array ( + 0 => 'void', + 'sec' => 'float', + 'bytes=' => 'int', + ), + 'HttpDeflateStream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'HttpDeflateStream::factory' => + array ( + 0 => 'HttpDeflateStream', + 'flags=' => 'int', + 'class_name=' => 'string', + ), + 'HttpDeflateStream::finish' => + array ( + 0 => 'string', + 'data=' => 'string', + ), + 'HttpDeflateStream::flush' => + array ( + 0 => 'false|string', + 'data=' => 'string', + ), + 'HttpDeflateStream::update' => + array ( + 0 => 'false|string', + 'data' => 'string', + ), + 'HttpInflateStream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'HttpInflateStream::factory' => + array ( + 0 => 'HttpInflateStream', + 'flags=' => 'int', + 'class_name=' => 'string', + ), + 'HttpInflateStream::finish' => + array ( + 0 => 'string', + 'data=' => 'string', + ), + 'HttpInflateStream::flush' => + array ( + 0 => 'false|string', + 'data=' => 'string', + ), + 'HttpInflateStream::update' => + array ( + 0 => 'false|string', + 'data' => 'string', + ), + 'HttpMessage::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + ), + 'HttpMessage::__toString' => + array ( + 0 => 'string', + ), + 'HttpMessage::addHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + 'append=' => 'bool', + ), + 'HttpMessage::count' => + array ( + 0 => 'int', + ), + 'HttpMessage::current' => + array ( + 0 => 'mixed', + ), + 'HttpMessage::detach' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::factory' => + array ( + 0 => 'HttpMessage|null', + 'raw_message=' => 'string', + 'class_name=' => 'string', + ), + 'HttpMessage::fromEnv' => + array ( + 0 => 'HttpMessage|null', + 'message_type' => 'int', + 'class_name=' => 'string', + ), + 'HttpMessage::fromString' => + array ( + 0 => 'HttpMessage|null', + 'raw_message=' => 'string', + 'class_name=' => 'string', + ), + 'HttpMessage::getBody' => + array ( + 0 => 'string', + ), + 'HttpMessage::getHeader' => + array ( + 0 => 'null|string', + 'header' => 'string', + ), + 'HttpMessage::getHeaders' => + array ( + 0 => 'array', + ), + 'HttpMessage::getHttpVersion' => + array ( + 0 => 'string', + ), + 'HttpMessage::getInfo' => + array ( + 0 => 'mixed', + ), + 'HttpMessage::getParentMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'HttpMessage::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'HttpMessage::getResponseCode' => + array ( + 0 => 'int', + ), + 'HttpMessage::getResponseStatus' => + array ( + 0 => 'string', + ), + 'HttpMessage::getType' => + array ( + 0 => 'int', + ), + 'HttpMessage::guessContentType' => + array ( + 0 => 'false|string', + 'magic_file' => 'string', + 'magic_mode=' => 'int', + ), + 'HttpMessage::key' => + array ( + 0 => 'int|string', + ), + 'HttpMessage::next' => + array ( + 0 => 'void', + ), + 'HttpMessage::prepend' => + array ( + 0 => 'void', + 'message' => 'HttpMessage', + 'top=' => 'bool', + ), + 'HttpMessage::reverse' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::rewind' => + array ( + 0 => 'void', + ), + 'HttpMessage::send' => + array ( + 0 => 'bool', + ), + 'HttpMessage::serialize' => + array ( + 0 => 'string', + ), + 'HttpMessage::setBody' => + array ( + 0 => 'void', + 'body' => 'string', + ), + 'HttpMessage::setHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + ), + 'HttpMessage::setHttpVersion' => + array ( + 0 => 'bool', + 'version' => 'string', + ), + 'HttpMessage::setInfo' => + array ( + 0 => 'mixed', + 'http_info' => 'mixed', + ), + 'HttpMessage::setRequestMethod' => + array ( + 0 => 'bool', + 'method' => 'string', + ), + 'HttpMessage::setRequestUrl' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'HttpMessage::setResponseCode' => + array ( + 0 => 'bool', + 'code' => 'int', + ), + 'HttpMessage::setResponseStatus' => + array ( + 0 => 'bool', + 'status' => 'string', + ), + 'HttpMessage::setType' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'HttpMessage::toMessageTypeObject' => + array ( + 0 => 'HttpRequest|HttpResponse|null', + ), + 'HttpMessage::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'bool', + ), + 'HttpMessage::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'HttpMessage::valid' => + array ( + 0 => 'bool', + ), + 'HttpQueryString::__construct' => + array ( + 0 => 'void', + 'global=' => 'bool', + 'add=' => 'mixed', + ), + 'HttpQueryString::__toString' => + array ( + 0 => 'string', + ), + 'HttpQueryString::factory' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + 'params' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpQueryString::get' => + array ( + 0 => 'mixed', + 'key=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'HttpQueryString::getArray' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getBool' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getFloat' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getInt' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getObject' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getString' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::mod' => + array ( + 0 => 'HttpQueryString', + 'params' => 'mixed', + ), + 'HttpQueryString::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'HttpQueryString::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'HttpQueryString::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'HttpQueryString::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'HttpQueryString::serialize' => + array ( + 0 => 'string', + ), + 'HttpQueryString::set' => + array ( + 0 => 'string', + 'params' => 'mixed', + ), + 'HttpQueryString::singleton' => + array ( + 0 => 'HttpQueryString', + 'global=' => 'bool', + ), + 'HttpQueryString::toArray' => + array ( + 0 => 'array', + ), + 'HttpQueryString::toString' => + array ( + 0 => 'string', + ), + 'HttpQueryString::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'HttpQueryString::xlate' => + array ( + 0 => 'bool', + 'ie' => 'string', + 'oe' => 'string', + ), + 'HttpRequest::__construct' => + array ( + 0 => 'void', + 'url=' => 'string', + 'request_method=' => 'int', + 'options=' => 'array', + ), + 'HttpRequest::addBody' => + array ( + 0 => 'mixed', + 'request_body_data' => 'mixed', + ), + 'HttpRequest::addCookies' => + array ( + 0 => 'bool', + 'cookies' => 'array', + ), + 'HttpRequest::addHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'HttpRequest::addPostFields' => + array ( + 0 => 'bool', + 'post_data' => 'array', + ), + 'HttpRequest::addPostFile' => + array ( + 0 => 'bool', + 'name' => 'string', + 'file' => 'string', + 'content_type=' => 'string', + ), + 'HttpRequest::addPutData' => + array ( + 0 => 'bool', + 'put_data' => 'string', + ), + 'HttpRequest::addQueryData' => + array ( + 0 => 'bool', + 'query_params' => 'array', + ), + 'HttpRequest::addRawPostData' => + array ( + 0 => 'bool', + 'raw_post_data' => 'string', + ), + 'HttpRequest::addSslOptions' => + array ( + 0 => 'bool', + 'options' => 'array', + ), + 'HttpRequest::clearHistory' => + array ( + 0 => 'void', + ), + 'HttpRequest::enableCookies' => + array ( + 0 => 'bool', + ), + 'HttpRequest::encodeBody' => + array ( + 0 => 'mixed', + 'fields' => 'mixed', + 'files' => 'mixed', + ), + 'HttpRequest::factory' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'method' => 'mixed', + 'options' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpRequest::flushCookies' => + array ( + 0 => 'mixed', + ), + 'HttpRequest::get' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::getBody' => + array ( + 0 => 'mixed', + ), + 'HttpRequest::getContentType' => + array ( + 0 => 'string', + ), + 'HttpRequest::getCookies' => + array ( + 0 => 'array', + ), + 'HttpRequest::getHeaders' => + array ( + 0 => 'array', + ), + 'HttpRequest::getHistory' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getMethod' => + array ( + 0 => 'int', + ), + 'HttpRequest::getOptions' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPostFields' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPostFiles' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPutData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getPutFile' => + array ( + 0 => 'string', + ), + 'HttpRequest::getQueryData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawPostData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawRequestMessage' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawResponseMessage' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRequestMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getResponseBody' => + array ( + 0 => 'string', + ), + 'HttpRequest::getResponseCode' => + array ( + 0 => 'int', + ), + 'HttpRequest::getResponseCookies' => + array ( + 0 => 'array', + 'flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'HttpRequest::getResponseData' => + array ( + 0 => 'array', + ), + 'HttpRequest::getResponseHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpRequest::getResponseInfo' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpRequest::getResponseMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getResponseStatus' => + array ( + 0 => 'string', + ), + 'HttpRequest::getSslOptions' => + array ( + 0 => 'array', + ), + 'HttpRequest::getUrl' => + array ( + 0 => 'string', + ), + 'HttpRequest::head' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::methodExists' => + array ( + 0 => 'mixed', + 'method' => 'mixed', + ), + 'HttpRequest::methodName' => + array ( + 0 => 'mixed', + 'method_id' => 'mixed', + ), + 'HttpRequest::methodRegister' => + array ( + 0 => 'mixed', + 'method_name' => 'mixed', + ), + 'HttpRequest::methodUnregister' => + array ( + 0 => 'mixed', + 'method' => 'mixed', + ), + 'HttpRequest::postData' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::postFields' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putData' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putFile' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'file' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putStream' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'stream' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::resetCookies' => + array ( + 0 => 'bool', + 'session_only=' => 'bool', + ), + 'HttpRequest::send' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::setBody' => + array ( + 0 => 'bool', + 'request_body_data=' => 'string', + ), + 'HttpRequest::setContentType' => + array ( + 0 => 'bool', + 'content_type' => 'string', + ), + 'HttpRequest::setCookies' => + array ( + 0 => 'bool', + 'cookies=' => 'array', + ), + 'HttpRequest::setHeaders' => + array ( + 0 => 'bool', + 'headers=' => 'array', + ), + 'HttpRequest::setMethod' => + array ( + 0 => 'bool', + 'request_method' => 'int', + ), + 'HttpRequest::setOptions' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'HttpRequest::setPostFields' => + array ( + 0 => 'bool', + 'post_data' => 'array', + ), + 'HttpRequest::setPostFiles' => + array ( + 0 => 'bool', + 'post_files' => 'array', + ), + 'HttpRequest::setPutData' => + array ( + 0 => 'bool', + 'put_data=' => 'string', + ), + 'HttpRequest::setPutFile' => + array ( + 0 => 'bool', + 'file=' => 'string', + ), + 'HttpRequest::setQueryData' => + array ( + 0 => 'bool', + 'query_data' => 'mixed', + ), + 'HttpRequest::setRawPostData' => + array ( + 0 => 'bool', + 'raw_post_data=' => 'string', + ), + 'HttpRequest::setSslOptions' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'HttpRequest::setUrl' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'HttpRequestDataShare::__construct' => + array ( + 0 => 'void', + ), + 'HttpRequestDataShare::__destruct' => + array ( + 0 => 'void', + ), + 'HttpRequestDataShare::attach' => + array ( + 0 => 'mixed', + 'request' => 'HttpRequest', + ), + 'HttpRequestDataShare::count' => + array ( + 0 => 'int', + ), + 'HttpRequestDataShare::detach' => + array ( + 0 => 'mixed', + 'request' => 'HttpRequest', + ), + 'HttpRequestDataShare::factory' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpRequestDataShare::reset' => + array ( + 0 => 'mixed', + ), + 'HttpRequestDataShare::singleton' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + ), + 'HttpRequestPool::__construct' => + array ( + 0 => 'void', + 'request=' => 'HttpRequest', + ), + 'HttpRequestPool::__destruct' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::attach' => + array ( + 0 => 'bool', + 'request' => 'HttpRequest', + ), + 'HttpRequestPool::count' => + array ( + 0 => 'int', + ), + 'HttpRequestPool::current' => + array ( + 0 => 'mixed', + ), + 'HttpRequestPool::detach' => + array ( + 0 => 'bool', + 'request' => 'HttpRequest', + ), + 'HttpRequestPool::enableEvents' => + array ( + 0 => 'mixed', + 'enable' => 'mixed', + ), + 'HttpRequestPool::enablePipelining' => + array ( + 0 => 'mixed', + 'enable' => 'mixed', + ), + 'HttpRequestPool::getAttachedRequests' => + array ( + 0 => 'array', + ), + 'HttpRequestPool::getFinishedRequests' => + array ( + 0 => 'array', + ), + 'HttpRequestPool::key' => + array ( + 0 => 'int|string', + ), + 'HttpRequestPool::next' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::reset' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::rewind' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::send' => + array ( + 0 => 'bool', + ), + 'HttpRequestPool::socketPerform' => + array ( + 0 => 'bool', + ), + 'HttpRequestPool::socketSelect' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'HttpRequestPool::valid' => + array ( + 0 => 'bool', + ), + 'HttpResponse::capture' => + array ( + 0 => 'void', + ), + 'HttpResponse::getBufferSize' => + array ( + 0 => 'int', + ), + 'HttpResponse::getCache' => + array ( + 0 => 'bool', + ), + 'HttpResponse::getCacheControl' => + array ( + 0 => 'string', + ), + 'HttpResponse::getContentDisposition' => + array ( + 0 => 'string', + ), + 'HttpResponse::getContentType' => + array ( + 0 => 'string', + ), + 'HttpResponse::getData' => + array ( + 0 => 'string', + ), + 'HttpResponse::getETag' => + array ( + 0 => 'string', + ), + 'HttpResponse::getFile' => + array ( + 0 => 'string', + ), + 'HttpResponse::getGzip' => + array ( + 0 => 'bool', + ), + 'HttpResponse::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpResponse::getLastModified' => + array ( + 0 => 'int', + ), + 'HttpResponse::getRequestBody' => + array ( + 0 => 'string', + ), + 'HttpResponse::getRequestBodyStream' => + array ( + 0 => 'resource', + ), + 'HttpResponse::getRequestHeaders' => + array ( + 0 => 'array', + ), + 'HttpResponse::getStream' => + array ( + 0 => 'resource', + ), + 'HttpResponse::getThrottleDelay' => + array ( + 0 => 'float', + ), + 'HttpResponse::guessContentType' => + array ( + 0 => 'false|string', + 'magic_file' => 'string', + 'magic_mode=' => 'int', + ), + 'HttpResponse::redirect' => + array ( + 0 => 'void', + 'url=' => 'string', + 'params=' => 'array', + 'session=' => 'bool', + 'status=' => 'int', + ), + 'HttpResponse::send' => + array ( + 0 => 'bool', + 'clean_ob=' => 'bool', + ), + 'HttpResponse::setBufferSize' => + array ( + 0 => 'bool', + 'bytes' => 'int', + ), + 'HttpResponse::setCache' => + array ( + 0 => 'bool', + 'cache' => 'bool', + ), + 'HttpResponse::setCacheControl' => + array ( + 0 => 'bool', + 'control' => 'string', + 'max_age=' => 'int', + 'must_revalidate=' => 'bool', + ), + 'HttpResponse::setContentDisposition' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'inline=' => 'bool', + ), + 'HttpResponse::setContentType' => + array ( + 0 => 'bool', + 'content_type' => 'string', + ), + 'HttpResponse::setData' => + array ( + 0 => 'bool', + 'data' => 'mixed', + ), + 'HttpResponse::setETag' => + array ( + 0 => 'bool', + 'etag' => 'string', + ), + 'HttpResponse::setFile' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'HttpResponse::setGzip' => + array ( + 0 => 'bool', + 'gzip' => 'bool', + ), + 'HttpResponse::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'mixed', + 'replace=' => 'bool', + ), + 'HttpResponse::setLastModified' => + array ( + 0 => 'bool', + 'timestamp' => 'int', + ), + 'HttpResponse::setStream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'HttpResponse::setThrottleDelay' => + array ( + 0 => 'bool', + 'seconds' => 'float', + ), + 'HttpResponse::status' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'HttpUtil::buildCookie' => + array ( + 0 => 'mixed', + 'cookie_array' => 'mixed', + ), + 'HttpUtil::buildStr' => + array ( + 0 => 'mixed', + 'query' => 'mixed', + 'prefix' => 'mixed', + 'arg_sep' => 'mixed', + ), + 'HttpUtil::buildUrl' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'parts' => 'mixed', + 'flags' => 'mixed', + '&composed' => 'mixed', + ), + 'HttpUtil::chunkedDecode' => + array ( + 0 => 'mixed', + 'encoded_string' => 'mixed', + ), + 'HttpUtil::date' => + array ( + 0 => 'mixed', + 'timestamp' => 'mixed', + ), + 'HttpUtil::deflate' => + array ( + 0 => 'mixed', + 'plain' => 'mixed', + 'flags' => 'mixed', + ), + 'HttpUtil::inflate' => + array ( + 0 => 'mixed', + 'encoded' => 'mixed', + ), + 'HttpUtil::matchEtag' => + array ( + 0 => 'mixed', + 'plain_etag' => 'mixed', + 'for_range' => 'mixed', + ), + 'HttpUtil::matchModified' => + array ( + 0 => 'mixed', + 'last_modified' => 'mixed', + 'for_range' => 'mixed', + ), + 'HttpUtil::matchRequestHeader' => + array ( + 0 => 'mixed', + 'header_name' => 'mixed', + 'header_value' => 'mixed', + 'case_sensitive' => 'mixed', + ), + 'HttpUtil::negotiateCharset' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::negotiateContentType' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::negotiateLanguage' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::parseCookie' => + array ( + 0 => 'mixed', + 'cookie_string' => 'mixed', + ), + 'HttpUtil::parseHeaders' => + array ( + 0 => 'mixed', + 'headers_string' => 'mixed', + ), + 'HttpUtil::parseMessage' => + array ( + 0 => 'mixed', + 'message_string' => 'mixed', + ), + 'HttpUtil::parseParams' => + array ( + 0 => 'mixed', + 'param_string' => 'mixed', + 'flags' => 'mixed', + ), + 'HttpUtil::support' => + array ( + 0 => 'mixed', + 'feature' => 'mixed', + ), + 'hw_api::checkin' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::checkout' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::children' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::content' => + array ( + 0 => 'HW_API_Content', + 'parameter' => 'array', + ), + 'hw_api::copy' => + array ( + 0 => 'hw_api_content', + 'parameter' => 'array', + ), + 'hw_api::dbstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::dcstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::dstanchors' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::dstofsrcanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::find' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::ftstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::hwstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::identify' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::info' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::insert' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertcollection' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertdocument' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::link' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::lock' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::move' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::object' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::objectbyanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::parents' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::remove' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::replace' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::setcommittedversion' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::srcanchors' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::srcsofdst' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::unlock' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::user' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::userlist' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api_attribute' => + array ( + 0 => 'HW_API_Attribute', + 'name=' => 'string', + 'value=' => 'string', + ), + 'hw_api_attribute::key' => + array ( + 0 => 'string', + ), + 'hw_api_attribute::langdepvalue' => + array ( + 0 => 'string', + 'language' => 'string', + ), + 'hw_api_attribute::value' => + array ( + 0 => 'string', + ), + 'hw_api_attribute::values' => + array ( + 0 => 'array', + ), + 'hw_api_content' => + array ( + 0 => 'HW_API_Content', + 'content' => 'string', + 'mimetype' => 'string', + ), + 'hw_api_content::mimetype' => + array ( + 0 => 'string', + ), + 'hw_api_content::read' => + array ( + 0 => 'string', + 'buffer' => 'string', + 'length' => 'int', + ), + 'hw_api_error::count' => + array ( + 0 => 'int', + ), + 'hw_api_error::reason' => + array ( + 0 => 'HW_API_Reason', + ), + 'hw_api_object' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api_object::assign' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api_object::attreditable' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api_object::count' => + array ( + 0 => 'int', + 'parameter' => 'array', + ), + 'hw_api_object::insert' => + array ( + 0 => 'bool', + 'attribute' => 'hw_api_attribute', + ), + 'hw_api_object::remove' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'hw_api_object::title' => + array ( + 0 => 'string', + 'parameter' => 'array', + ), + 'hw_api_object::value' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'hw_api_reason::description' => + array ( + 0 => 'string', + ), + 'hw_api_reason::type' => + array ( + 0 => 'HW_API_Reason', + ), + 'hw_Array2Objrec' => + array ( + 0 => 'string', + 'object_array' => 'array', + ), + 'hw_changeobject' => + array ( + 0 => 'bool', + 'link' => 'int', + 'objid' => 'int', + 'attributes' => 'array', + ), + 'hw_Children' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_ChildrenObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_Close' => + array ( + 0 => 'bool', + 'connection' => 'int', + ), + 'hw_Connect' => + array ( + 0 => 'int', + 'host' => 'string', + 'port' => 'int', + 'username=' => 'string', + 'password=' => 'string', + ), + 'hw_connection_info' => + array ( + 0 => 'mixed', + 'link' => 'int', + ), + 'hw_cp' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_id_array' => 'array', + 'destination_id' => 'int', + ), + 'hw_Deleteobject' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'object_to_delete' => 'int', + ), + 'hw_DocByAnchor' => + array ( + 0 => 'int', + 'connection' => 'int', + 'anchorid' => 'int', + ), + 'hw_DocByAnchorObj' => + array ( + 0 => 'string', + 'connection' => 'int', + 'anchorid' => 'int', + ), + 'hw_Document_Attributes' => + array ( + 0 => 'string', + 'hw_document' => 'int', + ), + 'hw_Document_BodyTag' => + array ( + 0 => 'string', + 'hw_document' => 'int', + 'prefix=' => 'string', + ), + 'hw_Document_Content' => + array ( + 0 => 'string', + 'hw_document' => 'int', + ), + 'hw_Document_SetContent' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + 'content' => 'string', + ), + 'hw_Document_Size' => + array ( + 0 => 'int', + 'hw_document' => 'int', + ), + 'hw_dummy' => + array ( + 0 => 'string', + 'link' => 'int', + 'id' => 'int', + 'msgid' => 'int', + ), + 'hw_EditText' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'hw_document' => 'int', + ), + 'hw_Error' => + array ( + 0 => 'int', + 'connection' => 'int', + ), + 'hw_ErrorMsg' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_Free_Document' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + ), + 'hw_GetAnchors' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetAnchorsObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetAndLock' => + array ( + 0 => 'string', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildDocColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildDocCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetObject' => + array ( + 0 => 'mixed', + 'connection' => 'int', + 'objectid' => 'mixed', + 'query=' => 'string', + ), + 'hw_GetObjectByQuery' => + array ( + 0 => 'array', + 'connection' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetParents' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetParentsObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_getrellink' => + array ( + 0 => 'string', + 'link' => 'int', + 'rootid' => 'int', + 'sourceid' => 'int', + 'destid' => 'int', + ), + 'hw_GetRemote' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_getremotechildren' => + array ( + 0 => 'mixed', + 'connection' => 'int', + 'object_record' => 'string', + ), + 'hw_GetSrcByDestObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetText' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'prefix=' => 'mixed', + ), + 'hw_getusername' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_Identify' => + array ( + 0 => 'string', + 'link' => 'int', + 'username' => 'string', + 'password' => 'string', + ), + 'hw_InCollections' => + array ( + 0 => 'array', + 'connection' => 'int', + 'object_id_array' => 'array', + 'collection_id_array' => 'array', + 'return_collections' => 'int', + ), + 'hw_Info' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_InsColl' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'object_array' => 'array', + ), + 'hw_InsDoc' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'parentid' => 'int', + 'object_record' => 'string', + 'text=' => 'string', + ), + 'hw_insertanchors' => + array ( + 0 => 'bool', + 'hwdoc' => 'int', + 'anchorecs' => 'array', + 'dest' => 'array', + 'urlprefixes=' => 'array', + ), + 'hw_InsertDocument' => + array ( + 0 => 'int', + 'connection' => 'int', + 'parent_id' => 'int', + 'hw_document' => 'int', + ), + 'hw_InsertObject' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_rec' => 'string', + 'parameter' => 'string', + ), + 'hw_mapid' => + array ( + 0 => 'int', + 'connection' => 'int', + 'server_id' => 'int', + 'object_id' => 'int', + ), + 'hw_Modifyobject' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'object_to_change' => 'int', + 'remove' => 'array', + 'add' => 'array', + 'mode=' => 'int', + ), + 'hw_mv' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_id_array' => 'array', + 'source_id' => 'int', + 'destination_id' => 'int', + ), + 'hw_New_Document' => + array ( + 0 => 'int', + 'object_record' => 'string', + 'document_data' => 'string', + 'document_size' => 'int', + ), + 'hw_objrec2array' => + array ( + 0 => 'array', + 'object_record' => 'string', + 'format=' => 'array', + ), + 'hw_Output_Document' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + ), + 'hw_pConnect' => + array ( + 0 => 'int', + 'host' => 'string', + 'port' => 'int', + 'username=' => 'string', + 'password=' => 'string', + ), + 'hw_PipeDocument' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'url_prefixes=' => 'array', + ), + 'hw_Root' => + array ( + 0 => 'int', + ), + 'hw_setlinkroot' => + array ( + 0 => 'int', + 'link' => 'int', + 'rootid' => 'int', + ), + 'hw_stat' => + array ( + 0 => 'string', + 'link' => 'int', + ), + 'hw_Unlock' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_Who' => + array ( + 0 => 'array', + 'connection' => 'int', + ), + 'hwapi_attribute_new' => + array ( + 0 => 'HW_API_Attribute', + 'name=' => 'string', + 'value=' => 'string', + ), + 'hwapi_content_new' => + array ( + 0 => 'HW_API_Content', + 'content' => 'string', + 'mimetype' => 'string', + ), + 'hwapi_hgcsp' => + array ( + 0 => 'HW_API', + 'hostname' => 'string', + 'port=' => 'int', + ), + 'hwapi_object_new' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hypot' => + array ( + 0 => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ibase_add_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_affected_rows' => + array ( + 0 => 'int', + 'link_identifier=' => 'resource', + ), + 'ibase_backup' => + array ( + 0 => 'mixed', + 'service_handle' => 'resource', + 'source_db' => 'string', + 'dest_file' => 'string', + 'options=' => 'int', + 'verbose=' => 'bool', + ), + 'ibase_blob_add' => + array ( + 0 => 'void', + 'blob_handle' => 'resource', + 'data' => 'string', + ), + 'ibase_blob_cancel' => + array ( + 0 => 'bool', + 'blob_handle' => 'resource', + ), + 'ibase_blob_close' => + array ( + 0 => 'bool|string', + 'blob_handle' => 'resource', + ), + 'ibase_blob_create' => + array ( + 0 => 'resource', + 'link_identifier=' => 'resource', + ), + 'ibase_blob_echo' => + array ( + 0 => 'bool', + 'link_identifier' => 'mixed', + 'blob_id' => 'string', + ), + 'ibase_blob_echo\'1' => + array ( + 0 => 'bool', + 'blob_id' => 'string', + ), + 'ibase_blob_get' => + array ( + 0 => 'false|string', + 'blob_handle' => 'resource', + 'length' => 'int', + ), + 'ibase_blob_import' => + array ( + 0 => 'false|string', + 'link_identifier' => 'resource', + 'file_handle' => 'resource', + ), + 'ibase_blob_info' => + array ( + 0 => 'array', + 'link_identifier' => 'resource', + 'blob_id' => 'string', + ), + 'ibase_blob_info\'1' => + array ( + 0 => 'array', + 'blob_id' => 'string', + ), + 'ibase_blob_open' => + array ( + 0 => 'false|resource', + 'link_identifier' => 'mixed', + 'blob_id' => 'string', + ), + 'ibase_blob_open\'1' => + array ( + 0 => 'resource', + 'blob_id' => 'string', + ), + 'ibase_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_commit' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_commit_ret' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_connect' => + array ( + 0 => 'false|resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'charset=' => 'string', + 'buffers=' => 'int', + 'dialect=' => 'int', + 'role=' => 'string', + ), + 'ibase_db_info' => + array ( + 0 => 'string', + 'service_handle' => 'resource', + 'db' => 'string', + 'action' => 'int', + 'argument=' => 'int', + ), + 'ibase_delete_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password=' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_drop_db' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_errcode' => + array ( + 0 => 'false|int', + ), + 'ibase_errmsg' => + array ( + 0 => 'false|string', + ), + 'ibase_execute' => + array ( + 0 => 'false|resource', + 'query' => 'resource', + 'bind_arg=' => 'mixed', + '...args=' => 'mixed', + ), + 'ibase_fetch_assoc' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_fetch_object' => + array ( + 0 => 'false|object', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_fetch_row' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_field_info' => + array ( + 0 => 'array', + 'query_result' => 'resource', + 'field_number' => 'int', + ), + 'ibase_free_event_handler' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'ibase_free_query' => + array ( + 0 => 'bool', + 'query' => 'resource', + ), + 'ibase_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'ibase_gen_id' => + array ( + 0 => 'int|string', + 'generator' => 'string', + 'increment=' => 'int', + 'link_identifier=' => 'resource', + ), + 'ibase_maintain_db' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'db' => 'string', + 'action' => 'int', + 'argument=' => 'int', + ), + 'ibase_modify_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_name_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'name' => 'string', + ), + 'ibase_num_fields' => + array ( + 0 => 'int', + 'query_result' => 'resource', + ), + 'ibase_num_params' => + array ( + 0 => 'int', + 'query' => 'resource', + ), + 'ibase_num_rows' => + array ( + 0 => 'int', + 'result_identifier' => 'mixed', + ), + 'ibase_param_info' => + array ( + 0 => 'array', + 'query' => 'resource', + 'field_number' => 'int', + ), + 'ibase_pconnect' => + array ( + 0 => 'false|resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'charset=' => 'string', + 'buffers=' => 'int', + 'dialect=' => 'int', + 'role=' => 'string', + ), + 'ibase_prepare' => + array ( + 0 => 'false|resource', + 'link_identifier' => 'mixed', + 'query' => 'string', + 'trans_identifier' => 'mixed', + ), + 'ibase_query' => + array ( + 0 => 'false|resource', + 'link_identifier=' => 'resource', + 'string=' => 'string', + 'bind_arg=' => 'int', + '...args=' => 'mixed', + ), + 'ibase_restore' => + array ( + 0 => 'mixed', + 'service_handle' => 'resource', + 'source_file' => 'string', + 'dest_db' => 'string', + 'options=' => 'int', + 'verbose=' => 'bool', + ), + 'ibase_rollback' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_rollback_ret' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_server_info' => + array ( + 0 => 'string', + 'service_handle' => 'resource', + 'action' => 'int', + ), + 'ibase_service_attach' => + array ( + 0 => 'resource', + 'host' => 'string', + 'dba_username' => 'string', + 'dba_password' => 'string', + ), + 'ibase_service_detach' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + ), + 'ibase_set_event_handler' => + array ( + 0 => 'resource', + 'link_identifier' => 'mixed', + 'callback' => 'callable', + 'event=' => 'string', + '...args=' => 'mixed', + ), + 'ibase_set_event_handler\'1' => + array ( + 0 => 'resource', + 'callback' => 'callable', + 'event' => 'string', + '...args' => 'mixed', + ), + 'ibase_timefmt' => + array ( + 0 => 'bool', + 'format' => 'string', + 'columntype=' => 'int', + ), + 'ibase_trans' => + array ( + 0 => 'false|resource', + 'trans_args=' => 'int', + 'link_identifier=' => 'mixed', + '...args=' => 'mixed', + ), + 'ibase_wait_event' => + array ( + 0 => 'string', + 'link_identifier' => 'mixed', + 'event=' => 'string', + '...args=' => 'mixed', + ), + 'ibase_wait_event\'1' => + array ( + 0 => 'string', + 'event' => 'string', + '...args' => 'mixed', + ), + 'iconv' => + array ( + 0 => 'false|string', + 'from_encoding' => 'string', + 'to_encoding' => 'string', + 'string' => 'string', + ), + 'iconv_get_encoding' => + array ( + 0 => 'array|false|string', + 'type=' => 'string', + ), + 'iconv_mime_decode' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'mode=' => 'int', + 'encoding=' => 'null|string', + ), + 'iconv_mime_decode_headers' => + array ( + 0 => 'array|false', + 'headers' => 'string', + 'mode=' => 'int', + 'encoding=' => 'null|string', + ), + 'iconv_mime_encode' => + array ( + 0 => 'false|string', + 'field_name' => 'string', + 'field_value' => 'string', + 'options=' => 'array', + ), + 'iconv_set_encoding' => + array ( + 0 => 'bool', + 'type' => 'string', + 'encoding' => 'string', + ), + 'iconv_strlen' => + array ( + 0 => 'false|int<0, max>', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'iconv_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + 'iconv_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'null|string', + ), + 'iconv_substr' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + 'id3_get_frame_long_name' => + array ( + 0 => 'string', + 'frameid' => 'string', + ), + 'id3_get_frame_short_name' => + array ( + 0 => 'string', + 'frameid' => 'string', + ), + 'id3_get_genre_id' => + array ( + 0 => 'int', + 'genre' => 'string', + ), + 'id3_get_genre_list' => + array ( + 0 => 'array', + ), + 'id3_get_genre_name' => + array ( + 0 => 'string', + 'genre_id' => 'int', + ), + 'id3_get_tag' => + array ( + 0 => 'array', + 'filename' => 'string', + 'version=' => 'int', + ), + 'id3_get_version' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'id3_remove_tag' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'version=' => 'int', + ), + 'id3_set_tag' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'tag' => 'array', + 'version=' => 'int', + ), + 'idate' => + array ( + 0 => 'int', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + 'idn_strerror' => + array ( + 0 => 'string', + 'errorcode' => 'int', + ), + 'idn_to_ascii' => + array ( + 0 => 'false|string', + 'domain' => 'string', + 'flags=' => 'int', + 'variant=' => 'int', + '&w_idna_info=' => 'array', + ), + 'idn_to_utf8' => + array ( + 0 => 'false|string', + 'domain' => 'string', + 'flags=' => 'int', + 'variant=' => 'int', + '&w_idna_info=' => 'array', + ), + 'ifx_affected_rows' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_blobinfile_mode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_byteasvarchar' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ifx_connect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'userid=' => 'string', + 'password=' => 'string', + ), + 'ifx_copy_blob' => + array ( + 0 => 'int', + 'bid' => 'int', + ), + 'ifx_create_blob' => + array ( + 0 => 'int', + 'type' => 'int', + 'mode' => 'int', + 'param' => 'string', + ), + 'ifx_create_char' => + array ( + 0 => 'int', + 'param' => 'string', + ), + 'ifx_do' => + array ( + 0 => 'bool', + 'result_id' => 'resource', + ), + 'ifx_error' => + array ( + 0 => 'string', + 'link_identifier=' => 'resource', + ), + 'ifx_errormsg' => + array ( + 0 => 'string', + 'errorcode=' => 'int', + ), + 'ifx_fetch_row' => + array ( + 0 => 'array', + 'result_id' => 'resource', + 'position=' => 'mixed', + ), + 'ifx_fieldproperties' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_fieldtypes' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_free_blob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifx_free_char' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifx_free_result' => + array ( + 0 => 'bool', + 'result_id' => 'resource', + ), + 'ifx_get_blob' => + array ( + 0 => 'string', + 'bid' => 'int', + ), + 'ifx_get_char' => + array ( + 0 => 'string', + 'bid' => 'int', + ), + 'ifx_getsqlca' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_htmltbl_result' => + array ( + 0 => 'int', + 'result_id' => 'resource', + 'html_table_options=' => 'string', + ), + 'ifx_nullformat' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_num_fields' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_num_rows' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_pconnect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'userid=' => 'string', + 'password=' => 'string', + ), + 'ifx_prepare' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier' => 'resource', + 'cursor_def=' => 'int', + 'blobidarray=' => 'mixed', + ), + 'ifx_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier' => 'resource', + 'cursor_type=' => 'int', + 'blobidarray=' => 'mixed', + ), + 'ifx_textasvarchar' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_update_blob' => + array ( + 0 => 'bool', + 'bid' => 'int', + 'content' => 'string', + ), + 'ifx_update_char' => + array ( + 0 => 'bool', + 'bid' => 'int', + 'content' => 'string', + ), + 'ifxus_close_slob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifxus_create_slob' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'ifxus_free_slob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifxus_open_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'mode' => 'int', + ), + 'ifxus_read_slob' => + array ( + 0 => 'string', + 'bid' => 'int', + 'nbytes' => 'int', + ), + 'ifxus_seek_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'mode' => 'int', + 'offset' => 'int', + ), + 'ifxus_tell_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + ), + 'ifxus_write_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'content' => 'string', + ), + 'igbinary_serialize' => + array ( + 0 => 'false|string', + 'value' => 'mixed', + ), + 'igbinary_unserialize' => + array ( + 0 => 'mixed', + 'str' => 'string', + ), + 'ignore_user_abort' => + array ( + 0 => 'int', + 'enable=' => 'bool|null', + ), + 'iis_add_server' => + array ( + 0 => 'int', + 'path' => 'string', + 'comment' => 'string', + 'server_ip' => 'string', + 'port' => 'int', + 'host_name' => 'string', + 'rights' => 'int', + 'start_server' => 'int', + ), + 'iis_get_dir_security' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + ), + 'iis_get_script_map' => + array ( + 0 => 'string', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'script_extension' => 'string', + ), + 'iis_get_server_by_comment' => + array ( + 0 => 'int', + 'comment' => 'string', + ), + 'iis_get_server_by_path' => + array ( + 0 => 'int', + 'path' => 'string', + ), + 'iis_get_server_rights' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + ), + 'iis_get_service_state' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'iis_remove_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_set_app_settings' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'application_scope' => 'string', + ), + 'iis_set_dir_security' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'directory_flags' => 'int', + ), + 'iis_set_script_map' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'script_extension' => 'string', + 'engine_path' => 'string', + 'allow_scripting' => 'int', + ), + 'iis_set_server_rights' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'directory_flags' => 'int', + ), + 'iis_start_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_start_service' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'iis_stop_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_stop_service' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'image_type_to_extension' => + array ( + 0 => 'string', + 'image_type' => 'int', + 'include_dot=' => 'bool', + ), + 'image_type_to_mime_type' => + array ( + 0 => 'string', + 'image_type' => 'int', + ), + 'imageaffine' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'affine' => 'array', + 'clip=' => 'array|null', + ), + 'imageaffinematrixconcat' => + array ( + 0 => 'array{0: float, 1: float, 2: float, 3: float, 4: float, 5: float}|false', + 'matrix1' => 'array', + 'matrix2' => 'array', + ), + 'imageaffinematrixget' => + array ( + 0 => 'array{0: float, 1: float, 2: float, 3: float, 4: float, 5: float}|false', + 'type' => 'int', + 'options' => 'array|float', + ), + 'imagealphablending' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + 'imageantialias' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + 'imagearc' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + ), + 'imageavif' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'speed=' => 'int', + ), + 'imagebmp' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'compressed=' => 'bool', + ), + 'imagechar' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'imagecharup' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'imagecolorallocate' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorallocatealpha' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorat' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + ), + 'imagecolorclosest' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorclosestalpha' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorclosesthwb' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolordeallocate' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'color' => 'int', + ), + 'imagecolorexact' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorexactalpha' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolormatch' => + array ( + 0 => 'bool', + 'image1' => 'GdImage', + 'image2' => 'GdImage', + ), + 'imagecolorresolve' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorresolvealpha' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorset' => + array ( + 0 => 'false|null', + 'image' => 'GdImage', + 'color' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + 'imagecolorsforindex' => + array ( + 0 => 'array', + 'image' => 'GdImage', + 'color' => 'int', + ), + 'imagecolorstotal' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + 'imagecolortransparent' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'color=' => 'int|null', + ), + 'imageconvolution' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'matrix' => 'array', + 'divisor' => 'float', + 'offset' => 'float', + ), + 'imagecopy' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecopymerge' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'imagecopymergegray' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'imagecopyresampled' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecopyresized' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecreate' => + array ( + 0 => 'GdImage|false', + 'width' => 'int', + 'height' => 'int', + ), + 'imagecreatefromavif' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefrombmp' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromgd' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromgd2' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromgd2part' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + ), + 'imagecreatefromgif' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromjpeg' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefrompng' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromstring' => + array ( + 0 => 'GdImage|false', + 'data' => 'string', + ), + 'imagecreatefromwbmp' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromwebp' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromxbm' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatefromxpm' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'imagecreatetruecolor' => + array ( + 0 => 'GdImage|false', + 'width' => 'int', + 'height' => 'int', + ), + 'imagecrop' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'rectangle' => 'array', + ), + 'imagecropauto' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'mode=' => 'int', + 'threshold=' => 'float', + 'color=' => 'int', + ), + 'imagedashedline' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imagedestroy' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + 'imageellipse' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'imagefill' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'imagefilledarc' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + 'style' => 'int', + ), + 'imagefilledellipse' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'imagefilledpolygon' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'imagefilledrectangle' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imagefilltoborder' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'border_color' => 'int', + 'color' => 'int', + ), + 'imagefilter' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'filter' => 'int', + '...args=' => 'array|bool|float|int', + ), + 'imageflip' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'mode' => 'int', + ), + 'imagefontheight' => + array ( + 0 => 'int', + 'font' => 'int', + ), + 'imagefontwidth' => + array ( + 0 => 'int', + 'font' => 'int', + ), + 'imageftbbox' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + 'options=' => 'array', + ), + 'imagefttext' => + array ( + 0 => 'array|false', + 'image' => 'GdImage', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + 'imagegammacorrect' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'input_gamma' => 'float', + 'output_gamma' => 'float', + ), + 'imagegd' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + ), + 'imagegd2' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'chunk_size=' => 'int', + 'mode=' => 'int', + ), + 'imagegetclip' => + array ( + 0 => 'array', + 'image' => 'GdImage', + ), + 'imagegetinterpolation' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + 'imagegif' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + ), + 'imagegrabscreen' => + array ( + 0 => 'GdImage|false', + ), + 'imagegrabwindow' => + array ( + 0 => 'GdImage|false', + 'handle' => 'int', + 'client_area=' => 'int', + ), + 'imageinterlace' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable=' => 'bool|null', + ), + 'imageistruecolor' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + 'imagejpeg' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'imagelayereffect' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'effect' => 'int', + ), + 'imageline' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imageloadfont' => + array ( + 0 => 'GdFont|false', + 'filename' => 'string', + ), + 'imageObj::pasteImage' => + array ( + 0 => 'void', + 'srcImg' => 'imageObj', + 'transparentColorHex' => 'int', + 'dstX' => 'int', + 'dstY' => 'int', + 'angle' => 'int', + ), + 'imageObj::saveImage' => + array ( + 0 => 'int', + 'filename' => 'string', + 'oMap' => 'mapObj', + ), + 'imageObj::saveWebImage' => + array ( + 0 => 'string', + ), + 'imageopenpolygon' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points' => 'int', + 'color' => 'int', + ), + 'imagepalettecopy' => + array ( + 0 => 'void', + 'dst' => 'GdImage', + 'src' => 'GdImage', + ), + 'imagepalettetotruecolor' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + 'imagepng' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'filters=' => 'int', + ), + 'imagepolygon' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'imagerectangle' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imageresolution' => + array ( + 0 => 'array|bool', + 'image' => 'GdImage', + 'resolution_x=' => 'int|null', + 'resolution_y=' => 'int|null', + ), + 'imagerotate' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'angle' => 'float', + 'background_color' => 'int', + 'ignore_transparent=' => 'bool', + ), + 'imagesavealpha' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + 'imagescale' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'width' => 'int', + 'height=' => 'int', + 'mode=' => 'int', + ), + 'imagesetbrush' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'brush' => 'GdImage', + ), + 'imagesetclip' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'x2' => 'int', + 'y1' => 'int', + 'y2' => 'int', + ), + 'imagesetinterpolation' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'method=' => 'int', + ), + 'imagesetpixel' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'imagesetstyle' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'style' => 'non-empty-array', + ), + 'imagesetthickness' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'thickness' => 'int', + ), + 'imagesettile' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'tile' => 'GdImage', + ), + 'imagestring' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'imagestringup' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'imagesx' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + 'imagesy' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + 'imagetruecolortopalette' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'dither' => 'bool', + 'num_colors' => 'int', + ), + 'imagettfbbox' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + 'options=' => 'array', + ), + 'imagettftext' => + array ( + 0 => 'array|false', + 'image' => 'GdImage', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + 'imagetypes' => + array ( + 0 => 'int', + ), + 'imagewbmp' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'foreground_color=' => 'int|null', + ), + 'imagewebp' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'imagexbm' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'filename' => 'null|string', + 'foreground_color=' => 'int|null', + ), + 'Imagick::__construct' => + array ( + 0 => 'void', + 'files=' => 'array|string', + ), + 'Imagick::__toString' => + array ( + 0 => 'string', + ), + 'Imagick::adaptiveBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::adaptiveResizeImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + ), + 'Imagick::adaptiveSharpenImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::adaptiveThresholdImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'offset' => 'int', + ), + 'Imagick::addImage' => + array ( + 0 => 'bool', + 'source' => 'Imagick', + ), + 'Imagick::addNoiseImage' => + array ( + 0 => 'bool', + 'noise_type' => 'int', + 'channel=' => 'int', + ), + 'Imagick::affineTransformImage' => + array ( + 0 => 'bool', + 'matrix' => 'ImagickDraw', + ), + 'Imagick::animateImages' => + array ( + 0 => 'bool', + 'x_server' => 'string', + ), + 'Imagick::annotateImage' => + array ( + 0 => 'bool', + 'draw_settings' => 'ImagickDraw', + 'x' => 'float', + 'y' => 'float', + 'angle' => 'float', + 'text' => 'string', + ), + 'Imagick::appendImages' => + array ( + 0 => 'Imagick', + 'stack' => 'bool', + ), + 'Imagick::autoGammaImage' => + array ( + 0 => 'bool', + 'channel=' => 'int', + ), + 'Imagick::autoLevelImage' => + array ( + 0 => 'void', + 'CHANNEL=' => 'string', + ), + 'Imagick::autoOrient' => + array ( + 0 => 'bool', + ), + 'Imagick::averageImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::blackThresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'mixed', + ), + 'Imagick::blueShiftImage' => + array ( + 0 => 'void', + 'factor=' => 'float', + ), + 'Imagick::blurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::borderImage' => + array ( + 0 => 'bool', + 'bordercolor' => 'mixed', + 'width' => 'int', + 'height' => 'int', + ), + 'Imagick::brightnessContrastImage' => + array ( + 0 => 'void', + 'brightness' => 'string', + 'contrast' => 'string', + 'CHANNEL=' => 'string', + ), + 'Imagick::charcoalImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Imagick::chopImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::clampImage' => + array ( + 0 => 'void', + 'CHANNEL=' => 'string', + ), + 'Imagick::clear' => + array ( + 0 => 'bool', + ), + 'Imagick::clipImage' => + array ( + 0 => 'bool', + ), + 'Imagick::clipImagePath' => + array ( + 0 => 'void', + 'pathname' => 'string', + 'inside' => 'string', + ), + 'Imagick::clipPathImage' => + array ( + 0 => 'bool', + 'pathname' => 'string', + 'inside' => 'bool', + ), + 'Imagick::clone' => + array ( + 0 => 'Imagick', + ), + 'Imagick::clutImage' => + array ( + 0 => 'bool', + 'lookup_table' => 'Imagick', + 'channel=' => 'float', + ), + 'Imagick::coalesceImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::colorFloodfillImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::colorizeImage' => + array ( + 0 => 'bool', + 'colorize' => 'mixed', + 'opacity' => 'mixed', + ), + 'Imagick::colorMatrixImage' => + array ( + 0 => 'void', + 'color_matrix' => 'string', + ), + 'Imagick::combineImages' => + array ( + 0 => 'Imagick', + 'channeltype' => 'int', + ), + 'Imagick::commentImage' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'Imagick::compareImageChannels' => + array ( + 0 => 'list{Imagick, float}', + 'image' => 'Imagick', + 'channeltype' => 'int', + 'metrictype' => 'int', + ), + 'Imagick::compareImageLayers' => + array ( + 0 => 'Imagick', + 'method' => 'int', + ), + 'Imagick::compareImages' => + array ( + 0 => 'list{Imagick, float}', + 'compare' => 'Imagick', + 'metric' => 'int', + ), + 'Imagick::compositeImage' => + array ( + 0 => 'bool', + 'composite_object' => 'Imagick', + 'composite' => 'int', + 'x' => 'int', + 'y' => 'int', + 'channel=' => 'int', + ), + 'Imagick::compositeImageGravity' => + array ( + 0 => 'bool', + 'Imagick' => 'Imagick', + 'COMPOSITE_CONSTANT' => 'int', + 'GRAVITY_CONSTANT' => 'int', + ), + 'Imagick::contrastImage' => + array ( + 0 => 'bool', + 'sharpen' => 'bool', + ), + 'Imagick::contrastStretchImage' => + array ( + 0 => 'bool', + 'black_point' => 'float', + 'white_point' => 'float', + 'channel=' => 'int', + ), + 'Imagick::convolveImage' => + array ( + 0 => 'bool', + 'kernel' => 'array', + 'channel=' => 'int', + ), + 'Imagick::count' => + array ( + 0 => 'void', + 'mode=' => 'string', + ), + 'Imagick::cropImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::cropThumbnailImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'legacy=' => 'bool', + ), + 'Imagick::current' => + array ( + 0 => 'Imagick', + ), + 'Imagick::cycleColormapImage' => + array ( + 0 => 'bool', + 'displace' => 'int', + ), + 'Imagick::decipherImage' => + array ( + 0 => 'bool', + 'passphrase' => 'string', + ), + 'Imagick::deconstructImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::deleteImageArtifact' => + array ( + 0 => 'bool', + 'artifact' => 'string', + ), + 'Imagick::deleteImageProperty' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Imagick::deskewImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + ), + 'Imagick::despeckleImage' => + array ( + 0 => 'bool', + ), + 'Imagick::destroy' => + array ( + 0 => 'bool', + ), + 'Imagick::displayImage' => + array ( + 0 => 'bool', + 'servername' => 'string', + ), + 'Imagick::displayImages' => + array ( + 0 => 'bool', + 'servername' => 'string', + ), + 'Imagick::distortImage' => + array ( + 0 => 'bool', + 'method' => 'int', + 'arguments' => 'array', + 'bestfit' => 'bool', + ), + 'Imagick::drawImage' => + array ( + 0 => 'bool', + 'draw' => 'ImagickDraw', + ), + 'Imagick::edgeImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::embossImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Imagick::encipherImage' => + array ( + 0 => 'bool', + 'passphrase' => 'string', + ), + 'Imagick::enhanceImage' => + array ( + 0 => 'bool', + ), + 'Imagick::equalizeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::evaluateImage' => + array ( + 0 => 'bool', + 'op' => 'int', + 'constant' => 'float', + 'channel=' => 'int', + ), + 'Imagick::evaluateImages' => + array ( + 0 => 'bool', + 'EVALUATE_CONSTANT' => 'int', + ), + 'Imagick::exportImagePixels' => + array ( + 0 => 'list', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'map' => 'string', + 'storage' => 'int', + ), + 'Imagick::extentImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::filter' => + array ( + 0 => 'void', + 'ImagickKernel' => 'ImagickKernel', + 'CHANNEL=' => 'int', + ), + 'Imagick::flattenImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::flipImage' => + array ( + 0 => 'bool', + ), + 'Imagick::floodFillPaintImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'target' => 'mixed', + 'x' => 'int', + 'y' => 'int', + 'invert' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::flopImage' => + array ( + 0 => 'bool', + ), + 'Imagick::forwardFourierTransformimage' => + array ( + 0 => 'void', + 'magnitude' => 'bool', + ), + 'Imagick::frameImage' => + array ( + 0 => 'bool', + 'matte_color' => 'mixed', + 'width' => 'int', + 'height' => 'int', + 'inner_bevel' => 'int', + 'outer_bevel' => 'int', + ), + 'Imagick::functionImage' => + array ( + 0 => 'bool', + 'function' => 'int', + 'arguments' => 'array', + 'channel=' => 'int', + ), + 'Imagick::fxImage' => + array ( + 0 => 'Imagick', + 'expression' => 'string', + 'channel=' => 'int', + ), + 'Imagick::gammaImage' => + array ( + 0 => 'bool', + 'gamma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::gaussianBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::getColorspace' => + array ( + 0 => 'int', + ), + 'Imagick::getCompression' => + array ( + 0 => 'int', + ), + 'Imagick::getCompressionQuality' => + array ( + 0 => 'int', + ), + 'Imagick::getConfigureOptions' => + array ( + 0 => 'string', + ), + 'Imagick::getCopyright' => + array ( + 0 => 'string', + ), + 'Imagick::getFeatures' => + array ( + 0 => 'string', + ), + 'Imagick::getFilename' => + array ( + 0 => 'string', + ), + 'Imagick::getFont' => + array ( + 0 => 'false|string', + ), + 'Imagick::getFormat' => + array ( + 0 => 'string', + ), + 'Imagick::getGravity' => + array ( + 0 => 'int', + ), + 'Imagick::getHDRIEnabled' => + array ( + 0 => 'int', + ), + 'Imagick::getHomeURL' => + array ( + 0 => 'string', + ), + 'Imagick::getImage' => + array ( + 0 => 'Imagick', + ), + 'Imagick::getImageAlphaChannel' => + array ( + 0 => 'int', + ), + 'Imagick::getImageArtifact' => + array ( + 0 => 'string', + 'artifact' => 'string', + ), + 'Imagick::getImageAttribute' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'Imagick::getImageBackgroundColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageBlob' => + array ( + 0 => 'string', + ), + 'Imagick::getImageBluePrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageBorderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageChannelDepth' => + array ( + 0 => 'int', + 'channel' => 'int', + ), + 'Imagick::getImageChannelDistortion' => + array ( + 0 => 'float', + 'reference' => 'Imagick', + 'channel' => 'int', + 'metric' => 'int', + ), + 'Imagick::getImageChannelDistortions' => + array ( + 0 => 'float', + 'reference' => 'Imagick', + 'metric' => 'int', + 'channel=' => 'int', + ), + 'Imagick::getImageChannelExtrema' => + array ( + 0 => 'array{maxima: int, minima: int}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelKurtosis' => + array ( + 0 => 'array{kurtosis: float, skewness: float}', + 'channel=' => 'int', + ), + 'Imagick::getImageChannelMean' => + array ( + 0 => 'array{mean: float, standardDeviation: float}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelRange' => + array ( + 0 => 'array{maxima: float, minima: float}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelStatistics' => + array ( + 0 => 'array', + ), + 'Imagick::getImageClipMask' => + array ( + 0 => 'Imagick', + ), + 'Imagick::getImageColormapColor' => + array ( + 0 => 'ImagickPixel', + 'index' => 'int', + ), + 'Imagick::getImageColors' => + array ( + 0 => 'int', + ), + 'Imagick::getImageColorspace' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompose' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompression' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompressionQuality' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDelay' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDepth' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDispose' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDistortion' => + array ( + 0 => 'float', + 'reference' => 'magickwand', + 'metric' => 'int', + ), + 'Imagick::getImageExtrema' => + array ( + 0 => 'array{max: int, min: int}', + ), + 'Imagick::getImageFilename' => + array ( + 0 => 'string', + ), + 'Imagick::getImageFormat' => + array ( + 0 => 'string', + ), + 'Imagick::getImageGamma' => + array ( + 0 => 'float', + ), + 'Imagick::getImageGeometry' => + array ( + 0 => 'array{height: int, width: int}', + ), + 'Imagick::getImageGravity' => + array ( + 0 => 'int', + ), + 'Imagick::getImageGreenPrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageHeight' => + array ( + 0 => 'int', + ), + 'Imagick::getImageHistogram' => + array ( + 0 => 'list', + ), + 'Imagick::getImageIndex' => + array ( + 0 => 'int', + ), + 'Imagick::getImageInterlaceScheme' => + array ( + 0 => 'int', + ), + 'Imagick::getImageInterpolateMethod' => + array ( + 0 => 'int', + ), + 'Imagick::getImageIterations' => + array ( + 0 => 'int', + ), + 'Imagick::getImageLength' => + array ( + 0 => 'int', + ), + 'Imagick::getImageMagickLicense' => + array ( + 0 => 'string', + ), + 'Imagick::getImageMatte' => + array ( + 0 => 'bool', + ), + 'Imagick::getImageMatteColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageMimeType' => + array ( + 0 => 'string', + ), + 'Imagick::getImageOrientation' => + array ( + 0 => 'int', + ), + 'Imagick::getImagePage' => + array ( + 0 => 'array{height: int, width: int, x: int, y: int}', + ), + 'Imagick::getImagePixelColor' => + array ( + 0 => 'ImagickPixel', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::getImageProfile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Imagick::getImageProfiles' => + array ( + 0 => 'array', + 'pattern=' => 'string', + 'only_names=' => 'bool', + ), + 'Imagick::getImageProperties' => + array ( + 0 => 'array', + 'pattern=' => 'string', + 'only_names=' => 'bool', + ), + 'Imagick::getImageProperty' => + array ( + 0 => 'false|string', + 'name' => 'string', + ), + 'Imagick::getImageRedPrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageRegion' => + array ( + 0 => 'Imagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::getImageRenderingIntent' => + array ( + 0 => 'int', + ), + 'Imagick::getImageResolution' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImagesBlob' => + array ( + 0 => 'string', + ), + 'Imagick::getImageScene' => + array ( + 0 => 'int', + ), + 'Imagick::getImageSignature' => + array ( + 0 => 'string', + ), + 'Imagick::getImageSize' => + array ( + 0 => 'int', + ), + 'Imagick::getImageTicksPerSecond' => + array ( + 0 => 'int', + ), + 'Imagick::getImageTotalInkDensity' => + array ( + 0 => 'float', + ), + 'Imagick::getImageType' => + array ( + 0 => 'int', + ), + 'Imagick::getImageUnits' => + array ( + 0 => 'int', + ), + 'Imagick::getImageVirtualPixelMethod' => + array ( + 0 => 'int', + ), + 'Imagick::getImageWhitePoint' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageWidth' => + array ( + 0 => 'int', + ), + 'Imagick::getInterlaceScheme' => + array ( + 0 => 'int', + ), + 'Imagick::getIteratorIndex' => + array ( + 0 => 'int', + ), + 'Imagick::getNumberImages' => + array ( + 0 => 'int', + ), + 'Imagick::getOption' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'Imagick::getPackageName' => + array ( + 0 => 'string', + ), + 'Imagick::getPage' => + array ( + 0 => 'array{height: int, width: int, x: int, y: int}', + ), + 'Imagick::getPixelIterator' => + array ( + 0 => 'ImagickPixelIterator', + ), + 'Imagick::getPixelRegionIterator' => + array ( + 0 => 'ImagickPixelIterator', + 'x' => 'int', + 'y' => 'int', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::getPointSize' => + array ( + 0 => 'float', + ), + 'Imagick::getQuantum' => + array ( + 0 => 'int', + ), + 'Imagick::getQuantumDepth' => + array ( + 0 => 'array{quantumDepthLong: int, quantumDepthString: string}', + ), + 'Imagick::getQuantumRange' => + array ( + 0 => 'array{quantumRangeLong: int, quantumRangeString: string}', + ), + 'Imagick::getRegistry' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Imagick::getReleaseDate' => + array ( + 0 => 'string', + ), + 'Imagick::getResource' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'Imagick::getResourceLimit' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'Imagick::getSamplingFactors' => + array ( + 0 => 'array', + ), + 'Imagick::getSize' => + array ( + 0 => 'array{columns: int, rows: int}', + ), + 'Imagick::getSizeOffset' => + array ( + 0 => 'int', + ), + 'Imagick::getVersion' => + array ( + 0 => 'array{versionNumber: int, versionString: string}', + ), + 'Imagick::haldClutImage' => + array ( + 0 => 'bool', + 'clut' => 'Imagick', + 'channel=' => 'int', + ), + 'Imagick::hasNextImage' => + array ( + 0 => 'bool', + ), + 'Imagick::hasPreviousImage' => + array ( + 0 => 'bool', + ), + 'Imagick::identifyFormat' => + array ( + 0 => 'false|string', + 'embedText' => 'string', + ), + 'Imagick::identifyImage' => + array ( + 0 => 'array', + 'appendrawoutput=' => 'bool', + ), + 'Imagick::identifyImageType' => + array ( + 0 => 'int', + ), + 'Imagick::implodeImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::importImagePixels' => + array ( + 0 => 'bool', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'map' => 'string', + 'storage' => 'int', + 'pixels' => 'list', + ), + 'Imagick::inverseFourierTransformImage' => + array ( + 0 => 'void', + 'complement' => 'string', + 'magnitude' => 'string', + ), + 'Imagick::key' => + array ( + 0 => 'int|string', + ), + 'Imagick::labelImage' => + array ( + 0 => 'bool', + 'label' => 'string', + ), + 'Imagick::levelImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'gamma' => 'float', + 'whitepoint' => 'float', + 'channel=' => 'int', + ), + 'Imagick::linearStretchImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'whitepoint' => 'float', + ), + 'Imagick::liquidRescaleImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'delta_x' => 'float', + 'rigidity' => 'float', + ), + 'Imagick::listRegistry' => + array ( + 0 => 'array', + ), + 'Imagick::localContrastImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'strength' => 'float', + ), + 'Imagick::magnifyImage' => + array ( + 0 => 'bool', + ), + 'Imagick::mapImage' => + array ( + 0 => 'bool', + 'map' => 'Imagick', + 'dither' => 'bool', + ), + 'Imagick::matteFloodfillImage' => + array ( + 0 => 'bool', + 'alpha' => 'float', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::medianFilterImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::mergeImageLayers' => + array ( + 0 => 'Imagick', + 'layer_method' => 'int', + ), + 'Imagick::minifyImage' => + array ( + 0 => 'bool', + ), + 'Imagick::modulateImage' => + array ( + 0 => 'bool', + 'brightness' => 'float', + 'saturation' => 'float', + 'hue' => 'float', + ), + 'Imagick::montageImage' => + array ( + 0 => 'Imagick', + 'draw' => 'ImagickDraw', + 'tile_geometry' => 'string', + 'thumbnail_geometry' => 'string', + 'mode' => 'int', + 'frame' => 'string', + ), + 'Imagick::morphImages' => + array ( + 0 => 'Imagick', + 'number_frames' => 'int', + ), + 'Imagick::morphology' => + array ( + 0 => 'void', + 'morphologyMethod' => 'int', + 'iterations' => 'int', + 'ImagickKernel' => 'ImagickKernel', + 'CHANNEL=' => 'string', + ), + 'Imagick::mosaicImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::motionBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Imagick::negateImage' => + array ( + 0 => 'bool', + 'gray' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::newImage' => + array ( + 0 => 'bool', + 'cols' => 'int', + 'rows' => 'int', + 'background' => 'mixed', + 'format=' => 'string', + ), + 'Imagick::newPseudoImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'pseudostring' => 'string', + ), + 'Imagick::next' => + array ( + 0 => 'void', + ), + 'Imagick::nextImage' => + array ( + 0 => 'bool', + ), + 'Imagick::normalizeImage' => + array ( + 0 => 'bool', + 'channel=' => 'int', + ), + 'Imagick::oilPaintImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::opaquePaintImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'invert' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::optimizeImageLayers' => + array ( + 0 => 'bool', + ), + 'Imagick::orderedPosterizeImage' => + array ( + 0 => 'bool', + 'threshold_map' => 'string', + 'channel=' => 'int', + ), + 'Imagick::paintFloodfillImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + 'channel=' => 'int', + ), + 'Imagick::paintOpaqueImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'channel=' => 'int', + ), + 'Imagick::paintTransparentImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'alpha' => 'float', + 'fuzz' => 'float', + ), + 'Imagick::pingImage' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::pingImageBlob' => + array ( + 0 => 'bool', + 'image' => 'string', + ), + 'Imagick::pingImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename=' => 'string', + ), + 'Imagick::polaroidImage' => + array ( + 0 => 'bool', + 'properties' => 'ImagickDraw', + 'angle' => 'float', + ), + 'Imagick::posterizeImage' => + array ( + 0 => 'bool', + 'levels' => 'int', + 'dither' => 'bool', + ), + 'Imagick::previewImages' => + array ( + 0 => 'bool', + 'preview' => 'int', + ), + 'Imagick::previousImage' => + array ( + 0 => 'bool', + ), + 'Imagick::profileImage' => + array ( + 0 => 'bool', + 'name' => 'string', + 'profile' => 'string', + ), + 'Imagick::quantizeImage' => + array ( + 0 => 'bool', + 'numbercolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Imagick::quantizeImages' => + array ( + 0 => 'bool', + 'numbercolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Imagick::queryFontMetrics' => + array ( + 0 => 'array', + 'properties' => 'ImagickDraw', + 'text' => 'string', + 'multiline=' => 'bool', + ), + 'Imagick::queryFonts' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Imagick::queryFormats' => + array ( + 0 => 'list', + 'pattern=' => 'string', + ), + 'Imagick::radialBlurImage' => + array ( + 0 => 'bool', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Imagick::raiseImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + 'raise' => 'bool', + ), + 'Imagick::randomThresholdImage' => + array ( + 0 => 'bool', + 'low' => 'float', + 'high' => 'float', + 'channel=' => 'int', + ), + 'Imagick::readImage' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::readImageBlob' => + array ( + 0 => 'bool', + 'image' => 'string', + 'filename=' => 'string', + ), + 'Imagick::readImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename=' => 'string', + ), + 'Imagick::readImages' => + array ( + 0 => 'Imagick', + 'filenames' => 'string', + ), + 'Imagick::recolorImage' => + array ( + 0 => 'bool', + 'matrix' => 'list', + ), + 'Imagick::reduceNoiseImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::remapImage' => + array ( + 0 => 'bool', + 'replacement' => 'Imagick', + 'dither' => 'int', + ), + 'Imagick::removeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::removeImageProfile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Imagick::render' => + array ( + 0 => 'bool', + ), + 'Imagick::resampleImage' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + 'filter' => 'int', + 'blur' => 'float', + ), + 'Imagick::resetImagePage' => + array ( + 0 => 'bool', + 'page' => 'string', + ), + 'Imagick::resetIterator' => + array ( + 0 => 'mixed', + ), + 'Imagick::resizeImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'filter' => 'int', + 'blur' => 'float', + 'bestfit=' => 'bool', + ), + 'Imagick::rewind' => + array ( + 0 => 'void', + ), + 'Imagick::rollImage' => + array ( + 0 => 'bool', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::rotateImage' => + array ( + 0 => 'bool', + 'background' => 'mixed', + 'degrees' => 'float', + ), + 'Imagick::rotationalBlurImage' => + array ( + 0 => 'void', + 'angle' => 'string', + 'CHANNEL=' => 'string', + ), + 'Imagick::roundCorners' => + array ( + 0 => 'bool', + 'x_rounding' => 'float', + 'y_rounding' => 'float', + 'stroke_width=' => 'float', + 'displace=' => 'float', + 'size_correction=' => 'float', + ), + 'Imagick::roundCornersImage' => + array ( + 0 => 'mixed', + 'xRounding' => 'mixed', + 'yRounding' => 'mixed', + 'strokeWidth' => 'mixed', + 'displace' => 'mixed', + 'sizeCorrection' => 'mixed', + ), + 'Imagick::sampleImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::scaleImage' => + array ( + 0 => 'bool', + 'cols' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + ), + 'Imagick::segmentImage' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + 'cluster_threshold' => 'float', + 'smooth_threshold' => 'float', + 'verbose=' => 'bool', + ), + 'Imagick::selectiveBlurImage' => + array ( + 0 => 'void', + 'radius' => 'float', + 'sigma' => 'float', + 'threshold' => 'float', + 'CHANNEL' => 'int', + ), + 'Imagick::separateImageChannel' => + array ( + 0 => 'bool', + 'channel' => 'int', + ), + 'Imagick::sepiaToneImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + ), + 'Imagick::setAntiAlias' => + array ( + 0 => 'int', + 'antialias' => 'bool', + ), + 'Imagick::setBackgroundColor' => + array ( + 0 => 'bool', + 'background' => 'mixed', + ), + 'Imagick::setColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::setCompression' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'Imagick::setCompressionQuality' => + array ( + 0 => 'bool', + 'quality' => 'int', + ), + 'Imagick::setFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::setFirstIterator' => + array ( + 0 => 'bool', + ), + 'Imagick::setFont' => + array ( + 0 => 'bool', + 'font' => 'string', + ), + 'Imagick::setFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'Imagick::setGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'Imagick::setImage' => + array ( + 0 => 'bool', + 'replace' => 'Imagick', + ), + 'Imagick::setImageAlpha' => + array ( + 0 => 'bool', + 'alpha' => 'float', + ), + 'Imagick::setImageAlphaChannel' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'Imagick::setImageArtifact' => + array ( + 0 => 'bool', + 'artifact' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageAttribute' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageBackgroundColor' => + array ( + 0 => 'bool', + 'background' => 'mixed', + ), + 'Imagick::setImageBias' => + array ( + 0 => 'bool', + 'bias' => 'float', + ), + 'Imagick::setImageBiasQuantum' => + array ( + 0 => 'void', + 'bias' => 'string', + ), + 'Imagick::setImageBluePrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageBorderColor' => + array ( + 0 => 'bool', + 'border' => 'mixed', + ), + 'Imagick::setImageChannelDepth' => + array ( + 0 => 'bool', + 'channel' => 'int', + 'depth' => 'int', + ), + 'Imagick::setImageChannelMask' => + array ( + 0 => 'mixed', + 'channel' => 'int', + ), + 'Imagick::setImageClipMask' => + array ( + 0 => 'bool', + 'clip_mask' => 'Imagick', + ), + 'Imagick::setImageColormapColor' => + array ( + 0 => 'bool', + 'index' => 'int', + 'color' => 'ImagickPixel', + ), + 'Imagick::setImageColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::setImageCompose' => + array ( + 0 => 'bool', + 'compose' => 'int', + ), + 'Imagick::setImageCompression' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'Imagick::setImageCompressionQuality' => + array ( + 0 => 'bool', + 'quality' => 'int', + ), + 'Imagick::setImageDelay' => + array ( + 0 => 'bool', + 'delay' => 'int', + ), + 'Imagick::setImageDepth' => + array ( + 0 => 'bool', + 'depth' => 'int', + ), + 'Imagick::setImageDispose' => + array ( + 0 => 'bool', + 'dispose' => 'int', + ), + 'Imagick::setImageExtent' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::setImageFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::setImageFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'Imagick::setImageGamma' => + array ( + 0 => 'bool', + 'gamma' => 'float', + ), + 'Imagick::setImageGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'Imagick::setImageGreenPrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'Imagick::setImageInterlaceScheme' => + array ( + 0 => 'bool', + 'interlace_scheme' => 'int', + ), + 'Imagick::setImageInterpolateMethod' => + array ( + 0 => 'bool', + 'method' => 'int', + ), + 'Imagick::setImageIterations' => + array ( + 0 => 'bool', + 'iterations' => 'int', + ), + 'Imagick::setImageMatte' => + array ( + 0 => 'bool', + 'matte' => 'bool', + ), + 'Imagick::setImageMatteColor' => + array ( + 0 => 'bool', + 'matte' => 'mixed', + ), + 'Imagick::setImageOpacity' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'Imagick::setImageOrientation' => + array ( + 0 => 'bool', + 'orientation' => 'int', + ), + 'Imagick::setImagePage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::setImageProfile' => + array ( + 0 => 'bool', + 'name' => 'string', + 'profile' => 'string', + ), + 'Imagick::setImageProgressMonitor' => + array ( + 0 => 'mixed', + 'filename' => 'mixed', + ), + 'Imagick::setImageProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageRedPrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageRenderingIntent' => + array ( + 0 => 'bool', + 'rendering_intent' => 'int', + ), + 'Imagick::setImageResolution' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'Imagick::setImageScene' => + array ( + 0 => 'bool', + 'scene' => 'int', + ), + 'Imagick::setImageTicksPerSecond' => + array ( + 0 => 'bool', + 'ticks_per_second' => 'int', + ), + 'Imagick::setImageType' => + array ( + 0 => 'bool', + 'image_type' => 'int', + ), + 'Imagick::setImageUnits' => + array ( + 0 => 'bool', + 'units' => 'int', + ), + 'Imagick::setImageVirtualPixelMethod' => + array ( + 0 => 'bool', + 'method' => 'int', + ), + 'Imagick::setImageWhitePoint' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setInterlaceScheme' => + array ( + 0 => 'bool', + 'interlace_scheme' => 'int', + ), + 'Imagick::setIteratorIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'Imagick::setLastIterator' => + array ( + 0 => 'bool', + ), + 'Imagick::setOption' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setPage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::setPointSize' => + array ( + 0 => 'bool', + 'point_size' => 'float', + ), + 'Imagick::setProgressMonitor' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Imagick::setRegistry' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setResolution' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'Imagick::setResourceLimit' => + array ( + 0 => 'bool', + 'type' => 'int', + 'limit' => 'int', + ), + 'Imagick::setSamplingFactors' => + array ( + 0 => 'bool', + 'factors' => 'list', + ), + 'Imagick::setSize' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::setSizeOffset' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'offset' => 'int', + ), + 'Imagick::setType' => + array ( + 0 => 'bool', + 'image_type' => 'int', + ), + 'Imagick::shadeImage' => + array ( + 0 => 'bool', + 'gray' => 'bool', + 'azimuth' => 'float', + 'elevation' => 'float', + ), + 'Imagick::shadowImage' => + array ( + 0 => 'bool', + 'opacity' => 'float', + 'sigma' => 'float', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::sharpenImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::shaveImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::shearImage' => + array ( + 0 => 'bool', + 'background' => 'mixed', + 'x_shear' => 'float', + 'y_shear' => 'float', + ), + 'Imagick::sigmoidalContrastImage' => + array ( + 0 => 'bool', + 'sharpen' => 'bool', + 'alpha' => 'float', + 'beta' => 'float', + 'channel=' => 'int', + ), + 'Imagick::similarityImage' => + array ( + 0 => 'Imagick', + 'Imagick' => 'Imagick', + '&bestMatch' => 'array', + '&similarity' => 'float', + 'similarity_threshold' => 'float', + 'metric' => 'int', + ), + 'Imagick::sketchImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + ), + 'Imagick::smushImages' => + array ( + 0 => 'Imagick', + 'stack' => 'string', + 'offset' => 'string', + ), + 'Imagick::solarizeImage' => + array ( + 0 => 'bool', + 'threshold' => 'int', + ), + 'Imagick::sparseColorImage' => + array ( + 0 => 'bool', + 'sparse_method' => 'int', + 'arguments' => 'array', + 'channel=' => 'int', + ), + 'Imagick::spliceImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::spreadImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::statisticImage' => + array ( + 0 => 'void', + 'type' => 'int', + 'width' => 'int', + 'height' => 'int', + 'CHANNEL=' => 'string', + ), + 'Imagick::steganoImage' => + array ( + 0 => 'Imagick', + 'watermark_wand' => 'Imagick', + 'offset' => 'int', + ), + 'Imagick::stereoImage' => + array ( + 0 => 'bool', + 'offset_wand' => 'Imagick', + ), + 'Imagick::stripImage' => + array ( + 0 => 'bool', + ), + 'Imagick::subImageMatch' => + array ( + 0 => 'Imagick', + 'Imagick' => 'Imagick', + '&w_offset=' => 'array', + '&w_similarity=' => 'float', + ), + 'Imagick::swirlImage' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'Imagick::textureImage' => + array ( + 0 => 'bool', + 'texture_wand' => 'Imagick', + ), + 'Imagick::thresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + 'channel=' => 'int', + ), + 'Imagick::thumbnailImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + 'fill=' => 'bool', + 'legacy=' => 'bool', + ), + 'Imagick::tintImage' => + array ( + 0 => 'bool', + 'tint' => 'mixed', + 'opacity' => 'mixed', + ), + 'Imagick::transformImage' => + array ( + 0 => 'Imagick', + 'crop' => 'string', + 'geometry' => 'string', + ), + 'Imagick::transformImageColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::transparentPaintImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'alpha' => 'float', + 'fuzz' => 'float', + 'invert' => 'bool', + ), + 'Imagick::transposeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::transverseImage' => + array ( + 0 => 'bool', + ), + 'Imagick::trimImage' => + array ( + 0 => 'bool', + 'fuzz' => 'float', + ), + 'Imagick::uniqueImageColors' => + array ( + 0 => 'bool', + ), + 'Imagick::unsharpMaskImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'amount' => 'float', + 'threshold' => 'float', + 'channel=' => 'int', + ), + 'Imagick::valid' => + array ( + 0 => 'bool', + ), + 'Imagick::vignetteImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'whitepoint' => 'float', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::waveImage' => + array ( + 0 => 'bool', + 'amplitude' => 'float', + 'length' => 'float', + ), + 'Imagick::whiteThresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'mixed', + ), + 'Imagick::writeImage' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'Imagick::writeImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'Imagick::writeImages' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'adjoin' => 'bool', + ), + 'Imagick::writeImagesFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'ImagickDraw::__construct' => + array ( + 0 => 'void', + ), + 'ImagickDraw::affine' => + array ( + 0 => 'bool', + 'affine' => 'array', + ), + 'ImagickDraw::annotation' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'ImagickDraw::arc' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + 'sd' => 'float', + 'ed' => 'float', + ), + 'ImagickDraw::bezier' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::circle' => + array ( + 0 => 'bool', + 'ox' => 'float', + 'oy' => 'float', + 'px' => 'float', + 'py' => 'float', + ), + 'ImagickDraw::clear' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::clone' => + array ( + 0 => 'ImagickDraw', + ), + 'ImagickDraw::color' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'paintmethod' => 'int', + ), + 'ImagickDraw::comment' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'ImagickDraw::composite' => + array ( + 0 => 'bool', + 'compose' => 'int', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + 'compositewand' => 'Imagick', + ), + 'ImagickDraw::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::ellipse' => + array ( + 0 => 'bool', + 'ox' => 'float', + 'oy' => 'float', + 'rx' => 'float', + 'ry' => 'float', + 'start' => 'float', + 'end' => 'float', + ), + 'ImagickDraw::getBorderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getClipPath' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getClipRule' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getClipUnits' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getDensity' => + array ( + 0 => 'null|string', + ), + 'ImagickDraw::getFillColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getFillOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getFillRule' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFont' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getFontFamily' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getFontResolution' => + array ( + 0 => 'array', + ), + 'ImagickDraw::getFontSize' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getFontStretch' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFontStyle' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFontWeight' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getGravity' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeAntialias' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getStrokeColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getStrokeDashArray' => + array ( + 0 => 'array', + ), + 'ImagickDraw::getStrokeDashOffset' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeLineCap' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeLineJoin' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeMiterLimit' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeWidth' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextAlignment' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getTextAntialias' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getTextDecoration' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getTextDirection' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getTextEncoding' => + array ( + 0 => 'string', + ), + 'ImagickDraw::getTextInterlineSpacing' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextInterwordSpacing' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextKerning' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextUnderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getVectorGraphics' => + array ( + 0 => 'string', + ), + 'ImagickDraw::line' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + ), + 'ImagickDraw::matte' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'paintmethod' => 'int', + ), + 'ImagickDraw::pathClose' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pathCurveToAbsolute' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierRelative' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToRelative' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToSmoothAbsolute' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToSmoothRelative' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathEllipticArcAbsolute' => + array ( + 0 => 'bool', + 'rx' => 'float', + 'ry' => 'float', + 'x_axis_rotation' => 'float', + 'large_arc_flag' => 'bool', + 'sweep_flag' => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathEllipticArcRelative' => + array ( + 0 => 'bool', + 'rx' => 'float', + 'ry' => 'float', + 'x_axis_rotation' => 'float', + 'large_arc_flag' => 'bool', + 'sweep_flag' => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathFinish' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pathLineToAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToHorizontalAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + ), + 'ImagickDraw::pathLineToHorizontalRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + ), + 'ImagickDraw::pathLineToRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToVerticalAbsolute' => + array ( + 0 => 'bool', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToVerticalRelative' => + array ( + 0 => 'bool', + 'y' => 'float', + ), + 'ImagickDraw::pathMoveToAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathMoveToRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathStart' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::point' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::polygon' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::polyline' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::pop' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popClipPath' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popDefs' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popPattern' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::push' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pushClipPath' => + array ( + 0 => 'bool', + 'clip_mask_id' => 'string', + ), + 'ImagickDraw::pushDefs' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pushPattern' => + array ( + 0 => 'bool', + 'pattern_id' => 'string', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'ImagickDraw::rectangle' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'ImagickDraw::render' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::resetVectorGraphics' => + array ( + 0 => 'void', + ), + 'ImagickDraw::rotate' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::roundRectangle' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'rx' => 'float', + 'ry' => 'float', + ), + 'ImagickDraw::scale' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::setBorderColor' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel|string', + ), + 'ImagickDraw::setClipPath' => + array ( + 0 => 'bool', + 'clip_mask' => 'string', + ), + 'ImagickDraw::setClipRule' => + array ( + 0 => 'bool', + 'fill_rule' => 'int', + ), + 'ImagickDraw::setClipUnits' => + array ( + 0 => 'bool', + 'clip_units' => 'int', + ), + 'ImagickDraw::setDensity' => + array ( + 0 => 'bool', + 'density_string' => 'string', + ), + 'ImagickDraw::setFillAlpha' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'ImagickDraw::setFillColor' => + array ( + 0 => 'bool', + 'fill_pixel' => 'ImagickPixel|string', + ), + 'ImagickDraw::setFillOpacity' => + array ( + 0 => 'bool', + 'fillopacity' => 'float', + ), + 'ImagickDraw::setFillPatternURL' => + array ( + 0 => 'bool', + 'fill_url' => 'string', + ), + 'ImagickDraw::setFillRule' => + array ( + 0 => 'bool', + 'fill_rule' => 'int', + ), + 'ImagickDraw::setFont' => + array ( + 0 => 'bool', + 'font_name' => 'string', + ), + 'ImagickDraw::setFontFamily' => + array ( + 0 => 'bool', + 'font_family' => 'string', + ), + 'ImagickDraw::setFontResolution' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::setFontSize' => + array ( + 0 => 'bool', + 'pointsize' => 'float', + ), + 'ImagickDraw::setFontStretch' => + array ( + 0 => 'bool', + 'fontstretch' => 'int', + ), + 'ImagickDraw::setFontStyle' => + array ( + 0 => 'bool', + 'style' => 'int', + ), + 'ImagickDraw::setFontWeight' => + array ( + 0 => 'bool', + 'font_weight' => 'int', + ), + 'ImagickDraw::setGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'ImagickDraw::setOpacity' => + array ( + 0 => 'void', + 'opacity' => 'float', + ), + 'ImagickDraw::setResolution' => + array ( + 0 => 'void', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'ImagickDraw::setStrokeAlpha' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'ImagickDraw::setStrokeAntialias' => + array ( + 0 => 'bool', + 'stroke_antialias' => 'bool', + ), + 'ImagickDraw::setStrokeColor' => + array ( + 0 => 'bool', + 'stroke_pixel' => 'ImagickPixel|string', + ), + 'ImagickDraw::setStrokeDashArray' => + array ( + 0 => 'bool', + 'dasharray' => 'list', + ), + 'ImagickDraw::setStrokeDashOffset' => + array ( + 0 => 'bool', + 'dash_offset' => 'float', + ), + 'ImagickDraw::setStrokeLineCap' => + array ( + 0 => 'bool', + 'linecap' => 'int', + ), + 'ImagickDraw::setStrokeLineJoin' => + array ( + 0 => 'bool', + 'linejoin' => 'int', + ), + 'ImagickDraw::setStrokeMiterLimit' => + array ( + 0 => 'bool', + 'miterlimit' => 'int', + ), + 'ImagickDraw::setStrokeOpacity' => + array ( + 0 => 'bool', + 'stroke_opacity' => 'float', + ), + 'ImagickDraw::setStrokePatternURL' => + array ( + 0 => 'bool', + 'stroke_url' => 'string', + ), + 'ImagickDraw::setStrokeWidth' => + array ( + 0 => 'bool', + 'stroke_width' => 'float', + ), + 'ImagickDraw::setTextAlignment' => + array ( + 0 => 'bool', + 'alignment' => 'int', + ), + 'ImagickDraw::setTextAntialias' => + array ( + 0 => 'bool', + 'antialias' => 'bool', + ), + 'ImagickDraw::setTextDecoration' => + array ( + 0 => 'bool', + 'decoration' => 'int', + ), + 'ImagickDraw::setTextDirection' => + array ( + 0 => 'bool', + 'direction' => 'int', + ), + 'ImagickDraw::setTextEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'ImagickDraw::setTextInterlineSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'ImagickDraw::setTextInterwordSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'ImagickDraw::setTextKerning' => + array ( + 0 => 'void', + 'kerning' => 'float', + ), + 'ImagickDraw::setTextUnderColor' => + array ( + 0 => 'bool', + 'under_color' => 'ImagickPixel|string', + ), + 'ImagickDraw::setVectorGraphics' => + array ( + 0 => 'bool', + 'xml' => 'string', + ), + 'ImagickDraw::setViewbox' => + array ( + 0 => 'bool', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + ), + 'ImagickDraw::skewX' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::skewY' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::translate' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickKernel::addKernel' => + array ( + 0 => 'void', + 'ImagickKernel' => 'ImagickKernel', + ), + 'ImagickKernel::addUnityKernel' => + array ( + 0 => 'void', + ), + 'ImagickKernel::fromBuiltin' => + array ( + 0 => 'ImagickKernel', + 'kernelType' => 'string', + 'kernelString' => 'string', + ), + 'ImagickKernel::fromMatrix' => + array ( + 0 => 'ImagickKernel', + 'matrix' => 'list>', + 'origin=' => 'array', + ), + 'ImagickKernel::getMatrix' => + array ( + 0 => 'list>', + ), + 'ImagickKernel::scale' => + array ( + 0 => 'void', + ), + 'ImagickKernel::separate' => + array ( + 0 => 'array', + ), + 'ImagickKernel::seperate' => + array ( + 0 => 'void', + ), + 'ImagickPixel::__construct' => + array ( + 0 => 'void', + 'color=' => 'string', + ), + 'ImagickPixel::clear' => + array ( + 0 => 'bool', + ), + 'ImagickPixel::clone' => + array ( + 0 => 'void', + ), + 'ImagickPixel::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickPixel::getColor' => + array ( + 0 => 'array{a: float|int, b: float|int, g: float|int, r: float|int}', + 'normalized=' => '0|1|2', + ), + 'ImagickPixel::getColorAsString' => + array ( + 0 => 'string', + ), + 'ImagickPixel::getColorCount' => + array ( + 0 => 'int', + ), + 'ImagickPixel::getColorQuantum' => + array ( + 0 => 'mixed', + ), + 'ImagickPixel::getColorValue' => + array ( + 0 => 'float', + 'color' => 'int', + ), + 'ImagickPixel::getColorValueQuantum' => + array ( + 0 => 'mixed', + ), + 'ImagickPixel::getHSL' => + array ( + 0 => 'array{hue: float, luminosity: float, saturation: float}', + ), + 'ImagickPixel::getIndex' => + array ( + 0 => 'int', + ), + 'ImagickPixel::isPixelSimilar' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel', + 'fuzz' => 'float', + ), + 'ImagickPixel::isPixelSimilarQuantum' => + array ( + 0 => 'bool', + 'color' => 'string', + 'fuzz=' => 'string', + ), + 'ImagickPixel::isSimilar' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel', + 'fuzz' => 'float', + ), + 'ImagickPixel::setColor' => + array ( + 0 => 'bool', + 'color' => 'string', + ), + 'ImagickPixel::setcolorcount' => + array ( + 0 => 'void', + 'colorCount' => 'string', + ), + 'ImagickPixel::setColorFromPixel' => + array ( + 0 => 'bool', + 'srcPixel' => 'ImagickPixel', + ), + 'ImagickPixel::setColorValue' => + array ( + 0 => 'bool', + 'color' => 'int', + 'value' => 'float', + ), + 'ImagickPixel::setColorValueQuantum' => + array ( + 0 => 'void', + 'color' => 'int', + 'value' => 'mixed', + ), + 'ImagickPixel::setHSL' => + array ( + 0 => 'bool', + 'hue' => 'float', + 'saturation' => 'float', + 'luminosity' => 'float', + ), + 'ImagickPixel::setIndex' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'ImagickPixelIterator::__construct' => + array ( + 0 => 'void', + 'wand' => 'Imagick', + ), + 'ImagickPixelIterator::clear' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::current' => + array ( + 0 => 'mixed', + ), + 'ImagickPixelIterator::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::getCurrentIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::getIteratorRow' => + array ( + 0 => 'int', + ), + 'ImagickPixelIterator::getNextIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::getpixeliterator' => + array ( + 0 => 'mixed', + 'Imagick' => 'Imagick', + ), + 'ImagickPixelIterator::getpixelregioniterator' => + array ( + 0 => 'mixed', + 'Imagick' => 'Imagick', + 'x' => 'mixed', + 'y' => 'mixed', + 'columns' => 'mixed', + 'rows' => 'mixed', + ), + 'ImagickPixelIterator::getPreviousIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::key' => + array ( + 0 => 'int|string', + ), + 'ImagickPixelIterator::newPixelIterator' => + array ( + 0 => 'bool', + 'wand' => 'Imagick', + ), + 'ImagickPixelIterator::newPixelRegionIterator' => + array ( + 0 => 'bool', + 'wand' => 'Imagick', + 'x' => 'int', + 'y' => 'int', + 'columns' => 'int', + 'rows' => 'int', + ), + 'ImagickPixelIterator::next' => + array ( + 0 => 'void', + ), + 'ImagickPixelIterator::resetIterator' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::rewind' => + array ( + 0 => 'void', + ), + 'ImagickPixelIterator::setIteratorFirstRow' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::setIteratorLastRow' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::setIteratorRow' => + array ( + 0 => 'bool', + 'row' => 'int', + ), + 'ImagickPixelIterator::syncIterator' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::valid' => + array ( + 0 => 'bool', + ), + 'imap_8bit' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_alerts' => + array ( + 0 => 'array|false', + ), + 'imap_append' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'null|string', + 'internal_date=' => 'null|string', + ), + 'imap_base64' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_binary' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_body' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_bodystruct' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + ), + 'imap_check' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + ), + 'imap_clearflag_full' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'imap_close' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + 'imap_create' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_createmailbox' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_delete' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'imap_deletemailbox' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_errors' => + array ( + 0 => 'array|false', + ), + 'imap_expunge' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + ), + 'imap_fetch_overview' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchbody' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchheader' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_fetchmime' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchstructure' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_fetchtext' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_gc' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'flags' => 'int', + ), + 'imap_get_quota' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'quota_root' => 'string', + ), + 'imap_get_quotaroot' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_getacl' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_getmailboxes' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_getsubscribed' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_header' => + array ( + 0 => 'false|stdClass', + 'stream_id' => 'resource', + 'msg_no' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + 'default_host=' => 'string', + ), + 'imap_headerinfo' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + ), + 'imap_headers' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + ), + 'imap_is_open' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + 'imap_last_error' => + array ( + 0 => 'false|string', + ), + 'imap_list' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_listmailbox' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_listscan' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_listsubscribed' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_lsub' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'null|string', + 'cc=' => 'null|string', + 'bcc=' => 'null|string', + 'return_path=' => 'null|string', + ), + 'imap_mail_compose' => + array ( + 0 => 'false|string', + 'envelope' => 'array', + 'bodies' => 'array', + ), + 'imap_mail_copy' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'imap_mail_move' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'imap_mailboxmsginfo' => + array ( + 0 => 'stdClass', + 'imap' => 'IMAP\\Connection', + ), + 'imap_mime_header_decode' => + array ( + 0 => 'array|false', + 'string' => 'string', + ), + 'imap_msgno' => + array ( + 0 => 'int', + 'imap' => 'IMAP\\Connection', + 'message_uid' => 'int', + ), + 'imap_mutf7_to_utf8' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_num_msg' => + array ( + 0 => 'false|int', + 'imap' => 'IMAP\\Connection', + ), + 'imap_num_recent' => + array ( + 0 => 'int', + 'imap' => 'IMAP\\Connection', + ), + 'imap_open' => + array ( + 0 => 'IMAP\\Connection|false', + 'mailbox' => 'string', + 'user' => 'string', + 'password' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + 'options=' => 'array', + ), + 'imap_ping' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + 'imap_qprint' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_rename' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + 'imap_renamemailbox' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + 'imap_reopen' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + ), + 'imap_rfc822_parse_adrlist' => + array ( + 0 => 'array', + 'string' => 'string', + 'default_hostname' => 'string', + ), + 'imap_rfc822_parse_headers' => + array ( + 0 => 'stdClass', + 'headers' => 'string', + 'default_hostname=' => 'string', + ), + 'imap_rfc822_write_address' => + array ( + 0 => 'false|string', + 'mailbox' => 'string', + 'hostname' => 'string', + 'personal' => 'string', + ), + 'imap_savebody' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'file' => 'resource|string', + 'message_num' => 'int', + 'section=' => 'string', + 'flags=' => 'int', + ), + 'imap_scan' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_scanmailbox' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_search' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'criteria' => 'string', + 'flags=' => 'int', + 'charset=' => 'string', + ), + 'imap_set_quota' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'quota_root' => 'string', + 'mailbox_size' => 'int', + ), + 'imap_setacl' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'user_id' => 'string', + 'rights' => 'string', + ), + 'imap_setflag_full' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'imap_sort' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'criteria' => 'int', + 'reverse' => 'bool', + 'flags=' => 'int', + 'search_criteria=' => 'null|string', + 'charset=' => 'null|string', + ), + 'imap_status' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'flags' => 'int', + ), + 'imap_subscribe' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_thread' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + 'imap_timeout' => + array ( + 0 => 'bool|int', + 'timeout_type' => 'int', + 'timeout=' => 'int', + ), + 'imap_uid' => + array ( + 0 => 'false|int', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + ), + 'imap_undelete' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'imap_unsubscribe' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + 'imap_utf7_decode' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_utf7_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'imap_utf8' => + array ( + 0 => 'string', + 'mime_encoded_text' => 'string', + ), + 'imap_utf8_to_mutf7' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'implode' => + array ( + 0 => 'string', + 'separator' => 'string', + 'array' => 'array', + ), + 'implode\'1' => + array ( + 0 => 'string', + 'separator' => 'array', + ), + 'import_request_variables' => + array ( + 0 => 'bool', + 'types' => 'string', + 'prefix=' => 'string', + ), + 'in_array' => + array ( + 0 => 'bool', + 'needle' => 'mixed', + 'haystack' => 'array', + 'strict=' => 'bool', + ), + 'inclued_get_data' => + array ( + 0 => 'array', + ), + 'inet_ntop' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'inet_pton' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'InfiniteIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'InfiniteIterator::current' => + array ( + 0 => 'mixed', + ), + 'InfiniteIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'InfiniteIterator::key' => + array ( + 0 => 'scalar', + ), + 'InfiniteIterator::next' => + array ( + 0 => 'void', + ), + 'InfiniteIterator::rewind' => + array ( + 0 => 'void', + ), + 'InfiniteIterator::valid' => + array ( + 0 => 'bool', + ), + 'inflate_add' => + array ( + 0 => 'false|string', + 'context' => 'InflateContext', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'inflate_get_read_len' => + array ( + 0 => 'int', + 'context' => 'InflateContext', + ), + 'inflate_get_status' => + array ( + 0 => 'int', + 'context' => 'InflateContext', + ), + 'inflate_init' => + array ( + 0 => 'InflateContext|false', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'ingres_autocommit' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_autocommit_state' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_charset' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'ingres_close' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_commit' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_connect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'ingres_cursor' => + array ( + 0 => 'string', + 'result' => 'resource', + ), + 'ingres_errno' => + array ( + 0 => 'int', + 'link=' => 'resource', + ), + 'ingres_error' => + array ( + 0 => 'string', + 'link=' => 'resource', + ), + 'ingres_errsqlstate' => + array ( + 0 => 'string', + 'link=' => 'resource', + ), + 'ingres_escape_string' => + array ( + 0 => 'string', + 'link' => 'resource', + 'source_string' => 'string', + ), + 'ingres_execute' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ingres_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'ingres_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'ingres_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'ingres_fetch_proc_return' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'ingres_field_length' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_nullable' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_precision' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_scale' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'ingres_next_error' => + array ( + 0 => 'bool', + 'link=' => 'resource', + ), + 'ingres_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_pconnect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'ingres_prepare' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + ), + 'ingres_query' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ingres_result_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'position' => 'int', + ), + 'ingres_rollback' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_set_environment' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'options' => 'array', + ), + 'ingres_unbuffered_query' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ini_alter' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'null|scalar', + ), + 'ini_get' => + array ( + 0 => 'false|string', + 'option' => 'string', + ), + 'ini_get_all' => + array ( + 0 => 'array|false', + 'extension=' => 'null|string', + 'details=' => 'bool', + ), + 'ini_restore' => + array ( + 0 => 'void', + 'option' => 'string', + ), + 'ini_parse_quantity' => + array ( + 0 => 'int', + 'shorthand' => 'non-empty-string', + ), + 'ini_set' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'null|scalar', + ), + 'inotify_add_watch' => + array ( + 0 => 'false|int', + 'inotify_instance' => 'resource', + 'pathname' => 'string', + 'mask' => 'int', + ), + 'inotify_init' => + array ( + 0 => 'false|resource', + ), + 'inotify_queue_len' => + array ( + 0 => 'int', + 'inotify_instance' => 'resource', + ), + 'inotify_read' => + array ( + 0 => 'array|false', + 'inotify_instance' => 'resource', + ), + 'inotify_rm_watch' => + array ( + 0 => 'bool', + 'inotify_instance' => 'resource', + 'watch_descriptor' => 'int', + ), + 'intdiv' => + array ( + 0 => 'int', + 'num1' => 'int', + 'num2' => 'int', + ), + 'interface_exists' => + array ( + 0 => 'bool', + 'interface' => 'string', + 'autoload=' => 'bool', + ), + 'intl_error_name' => + array ( + 0 => 'string', + 'errorCode' => 'int', + ), + 'intl_get_error_code' => + array ( + 0 => 'int', + ), + 'intl_get_error_message' => + array ( + 0 => 'string', + ), + 'intl_is_failure' => + array ( + 0 => 'bool', + 'errorCode' => 'int', + ), + 'IntlBreakIterator::__construct' => + array ( + 0 => 'void', + ), + 'IntlBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::setText' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'intlcal_add' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + 'value' => 'int', + ), + 'intlcal_after' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_before' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_clear' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'field=' => 'int|null', + ), + 'intlcal_create_instance' => + array ( + 0 => 'IntlCalendar|null', + 'timezone=' => 'mixed', + 'locale=' => 'null|string', + ), + 'intlcal_equals' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_field_difference' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'intlcal_from_date_time' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'intlcal_get' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_actual_maximum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_actual_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_available_locales' => + array ( + 0 => 'array', + ), + 'intlcal_get_day_of_week_type' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_get_first_day_of_week' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_greatest_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_keyword_values_for_locale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'intlcal_get_least_maximum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_locale' => + array ( + 0 => 'string', + 'calendar' => 'IntlCalendar', + 'type' => 'int', + ), + 'intlcal_get_maximum' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_minimal_days_in_first_week' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_now' => + array ( + 0 => 'float', + ), + 'intlcal_get_repeated_wall_time_option' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_skipped_wall_time_option' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_time' => + array ( + 0 => 'float', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_time_zone' => + array ( + 0 => 'IntlTimeZone', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_type' => + array ( + 0 => 'string', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_weekend_transition' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_in_daylight_time' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_is_equivalent_to' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_is_lenient' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_is_set' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_is_weekend' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timestamp=' => 'float|null', + ), + 'intlcal_roll' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + 'value' => 'mixed', + ), + 'intlcal_set' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'year' => 'int', + 'month' => 'int', + ), + 'intlcal_set\'1' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'intlcal_set_first_day_of_week' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_set_lenient' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'lenient' => 'bool', + ), + 'intlcal_set_repeated_wall_time_option' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'option' => 'int', + ), + 'intlcal_set_skipped_wall_time_option' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'option' => 'int', + ), + 'intlcal_set_time' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timestamp' => 'float', + ), + 'intlcal_set_time_zone' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timezone' => 'mixed', + ), + 'intlcal_to_date_time' => + array ( + 0 => 'DateTime|false', + 'calendar' => 'IntlCalendar', + ), + 'IntlCalendar::__construct' => + array ( + 0 => 'void', + ), + 'IntlCalendar::add' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlCalendar::after' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::before' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::clear' => + array ( + 0 => 'bool', + 'field=' => 'int|null', + ), + 'IntlCalendar::createInstance' => + array ( + 0 => 'IntlCalendar|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'locale=' => 'null|string', + ), + 'IntlCalendar::equals' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::fieldDifference' => + array ( + 0 => 'false|int', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'IntlCalendar::fromDateTime' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'IntlCalendar::get' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getActualMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getActualMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getAvailableLocales' => + array ( + 0 => 'array', + ), + 'IntlCalendar::getDayOfWeekType' => + array ( + 0 => 'int', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlCalendar::getFirstDayOfWeek' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getGreatestMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getKeywordValuesForLocale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'IntlCalendar::getLeastMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlCalendar::getMaximum' => + array ( + 0 => 'false|int', + 'field' => 'int', + ), + 'IntlCalendar::getMinimalDaysInFirstWeek' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getNow' => + array ( + 0 => 'float', + ), + 'IntlCalendar::getRepeatedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getSkippedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getTime' => + array ( + 0 => 'float', + ), + 'IntlCalendar::getTimeZone' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlCalendar::getType' => + array ( + 0 => 'string', + ), + 'IntlCalendar::getWeekendTransition' => + array ( + 0 => 'false|int', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::inDaylightTime' => + array ( + 0 => 'bool', + ), + 'IntlCalendar::isEquivalentTo' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlCalendar::isSet' => + array ( + 0 => 'bool', + 'field' => 'int', + ), + 'IntlCalendar::isWeekend' => + array ( + 0 => 'bool', + 'timestamp=' => 'float|null', + ), + 'IntlCalendar::roll' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'bool|int', + ), + 'IntlCalendar::set' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlCalendar::set\'1' => + array ( + 0 => 'bool', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'IntlCalendar::setFirstDayOfWeek' => + array ( + 0 => 'bool', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::setLenient' => + array ( + 0 => 'true', + 'lenient' => 'bool', + ), + 'IntlCalendar::setMinimalDaysInFirstWeek' => + array ( + 0 => 'bool', + 'days' => 'int', + ), + 'IntlCalendar::setRepeatedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlCalendar::setSkippedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlCalendar::setTime' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlCalendar::setTimeZone' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlCalendar::toDateTime' => + array ( + 0 => 'DateTime|false', + ), + 'IntlChar::charAge' => + array ( + 0 => 'array|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charDigitValue' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charDirection' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charFromName' => + array ( + 0 => 'int|null', + 'name' => 'string', + 'type=' => 'int', + ), + 'IntlChar::charMirror' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::charName' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + 'type=' => 'int', + ), + 'IntlChar::charType' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::chr' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::digit' => + array ( + 0 => 'false|int|null', + 'codepoint' => 'int|string', + 'base=' => 'int', + ), + 'IntlChar::enumCharNames' => + array ( + 0 => 'bool', + 'start' => 'int|string', + 'end' => 'int|string', + 'callback' => 'callable(int, int, int):void', + 'type=' => 'int', + ), + 'IntlChar::enumCharTypes' => + array ( + 0 => 'void', + 'callback' => 'callable(int, int, int):void', + ), + 'IntlChar::foldCase' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + 'options=' => 'int', + ), + 'IntlChar::forDigit' => + array ( + 0 => 'int', + 'digit' => 'int', + 'base=' => 'int', + ), + 'IntlChar::getBidiPairedBracket' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::getBlockCode' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getCombiningClass' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getFC_NFKC_Closure' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::getIntPropertyMaxValue' => + array ( + 0 => 'int', + 'property' => 'int', + ), + 'IntlChar::getIntPropertyMinValue' => + array ( + 0 => 'int', + 'property' => 'int', + ), + 'IntlChar::getIntPropertyValue' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + 'property' => 'int', + ), + 'IntlChar::getNumericValue' => + array ( + 0 => 'float|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getPropertyEnum' => + array ( + 0 => 'int', + 'alias' => 'string', + ), + 'IntlChar::getPropertyName' => + array ( + 0 => 'false|string', + 'property' => 'int', + 'type=' => 'int', + ), + 'IntlChar::getPropertyValueEnum' => + array ( + 0 => 'int', + 'property' => 'int', + 'name' => 'string', + ), + 'IntlChar::getPropertyValueName' => + array ( + 0 => 'false|string', + 'property' => 'int', + 'value' => 'int', + 'type=' => 'int', + ), + 'IntlChar::getUnicodeVersion' => + array ( + 0 => 'array', + ), + 'IntlChar::hasBinaryProperty' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + 'property' => 'int', + ), + 'IntlChar::isalnum' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isalpha' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isbase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isblank' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::iscntrl' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isdefined' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isdigit' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isgraph' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isIDIgnorable' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isIDPart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isIDStart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isISOControl' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaIDPart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaIDStart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaSpaceChar' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::islower' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isMirrored' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isprint' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::ispunct' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isspace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::istitle' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUAlphabetic' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isULowercase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isupper' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUUppercase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUWhiteSpace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isWhitespace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isxdigit' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::ord' => + array ( + 0 => 'int|null', + 'character' => 'int|string', + ), + 'IntlChar::tolower' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::totitle' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::toupper' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlCodePointBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlCodePointBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlCodePointBreakIterator::getLastCodePoint' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlCodePointBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlCodePointBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlCodePointBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlCodePointBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::setText' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'IntlDateFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'IntlDateFormatter::create' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'IntlDateFormatter::format' => + array ( + 0 => 'false|string', + 'datetime' => 'DateTimeInterface|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + 'IntlDateFormatter::formatObject' => + array ( + 0 => 'false|string', + 'datetime' => 'DateTimeInterface|IntlCalendar', + 'format=' => 'array{0: int, 1: int}|int|null|string', + 'locale=' => 'null|string', + ), + 'IntlDateFormatter::getCalendar' => + array ( + 0 => 'false|int', + ), + 'IntlDateFormatter::getCalendarObject' => + array ( + 0 => 'IntlCalendar|false|null', + ), + 'IntlDateFormatter::getDateType' => + array ( + 0 => 'false|int', + ), + 'IntlDateFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlDateFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlDateFormatter::getLocale' => + array ( + 0 => 'false|string', + 'type=' => 'int', + ), + 'IntlDateFormatter::getPattern' => + array ( + 0 => 'false|string', + ), + 'IntlDateFormatter::getTimeType' => + array ( + 0 => 'false|int', + ), + 'IntlDateFormatter::getTimeZone' => + array ( + 0 => 'IntlTimeZone|false', + ), + 'IntlDateFormatter::getTimeZoneId' => + array ( + 0 => 'false|string', + ), + 'IntlDateFormatter::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlDateFormatter::localtime' => + array ( + 0 => 'array|false', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'IntlDateFormatter::parse' => + array ( + 0 => 'false|float|int', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'IntlDateFormatter::setCalendar' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar|int|null', + ), + 'IntlDateFormatter::setLenient' => + array ( + 0 => 'void', + 'lenient' => 'bool', + ), + 'IntlDateFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'IntlDateFormatter::setTimeZone' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'IntlException::__toString' => + array ( + 0 => 'string', + ), + 'IntlException::__wakeup' => + array ( + 0 => 'void', + ), + 'IntlException::getCode' => + array ( + 0 => 'int', + ), + 'IntlException::getFile' => + array ( + 0 => 'string', + ), + 'IntlException::getLine' => + array ( + 0 => 'int', + ), + 'IntlException::getMessage' => + array ( + 0 => 'string', + ), + 'IntlException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'IntlException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'IntlException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'intlgregcal_create_instance' => + array ( + 0 => 'IntlGregorianCalendar|null', + 'timezoneOrYear=' => 'DateTimeZone|IntlTimeZone|null|string', + 'localeOrMonth=' => 'int|null|string', + 'day=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'intlgregcal_get_gregorian_change' => + array ( + 0 => 'float', + 'calendar' => 'IntlGregorianCalendar', + ), + 'intlgregcal_is_leap_year' => + array ( + 0 => 'bool', + 'calendar' => 'IntlGregorianCalendar', + 'year' => 'int', + ), + 'intlgregcal_set_gregorian_change' => + array ( + 0 => 'bool', + 'calendar' => 'IntlGregorianCalendar', + 'timestamp' => 'float', + ), + 'IntlGregorianCalendar::__construct' => + array ( + 0 => 'void', + ), + 'IntlGregorianCalendar::add' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlGregorianCalendar::after' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::before' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::clear' => + array ( + 0 => 'bool', + 'field=' => 'int|null', + ), + 'IntlGregorianCalendar::createInstance' => + array ( + 0 => 'IntlGregorianCalendar|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'locale=' => 'null|string', + ), + 'IntlGregorianCalendar::equals' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::fieldDifference' => + array ( + 0 => 'false|int', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'IntlGregorianCalendar::fromDateTime' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'IntlGregorianCalendar::get' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getActualMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getActualMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getAvailableLocales' => + array ( + 0 => 'array', + ), + 'IntlGregorianCalendar::getDayOfWeekType' => + array ( + 0 => 'int', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlGregorianCalendar::getFirstDayOfWeek' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getGreatestMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getGregorianChange' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getKeywordValuesForLocale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'IntlGregorianCalendar::getLeastMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlGregorianCalendar::getMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getNow' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getRepeatedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getSkippedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getTime' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getTimeZone' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlGregorianCalendar::getType' => + array ( + 0 => 'string', + ), + 'IntlGregorianCalendar::getWeekendTransition' => + array ( + 0 => 'false|int', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::inDaylightTime' => + array ( + 0 => 'bool', + ), + 'IntlGregorianCalendar::isEquivalentTo' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::isLeapYear' => + array ( + 0 => 'bool', + 'year' => 'int', + ), + 'IntlGregorianCalendar::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlGregorianCalendar::isSet' => + array ( + 0 => 'bool', + 'field' => 'int', + ), + 'IntlGregorianCalendar::isWeekend' => + array ( + 0 => 'bool', + 'timestamp=' => 'float|null', + ), + 'IntlGregorianCalendar::roll' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'bool|int', + ), + 'IntlGregorianCalendar::set' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlGregorianCalendar::set\'1' => + array ( + 0 => 'bool', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'IntlGregorianCalendar::setFirstDayOfWeek' => + array ( + 0 => 'bool', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::setGregorianChange' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlGregorianCalendar::setLenient' => + array ( + 0 => 'true', + 'lenient' => 'bool', + ), + 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => + array ( + 0 => 'bool', + 'days' => 'int', + ), + 'IntlGregorianCalendar::setRepeatedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlGregorianCalendar::setSkippedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlGregorianCalendar::setTime' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlGregorianCalendar::setTimeZone' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlGregorianCalendar::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'IntlIterator::__construct' => + array ( + 0 => 'void', + ), + 'IntlIterator::current' => + array ( + 0 => 'mixed', + ), + 'IntlIterator::key' => + array ( + 0 => 'string', + ), + 'IntlIterator::next' => + array ( + 0 => 'void', + ), + 'IntlIterator::rewind' => + array ( + 0 => 'void', + ), + 'IntlIterator::valid' => + array ( + 0 => 'bool', + ), + 'IntlPartsIterator::getBreakIterator' => + array ( + 0 => 'IntlBreakIterator', + ), + 'IntlRuleBasedBreakIterator::__construct' => + array ( + 0 => 'void', + 'rules' => 'string', + 'compiled=' => 'bool', + ), + 'IntlRuleBasedBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlRuleBasedBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::getBinaryRules' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlRuleBasedBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlRuleBasedBreakIterator::getRules' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getRuleStatus' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::getRuleStatusVec' => + array ( + 0 => 'array', + ), + 'IntlRuleBasedBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlRuleBasedBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlRuleBasedBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::setText' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'IntlTimeZone::countEquivalentIDs' => + array ( + 0 => 'false|int', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::createDefault' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::createEnumeration' => + array ( + 0 => 'IntlIterator|false', + 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', + ), + 'IntlTimeZone::createTimeZone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::createTimeZoneIDEnumeration' => + array ( + 0 => 'IntlIterator|false', + 'type' => 'int', + 'region=' => 'null|string', + 'rawOffset=' => 'int|null', + ), + 'IntlTimeZone::fromDateTimeZone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezone' => 'DateTimeZone', + ), + 'IntlTimeZone::getCanonicalID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + '&w_isSystemId=' => 'bool', + ), + 'IntlTimeZone::getDisplayName' => + array ( + 0 => 'false|string', + 'dst=' => 'bool', + 'style=' => 'int', + 'locale=' => 'null|string', + ), + 'IntlTimeZone::getDSTSavings' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getEquivalentID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'offset' => 'int', + ), + 'IntlTimeZone::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getGMT' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::getID' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getIDForWindowsID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'region=' => 'null|string', + ), + 'IntlTimeZone::getOffset' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + 'local' => 'bool', + '&w_rawOffset' => 'int', + '&w_dstOffset' => 'int', + ), + 'IntlTimeZone::getRawOffset' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getRegion' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::getTZDataVersion' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getUnknown' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::getWindowsID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::hasSameRules' => + array ( + 0 => 'bool', + 'other' => 'IntlTimeZone', + ), + 'IntlTimeZone::toDateTimeZone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'IntlTimeZone::useDaylightTime' => + array ( + 0 => 'bool', + ), + 'intltz_count_equivalent_ids' => + array ( + 0 => 'int', + 'timezoneId' => 'string', + ), + 'intltz_create_enumeration' => + array ( + 0 => 'IntlIterator|false', + 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', + ), + 'intltz_create_time_zone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezoneId' => 'string', + ), + 'intltz_from_date_time_zone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezone' => 'DateTimeZone', + ), + 'intltz_get_canonical_id' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + '&isSystemId=' => 'bool', + ), + 'intltz_get_display_name' => + array ( + 0 => 'false|string', + 'timezone' => 'IntlTimeZone', + 'dst=' => 'bool', + 'style=' => 'int', + 'locale=' => 'null|string', + ), + 'intltz_get_dst_savings' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_equivalent_id' => + array ( + 0 => 'string', + 'timezoneId' => 'string', + 'offset' => 'int', + ), + 'intltz_get_error_code' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_error_message' => + array ( + 0 => 'string', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_id' => + array ( + 0 => 'string', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_offset' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + 'timestamp' => 'float', + 'local' => 'bool', + '&rawOffset' => 'int', + '&dstOffset' => 'int', + ), + 'intltz_get_raw_offset' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_tz_data_version' => + array ( + 0 => 'string', + 'object' => 'IntlTimeZone', + ), + 'intltz_getGMT' => + array ( + 0 => 'IntlTimeZone', + ), + 'intltz_has_same_rules' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + 'other' => 'IntlTimeZone', + ), + 'intltz_to_date_time_zone' => + array ( + 0 => 'DateTimeZone', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_use_daylight_time' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + ), + 'intlz_create_default' => + array ( + 0 => 'IntlTimeZone', + ), + 'intval' => + array ( + 0 => 'int', + 'value' => 'mixed', + 'base=' => 'int', + ), + 'InvalidArgumentException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'InvalidArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getCode' => + array ( + 0 => 'int', + ), + 'InvalidArgumentException::getFile' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getLine' => + array ( + 0 => 'int', + ), + 'InvalidArgumentException::getMessage' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'InvalidArgumentException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'InvalidArgumentException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'ip2long' => + array ( + 0 => 'false|int', + 'ip' => 'string', + ), + 'iptcembed' => + array ( + 0 => 'bool|string', + 'iptc_data' => 'string', + 'filename' => 'string', + 'spool=' => 'int', + ), + 'iptcparse' => + array ( + 0 => 'array|false', + 'iptc_block' => 'string', + ), + 'is_a' => + array ( + 0 => 'bool', + 'object_or_class' => 'mixed', + 'class' => 'string', + 'allow_string=' => 'bool', + ), + 'is_array' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_bool' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_callable' => + array ( + 0 => 'bool', + 'value' => 'callable|mixed', + 'syntax_only=' => 'bool', + '&w_callable_name=' => 'string', + ), + 'is_countable' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_dir' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_double' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_executable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_finite' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_float' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_infinite' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_int' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_integer' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_iterable' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_link' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_long' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_nan' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_null' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_numeric' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_object' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_readable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_real' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_resource' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_scalar' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_soap_fault' => + array ( + 0 => 'bool', + 'object' => 'mixed', + ), + 'is_string' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_subclass_of' => + array ( + 0 => 'bool', + 'object_or_class' => 'object|string', + 'class' => 'class-string', + 'allow_string=' => 'bool', + ), + 'is_tainted' => + array ( + 0 => 'bool', + 'string' => 'string', + ), + 'is_uploaded_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_writable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_writeable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'isset' => + array ( + 0 => 'bool', + 'value' => 'mixed', + '...rest=' => 'mixed', + ), + 'Iterator::current' => + array ( + 0 => 'mixed', + ), + 'Iterator::key' => + array ( + 0 => 'mixed', + ), + 'Iterator::next' => + array ( + 0 => 'void', + ), + 'Iterator::rewind' => + array ( + 0 => 'void', + ), + 'Iterator::valid' => + array ( + 0 => 'bool', + ), + 'iterator_apply' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable', + 'callback' => 'callable(mixed):bool', + 'args=' => 'array|null', + ), + 'iterator_count' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable|array', + ), + 'iterator_to_array' => + array ( + 0 => 'array', + 'iterator' => 'Traversable|array', + 'preserve_keys=' => 'bool', + ), + 'IteratorAggregate::getIterator' => + array ( + 0 => 'Traversable', + ), + 'IteratorIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Traversable', + 'class=' => 'null|string', + ), + 'IteratorIterator::current' => + array ( + 0 => 'mixed', + ), + 'IteratorIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'IteratorIterator::key' => + array ( + 0 => 'mixed', + ), + 'IteratorIterator::next' => + array ( + 0 => 'void', + ), + 'IteratorIterator::rewind' => + array ( + 0 => 'void', + ), + 'IteratorIterator::valid' => + array ( + 0 => 'bool', + ), + 'java_last_exception_clear' => + array ( + 0 => 'void', + ), + 'java_last_exception_get' => + array ( + 0 => 'object', + ), + 'java_reload' => + array ( + 0 => 'array', + 'new_jarpath' => 'string', + ), + 'java_require' => + array ( + 0 => 'array', + 'new_classpath' => 'string', + ), + 'java_set_encoding' => + array ( + 0 => 'array', + 'encoding' => 'string', + ), + 'java_set_ignore_case' => + array ( + 0 => 'void', + 'ignore' => 'bool', + ), + 'java_throw_exceptions' => + array ( + 0 => 'void', + 'throw' => 'bool', + ), + 'JavaException::getCause' => + array ( + 0 => 'object', + ), + 'jddayofweek' => + array ( + 0 => 'int|string', + 'julian_day' => 'int', + 'mode=' => 'int', + ), + 'jdmonthname' => + array ( + 0 => 'string', + 'julian_day' => 'int', + 'mode' => 'int', + ), + 'jdtofrench' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtogregorian' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtojewish' => + array ( + 0 => 'string', + 'julian_day' => 'int', + 'hebrew=' => 'bool', + 'flags=' => 'int', + ), + 'jdtojulian' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtounix' => + array ( + 0 => 'int', + 'julian_day' => 'int', + ), + 'jewishtojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'jobqueue_license_info' => + array ( + 0 => 'array', + ), + 'join' => + array ( + 0 => 'string', + 'separator' => 'string', + 'array' => 'array', + ), + 'join\'1' => + array ( + 0 => 'string', + 'separator' => 'array', + ), + 'json_decode' => + array ( + 0 => 'mixed', + 'json' => 'string', + 'associative=' => 'bool|null', + 'depth=' => 'int', + 'flags=' => 'int', + ), + 'json_encode' => + array ( + 0 => 'false|non-empty-string', + 'value' => 'mixed', + 'flags=' => 'int', + 'depth=' => 'int', + ), + 'json_last_error' => + array ( + 0 => 'int', + ), + 'json_last_error_msg' => + array ( + 0 => 'string', + ), + 'json_validate' => + array ( + 0 => 'bool', + 'json' => 'string', + 'depth=' => 'int<1, max>', + 'flags=' => 'int', + ), + 'JsonException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'JsonException::__toString' => + array ( + 0 => 'string', + ), + 'JsonException::__wakeup' => + array ( + 0 => 'void', + ), + 'JsonException::getCode' => + array ( + 0 => 'int', + ), + 'JsonException::getFile' => + array ( + 0 => 'string', + ), + 'JsonException::getLine' => + array ( + 0 => 'int', + ), + 'JsonException::getMessage' => + array ( + 0 => 'string', + ), + 'JsonException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'JsonException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'JsonException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'JsonIncrementalParser::__construct' => + array ( + 0 => 'void', + 'depth' => 'mixed', + 'options' => 'mixed', + ), + 'JsonIncrementalParser::get' => + array ( + 0 => 'mixed', + 'options' => 'mixed', + ), + 'JsonIncrementalParser::getError' => + array ( + 0 => 'mixed', + ), + 'JsonIncrementalParser::parse' => + array ( + 0 => 'mixed', + 'json' => 'mixed', + ), + 'JsonIncrementalParser::parseFile' => + array ( + 0 => 'mixed', + 'filename' => 'mixed', + ), + 'JsonIncrementalParser::reset' => + array ( + 0 => 'mixed', + ), + 'JsonSerializable::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Judy::__construct' => + array ( + 0 => 'void', + 'judy_type' => 'int', + ), + 'Judy::__destruct' => + array ( + 0 => 'void', + ), + 'Judy::byCount' => + array ( + 0 => 'int', + 'nth_index' => 'int', + ), + 'Judy::count' => + array ( + 0 => 'int', + 'index_start=' => 'int', + 'index_end=' => 'int', + ), + 'Judy::first' => + array ( + 0 => 'mixed', + 'index=' => 'mixed', + ), + 'Judy::firstEmpty' => + array ( + 0 => 'mixed', + 'index=' => 'mixed', + ), + 'Judy::free' => + array ( + 0 => 'int', + ), + 'Judy::getType' => + array ( + 0 => 'int', + ), + 'Judy::last' => + array ( + 0 => 'mixed', + 'index=' => 'string', + ), + 'Judy::lastEmpty' => + array ( + 0 => 'mixed', + 'index=' => 'int', + ), + 'Judy::memoryUsage' => + array ( + 0 => 'int', + ), + 'Judy::next' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::nextEmpty' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Judy::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Judy::offsetSet' => + array ( + 0 => 'bool', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Judy::offsetUnset' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Judy::prev' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::prevEmpty' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::size' => + array ( + 0 => 'int', + ), + 'judy_type' => + array ( + 0 => 'int', + 'array' => 'judy', + ), + 'judy_version' => + array ( + 0 => 'string', + ), + 'juliantojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'kadm5_chpass_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'password' => 'string', + ), + 'kadm5_create_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'kadm5_delete_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + ), + 'kadm5_destroy' => + array ( + 0 => 'bool', + 'handle' => 'resource', + ), + 'kadm5_flush' => + array ( + 0 => 'bool', + 'handle' => 'resource', + ), + 'kadm5_get_policies' => + array ( + 0 => 'array', + 'handle' => 'resource', + ), + 'kadm5_get_principal' => + array ( + 0 => 'array', + 'handle' => 'resource', + 'principal' => 'string', + ), + 'kadm5_get_principals' => + array ( + 0 => 'array', + 'handle' => 'resource', + ), + 'kadm5_init_with_password' => + array ( + 0 => 'resource', + 'admin_server' => 'string', + 'realm' => 'string', + 'principal' => 'string', + 'password' => 'string', + ), + 'kadm5_modify_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'options' => 'array', + ), + 'key' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + 'key_exists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array', + ), + 'krsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'ksort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getType' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => + array ( + 0 => 'string', + 'type' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => + array ( + 0 => 'mixed', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setType' => + array ( + 0 => 'mixed', + 'type' => 'int', + ), + 'KTaglib_ID3v2_Frame::__toString' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getDescription' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getMimeType' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getSize' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_Frame::getType' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_Frame::savePicture' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_Frame::setMimeType' => + array ( + 0 => 'string', + 'type' => 'string', + ), + 'KTaglib_ID3v2_Frame::setPicture' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_Frame::setType' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'KTaglib_ID3v2_Tag::addFrame' => + array ( + 0 => 'bool', + 'frame' => 'KTaglib_ID3v2_Frame', + ), + 'KTaglib_ID3v2_Tag::getFrameList' => + array ( + 0 => 'array', + ), + 'KTaglib_MPEG_AudioProperties::getBitrate' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getChannels' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getLayer' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getLength' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getSampleBitrate' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getVersion' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::isCopyrighted' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_AudioProperties::isOriginal' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_File::getAudioProperties' => + array ( + 0 => 'KTaglib_MPEG_File', + ), + 'KTaglib_MPEG_File::getID3v1Tag' => + array ( + 0 => 'KTaglib_ID3v1_Tag', + 'create=' => 'bool', + ), + 'KTaglib_MPEG_File::getID3v2Tag' => + array ( + 0 => 'KTaglib_ID3v2_Tag', + 'create=' => 'bool', + ), + 'KTaglib_Tag::getAlbum' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getArtist' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getComment' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getGenre' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getTitle' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getTrack' => + array ( + 0 => 'int', + ), + 'KTaglib_Tag::getYear' => + array ( + 0 => 'int', + ), + 'KTaglib_Tag::isEmpty' => + array ( + 0 => 'bool', + ), + 'labelcacheObj::freeCache' => + array ( + 0 => 'bool', + ), + 'labelObj::__construct' => + array ( + 0 => 'void', + ), + 'labelObj::convertToString' => + array ( + 0 => 'string', + ), + 'labelObj::deleteStyle' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::free' => + array ( + 0 => 'void', + ), + 'labelObj::getBinding' => + array ( + 0 => 'string', + 'labelbinding' => 'mixed', + ), + 'labelObj::getExpressionString' => + array ( + 0 => 'string', + ), + 'labelObj::getStyle' => + array ( + 0 => 'styleObj', + 'index' => 'int', + ), + 'labelObj::getTextString' => + array ( + 0 => 'string', + ), + 'labelObj::moveStyleDown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::moveStyleUp' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::removeBinding' => + array ( + 0 => 'int', + 'labelbinding' => 'mixed', + ), + 'labelObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'labelObj::setBinding' => + array ( + 0 => 'int', + 'labelbinding' => 'mixed', + 'value' => 'string', + ), + 'labelObj::setExpression' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'labelObj::setText' => + array ( + 0 => 'int', + 'text' => 'string', + ), + 'labelObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'Lapack::eigenValues' => + array ( + 0 => 'array', + 'a' => 'array', + 'left=' => 'array', + 'right=' => 'array', + ), + 'Lapack::identity' => + array ( + 0 => 'array', + 'n' => 'int', + ), + 'Lapack::leastSquaresByFactorisation' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'Lapack::leastSquaresBySVD' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'Lapack::pseudoInverse' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'Lapack::singularValues' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'Lapack::solveLinearEquation' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'layerObj::addFeature' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'layerObj::applySLD' => + array ( + 0 => 'int', + 'sldxml' => 'string', + 'namedlayer' => 'string', + ), + 'layerObj::applySLDURL' => + array ( + 0 => 'int', + 'sldurl' => 'string', + 'namedlayer' => 'string', + ), + 'layerObj::clearProcessing' => + array ( + 0 => 'void', + ), + 'layerObj::close' => + array ( + 0 => 'void', + ), + 'layerObj::convertToString' => + array ( + 0 => 'string', + ), + 'layerObj::draw' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'layerObj::drawQuery' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'layerObj::free' => + array ( + 0 => 'void', + ), + 'layerObj::generateSLD' => + array ( + 0 => 'string', + ), + 'layerObj::getClass' => + array ( + 0 => 'classObj', + 'classIndex' => 'int', + ), + 'layerObj::getClassIndex' => + array ( + 0 => 'int', + 'shape' => 'mixed', + 'classgroup' => 'mixed', + 'numclasses' => 'mixed', + ), + 'layerObj::getExtent' => + array ( + 0 => 'rectObj', + ), + 'layerObj::getFilterString' => + array ( + 0 => 'null|string', + ), + 'layerObj::getGridIntersectionCoordinates' => + array ( + 0 => 'array', + ), + 'layerObj::getItems' => + array ( + 0 => 'array', + ), + 'layerObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'layerObj::getNumResults' => + array ( + 0 => 'int', + ), + 'layerObj::getProcessing' => + array ( + 0 => 'array', + ), + 'layerObj::getProjection' => + array ( + 0 => 'string', + ), + 'layerObj::getResult' => + array ( + 0 => 'resultObj', + 'index' => 'int', + ), + 'layerObj::getResultsBounds' => + array ( + 0 => 'rectObj', + ), + 'layerObj::getShape' => + array ( + 0 => 'shapeObj', + 'result' => 'resultObj', + ), + 'layerObj::getWMSFeatureInfoURL' => + array ( + 0 => 'string', + 'clickX' => 'int', + 'clickY' => 'int', + 'featureCount' => 'int', + 'infoFormat' => 'string', + ), + 'layerObj::isVisible' => + array ( + 0 => 'bool', + ), + 'layerObj::moveclassdown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'layerObj::moveclassup' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'layerObj::ms_newLayerObj' => + array ( + 0 => 'layerObj', + 'map' => 'mapObj', + 'layer' => 'layerObj', + ), + 'layerObj::nextShape' => + array ( + 0 => 'shapeObj', + ), + 'layerObj::open' => + array ( + 0 => 'int', + ), + 'layerObj::queryByAttributes' => + array ( + 0 => 'int', + 'qitem' => 'string', + 'qstring' => 'string', + 'mode' => 'int', + ), + 'layerObj::queryByFeatures' => + array ( + 0 => 'int', + 'slayer' => 'int', + ), + 'layerObj::queryByPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + 'mode' => 'int', + 'buffer' => 'float', + ), + 'layerObj::queryByRect' => + array ( + 0 => 'int', + 'rect' => 'rectObj', + ), + 'layerObj::queryByShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'layerObj::removeClass' => + array ( + 0 => 'classObj|null', + 'index' => 'int', + ), + 'layerObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'layerObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'layerObj::setConnectionType' => + array ( + 0 => 'int', + 'connectiontype' => 'int', + 'plugin_library' => 'string', + ), + 'layerObj::setFilter' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'layerObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'layerObj::setProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + ), + 'layerObj::setWKTProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + ), + 'layerObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'lcfirst' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'lcg_value' => + array ( + 0 => 'float', + ), + 'lchgrp' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'group' => 'int|string', + ), + 'lchown' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'user' => 'int|string', + ), + 'ldap_8859_to_t61' => + array ( + 0 => 'string', + 'value' => 'string', + ), + 'ldap_add' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_add_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_bind' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + ), + 'ldap_bind_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array|null', + ), + 'ldap_close' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + 'ldap_compare' => + array ( + 0 => 'bool|int', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array|null', + ), + 'ldap_connect' => + array ( + 0 => 'LDAP\\Connection|false', + 'uri=' => 'null|string', + 'port=' => 'int', + 'wallet=' => 'string', + 'password=' => 'string', + 'auth_mode=' => 'int', + ), + 'ldap_count_entries' => + array ( + 0 => 'int', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + 'ldap_delete' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + 'ldap_delete_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + 'ldap_dn2ufn' => + array ( + 0 => 'false|string', + 'dn' => 'string', + ), + 'ldap_err2str' => + array ( + 0 => 'string', + 'errno' => 'int', + ), + 'ldap_errno' => + array ( + 0 => 'int', + 'ldap' => 'LDAP\\Connection', + ), + 'ldap_error' => + array ( + 0 => 'string', + 'ldap' => 'LDAP\\Connection', + ), + 'ldap_escape' => + array ( + 0 => 'string', + 'value' => 'string', + 'ignore=' => 'string', + 'flags=' => 'int', + ), + 'ldap_exop' => + array ( + 0 => 'LDAP\\Result|bool', + 'ldap' => 'LDAP\\Connection', + 'request_oid' => 'string', + 'request_data=' => 'null|string', + 'controls=' => 'array|null', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'ldap_exop_passwd' => + array ( + 0 => 'bool|string', + 'ldap' => 'LDAP\\Connection', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array|null', + ), + 'ldap_exop_refresh' => + array ( + 0 => 'false|int', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'ttl' => 'int', + ), + 'ldap_exop_whoami' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + ), + 'ldap_explode_dn' => + array ( + 0 => 'array|false', + 'dn' => 'string', + 'with_attrib' => 'int', + ), + 'ldap_first_attribute' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_first_entry' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + 'ldap_first_reference' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + 'ldap_free_result' => + array ( + 0 => 'bool', + 'result' => 'LDAP\\Result', + ), + 'ldap_get_attributes' => + array ( + 0 => 'array', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_get_dn' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_get_entries' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + 'ldap_get_option' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'option' => 'int', + '&w_value=' => 'array|int|string', + ), + 'ldap_get_values' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + 'attribute' => 'string', + ), + 'ldap_get_values_len' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + 'attribute' => 'string', + ), + 'ldap_list' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'ldap_mod_add' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_mod_add_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_mod_del' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_mod_del_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_mod_replace' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_mod_replace_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_modify' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_modify_batch' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array|null', + ), + 'ldap_next_attribute' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_next_entry' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_next_reference' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + 'ldap_parse_exop' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'ldap_parse_reference' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + '&w_referrals' => 'array', + ), + 'ldap_parse_result' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + '&w_error_code' => 'int', + '&w_matched_dn=' => 'string', + '&w_error_message=' => 'string', + '&w_referrals=' => 'array', + '&w_controls=' => 'array', + ), + 'ldap_read' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'ldap_rename' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + 'ldap_rename_ext' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + 'ldap_sasl_bind' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'mech=' => 'null|string', + 'realm=' => 'null|string', + 'authc_id=' => 'null|string', + 'authz_id=' => 'null|string', + 'props=' => 'null|string', + ), + 'ldap_search' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'ldap_set_option' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection|null', + 'option' => 'int', + 'value' => 'mixed', + ), + 'ldap_set_rebind_proc' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'callback' => 'callable|null', + ), + 'ldap_start_tls' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + 'ldap_t61_to_8859' => + array ( + 0 => 'string', + 'value' => 'string', + ), + 'ldap_unbind' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + 'leak' => + array ( + 0 => 'mixed', + 'num_bytes' => 'int', + ), + 'leak_variable' => + array ( + 0 => 'mixed', + 'variable' => 'mixed', + 'leak_data' => 'bool', + ), + 'legendObj::convertToString' => + array ( + 0 => 'string', + ), + 'legendObj::free' => + array ( + 0 => 'void', + ), + 'legendObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'legendObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'LengthException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'LengthException::__toString' => + array ( + 0 => 'string', + ), + 'LengthException::getCode' => + array ( + 0 => 'int', + ), + 'LengthException::getFile' => + array ( + 0 => 'string', + ), + 'LengthException::getLine' => + array ( + 0 => 'int', + ), + 'LengthException::getMessage' => + array ( + 0 => 'string', + ), + 'LengthException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'LengthException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'LengthException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'LevelDB::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'options=' => 'array', + 'read_options=' => 'array', + 'write_options=' => 'array', + ), + 'LevelDB::close' => + array ( + 0 => 'mixed', + ), + 'LevelDB::compactRange' => + array ( + 0 => 'mixed', + 'start' => 'mixed', + 'limit' => 'mixed', + ), + 'LevelDB::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::destroy' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'options=' => 'array', + ), + 'LevelDB::get' => + array ( + 0 => 'bool|string', + 'key' => 'string', + 'read_options=' => 'array', + ), + 'LevelDB::getApproximateSizes' => + array ( + 0 => 'mixed', + 'start' => 'mixed', + 'limit' => 'mixed', + ), + 'LevelDB::getIterator' => + array ( + 0 => 'LevelDBIterator', + 'options=' => 'array', + ), + 'LevelDB::getProperty' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'LevelDB::getSnapshot' => + array ( + 0 => 'LevelDBSnapshot', + ), + 'LevelDB::put' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::repair' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'options=' => 'array', + ), + 'LevelDB::set' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::write' => + array ( + 0 => 'mixed', + 'batch' => 'LevelDBWriteBatch', + 'write_options=' => 'array', + ), + 'LevelDBIterator::__construct' => + array ( + 0 => 'void', + 'db' => 'LevelDB', + 'read_options=' => 'array', + ), + 'LevelDBIterator::current' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::destroy' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::getError' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::key' => + array ( + 0 => 'int|string', + ), + 'LevelDBIterator::last' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::next' => + array ( + 0 => 'void', + ), + 'LevelDBIterator::prev' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::rewind' => + array ( + 0 => 'void', + ), + 'LevelDBIterator::seek' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'LevelDBIterator::valid' => + array ( + 0 => 'bool', + ), + 'LevelDBSnapshot::__construct' => + array ( + 0 => 'void', + 'db' => 'LevelDB', + ), + 'LevelDBSnapshot::release' => + array ( + 0 => 'mixed', + ), + 'LevelDBWriteBatch::__construct' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'options=' => 'array', + 'read_options=' => 'array', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::clear' => + array ( + 0 => 'mixed', + ), + 'LevelDBWriteBatch::delete' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::put' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'value' => 'mixed', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::set' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'value' => 'mixed', + 'write_options=' => 'array', + ), + 'levenshtein' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'levenshtein\'1' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'insertion_cost' => 'int', + 'repetition_cost' => 'int', + 'deletion_cost' => 'int', + ), + 'libxml_clear_errors' => + array ( + 0 => 'void', + ), + 'libxml_disable_entity_loader' => + array ( + 0 => 'bool', + 'disable=' => 'bool', + ), + 'libxml_get_errors' => + array ( + 0 => 'list', + ), + 'libxml_get_last_error' => + array ( + 0 => 'LibXMLError|false', + ), + 'libxml_get_external_entity_loader' => + array ( + 0 => 'callable(string, string, array{directory: null|string, extSubSystem: null|string, extSubURI: null|string, intSubName: null|string}):(null|resource|string)|null', + ), + 'libxml_set_external_entity_loader' => + array ( + 0 => 'bool', + 'resolver_function' => 'callable(string, string, array{directory: null|string, extSubSystem: null|string, extSubURI: null|string, intSubName: null|string}):(null|resource|string)|null', + ), + 'libxml_set_streams_context' => + array ( + 0 => 'void', + 'context' => 'resource', + ), + 'libxml_use_internal_errors' => + array ( + 0 => 'bool', + 'use_errors=' => 'bool|null', + ), + 'LimitIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'LimitIterator::current' => + array ( + 0 => 'mixed', + ), + 'LimitIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'LimitIterator::getPosition' => + array ( + 0 => 'int', + ), + 'LimitIterator::key' => + array ( + 0 => 'mixed', + ), + 'LimitIterator::next' => + array ( + 0 => 'void', + ), + 'LimitIterator::rewind' => + array ( + 0 => 'void', + ), + 'LimitIterator::seek' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'LimitIterator::valid' => + array ( + 0 => 'bool', + ), + 'lineObj::__construct' => + array ( + 0 => 'void', + ), + 'lineObj::add' => + array ( + 0 => 'int', + 'point' => 'pointObj', + ), + 'lineObj::addXY' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'm' => 'float', + ), + 'lineObj::addXYZ' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + 'm' => 'float', + ), + 'lineObj::ms_newLineObj' => + array ( + 0 => 'lineObj', + ), + 'lineObj::point' => + array ( + 0 => 'pointObj', + 'i' => 'int', + ), + 'lineObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'link' => + array ( + 0 => 'bool', + 'target' => 'string', + 'link' => 'string', + ), + 'linkinfo' => + array ( + 0 => 'false|int', + 'path' => 'string', + ), + 'litespeed_request_headers' => + array ( + 0 => 'array', + ), + 'litespeed_response_headers' => + array ( + 0 => 'array', + ), + 'Locale::acceptFromHttp' => + array ( + 0 => 'false|string', + 'header' => 'string', + ), + 'Locale::canonicalize' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'Locale::composeLocale' => + array ( + 0 => 'string', + 'subtags' => 'array', + ), + 'Locale::filterMatches' => + array ( + 0 => 'bool|null', + 'languageTag' => 'string', + 'locale' => 'string', + 'canonicalize=' => 'bool', + ), + 'Locale::getAllVariants' => + array ( + 0 => 'array', + 'locale' => 'string', + ), + 'Locale::getDefault' => + array ( + 0 => 'string', + ), + 'Locale::getDisplayLanguage' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'Locale::getDisplayName' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'Locale::getDisplayRegion' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'Locale::getDisplayScript' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'Locale::getDisplayVariant' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'Locale::getKeywords' => + array ( + 0 => 'array|false', + 'locale' => 'string', + ), + 'Locale::getPrimaryLanguage' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::getRegion' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::getScript' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::lookup' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'null|string', + ), + 'Locale::parseLocale' => + array ( + 0 => 'array', + 'locale' => 'string', + ), + 'Locale::setDefault' => + array ( + 0 => 'bool', + 'locale' => 'string', + ), + 'locale_accept_from_http' => + array ( + 0 => 'false|string', + 'header' => 'string', + ), + 'locale_canonicalize' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_compose' => + array ( + 0 => 'false|string', + 'subtags' => 'array', + ), + 'locale_filter_matches' => + array ( + 0 => 'bool|null', + 'languageTag' => 'string', + 'locale' => 'string', + 'canonicalize=' => 'bool', + ), + 'locale_get_all_variants' => + array ( + 0 => 'array|null', + 'locale' => 'string', + ), + 'locale_get_default' => + array ( + 0 => 'string', + ), + 'locale_get_display_language' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'locale_get_display_name' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'locale_get_display_region' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'locale_get_display_script' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'locale_get_display_variant' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + 'locale_get_keywords' => + array ( + 0 => 'array|false|null', + 'locale' => 'string', + ), + 'locale_get_primary_language' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_get_region' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_get_script' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_lookup' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'null|string', + ), + 'locale_parse' => + array ( + 0 => 'array|null', + 'locale' => 'string', + ), + 'locale_set_default' => + array ( + 0 => 'bool', + 'locale' => 'string', + ), + 'localeconv' => + array ( + 0 => 'array', + ), + 'localtime' => + array ( + 0 => 'array', + 'timestamp=' => 'int|null', + 'associative=' => 'bool', + ), + 'log' => + array ( + 0 => 'float', + 'num' => 'float', + 'base=' => 'float', + ), + 'log10' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'log1p' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'LogicException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'LogicException::__toString' => + array ( + 0 => 'string', + ), + 'LogicException::getCode' => + array ( + 0 => 'int', + ), + 'LogicException::getFile' => + array ( + 0 => 'string', + ), + 'LogicException::getLine' => + array ( + 0 => 'int', + ), + 'LogicException::getMessage' => + array ( + 0 => 'string', + ), + 'LogicException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'LogicException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'LogicException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'long2ip' => + array ( + 0 => 'string', + 'ip' => 'int', + ), + 'lstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'filename' => 'string', + ), + 'ltrim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'Lua::__call' => + array ( + 0 => 'mixed', + 'lua_func' => 'callable', + 'args=' => 'array', + 'use_self=' => 'int', + ), + 'Lua::__construct' => + array ( + 0 => 'void', + 'lua_script_file' => 'string', + ), + 'Lua::assign' => + array ( + 0 => 'Lua|null', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Lua::call' => + array ( + 0 => 'mixed', + 'lua_func' => 'callable', + 'args=' => 'array', + 'use_self=' => 'int', + ), + 'Lua::eval' => + array ( + 0 => 'mixed', + 'statements' => 'string', + ), + 'Lua::getVersion' => + array ( + 0 => 'string', + ), + 'Lua::include' => + array ( + 0 => 'mixed', + 'file' => 'string', + ), + 'Lua::registerCallback' => + array ( + 0 => 'Lua|false|null', + 'name' => 'string', + 'function' => 'callable', + ), + 'LuaClosure::__invoke' => + array ( + 0 => 'void', + 'arg' => 'mixed', + '...args=' => 'mixed', + ), + 'lzf_compress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'lzf_decompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'lzf_optimized_for' => + array ( + 0 => 'int', + ), + 'magic_quotes_runtime' => + array ( + 0 => 'bool', + 'new_setting' => 'bool', + ), + 'mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'string', + ), + 'mailparse_determine_best_xfer_encoding' => + array ( + 0 => 'string', + 'fp' => 'resource', + ), + 'mailparse_msg_create' => + array ( + 0 => 'resource', + ), + 'mailparse_msg_extract_part' => + array ( + 0 => 'void', + 'mimemail' => 'resource', + 'msgbody' => 'string', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_extract_part_file' => + array ( + 0 => 'string', + 'mimemail' => 'resource', + 'filename' => 'mixed', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_extract_whole_part_file' => + array ( + 0 => 'string', + 'mimemail' => 'resource', + 'filename' => 'string', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_free' => + array ( + 0 => 'bool', + 'mimemail' => 'resource', + ), + 'mailparse_msg_get_part' => + array ( + 0 => 'resource', + 'mimemail' => 'resource', + 'mimesection' => 'string', + ), + 'mailparse_msg_get_part_data' => + array ( + 0 => 'array', + 'mimemail' => 'resource', + ), + 'mailparse_msg_get_structure' => + array ( + 0 => 'array', + 'mimemail' => 'resource', + ), + 'mailparse_msg_parse' => + array ( + 0 => 'bool', + 'mimemail' => 'resource', + 'data' => 'string', + ), + 'mailparse_msg_parse_file' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'mailparse_rfc822_parse_addresses' => + array ( + 0 => 'array', + 'addresses' => 'string', + ), + 'mailparse_stream_encode' => + array ( + 0 => 'bool', + 'sourcefp' => 'resource', + 'destfp' => 'resource', + 'encoding' => 'string', + ), + 'mailparse_uudecode_all' => + array ( + 0 => 'array', + 'fp' => 'resource', + ), + 'mapObj::__construct' => + array ( + 0 => 'void', + 'map_file_name' => 'string', + 'new_map_path' => 'string', + ), + 'mapObj::appendOutputFormat' => + array ( + 0 => 'int', + 'outputFormat' => 'outputformatObj', + ), + 'mapObj::applyconfigoptions' => + array ( + 0 => 'int', + ), + 'mapObj::applySLD' => + array ( + 0 => 'int', + 'sldxml' => 'string', + ), + 'mapObj::applySLDURL' => + array ( + 0 => 'int', + 'sldurl' => 'string', + ), + 'mapObj::convertToString' => + array ( + 0 => 'string', + ), + 'mapObj::draw' => + array ( + 0 => 'imageObj|null', + ), + 'mapObj::drawLabelCache' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::drawLegend' => + array ( + 0 => 'imageObj', + ), + 'mapObj::drawQuery' => + array ( + 0 => 'imageObj|null', + ), + 'mapObj::drawReferenceMap' => + array ( + 0 => 'imageObj', + ), + 'mapObj::drawScaleBar' => + array ( + 0 => 'imageObj', + ), + 'mapObj::embedLegend' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::embedScalebar' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::free' => + array ( + 0 => 'void', + ), + 'mapObj::generateSLD' => + array ( + 0 => 'string', + ), + 'mapObj::getAllGroupNames' => + array ( + 0 => 'array', + ), + 'mapObj::getAllLayerNames' => + array ( + 0 => 'array', + ), + 'mapObj::getColorbyIndex' => + array ( + 0 => 'colorObj', + 'iCloIndex' => 'int', + ), + 'mapObj::getConfigOption' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'mapObj::getLabel' => + array ( + 0 => 'labelcacheMemberObj', + 'index' => 'int', + ), + 'mapObj::getLayer' => + array ( + 0 => 'layerObj', + 'index' => 'int', + ), + 'mapObj::getLayerByName' => + array ( + 0 => 'layerObj', + 'layer_name' => 'string', + ), + 'mapObj::getLayersDrawingOrder' => + array ( + 0 => 'array', + ), + 'mapObj::getLayersIndexByGroup' => + array ( + 0 => 'array', + 'groupname' => 'string', + ), + 'mapObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::getNumSymbols' => + array ( + 0 => 'int', + ), + 'mapObj::getOutputFormat' => + array ( + 0 => 'null|outputformatObj', + 'index' => 'int', + ), + 'mapObj::getProjection' => + array ( + 0 => 'string', + ), + 'mapObj::getSymbolByName' => + array ( + 0 => 'int', + 'symbol_name' => 'string', + ), + 'mapObj::getSymbolObjectById' => + array ( + 0 => 'symbolObj', + 'symbolid' => 'int', + ), + 'mapObj::loadMapContext' => + array ( + 0 => 'int', + 'filename' => 'string', + 'unique_layer_name' => 'bool', + ), + 'mapObj::loadOWSParameters' => + array ( + 0 => 'int', + 'request' => 'OwsrequestObj', + 'version' => 'string', + ), + 'mapObj::moveLayerDown' => + array ( + 0 => 'int', + 'layerindex' => 'int', + ), + 'mapObj::moveLayerUp' => + array ( + 0 => 'int', + 'layerindex' => 'int', + ), + 'mapObj::ms_newMapObjFromString' => + array ( + 0 => 'mapObj', + 'map_file_string' => 'string', + 'new_map_path' => 'string', + ), + 'mapObj::offsetExtent' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + ), + 'mapObj::owsDispatch' => + array ( + 0 => 'int', + 'request' => 'OwsrequestObj', + ), + 'mapObj::prepareImage' => + array ( + 0 => 'imageObj', + ), + 'mapObj::prepareQuery' => + array ( + 0 => 'void', + ), + 'mapObj::processLegendTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + ), + 'mapObj::processQueryTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + 'generateimages' => 'bool', + ), + 'mapObj::processTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + 'generateimages' => 'bool', + ), + 'mapObj::queryByFeatures' => + array ( + 0 => 'int', + 'slayer' => 'int', + ), + 'mapObj::queryByIndex' => + array ( + 0 => 'int', + 'layerindex' => 'mixed', + 'tileindex' => 'mixed', + 'shapeindex' => 'mixed', + 'addtoquery' => 'mixed', + ), + 'mapObj::queryByPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + 'mode' => 'int', + 'buffer' => 'float', + ), + 'mapObj::queryByRect' => + array ( + 0 => 'int', + 'rect' => 'rectObj', + ), + 'mapObj::queryByShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'mapObj::removeLayer' => + array ( + 0 => 'layerObj', + 'nIndex' => 'int', + ), + 'mapObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::removeOutputFormat' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::save' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'mapObj::saveMapContext' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'mapObj::saveQuery' => + array ( + 0 => 'int', + 'filename' => 'string', + 'results' => 'int', + ), + 'mapObj::scaleExtent' => + array ( + 0 => 'int', + 'zoomfactor' => 'float', + 'minscaledenom' => 'float', + 'maxscaledenom' => 'float', + ), + 'mapObj::selectOutputFormat' => + array ( + 0 => 'int', + 'type' => 'string', + ), + 'mapObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'mapObj::setCenter' => + array ( + 0 => 'int', + 'center' => 'pointObj', + ), + 'mapObj::setConfigOption' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'mapObj::setExtent' => + array ( + 0 => 'void', + 'minx' => 'float', + 'miny' => 'float', + 'maxx' => 'float', + 'maxy' => 'float', + ), + 'mapObj::setFontSet' => + array ( + 0 => 'int', + 'fileName' => 'string', + ), + 'mapObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'mapObj::setProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + 'bSetUnitsAndExtents' => 'bool', + ), + 'mapObj::setRotation' => + array ( + 0 => 'int', + 'rotation_angle' => 'float', + ), + 'mapObj::setSize' => + array ( + 0 => 'int', + 'width' => 'int', + 'height' => 'int', + ), + 'mapObj::setSymbolSet' => + array ( + 0 => 'int', + 'fileName' => 'string', + ), + 'mapObj::setWKTProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + 'bSetUnitsAndExtents' => 'bool', + ), + 'mapObj::zoomPoint' => + array ( + 0 => 'int', + 'nZoomFactor' => 'int', + 'oPixelPos' => 'pointObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + ), + 'mapObj::zoomRectangle' => + array ( + 0 => 'int', + 'oPixelExt' => 'rectObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + ), + 'mapObj::zoomScale' => + array ( + 0 => 'int', + 'nScaleDenom' => 'float', + 'oPixelPos' => 'pointObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + 'oMaxGeorefExt' => 'rectObj', + ), + 'max' => + array ( + 0 => 'mixed', + 'value' => 'non-empty-array', + ), + 'max\'1' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'values' => 'mixed', + '...args=' => 'mixed', + ), + 'mb_check_encoding' => + array ( + 0 => 'bool', + 'value' => 'array|string', + 'encoding=' => 'null|string', + ), + 'mb_chr' => + array ( + 0 => 'false|non-empty-string', + 'codepoint' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_convert_case' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_convert_encoding' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'to_encoding' => 'string', + 'from_encoding=' => 'array|null|string', + ), + 'mb_convert_encoding\'1' => + array ( + 0 => 'array', + 'string' => 'array', + 'to_encoding' => 'string', + 'from_encoding=' => 'array|null|string', + ), + 'mb_convert_kana' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode=' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_convert_variables' => + array ( + 0 => 'false|string', + 'to_encoding' => 'string', + 'from_encoding' => 'array|string', + '&rw_var' => 'array|object|string', + '&...rw_vars=' => 'array|object|string', + ), + 'mb_decode_mimeheader' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mb_decode_numericentity' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'null|string', + ), + 'mb_detect_encoding' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'encodings=' => 'array|null|string', + 'strict=' => 'bool', + ), + 'mb_detect_order' => + array ( + 0 => 'bool|list', + 'encoding=' => 'array|null|string', + ), + 'mb_encode_mimeheader' => + array ( + 0 => 'string', + 'string' => 'string', + 'charset=' => 'null|string', + 'transfer_encoding=' => 'null|string', + 'newline=' => 'string', + 'indent=' => 'int', + ), + 'mb_encode_numericentity' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'null|string', + 'hex=' => 'bool', + ), + 'mb_encoding_aliases' => + array ( + 0 => 'list', + 'encoding' => 'string', + ), + 'mb_ereg' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + 'mb_ereg_match' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + 'mb_ereg_replace' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + 'mb_ereg_replace_callback' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'callback' => 'callable', + 'string' => 'string', + 'options=' => 'null|string', + ), + 'mb_ereg_search' => + array ( + 0 => 'bool', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + 'mb_ereg_search_getpos' => + array ( + 0 => 'int', + ), + 'mb_ereg_search_getregs' => + array ( + 0 => 'array|false', + ), + 'mb_ereg_search_init' => + array ( + 0 => 'bool', + 'string' => 'string', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + 'mb_ereg_search_pos' => + array ( + 0 => 'array|false', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + 'mb_ereg_search_regs' => + array ( + 0 => 'array|false', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + 'mb_ereg_search_setpos' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'mb_eregi' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + 'mb_eregi_replace' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + 'mb_get_info' => + array ( + 0 => 'array|false|int|null|string', + 'type=' => 'string', + ), + 'mb_http_input' => + array ( + 0 => 'array|false|string', + 'type=' => 'null|string', + ), + 'mb_http_output' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + 'mb_internal_encoding' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + 'mb_language' => + array ( + 0 => 'bool|string', + 'language=' => 'null|string', + ), + 'mb_list_encodings' => + array ( + 0 => 'list', + ), + 'mb_ord' => + array ( + 0 => 'false|int', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_output_handler' => + array ( + 0 => 'string', + 'string' => 'string', + 'status' => 'int', + ), + 'mb_parse_str' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_result' => 'array', + ), + 'mb_preferred_mime_name' => + array ( + 0 => 'false|string', + 'encoding' => 'string', + ), + 'mb_regex_encoding' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + 'mb_regex_set_options' => + array ( + 0 => 'string', + 'options=' => 'null|string', + ), + 'mb_scrub' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_send_mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'null|string', + ), + 'mb_split' => + array ( + 0 => 'false|list', + 'pattern' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + 'mb_str_split' => + array ( + 0 => 'list', + 'string' => 'string', + 'length=' => 'int<1, max>', + 'encoding=' => 'null|string', + ), + 'mb_strcut' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + 'mb_strimwidth' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'width' => 'int', + 'trim_marker=' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + 'mb_strlen' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_strrchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + 'mb_strrichr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + 'mb_strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + 'mb_strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + 'mb_strtolower' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_strtoupper' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_strwidth' => + array ( + 0 => 'int', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + 'mb_substitute_character' => + array ( + 0 => 'bool|int|string', + 'substitute_character=' => 'int|null|string', + ), + 'mb_substr' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + 'mb_substr_count' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'null|string', + ), + 'mcrypt_cbc' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_cfb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_create_iv' => + array ( + 0 => 'false|string', + 'size' => 'int', + 'source=' => 'int', + ), + 'mcrypt_decrypt' => + array ( + 0 => 'string', + 'cipher' => 'string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'string', + 'iv=' => 'string', + ), + 'mcrypt_ecb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_enc_get_algorithms_name' => + array ( + 0 => 'string', + 'td' => 'resource', + ), + 'mcrypt_enc_get_block_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_iv_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_key_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_modes_name' => + array ( + 0 => 'string', + 'td' => 'resource', + ), + 'mcrypt_enc_get_supported_key_sizes' => + array ( + 0 => 'array', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_algorithm' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_algorithm_mode' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_mode' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_self_test' => + array ( + 0 => 'false|int', + 'td' => 'resource', + ), + 'mcrypt_encrypt' => + array ( + 0 => 'string', + 'cipher' => 'string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'string', + 'iv=' => 'string', + ), + 'mcrypt_generic' => + array ( + 0 => 'string', + 'td' => 'resource', + 'data' => 'string', + ), + 'mcrypt_generic_deinit' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_generic_end' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_generic_init' => + array ( + 0 => 'false|int', + 'td' => 'resource', + 'key' => 'string', + 'iv' => 'string', + ), + 'mcrypt_get_block_size' => + array ( + 0 => 'int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_get_cipher_name' => + array ( + 0 => 'false|string', + 'cipher' => 'int|string', + ), + 'mcrypt_get_iv_size' => + array ( + 0 => 'false|int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_get_key_size' => + array ( + 0 => 'int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_list_algorithms' => + array ( + 0 => 'array', + 'lib_dir=' => 'string', + ), + 'mcrypt_list_modes' => + array ( + 0 => 'array', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_close' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_module_get_algo_block_size' => + array ( + 0 => 'int', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_get_algo_key_size' => + array ( + 0 => 'int', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_get_supported_key_sizes' => + array ( + 0 => 'array', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_algorithm' => + array ( + 0 => 'bool', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_algorithm_mode' => + array ( + 0 => 'bool', + 'mode' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_mode' => + array ( + 0 => 'bool', + 'mode' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_open' => + array ( + 0 => 'false|resource', + 'cipher' => 'string', + 'cipher_directory' => 'string', + 'mode' => 'string', + 'mode_directory' => 'string', + ), + 'mcrypt_module_self_test' => + array ( + 0 => 'bool', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_ofb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'md5' => + array ( + 0 => 'non-falsy-string', + 'string' => 'string', + 'binary=' => 'bool', + ), + 'md5_file' => + array ( + 0 => 'false|non-falsy-string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'mdecrypt_generic' => + array ( + 0 => 'string', + 'td' => 'resource', + 'data' => 'string', + ), + 'Memcache::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + 'timeoutms=' => 'int', + ), + 'Memcache::append' => + array ( + 0 => 'mixed', + ), + 'Memcache::cas' => + array ( + 0 => 'mixed', + ), + 'Memcache::close' => + array ( + 0 => 'bool', + ), + 'Memcache::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'Memcache::decrement' => + array ( + 0 => 'int', + 'key' => 'string', + 'value=' => 'int', + ), + 'Memcache::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timeout=' => 'int', + ), + 'Memcache::findServer' => + array ( + 0 => 'mixed', + ), + 'Memcache::flush' => + array ( + 0 => 'bool', + ), + 'Memcache::get' => + array ( + 0 => 'array|false|string', + 'key' => 'string', + 'flags=' => 'array', + 'keys=' => 'array', + ), + 'Memcache::get\'1' => + array ( + 0 => 'array', + 'key' => 'array', + 'flags=' => 'array', + ), + 'Memcache::getExtendedStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'Memcache::getServerStatus' => + array ( + 0 => 'int', + 'host' => 'string', + 'port=' => 'int', + ), + 'Memcache::getStats' => + array ( + 0 => 'array', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'Memcache::getVersion' => + array ( + 0 => 'string', + ), + 'Memcache::increment' => + array ( + 0 => 'int', + 'key' => 'string', + 'value=' => 'int', + ), + 'Memcache::pconnect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'Memcache::prepend' => + array ( + 0 => 'string', + ), + 'Memcache::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::setCompressThreshold' => + array ( + 0 => 'bool', + 'threshold' => 'int', + 'min_savings=' => 'float', + ), + 'Memcache::setFailureCallback' => + array ( + 0 => 'mixed', + ), + 'Memcache::setServerParams' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + ), + 'memcache_add' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_add_server' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + 'timeoutms=' => 'int', + ), + 'memcache_append' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_cas' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_close' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + ), + 'memcache_connect' => + array ( + 0 => 'Memcache|false', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'memcache_debug' => + array ( + 0 => 'bool', + 'on_off' => 'bool', + ), + 'memcache_decrement' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'value=' => 'int', + ), + 'memcache_delete' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'timeout=' => 'int', + ), + 'memcache_flush' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + ), + 'memcache_get' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'flags=' => 'int', + ), + 'memcache_get\'1' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'key' => 'array', + 'flags=' => 'array', + ), + 'memcache_get_extended_stats' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'memcache_get_server_status' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + ), + 'memcache_get_stats' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'memcache_get_version' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + ), + 'memcache_increment' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'value=' => 'int', + ), + 'memcache_pconnect' => + array ( + 0 => 'Memcache|false', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'memcache_prepend' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + ), + 'memcache_replace' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_set' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_set_compress_threshold' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'threshold' => 'int', + 'min_savings=' => 'float', + ), + 'memcache_set_failure_callback' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_set_server_params' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + ), + 'Memcached::__construct' => + array ( + 0 => 'void', + 'persistent_id=' => 'null|string', + 'callback=' => 'callable|null', + 'connection_str=' => 'null|string', + ), + 'Memcached::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::addByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'weight=' => 'int', + ), + 'Memcached::addServers' => + array ( + 0 => 'bool', + 'servers' => 'array', + ), + 'Memcached::append' => + array ( + 0 => 'bool|null', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::appendByKey' => + array ( + 0 => 'bool|null', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::cas' => + array ( + 0 => 'bool', + 'cas_token' => 'float|int|string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::casByKey' => + array ( + 0 => 'bool', + 'cas_token' => 'float|int|string', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::decrement' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::decrementByKey' => + array ( + 0 => 'false|int', + 'server_key' => 'string', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'time=' => 'int', + ), + 'Memcached::deleteByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'time=' => 'int', + ), + 'Memcached::deleteMulti' => + array ( + 0 => 'array', + 'keys' => 'array', + 'time=' => 'int', + ), + 'Memcached::deleteMultiByKey' => + array ( + 0 => 'array', + 'server_key' => 'string', + 'keys' => 'array', + 'time=' => 'int', + ), + 'Memcached::fetch' => + array ( + 0 => 'array|false', + ), + 'Memcached::fetchAll' => + array ( + 0 => 'array|false', + ), + 'Memcached::flush' => + array ( + 0 => 'bool', + 'delay=' => 'int', + ), + 'Memcached::flushBuffers' => + array ( + 0 => 'bool', + ), + 'Memcached::get' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + 'cache_cb=' => 'callable|null', + 'get_flags=' => 'int', + ), + 'Memcached::getAllKeys' => + array ( + 0 => 'array|false', + ), + 'Memcached::getByKey' => + array ( + 0 => 'false|mixed', + 'server_key' => 'string', + 'key' => 'string', + 'cache_cb=' => 'callable|null', + 'get_flags=' => 'int', + ), + 'Memcached::getDelayed' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'with_cas=' => 'bool', + 'value_cb=' => 'callable|null', + ), + 'Memcached::getDelayedByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'keys' => 'array', + 'with_cas=' => 'bool', + 'value_cb=' => 'callable|null', + ), + 'Memcached::getLastDisconnectedServer' => + array ( + 0 => 'array|false', + ), + 'Memcached::getLastErrorCode' => + array ( + 0 => 'int', + ), + 'Memcached::getLastErrorErrno' => + array ( + 0 => 'int', + ), + 'Memcached::getLastErrorMessage' => + array ( + 0 => 'string', + ), + 'Memcached::getMulti' => + array ( + 0 => 'array|false', + 'keys' => 'array', + 'get_flags=' => 'int', + ), + 'Memcached::getMultiByKey' => + array ( + 0 => 'array|false', + 'server_key' => 'string', + 'keys' => 'array', + 'get_flags=' => 'int', + ), + 'Memcached::getOption' => + array ( + 0 => 'false|mixed', + 'option' => 'int', + ), + 'Memcached::getResultCode' => + array ( + 0 => 'int', + ), + 'Memcached::getResultMessage' => + array ( + 0 => 'string', + ), + 'Memcached::getServerByKey' => + array ( + 0 => 'array', + 'server_key' => 'string', + ), + 'Memcached::getServerList' => + array ( + 0 => 'array', + ), + 'Memcached::getStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'null|string', + ), + 'Memcached::getVersion' => + array ( + 0 => 'array', + ), + 'Memcached::increment' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::incrementByKey' => + array ( + 0 => 'false|int', + 'server_key' => 'string', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::isPersistent' => + array ( + 0 => 'bool', + ), + 'Memcached::isPristine' => + array ( + 0 => 'bool', + ), + 'Memcached::prepend' => + array ( + 0 => 'bool|null', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::prependByKey' => + array ( + 0 => 'bool|null', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::quit' => + array ( + 0 => 'bool', + ), + 'Memcached::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::replaceByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::resetServerList' => + array ( + 0 => 'bool', + ), + 'Memcached::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::setBucket' => + array ( + 0 => 'bool', + 'host_map' => 'array', + 'forward_map' => 'array|null', + 'replicas' => 'int', + ), + 'Memcached::setByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::setEncodingKey' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'Memcached::setMulti' => + array ( + 0 => 'bool', + 'items' => 'array', + 'expiration=' => 'int', + ), + 'Memcached::setMultiByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'items' => 'array', + 'expiration=' => 'int', + ), + 'Memcached::setOption' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'mixed', + ), + 'Memcached::setOptions' => + array ( + 0 => 'bool', + 'options' => 'array', + ), + 'Memcached::setSaslAuthData' => + array ( + 0 => 'bool', + 'username' => 'string', + 'password' => 'string', + ), + 'Memcached::touch' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiration=' => 'int', + ), + 'Memcached::touchByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'expiration=' => 'int', + ), + 'MemcachePool::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable|null', + 'timeoutms=' => 'int', + ), + 'MemcachePool::append' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::cas' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::close' => + array ( + 0 => 'bool', + ), + 'MemcachePool::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'timeout=' => 'int', + ), + 'MemcachePool::decrement' => + array ( + 0 => 'false|int', + 'key' => 'mixed', + 'value=' => 'int|mixed', + ), + 'MemcachePool::delete' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'timeout=' => 'int|mixed', + ), + 'MemcachePool::findServer' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::flush' => + array ( + 0 => 'bool', + ), + 'MemcachePool::get' => + array ( + 0 => 'array|false|string', + 'key' => 'array|string', + '&flags=' => 'array|int', + ), + 'MemcachePool::getExtendedStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'MemcachePool::getServerStatus' => + array ( + 0 => 'int', + 'host' => 'string', + 'port=' => 'int', + ), + 'MemcachePool::getStats' => + array ( + 0 => 'array|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'MemcachePool::getVersion' => + array ( + 0 => 'false|string', + ), + 'MemcachePool::increment' => + array ( + 0 => 'false|int', + 'key' => 'mixed', + 'value=' => 'int|mixed', + ), + 'MemcachePool::prepend' => + array ( + 0 => 'string', + ), + 'MemcachePool::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::setCompressThreshold' => + array ( + 0 => 'bool', + 'thresold' => 'int', + 'min_saving=' => 'float', + ), + 'MemcachePool::setFailureCallback' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::setServerParams' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable|null', + ), + 'memory_get_peak_usage' => + array ( + 0 => 'int', + 'real_usage=' => 'bool', + ), + 'memory_get_usage' => + array ( + 0 => 'int', + 'real_usage=' => 'bool', + ), + 'memory_reset_peak_usage' => + array ( + 0 => 'void', + ), + 'MessageFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'MessageFormatter::create' => + array ( + 0 => 'MessageFormatter', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'MessageFormatter::format' => + array ( + 0 => 'false|string', + 'values' => 'array', + ), + 'MessageFormatter::formatMessage' => + array ( + 0 => 'false|string', + 'locale' => 'string', + 'pattern' => 'string', + 'values' => 'array', + ), + 'MessageFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'MessageFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'MessageFormatter::getLocale' => + array ( + 0 => 'string', + ), + 'MessageFormatter::getPattern' => + array ( + 0 => 'string', + ), + 'MessageFormatter::parse' => + array ( + 0 => 'array|false', + 'string' => 'string', + ), + 'MessageFormatter::parseMessage' => + array ( + 0 => 'array|false', + 'locale' => 'string', + 'pattern' => 'string', + 'message' => 'string', + ), + 'MessageFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'metaphone' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_phonemes=' => 'int', + ), + 'method_exists' => + array ( + 0 => 'bool', + 'object_or_class' => 'class-string|object', + 'method' => 'string', + ), + 'mhash' => + array ( + 0 => 'string', + 'algo' => 'int', + 'data' => 'string', + 'key=' => 'null|string', + ), + 'mhash_count' => + array ( + 0 => 'int', + ), + 'mhash_get_block_size' => + array ( + 0 => 'false|int', + 'algo' => 'int', + ), + 'mhash_get_hash_name' => + array ( + 0 => 'false|string', + 'algo' => 'int', + ), + 'mhash_keygen_s2k' => + array ( + 0 => 'false|string', + 'algo' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'length' => 'int', + ), + 'microtime' => + array ( + 0 => 'string', + 'as_float=' => 'false', + ), + 'microtime\'1' => + array ( + 0 => 'float', + 'as_float=' => 'true', + ), + 'mime_content_type' => + array ( + 0 => 'false|string', + 'filename' => 'resource|string', + ), + 'min' => + array ( + 0 => 'mixed', + 'value' => 'non-empty-array', + ), + 'min\'1' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'values' => 'mixed', + '...args=' => 'mixed', + ), + 'ming_keypress' => + array ( + 0 => 'int', + 'char' => 'string', + ), + 'ming_setcubicthreshold' => + array ( + 0 => 'void', + 'threshold' => 'int', + ), + 'ming_setscale' => + array ( + 0 => 'void', + 'scale' => 'float', + ), + 'ming_setswfcompression' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'ming_useconstants' => + array ( + 0 => 'void', + 'use' => 'int', + ), + 'ming_useswfversion' => + array ( + 0 => 'void', + 'version' => 'int', + ), + 'mkdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'permissions=' => 'int', + 'recursive=' => 'bool', + 'context=' => 'null|resource', + ), + 'mktime' => + array ( + 0 => 'false|int', + 'hour' => 'int', + 'minute=' => 'int|null', + 'second=' => 'int|null', + 'month=' => 'int|null', + 'day=' => 'int|null', + 'year=' => 'int|null', + ), + 'money_format' => + array ( + 0 => 'string', + 'format' => 'string', + 'value' => 'float', + ), + 'Mongo::__construct' => + array ( + 0 => 'void', + 'server=' => 'string', + 'options=' => 'array', + 'driver_options=' => 'array', + ), + 'Mongo::__get' => + array ( + 0 => 'MongoDB', + 'dbname' => 'string', + ), + 'Mongo::__toString' => + array ( + 0 => 'string', + ), + 'Mongo::close' => + array ( + 0 => 'bool', + ), + 'Mongo::connect' => + array ( + 0 => 'bool', + ), + 'Mongo::connectUtil' => + array ( + 0 => 'bool', + ), + 'Mongo::dropDB' => + array ( + 0 => 'array', + 'db' => 'mixed', + ), + 'Mongo::forceError' => + array ( + 0 => 'bool', + ), + 'Mongo::getConnections' => + array ( + 0 => 'array', + ), + 'Mongo::getHosts' => + array ( + 0 => 'array', + ), + 'Mongo::getPoolSize' => + array ( + 0 => 'int', + ), + 'Mongo::getReadPreference' => + array ( + 0 => 'array', + ), + 'Mongo::getSlave' => + array ( + 0 => 'null|string', + ), + 'Mongo::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'Mongo::getWriteConcern' => + array ( + 0 => 'array', + ), + 'Mongo::killCursor' => + array ( + 0 => 'mixed', + 'server_hash' => 'string', + 'id' => 'MongoInt64|int', + ), + 'Mongo::lastError' => + array ( + 0 => 'array|null', + ), + 'Mongo::listDBs' => + array ( + 0 => 'array', + ), + 'Mongo::pairConnect' => + array ( + 0 => 'bool', + ), + 'Mongo::pairPersistConnect' => + array ( + 0 => 'bool', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Mongo::persistConnect' => + array ( + 0 => 'bool', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Mongo::poolDebug' => + array ( + 0 => 'array', + ), + 'Mongo::prevError' => + array ( + 0 => 'array', + ), + 'Mongo::resetError' => + array ( + 0 => 'array', + ), + 'Mongo::selectCollection' => + array ( + 0 => 'MongoCollection', + 'db' => 'string', + 'collection' => 'string', + ), + 'Mongo::selectDB' => + array ( + 0 => 'MongoDB', + 'name' => 'string', + ), + 'Mongo::setPoolSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'Mongo::setReadPreference' => + array ( + 0 => 'bool', + 'readPreference' => 'string', + 'tags=' => 'array', + ), + 'Mongo::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'Mongo::switchSlave' => + array ( + 0 => 'string', + ), + 'MongoBinData::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'type=' => 'int', + ), + 'MongoBinData::__toString' => + array ( + 0 => 'string', + ), + 'MongoClient::__construct' => + array ( + 0 => 'void', + 'server=' => 'string', + 'options=' => 'array', + 'driver_options=' => 'array', + ), + 'MongoClient::__get' => + array ( + 0 => 'MongoDB', + 'dbname' => 'string', + ), + 'MongoClient::__toString' => + array ( + 0 => 'string', + ), + 'MongoClient::close' => + array ( + 0 => 'bool', + 'connection=' => 'bool|string', + ), + 'MongoClient::connect' => + array ( + 0 => 'bool', + ), + 'MongoClient::dropDB' => + array ( + 0 => 'array', + 'db' => 'mixed', + ), + 'MongoClient::getConnections' => + array ( + 0 => 'array', + ), + 'MongoClient::getHosts' => + array ( + 0 => 'array', + ), + 'MongoClient::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoClient::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoClient::killCursor' => + array ( + 0 => 'bool', + 'server_hash' => 'string', + 'id' => 'MongoInt64|int', + ), + 'MongoClient::listDBs' => + array ( + 0 => 'array', + ), + 'MongoClient::selectCollection' => + array ( + 0 => 'MongoCollection', + 'db' => 'string', + 'collection' => 'string', + ), + 'MongoClient::selectDB' => + array ( + 0 => 'MongoDB', + 'name' => 'string', + ), + 'MongoClient::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoClient::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoClient::switchSlave' => + array ( + 0 => 'string', + ), + 'MongoCode::__construct' => + array ( + 0 => 'void', + 'code' => 'string', + 'scope=' => 'array', + ), + 'MongoCode::__toString' => + array ( + 0 => 'string', + ), + 'MongoCollection::__construct' => + array ( + 0 => 'void', + 'db' => 'MongoDB', + 'name' => 'string', + ), + 'MongoCollection::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoCollection::__toString' => + array ( + 0 => 'string', + ), + 'MongoCollection::aggregate' => + array ( + 0 => 'array', + 'op' => 'array', + 'op=' => 'array', + '...args=' => 'array', + ), + 'MongoCollection::aggregate\'1' => + array ( + 0 => 'array', + 'pipeline' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::aggregateCursor' => + array ( + 0 => 'MongoCommandCursor', + 'command' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::batchInsert' => + array ( + 0 => 'array|bool', + 'a' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::count' => + array ( + 0 => 'int', + 'query=' => 'array', + 'limit=' => 'int', + 'skip=' => 'int', + ), + 'MongoCollection::createDBRef' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'MongoCollection::createIndex' => + array ( + 0 => 'array', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::deleteIndex' => + array ( + 0 => 'array', + 'keys' => 'array|string', + ), + 'MongoCollection::deleteIndexes' => + array ( + 0 => 'array', + ), + 'MongoCollection::distinct' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'query=' => 'array', + ), + 'MongoCollection::drop' => + array ( + 0 => 'array', + ), + 'MongoCollection::ensureIndex' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::find' => + array ( + 0 => 'MongoCursor', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCollection::findAndModify' => + array ( + 0 => 'array', + 'query' => 'array', + 'update=' => 'array', + 'fields=' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::findOne' => + array ( + 0 => 'array|null', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCollection::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoCollection::getIndexInfo' => + array ( + 0 => 'array', + ), + 'MongoCollection::getName' => + array ( + 0 => 'string', + ), + 'MongoCollection::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCollection::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoCollection::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoCollection::group' => + array ( + 0 => 'array', + 'keys' => 'mixed', + 'initial' => 'array', + 'reduce' => 'MongoCode', + 'options=' => 'array', + ), + 'MongoCollection::insert' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoCollection::parallelCollectionScan' => + array ( + 0 => 'array', + 'num_cursors' => 'int', + ), + 'MongoCollection::remove' => + array ( + 0 => 'array|bool', + 'criteria=' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::save' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoCollection::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCollection::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoCollection::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoCollection::toIndexString' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'MongoCollection::update' => + array ( + 0 => 'bool', + 'criteria' => 'array', + 'newobj' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::validate' => + array ( + 0 => 'array', + 'scan_data=' => 'bool', + ), + 'MongoCommandCursor::__construct' => + array ( + 0 => 'void', + 'connection' => 'MongoClient', + 'ns' => 'string', + 'command' => 'array', + ), + 'MongoCommandCursor::batchSize' => + array ( + 0 => 'MongoCommandCursor', + 'batchSize' => 'int', + ), + 'MongoCommandCursor::createFromDocument' => + array ( + 0 => 'MongoCommandCursor', + 'connection' => 'MongoClient', + 'hash' => 'string', + 'document' => 'array', + ), + 'MongoCommandCursor::current' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoCommandCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::info' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::key' => + array ( + 0 => 'int', + ), + 'MongoCommandCursor::next' => + array ( + 0 => 'void', + ), + 'MongoCommandCursor::rewind' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::setReadPreference' => + array ( + 0 => 'MongoCommandCursor', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCommandCursor::timeout' => + array ( + 0 => 'MongoCommandCursor', + 'ms' => 'int', + ), + 'MongoCommandCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoCursor::__construct' => + array ( + 0 => 'void', + 'connection' => 'MongoClient', + 'ns' => 'string', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCursor::addOption' => + array ( + 0 => 'MongoCursor', + 'key' => 'string', + 'value' => 'mixed', + ), + 'MongoCursor::awaitData' => + array ( + 0 => 'MongoCursor', + 'wait=' => 'bool', + ), + 'MongoCursor::batchSize' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::count' => + array ( + 0 => 'int', + 'foundonly=' => 'bool', + ), + 'MongoCursor::current' => + array ( + 0 => 'array', + ), + 'MongoCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoCursor::doQuery' => + array ( + 0 => 'void', + ), + 'MongoCursor::explain' => + array ( + 0 => 'array', + ), + 'MongoCursor::fields' => + array ( + 0 => 'MongoCursor', + 'f' => 'array', + ), + 'MongoCursor::getNext' => + array ( + 0 => 'array', + ), + 'MongoCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCursor::hasNext' => + array ( + 0 => 'bool', + ), + 'MongoCursor::hint' => + array ( + 0 => 'MongoCursor', + 'key_pattern' => 'array|object|string', + ), + 'MongoCursor::immortal' => + array ( + 0 => 'MongoCursor', + 'liveforever=' => 'bool', + ), + 'MongoCursor::info' => + array ( + 0 => 'array', + ), + 'MongoCursor::key' => + array ( + 0 => 'string', + ), + 'MongoCursor::limit' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::maxTimeMS' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoCursor::next' => + array ( + 0 => 'array', + ), + 'MongoCursor::partial' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoCursor::reset' => + array ( + 0 => 'void', + ), + 'MongoCursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoCursor::setFlag' => + array ( + 0 => 'MongoCursor', + 'flag' => 'int', + 'set=' => 'bool', + ), + 'MongoCursor::setReadPreference' => + array ( + 0 => 'MongoCursor', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCursor::skip' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::slaveOkay' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoCursor::snapshot' => + array ( + 0 => 'MongoCursor', + ), + 'MongoCursor::sort' => + array ( + 0 => 'MongoCursor', + 'fields' => 'array', + ), + 'MongoCursor::tailable' => + array ( + 0 => 'MongoCursor', + 'tail=' => 'bool', + ), + 'MongoCursor::timeout' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoCursorException::__clone' => + array ( + 0 => 'void', + ), + 'MongoCursorException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoCursorException::__toString' => + array ( + 0 => 'string', + ), + 'MongoCursorException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoCursorException::getCode' => + array ( + 0 => 'int', + ), + 'MongoCursorException::getFile' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getHost' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getLine' => + array ( + 0 => 'int', + ), + 'MongoCursorException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoCursorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoCursorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoCursorInterface::__construct' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::batchSize' => + array ( + 0 => 'MongoCursorInterface', + 'batchSize' => 'int', + ), + 'MongoCursorInterface::current' => + array ( + 0 => 'mixed', + ), + 'MongoCursorInterface::dead' => + array ( + 0 => 'bool', + ), + 'MongoCursorInterface::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCursorInterface::info' => + array ( + 0 => 'array', + ), + 'MongoCursorInterface::key' => + array ( + 0 => 'int|string', + ), + 'MongoCursorInterface::next' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::rewind' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::setReadPreference' => + array ( + 0 => 'MongoCursorInterface', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCursorInterface::timeout' => + array ( + 0 => 'MongoCursorInterface', + 'ms' => 'int', + ), + 'MongoCursorInterface::valid' => + array ( + 0 => 'bool', + ), + 'MongoDate::__construct' => + array ( + 0 => 'void', + 'second=' => 'int', + 'usecond=' => 'int', + ), + 'MongoDate::__toString' => + array ( + 0 => 'string', + ), + 'MongoDate::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDB::__construct' => + array ( + 0 => 'void', + 'conn' => 'MongoClient', + 'name' => 'string', + ), + 'MongoDB::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoDB::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB::authenticate' => + array ( + 0 => 'array', + 'username' => 'string', + 'password' => 'string', + ), + 'MongoDB::command' => + array ( + 0 => 'array', + 'command' => 'array', + ), + 'MongoDB::createCollection' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + 'capped=' => 'bool', + 'size=' => 'int', + 'max=' => 'int', + ), + 'MongoDB::createDBRef' => + array ( + 0 => 'array', + 'collection' => 'string', + 'a' => 'mixed', + ), + 'MongoDB::drop' => + array ( + 0 => 'array', + ), + 'MongoDB::dropCollection' => + array ( + 0 => 'array', + 'coll' => 'MongoCollection|string', + ), + 'MongoDB::execute' => + array ( + 0 => 'array', + 'code' => 'MongoCode|string', + 'args=' => 'array', + ), + 'MongoDB::forceError' => + array ( + 0 => 'bool', + ), + 'MongoDB::getCollectionInfo' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'MongoDB::getCollectionNames' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'MongoDB::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoDB::getGridFS' => + array ( + 0 => 'MongoGridFS', + 'prefix=' => 'string', + ), + 'MongoDB::getProfilingLevel' => + array ( + 0 => 'int', + ), + 'MongoDB::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoDB::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoDB::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoDB::lastError' => + array ( + 0 => 'array', + ), + 'MongoDB::listCollections' => + array ( + 0 => 'array', + ), + 'MongoDB::prevError' => + array ( + 0 => 'array', + ), + 'MongoDB::repair' => + array ( + 0 => 'array', + 'preserve_cloned_files=' => 'bool', + 'backup_original_files=' => 'bool', + ), + 'MongoDB::resetError' => + array ( + 0 => 'array', + ), + 'MongoDB::selectCollection' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoDB::setProfilingLevel' => + array ( + 0 => 'int', + 'level' => 'int', + ), + 'MongoDB::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoDB::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoDB::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoDB\\BSON\\fromJSON' => + array ( + 0 => 'string', + 'json' => 'string', + ), + 'MongoDB\\BSON\\fromPHP' => + array ( + 0 => 'string', + 'value' => 'array|object', + ), + 'MongoDB\\BSON\\toCanonicalExtendedJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\toJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\toPHP' => + array ( + 0 => 'array|object', + 'bson' => 'string', + 'typemap=' => 'array|null', + ), + 'MongoDB\\BSON\\toRelaxedExtendedJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\addSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Monitoring\\removeSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\BSON\\Binary::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'type=' => 'int', + ), + 'MongoDB\\BSON\\Binary::getData' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Binary::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Binary::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\BinaryInterface::getData' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\BinaryInterface::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\BinaryInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\DBPointer::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Decimal128::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoDB\\BSON\\Decimal128::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Decimal128::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Decimal128::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Decimal128::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Decimal128Interface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::fromBSON' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\Document::fromJSON' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'json' => 'string', + ), + 'MongoDB\\BSON\\Document::fromPHP' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'value' => 'array|object', + ), + 'MongoDB\\BSON\\Document::get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'MongoDB\\BSON\\Document::getIterator' => + array ( + 0 => 'MongoDB\\BSON\\Iterator', + ), + 'MongoDB\\BSON\\Document::has' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'MongoDB\\BSON\\Document::toPHP' => + array ( + 0 => 'array|object', + 'typeMap=' => 'array|null', + ), + 'MongoDB\\BSON\\Document::toCanonicalExtendedJSON' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::toRelaxedExtendedJSON' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'mixed', + 'value' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Int64::__construct' => + array ( + 0 => 'void', + 'value' => 'int|string', + ), + 'MongoDB\\BSON\\Int64::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Int64::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Int64::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Int64::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Iterator::current' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Iterator::key' => + array ( + 0 => 'int|string', + ), + 'MongoDB\\BSON\\Iterator::next' => + array ( + 0 => 'void', + ), + 'MongoDB\\BSON\\Iterator::rewind' => + array ( + 0 => 'void', + ), + 'MongoDB\\BSON\\Iterator::valid' => + array ( + 0 => 'bool', + ), + 'MongoDB\\BSON\\Javascript::__construct' => + array ( + 0 => 'void', + 'code' => 'string', + 'scope=' => 'array|null|object', + ), + 'MongoDB\\BSON\\Javascript::getCode' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::getScope' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\BSON\\Javascript::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Javascript::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\JavascriptInterface::getCode' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\JavascriptInterface::getScope' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\BSON\\JavascriptInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MaxKey::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MaxKey::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\MaxKey::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\MinKey::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MinKey::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\MinKey::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\ObjectId::__construct' => + array ( + 0 => 'void', + 'id=' => 'null|string', + ), + 'MongoDB\\BSON\\ObjectId::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\ObjectId::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\ObjectId::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\ObjectId::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\ObjectId::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\ObjectIdInterface::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\ObjectIdInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::fromPHP' => + array ( + 0 => 'MongoDB\\BSON\\PackedArray', + 'value' => 'array', + ), + 'MongoDB\\BSON\\PackedArray::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'MongoDB\\BSON\\PackedArray::getIterator' => + array ( + 0 => 'MongoDB\\BSON\\Iterator', + ), + 'MongoDB\\BSON\\PackedArray::has' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'MongoDB\\BSON\\PackedArray::toPHP' => + array ( + 0 => 'array|object', + 'typeMap=' => 'array|null', + ), + 'MongoDB\\BSON\\PackedArray::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'mixed', + 'value' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Persistable::bsonSerialize' => + array ( + 0 => 'MongoDB\\BSON\\Document|array|stdClass', + ), + 'MongoDB\\BSON\\Regex::__construct' => + array ( + 0 => 'void', + 'pattern' => 'string', + 'flags=' => 'string', + ), + 'MongoDB\\BSON\\Regex::getPattern' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::getFlags' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Regex::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\RegexInterface::getPattern' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\RegexInterface::getFlags' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\RegexInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Serializable::bsonSerialize' => + array ( + 0 => 'MongoDB\\BSON\\Document|MongoDB\\BSON\\PackedArray|array|stdClass', + ), + 'MongoDB\\BSON\\Symbol::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Symbol::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Symbol::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Symbol::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Timestamp::__construct' => + array ( + 0 => 'void', + 'increment' => 'int|string', + 'timestamp' => 'int|string', + ), + 'MongoDB\\BSON\\Timestamp::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Timestamp::getIncrement' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Timestamp::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Timestamp::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Timestamp::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Timestamp::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\TimestampInterface::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\TimestampInterface::getIncrement' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\TimestampInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::__construct' => + array ( + 0 => 'void', + 'milliseconds=' => 'DateTimeInterface|float|int|null|string', + ), + 'MongoDB\\BSON\\UTCDateTime::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDB\\BSON\\UTCDateTime::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\UTCDateTimeInterface::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDB\\BSON\\UTCDateTimeInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Undefined::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Unserializable::bsonUnserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + 'MongoDB\\Driver\\BulkWrite::__construct' => + array ( + 0 => 'void', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\BulkWrite::count' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\BulkWrite::delete' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'deleteOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\BulkWrite::insert' => + array ( + 0 => 'mixed', + 'document' => 'array|object', + ), + 'MongoDB\\Driver\\BulkWrite::update' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'newObj' => 'array|object', + 'updateOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::__construct' => + array ( + 0 => 'void', + 'options' => 'array', + ), + 'MongoDB\\Driver\\ClientEncryption::addKeyAltName' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::createDataKey' => + array ( + 0 => 'MongoDB\\BSON\\Binary', + 'kmsProvider' => 'string', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::decrypt' => + array ( + 0 => 'mixed', + 'value' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::deleteKey' => + array ( + 0 => 'object', + 'keyId' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::encrypt' => + array ( + 0 => 'MongoDB\\BSON\\Binary', + 'value' => 'mixed', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::encryptExpression' => + array ( + 0 => 'object', + 'expr' => 'array|object', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::getKey' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::getKeyByAltName' => + array ( + 0 => 'null|object', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::getKeys' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + ), + 'MongoDB\\Driver\\ClientEncryption::removeKeyAltName' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::rewrapManyDataKey' => + array ( + 0 => 'object', + 'filter' => 'array|object', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Command::__construct' => + array ( + 0 => 'void', + 'document' => 'array|object', + 'commandOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\Cursor::current' => + array ( + 0 => 'array|null|object', + ), + 'MongoDB\\Driver\\Cursor::getId' => + array ( + 0 => 'MongoDB\\Driver\\CursorId', + ), + 'MongoDB\\Driver\\Cursor::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Cursor::isDead' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Cursor::key' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Cursor::next' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Cursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Cursor::setTypeMap' => + array ( + 0 => 'void', + 'typemap' => 'array', + ), + 'MongoDB\\Driver\\Cursor::toArray' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Cursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\CursorId::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\CursorId::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\CursorId::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\CursorInterface::getId' => + array ( + 0 => 'MongoDB\\Driver\\CursorId', + ), + 'MongoDB\\Driver\\CursorInterface::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\CursorInterface::isDead' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\CursorInterface::setTypeMap' => + array ( + 0 => 'void', + 'typemap' => 'array', + ), + 'MongoDB\\Driver\\CursorInterface::toArray' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Exception\\AuthenticationException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\BulkWriteException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\CommandException::getResultDocument' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Exception\\CommandException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ConnectionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ConnectionTimeoutException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\EncryptionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\Exception::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ExecutionTimeoutException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\InvalidArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\LogicException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\RuntimeException::hasErrorLabel' => + array ( + 0 => 'bool', + 'errorLabel' => 'string', + ), + 'MongoDB\\Driver\\Exception\\RuntimeException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\SSLConnectionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ServerException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\UnexpectedValueException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\WriteException::getWriteResult' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + ), + 'MongoDB\\Driver\\Exception\\WriteException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Manager::__construct' => + array ( + 0 => 'void', + 'uri=' => 'null|string', + 'uriOptions=' => 'array|null', + 'driverOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::addSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Manager::createClientEncryption' => + array ( + 0 => 'MongoDB\\Driver\\ClientEncryption', + 'options' => 'array', + ), + 'MongoDB\\Driver\\Manager::executeBulkWrite' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + 'namespace' => 'string', + 'bulk' => 'MongoDB\\Driver\\BulkWrite', + 'options=' => 'MongoDB\\Driver\\WriteConcern|array|null', + ), + 'MongoDB\\Driver\\Manager::executeCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Manager::executeQuery' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'namespace' => 'string', + 'query' => 'MongoDB\\Driver\\Query', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Manager::executeReadCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::executeReadWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::executeWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::getEncryptedFieldsMap' => + array ( + 0 => 'array|null|object', + ), + 'MongoDB\\Driver\\Manager::getReadConcern' => + array ( + 0 => 'MongoDB\\Driver\\ReadConcern', + ), + 'MongoDB\\Driver\\Manager::getReadPreference' => + array ( + 0 => 'MongoDB\\Driver\\ReadPreference', + ), + 'MongoDB\\Driver\\Manager::getServers' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Manager::getWriteConcern' => + array ( + 0 => 'MongoDB\\Driver\\WriteConcern', + ), + 'MongoDB\\Driver\\Manager::removeSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Manager::selectServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', + ), + 'MongoDB\\Driver\\Manager::startSession' => + array ( + 0 => 'MongoDB\\Driver\\Session', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getError' => + array ( + 0 => 'Exception', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommand' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getDatabaseName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandStarted' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandSucceeded' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandFailed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\LogSubscriber::log' => + array ( + 0 => 'void', + 'level' => 'int', + 'domain' => 'string', + 'message' => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverChanged' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverClosed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverOpening' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatFailed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatStarted' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatSucceeded' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyChanged' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyClosed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyOpening' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getNewDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPreviousDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getError' => + array ( + 0 => 'Exception', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getNewDescription' => + array ( + 0 => 'MongoDB\\Driver\\TopologyDescription', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getPreviousDescription' => + array ( + 0 => 'MongoDB\\Driver\\TopologyDescription', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Query::__construct' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'queryOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\ReadConcern::__construct' => + array ( + 0 => 'void', + 'level=' => 'null|string', + ), + 'MongoDB\\Driver\\ReadConcern::getLevel' => + array ( + 0 => 'null|string', + ), + 'MongoDB\\Driver\\ReadConcern::isDefault' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\ReadConcern::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ReadConcern::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadConcern::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::__construct' => + array ( + 0 => 'void', + 'mode' => 'int|string', + 'tagSets=' => 'array|null', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ReadPreference::getHedge' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\ReadPreference::getMaxStalenessSeconds' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ReadPreference::getMode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ReadPreference::getModeString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::getTagSets' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\ReadPreference::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ReadPreference::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\Server::executeBulkWrite' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + 'namespace' => 'string', + 'bulkWrite' => 'MongoDB\\Driver\\BulkWrite', + 'options=' => 'MongoDB\\Driver\\WriteConcern|array|null', + ), + 'MongoDB\\Driver\\Server::executeCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Server::executeQuery' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'namespace' => 'string', + 'query' => 'MongoDB\\Driver\\Query', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Server::executeReadCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::executeReadWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::executeWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Server::getInfo' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Server::getLatency' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Server::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Server::getServerDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Server::getTags' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Server::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Server::isArbiter' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isHidden' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isPassive' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isPrimary' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isSecondary' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\ServerApi::__construct' => + array ( + 0 => 'void', + 'version' => 'string', + 'strict=' => 'bool|null', + 'deprecationErrors=' => 'bool|null', + ), + 'MongoDB\\Driver\\ServerApi::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ServerApi::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ServerApi::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\ServerDescription::getHelloResponse' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\ServerDescription::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ServerDescription::getLastUpdateTime' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ServerDescription::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ServerDescription::getRoundTripTime' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\ServerDescription::getType' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Session::abortTransaction' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::advanceClusterTime' => + array ( + 0 => 'void', + 'clusterTime' => 'array|object', + ), + 'MongoDB\\Driver\\Session::advanceOperationTime' => + array ( + 0 => 'void', + 'operationTime' => 'MongoDB\\BSON\\TimestampInterface', + ), + 'MongoDB\\Driver\\Session::commitTransaction' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::endSession' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::getClusterTime' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\Session::getLogicalSessionId' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Session::getOperationTime' => + array ( + 0 => 'MongoDB\\BSON\\Timestamp|null', + ), + 'MongoDB\\Driver\\Session::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server|null', + ), + 'MongoDB\\Driver\\Session::getTransactionOptions' => + array ( + 0 => 'array|null', + ), + 'MongoDB\\Driver\\Session::getTransactionState' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Session::isDirty' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Session::isInTransaction' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Session::startTransaction' => + array ( + 0 => 'void', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\TopologyDescription::getServers' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\TopologyDescription::getType' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\TopologyDescription::hasReadableServer' => + array ( + 0 => 'bool', + 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', + ), + 'MongoDB\\Driver\\TopologyDescription::hasWritableServer' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\WriteConcern::__construct' => + array ( + 0 => 'void', + 'w' => 'int|string', + 'wtimeout=' => 'int|null', + 'journal=' => 'bool|null', + ), + 'MongoDB\\Driver\\WriteConcern::getJournal' => + array ( + 0 => 'bool|null', + ), + 'MongoDB\\Driver\\WriteConcern::getW' => + array ( + 0 => 'int|null|string', + ), + 'MongoDB\\Driver\\WriteConcern::getWtimeout' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteConcern::isDefault' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\WriteConcern::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\WriteConcern::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteConcern::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\WriteConcernError::getCode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteConcernError::getInfo' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\WriteConcernError::getMessage' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteError::getCode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteError::getIndex' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteError::getInfo' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\WriteError::getMessage' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteResult::getInsertedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getMatchedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getModifiedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getDeletedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getUpsertedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\WriteResult::getUpsertedIds' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::getWriteConcernError' => + array ( + 0 => 'MongoDB\\Driver\\WriteConcernError|null', + ), + 'MongoDB\\Driver\\WriteResult::getWriteErrors' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::getErrorReplies' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::isAcknowledged' => + array ( + 0 => 'bool', + ), + 'MongoDBRef::create' => + array ( + 0 => 'array', + 'collection' => 'string', + 'id' => 'mixed', + 'database=' => 'string', + ), + 'MongoDBRef::get' => + array ( + 0 => 'array|null', + 'db' => 'MongoDB', + 'ref' => 'array', + ), + 'MongoDBRef::isRef' => + array ( + 0 => 'bool', + 'ref' => 'mixed', + ), + 'MongoDeleteBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoException::__clone' => + array ( + 0 => 'void', + ), + 'MongoException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoException::__toString' => + array ( + 0 => 'string', + ), + 'MongoException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoException::getCode' => + array ( + 0 => 'int', + ), + 'MongoException::getFile' => + array ( + 0 => 'string', + ), + 'MongoException::getLine' => + array ( + 0 => 'int', + ), + 'MongoException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoGridFS::__construct' => + array ( + 0 => 'void', + 'db' => 'MongoDB', + 'prefix=' => 'string', + 'chunks=' => 'mixed', + ), + 'MongoGridFS::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoGridFS::__toString' => + array ( + 0 => 'string', + ), + 'MongoGridFS::aggregate' => + array ( + 0 => 'array', + 'pipeline' => 'array', + 'op' => 'array', + 'pipelineOperators' => 'array', + ), + 'MongoGridFS::aggregateCursor' => + array ( + 0 => 'MongoCommandCursor', + 'pipeline' => 'array', + 'options' => 'array', + ), + 'MongoGridFS::batchInsert' => + array ( + 0 => 'mixed', + 'a' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::count' => + array ( + 0 => 'int', + 'query=' => 'array|stdClass', + ), + 'MongoGridFS::createDBRef' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'MongoGridFS::createIndex' => + array ( + 0 => 'array', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::delete' => + array ( + 0 => 'bool', + 'id' => 'mixed', + ), + 'MongoGridFS::deleteIndex' => + array ( + 0 => 'array', + 'keys' => 'array|string', + ), + 'MongoGridFS::deleteIndexes' => + array ( + 0 => 'array', + ), + 'MongoGridFS::distinct' => + array ( + 0 => 'array|bool', + 'key' => 'string', + 'query=' => 'array|null', + ), + 'MongoGridFS::drop' => + array ( + 0 => 'array', + ), + 'MongoGridFS::ensureIndex' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::find' => + array ( + 0 => 'MongoGridFSCursor', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoGridFS::findAndModify' => + array ( + 0 => 'array', + 'query' => 'array', + 'update=' => 'array|null', + 'fields=' => 'array|null', + 'options=' => 'array|null', + ), + 'MongoGridFS::findOne' => + array ( + 0 => 'MongoGridFSFile|null', + 'query=' => 'mixed', + 'fields=' => 'mixed', + ), + 'MongoGridFS::get' => + array ( + 0 => 'MongoGridFSFile|null', + 'id' => 'mixed', + ), + 'MongoGridFS::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoGridFS::getIndexInfo' => + array ( + 0 => 'array', + ), + 'MongoGridFS::getName' => + array ( + 0 => 'string', + ), + 'MongoGridFS::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoGridFS::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoGridFS::group' => + array ( + 0 => 'array', + 'keys' => 'mixed', + 'initial' => 'array', + 'reduce' => 'MongoCode', + 'condition=' => 'array', + ), + 'MongoGridFS::insert' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoGridFS::put' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'extra=' => 'array', + ), + 'MongoGridFS::remove' => + array ( + 0 => 'bool', + 'criteria=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::save' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoGridFS::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags' => 'array', + ), + 'MongoGridFS::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoGridFS::storeBytes' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'extra=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::storeFile' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'extra=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::storeUpload' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'filename=' => 'string', + ), + 'MongoGridFS::toIndexString' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'MongoGridFS::update' => + array ( + 0 => 'bool', + 'criteria' => 'array', + 'newobj' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::validate' => + array ( + 0 => 'array', + 'scan_data=' => 'bool', + ), + 'MongoGridFSCursor::__construct' => + array ( + 0 => 'void', + 'gridfs' => 'MongoGridFS', + 'connection' => 'resource', + 'ns' => 'string', + 'query' => 'array', + 'fields' => 'array', + ), + 'MongoGridFSCursor::addOption' => + array ( + 0 => 'MongoCursor', + 'key' => 'string', + 'value' => 'mixed', + ), + 'MongoGridFSCursor::awaitData' => + array ( + 0 => 'MongoCursor', + 'wait=' => 'bool', + ), + 'MongoGridFSCursor::batchSize' => + array ( + 0 => 'MongoCursor', + 'batchSize' => 'int', + ), + 'MongoGridFSCursor::count' => + array ( + 0 => 'int', + 'all=' => 'bool', + ), + 'MongoGridFSCursor::current' => + array ( + 0 => 'MongoGridFSFile', + ), + 'MongoGridFSCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoGridFSCursor::doQuery' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::explain' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::fields' => + array ( + 0 => 'MongoCursor', + 'f' => 'array', + ), + 'MongoGridFSCursor::getNext' => + array ( + 0 => 'MongoGridFSFile', + ), + 'MongoGridFSCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::hasNext' => + array ( + 0 => 'bool', + ), + 'MongoGridFSCursor::hint' => + array ( + 0 => 'MongoCursor', + 'key_pattern' => 'mixed', + ), + 'MongoGridFSCursor::immortal' => + array ( + 0 => 'MongoCursor', + 'liveForever=' => 'bool', + ), + 'MongoGridFSCursor::info' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::key' => + array ( + 0 => 'string', + ), + 'MongoGridFSCursor::limit' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoGridFSCursor::maxTimeMS' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoGridFSCursor::next' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::partial' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoGridFSCursor::reset' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::setFlag' => + array ( + 0 => 'MongoCursor', + 'flag' => 'int', + 'set=' => 'bool', + ), + 'MongoGridFSCursor::setReadPreference' => + array ( + 0 => 'MongoCursor', + 'read_preference' => 'string', + 'tags' => 'array', + ), + 'MongoGridFSCursor::skip' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoGridFSCursor::slaveOkay' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoGridFSCursor::snapshot' => + array ( + 0 => 'MongoCursor', + ), + 'MongoGridFSCursor::sort' => + array ( + 0 => 'MongoCursor', + 'fields' => 'array', + ), + 'MongoGridFSCursor::tailable' => + array ( + 0 => 'MongoCursor', + 'tail=' => 'bool', + ), + 'MongoGridFSCursor::timeout' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoGridFSCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoGridfsFile::__construct' => + array ( + 0 => 'void', + 'gridfs' => 'MongoGridFS', + 'file' => 'array', + ), + 'MongoGridFSFile::getBytes' => + array ( + 0 => 'string', + ), + 'MongoGridFSFile::getFilename' => + array ( + 0 => 'string', + ), + 'MongoGridFSFile::getResource' => + array ( + 0 => 'resource', + ), + 'MongoGridFSFile::getSize' => + array ( + 0 => 'int', + ), + 'MongoGridFSFile::write' => + array ( + 0 => 'int', + 'filename=' => 'string', + ), + 'MongoId::__construct' => + array ( + 0 => 'void', + 'id=' => 'MongoId|string', + ), + 'MongoId::__set_state' => + array ( + 0 => 'MongoId', + 'props' => 'array', + ), + 'MongoId::__toString' => + array ( + 0 => 'string', + ), + 'MongoId::getHostname' => + array ( + 0 => 'string', + ), + 'MongoId::getInc' => + array ( + 0 => 'int', + ), + 'MongoId::getPID' => + array ( + 0 => 'int', + ), + 'MongoId::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoId::isValid' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'MongoInsertBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoInt32::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoInt32::__toString' => + array ( + 0 => 'string', + ), + 'MongoInt64::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoInt64::__toString' => + array ( + 0 => 'string', + ), + 'MongoLog::getCallback' => + array ( + 0 => 'callable', + ), + 'MongoLog::getLevel' => + array ( + 0 => 'int', + ), + 'MongoLog::getModule' => + array ( + 0 => 'int', + ), + 'MongoLog::setCallback' => + array ( + 0 => 'void', + 'log_function' => 'callable', + ), + 'MongoLog::setLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'MongoLog::setModule' => + array ( + 0 => 'void', + 'module' => 'int', + ), + 'MongoPool::getSize' => + array ( + 0 => 'int', + ), + 'MongoPool::info' => + array ( + 0 => 'array', + ), + 'MongoPool::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'MongoRegex::__construct' => + array ( + 0 => 'void', + 'regex' => 'string', + ), + 'MongoRegex::__toString' => + array ( + 0 => 'string', + ), + 'MongoResultException::__clone' => + array ( + 0 => 'void', + ), + 'MongoResultException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoResultException::__toString' => + array ( + 0 => 'string', + ), + 'MongoResultException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoResultException::getCode' => + array ( + 0 => 'int', + ), + 'MongoResultException::getDocument' => + array ( + 0 => 'array', + ), + 'MongoResultException::getFile' => + array ( + 0 => 'string', + ), + 'MongoResultException::getLine' => + array ( + 0 => 'int', + ), + 'MongoResultException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoResultException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoResultException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoResultException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoTimestamp::__construct' => + array ( + 0 => 'void', + 'second=' => 'int', + 'inc=' => 'int', + ), + 'MongoTimestamp::__toString' => + array ( + 0 => 'string', + ), + 'MongoUpdateBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoUpdateBatch::add' => + array ( + 0 => 'bool', + 'item' => 'array', + ), + 'MongoUpdateBatch::execute' => + array ( + 0 => 'array', + 'write_options' => 'array', + ), + 'MongoWriteBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'batch_type' => 'string', + 'write_options' => 'array', + ), + 'MongoWriteBatch::add' => + array ( + 0 => 'bool', + 'item' => 'array', + ), + 'MongoWriteBatch::execute' => + array ( + 0 => 'array', + 'write_options' => 'array', + ), + 'MongoWriteConcernException::__clone' => + array ( + 0 => 'void', + ), + 'MongoWriteConcernException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoWriteConcernException::__toString' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoWriteConcernException::getCode' => + array ( + 0 => 'int', + ), + 'MongoWriteConcernException::getDocument' => + array ( + 0 => 'array', + ), + 'MongoWriteConcernException::getFile' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::getLine' => + array ( + 0 => 'int', + ), + 'MongoWriteConcernException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoWriteConcernException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoWriteConcernException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'monitor_custom_event' => + array ( + 0 => 'void', + 'class' => 'string', + 'text' => 'string', + 'severe=' => 'int', + 'user_data=' => 'mixed', + ), + 'monitor_httperror_event' => + array ( + 0 => 'void', + 'error_code' => 'int', + 'url' => 'string', + 'severe=' => 'int', + ), + 'monitor_license_info' => + array ( + 0 => 'array', + ), + 'monitor_pass_error' => + array ( + 0 => 'void', + 'errno' => 'int', + 'errstr' => 'string', + 'errfile' => 'string', + 'errline' => 'int', + ), + 'monitor_set_aggregation_hint' => + array ( + 0 => 'void', + 'hint' => 'string', + ), + 'move_uploaded_file' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'mqseries_back' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_begin' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'beginoptions' => 'array', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_close' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'options' => 'int', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_cmit' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_conn' => + array ( + 0 => 'void', + 'qmanagername' => 'string', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_connx' => + array ( + 0 => 'void', + 'qmanagername' => 'string', + 'connoptions' => 'array', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_disc' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_get' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'md' => 'array', + 'gmo' => 'array', + 'bufferlength' => 'int', + 'msg' => 'string', + 'data_length' => 'int', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_inq' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'selectorcount' => 'int', + 'selectors' => 'array', + 'intattrcount' => 'int', + 'intattr' => 'resource', + 'charattrlength' => 'int', + 'charattr' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_open' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'objdesc' => 'array', + 'option' => 'int', + 'hobj' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_put' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'md' => 'array', + 'pmo' => 'array', + 'message' => 'string', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_put1' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'objdesc' => 'resource', + 'msgdesc' => 'resource', + 'pmo' => 'resource', + 'buffer' => 'string', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_set' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'selectorcount' => 'int', + 'selectors' => 'array', + 'intattrcount' => 'int', + 'intattrs' => 'array', + 'charattrlength' => 'int', + 'charattrs' => 'array', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_strerror' => + array ( + 0 => 'string', + 'reason' => 'int', + ), + 'ms_GetErrorObj' => + array ( + 0 => 'errorObj', + ), + 'ms_GetVersion' => + array ( + 0 => 'string', + ), + 'ms_GetVersionInt' => + array ( + 0 => 'int', + ), + 'ms_iogetStdoutBufferBytes' => + array ( + 0 => 'int', + ), + 'ms_iogetstdoutbufferstring' => + array ( + 0 => 'void', + ), + 'ms_ioinstallstdinfrombuffer' => + array ( + 0 => 'void', + ), + 'ms_ioinstallstdouttobuffer' => + array ( + 0 => 'void', + ), + 'ms_ioresethandlers' => + array ( + 0 => 'void', + ), + 'ms_iostripstdoutbuffercontentheaders' => + array ( + 0 => 'void', + ), + 'ms_iostripstdoutbuffercontenttype' => + array ( + 0 => 'string', + ), + 'ms_ResetErrorList' => + array ( + 0 => 'void', + ), + 'ms_TokenizeMap' => + array ( + 0 => 'array', + 'map_file_name' => 'string', + ), + 'msession_connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'string', + ), + 'msession_count' => + array ( + 0 => 'int', + ), + 'msession_create' => + array ( + 0 => 'bool', + 'session' => 'string', + 'classname=' => 'string', + 'data=' => 'string', + ), + 'msession_destroy' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'msession_disconnect' => + array ( + 0 => 'void', + ), + 'msession_find' => + array ( + 0 => 'array', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_get' => + array ( + 0 => 'string', + 'session' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_get_array' => + array ( + 0 => 'array', + 'session' => 'string', + ), + 'msession_get_data' => + array ( + 0 => 'string', + 'session' => 'string', + ), + 'msession_inc' => + array ( + 0 => 'string', + 'session' => 'string', + 'name' => 'string', + ), + 'msession_list' => + array ( + 0 => 'array', + ), + 'msession_listvar' => + array ( + 0 => 'array', + 'name' => 'string', + ), + 'msession_lock' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'msession_plugin' => + array ( + 0 => 'string', + 'session' => 'string', + 'value' => 'string', + 'param=' => 'string', + ), + 'msession_randstr' => + array ( + 0 => 'string', + 'param' => 'int', + ), + 'msession_set' => + array ( + 0 => 'bool', + 'session' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_set_array' => + array ( + 0 => 'void', + 'session' => 'string', + 'tuples' => 'array', + ), + 'msession_set_data' => + array ( + 0 => 'bool', + 'session' => 'string', + 'value' => 'string', + ), + 'msession_timeout' => + array ( + 0 => 'int', + 'session' => 'string', + 'param=' => 'int', + ), + 'msession_uniq' => + array ( + 0 => 'string', + 'param' => 'int', + 'classname=' => 'string', + 'data=' => 'string', + ), + 'msession_unlock' => + array ( + 0 => 'int', + 'session' => 'string', + 'key' => 'int', + ), + 'msg_get_queue' => + array ( + 0 => 'SysvMessageQueue|false', + 'key' => 'int', + 'permissions=' => 'int', + ), + 'msg_queue_exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'msg_receive' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'desired_message_type' => 'int', + '&w_received_message_type' => 'int', + 'max_message_size' => 'int', + '&w_message' => 'mixed', + 'unserialize=' => 'bool', + 'flags=' => 'int', + '&w_error_code=' => 'int', + ), + 'msg_remove_queue' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + ), + 'msg_send' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'message_type' => 'int', + 'message' => 'mixed', + 'serialize=' => 'bool', + 'blocking=' => 'bool', + '&w_error_code=' => 'int', + ), + 'msg_set_queue' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'data' => 'array', + ), + 'msg_stat_queue' => + array ( + 0 => 'array', + 'queue' => 'SysvMessageQueue', + ), + 'msgfmt_create' => + array ( + 0 => 'MessageFormatter|null', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'msgfmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'MessageFormatter', + 'values' => 'array', + ), + 'msgfmt_format_message' => + array ( + 0 => 'false|string', + 'locale' => 'string', + 'pattern' => 'string', + 'values' => 'array', + ), + 'msgfmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_locale' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_pattern' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_parse' => + array ( + 0 => 'array|false', + 'formatter' => 'MessageFormatter', + 'string' => 'string', + ), + 'msgfmt_parse_message' => + array ( + 0 => 'array|false', + 'locale' => 'string', + 'pattern' => 'string', + 'message' => 'string', + ), + 'msgfmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'MessageFormatter', + 'pattern' => 'string', + ), + 'msql_affected_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'msql_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'msql_connect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + ), + 'msql_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_data_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row_number' => 'int', + ), + 'msql_db_query' => + array ( + 0 => 'resource', + 'database' => 'string', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_error' => + array ( + 0 => 'string', + ), + 'msql_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'msql_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'msql_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + ), + 'msql_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'msql_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_table' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'msql_list_dbs' => + array ( + 0 => 'resource', + 'link_identifier=' => 'null|resource', + ), + 'msql_list_fields' => + array ( + 0 => 'resource', + 'database' => 'string', + 'tablename' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_list_tables' => + array ( + 0 => 'resource', + 'database' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'msql_num_rows' => + array ( + 0 => 'int', + 'query_identifier' => 'resource', + ), + 'msql_pconnect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + ), + 'msql_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_result' => + array ( + 0 => 'string', + 'result' => 'resource', + 'row' => 'int', + 'field=' => 'mixed', + ), + 'msql_select_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'mt_getrandmax' => + array ( + 0 => 'int<1, max>', + ), + 'mt_rand' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'mt_rand\'1' => + array ( + 0 => 'int', + ), + 'mt_srand' => + array ( + 0 => 'void', + 'seed=' => 'int|null', + 'mode=' => 'int', + ), + 'MultipleIterator::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'MultipleIterator::attachIterator' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'info=' => 'int|null|string', + ), + 'MultipleIterator::containsIterator' => + array ( + 0 => 'bool', + 'iterator' => 'Iterator', + ), + 'MultipleIterator::countIterators' => + array ( + 0 => 'int', + ), + 'MultipleIterator::current' => + array ( + 0 => 'array|false', + ), + 'MultipleIterator::detachIterator' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'MultipleIterator::getFlags' => + array ( + 0 => 'int', + ), + 'MultipleIterator::key' => + array ( + 0 => 'array', + ), + 'MultipleIterator::next' => + array ( + 0 => 'void', + ), + 'MultipleIterator::rewind' => + array ( + 0 => 'void', + ), + 'MultipleIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'MultipleIterator::valid' => + array ( + 0 => 'bool', + ), + 'Mutex::create' => + array ( + 0 => 'long', + 'lock=' => 'bool', + ), + 'Mutex::destroy' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::lock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::trylock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::unlock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + 'destroy=' => 'bool', + ), + 'mysql_xdevapi\\baseresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\baseresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\collection::add' => + array ( + 0 => 'mysql_xdevapi\\CollectionAdd', + 'document' => 'mixed', + ), + 'mysql_xdevapi\\collection::addOrReplaceOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + 'doc' => 'string', + ), + 'mysql_xdevapi\\collection::count' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\collection::createIndex' => + array ( + 0 => 'void', + 'index_name' => 'string', + 'index_desc_json' => 'string', + ), + 'mysql_xdevapi\\collection::dropIndex' => + array ( + 0 => 'bool', + 'index_name' => 'string', + ), + 'mysql_xdevapi\\collection::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\collection::find' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'search_condition=' => 'string', + ), + 'mysql_xdevapi\\collection::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\collection::getOne' => + array ( + 0 => 'Document', + 'id' => 'string', + ), + 'mysql_xdevapi\\collection::getSchema' => + array ( + 0 => 'mysql_xdevapi\\schema', + ), + 'mysql_xdevapi\\collection::getSession' => + array ( + 0 => 'Session', + ), + 'mysql_xdevapi\\collection::modify' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'search_condition' => 'string', + ), + 'mysql_xdevapi\\collection::remove' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'search_condition' => 'string', + ), + 'mysql_xdevapi\\collection::removeOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + ), + 'mysql_xdevapi\\collection::replaceOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + 'doc' => 'string', + ), + 'mysql_xdevapi\\collectionadd::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionfind::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionfind::execute' => + array ( + 0 => 'mysql_xdevapi\\DocResult', + ), + 'mysql_xdevapi\\collectionfind::fields' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'projection' => 'string', + ), + 'mysql_xdevapi\\collectionfind::groupBy' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionfind::having' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionfind::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionfind::lockExclusive' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\collectionfind::lockShared' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\collectionfind::offset' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'position' => 'int', + ), + 'mysql_xdevapi\\collectionfind::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::arrayAppend' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::arrayInsert' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionmodify::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionmodify::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionmodify::patch' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'document' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::replace' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::set' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::skip' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'position' => 'int', + ), + 'mysql_xdevapi\\collectionmodify::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::unset' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'fields' => 'array', + ), + 'mysql_xdevapi\\collectionremove::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionremove::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionremove::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionremove::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\columnresult::getCharacterSetName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getCollationName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getColumnLabel' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getColumnName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getFractionalDigits' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::getLength' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::getSchemaName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getTableLabel' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getTableName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getType' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::isNumberSigned' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::isPadded' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\crudoperationbindable::bind' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationBindable', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\crudoperationlimitable::limit' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationLimitable', + 'rows' => 'int', + ), + 'mysql_xdevapi\\crudoperationskippable::skip' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationSkippable', + 'skip' => 'int', + ), + 'mysql_xdevapi\\crudoperationsortable::sort' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationSortable', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\databaseobject::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\databaseobject::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\databaseobject::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\docresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\docresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\docresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\docresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\executable::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\getsession' => + array ( + 0 => 'mysql_xdevapi\\Session', + 'uri' => 'string', + ), + 'mysql_xdevapi\\result::getAutoIncrementValue' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\result::getGeneratedIds' => + array ( + 0 => 'ArrayOfInt', + ), + 'mysql_xdevapi\\result::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\result::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\rowresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\rowresult::getColumnCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\rowresult::getColumnNames' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getColumns' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\schema::createCollection' => + array ( + 0 => 'mysql_xdevapi\\Collection', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::dropCollection' => + array ( + 0 => 'bool', + 'collection_name' => 'string', + ), + 'mysql_xdevapi\\schema::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\schema::getCollection' => + array ( + 0 => 'mysql_xdevapi\\Collection', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getCollectionAsTable' => + array ( + 0 => 'mysql_xdevapi\\Table', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getCollections' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\schema::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\schema::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\schema::getTable' => + array ( + 0 => 'mysql_xdevapi\\Table', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getTables' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\schemaobject::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + ), + 'mysql_xdevapi\\session::close' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\session::commit' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\session::createSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::dropSchema' => + array ( + 0 => 'bool', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::executeSql' => + array ( + 0 => 'object', + 'statement' => 'string', + ), + 'mysql_xdevapi\\session::generateUUID' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\session::getClientId' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\session::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::getSchemas' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\session::getServerVersion' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\session::killClient' => + array ( + 0 => 'object', + 'client_id' => 'int', + ), + 'mysql_xdevapi\\session::listClients' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\session::quoteName' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::releaseSavepoint' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::rollback' => + array ( + 0 => 'void', + ), + 'mysql_xdevapi\\session::rollbackTo' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::setSavepoint' => + array ( + 0 => 'string', + 'name=' => 'string', + ), + 'mysql_xdevapi\\session::sql' => + array ( + 0 => 'mysql_xdevapi\\SqlStatement', + 'query' => 'string', + ), + 'mysql_xdevapi\\session::startTransaction' => + array ( + 0 => 'void', + ), + 'mysql_xdevapi\\sqlstatement::bind' => + array ( + 0 => 'mysql_xdevapi\\SqlStatement', + 'param' => 'string', + ), + 'mysql_xdevapi\\sqlstatement::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::getNextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::getResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::hasMoreResults' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\sqlstatementresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\sqlstatementresult::getAffectedItemsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumnCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumnNames' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumns' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getGeneratedIds' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getLastInsertId' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\sqlstatementresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::hasData' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\sqlstatementresult::nextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::getNextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::getResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::hasMoreResults' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::count' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\table::delete' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + ), + 'mysql_xdevapi\\table::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\table::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + ), + 'mysql_xdevapi\\table::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\table::insert' => + array ( + 0 => 'mysql_xdevapi\\TableInsert', + 'columns' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\table::isView' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::select' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'columns' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\table::update' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + ), + 'mysql_xdevapi\\tabledelete::bind' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tabledelete::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\tabledelete::limit' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tabledelete::offset' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'position' => 'int', + ), + 'mysql_xdevapi\\tabledelete::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'orderby_expr' => 'string', + ), + 'mysql_xdevapi\\tabledelete::where' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'where_expr' => 'string', + ), + 'mysql_xdevapi\\tableinsert::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\tableinsert::values' => + array ( + 0 => 'mysql_xdevapi\\TableInsert', + 'row_values' => 'array', + ), + 'mysql_xdevapi\\tableselect::bind' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tableselect::execute' => + array ( + 0 => 'mysql_xdevapi\\RowResult', + ), + 'mysql_xdevapi\\tableselect::groupBy' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'mixed', + ), + 'mysql_xdevapi\\tableselect::having' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\tableselect::limit' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tableselect::lockExclusive' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\tableselect::lockShared' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\tableselect::offset' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'position' => 'int', + ), + 'mysql_xdevapi\\tableselect::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\tableselect::where' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'where_expr' => 'string', + ), + 'mysql_xdevapi\\tableupdate::bind' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tableupdate::execute' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + ), + 'mysql_xdevapi\\tableupdate::limit' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tableupdate::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'orderby_expr' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\tableupdate::set' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'table_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\tableupdate::where' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'where_expr' => 'string', + ), + 'mysqli::__construct' => + array ( + 0 => 'void', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + 'mysqli::autocommit' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'mysqli::begin_transaction' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli::change_user' => + array ( + 0 => 'bool', + 'username' => 'string', + 'password' => 'string', + 'database' => 'null|string', + ), + 'mysqli::character_set_name' => + array ( + 0 => 'string', + ), + 'mysqli::close' => + array ( + 0 => 'true', + ), + 'mysqli::commit' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli::connect' => + array ( + 0 => 'bool', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + 'mysqli::debug' => + array ( + 0 => 'true', + 'options' => 'string', + ), + 'mysqli::dump_debug_info' => + array ( + 0 => 'bool', + ), + 'mysqli::escape_string' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mysqli::execute_query' => + array ( + 0 => 'bool|mysqli_result', + 'query' => 'non-empty-string', + 'params=' => 'list|null', + ), + 'mysqli::get_charset' => + array ( + 0 => 'object', + ), + 'mysqli::get_client_info' => + array ( + 0 => 'string', + ), + 'mysqli::get_connection_stats' => + array ( + 0 => 'array', + ), + 'mysqli::get_warnings' => + array ( + 0 => 'mysqli_warning', + ), + 'mysqli::init' => + array ( + 0 => 'false|null', + ), + 'mysqli::kill' => + array ( + 0 => 'bool', + 'process_id' => 'int', + ), + 'mysqli::more_results' => + array ( + 0 => 'bool', + ), + 'mysqli::multi_query' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli::next_result' => + array ( + 0 => 'bool', + ), + 'mysqli::options' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli::ping' => + array ( + 0 => 'bool', + ), + 'mysqli::poll' => + array ( + 0 => 'false|int', + '&w_read' => 'array|null', + '&w_error' => 'array|null', + '&w_reject' => 'array', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'mysqli::prepare' => + array ( + 0 => 'false|mysqli_stmt', + 'query' => 'string', + ), + 'mysqli::query' => + array ( + 0 => 'bool|mysqli_result', + 'query' => 'string', + 'result_mode=' => 'int', + ), + 'mysqli::real_connect' => + array ( + 0 => 'bool', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + 'flags=' => 'int', + ), + 'mysqli::real_escape_string' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mysqli::real_query' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli::reap_async_query' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli::refresh' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'mysqli::release_savepoint' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'mysqli::rollback' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli::savepoint' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'mysqli::select_db' => + array ( + 0 => 'bool', + 'database' => 'string', + ), + 'mysqli::set_charset' => + array ( + 0 => 'bool', + 'charset' => 'string', + ), + 'mysqli::set_opt' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli::ssl_set' => + array ( + 0 => 'true', + 'key' => 'null|string', + 'certificate' => 'null|string', + 'ca_certificate' => 'null|string', + 'ca_path' => 'null|string', + 'cipher_algos' => 'null|string', + ), + 'mysqli::stat' => + array ( + 0 => 'false|string', + ), + 'mysqli::stmt_init' => + array ( + 0 => 'mysqli_stmt', + ), + 'mysqli::store_result' => + array ( + 0 => 'false|mysqli_result', + 'mode=' => 'int', + ), + 'mysqli::thread_safe' => + array ( + 0 => 'bool', + ), + 'mysqli::use_result' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_affected_rows' => + array ( + 0 => 'int<-1, max>|numeric-string', + 'mysql' => 'mysqli', + ), + 'mysqli_autocommit' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'enable' => 'bool', + ), + 'mysqli_begin_transaction' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli_change_user' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'username' => 'string', + 'password' => 'string', + 'database' => 'null|string', + ), + 'mysqli_character_set_name' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_close' => + array ( + 0 => 'true', + 'mysql' => 'mysqli', + ), + 'mysqli_commit' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli_connect' => + array ( + 0 => 'false|mysqli', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + 'mysqli_connect_errno' => + array ( + 0 => 'int', + ), + 'mysqli_connect_error' => + array ( + 0 => 'null|string', + ), + 'mysqli_data_seek' => + array ( + 0 => 'bool', + 'result' => 'mysqli_result', + 'offset' => 'int', + ), + 'mysqli_debug' => + array ( + 0 => 'true', + 'options' => 'string', + ), + 'mysqli_disable_reads_from_master' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_disable_rpl_parse' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_dump_debug_info' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_embedded_server_end' => + array ( + 0 => 'void', + ), + 'mysqli_embedded_server_start' => + array ( + 0 => 'bool', + 'start' => 'int', + 'arguments' => 'array', + 'groups' => 'array', + ), + 'mysqli_enable_reads_from_master' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_enable_rpl_parse' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_errno' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_error' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_error_list' => + array ( + 0 => 'array', + 'mysql' => 'mysqli', + ), + 'mysqli_escape_string' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + 'string' => 'string', + ), + 'mysqli_execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'params=' => 'list|null', + ), + 'mysqli_execute_query' => + array ( + 0 => 'bool|mysqli_result', + 'mysql' => 'mysqli', + 'query' => 'non-empty-string', + 'params=' => 'list|null', + ), + 'mysqli_fetch_all' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '3', + ), + 'mysqli_fetch_all\'1' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '1', + ), + 'mysqli_fetch_all\'2' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '2', + ), + 'mysqli_fetch_array' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + 'mode=' => '3', + ), + 'mysqli_fetch_array\'1' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + 'mode=' => '1', + ), + 'mysqli_fetch_array\'2' => + array ( + 0 => 'false|list|null', + 'result' => 'mysqli_result', + 'mode=' => '2', + ), + 'mysqli_fetch_assoc' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_column' => + array ( + 0 => 'false|float|int|null|string', + 'result' => 'mysqli_result', + 'column=' => 'int', + ), + 'mysqli_fetch_field' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_field_direct' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'mysqli_fetch_fields' => + array ( + 0 => 'list', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_lengths' => + array ( + 0 => 'array|false', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_object' => + array ( + 0 => 'false|null|object', + 'result' => 'mysqli_result', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'mysqli_fetch_row' => + array ( + 0 => 'false|list|null', + 'result' => 'mysqli_result', + ), + 'mysqli_field_count' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_field_seek' => + array ( + 0 => 'true', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'mysqli_field_tell' => + array ( + 0 => 'int', + 'result' => 'mysqli_result', + ), + 'mysqli_free_result' => + array ( + 0 => 'void', + 'result' => 'mysqli_result', + ), + 'mysqli_get_cache_stats' => + array ( + 0 => 'array|false', + ), + 'mysqli_get_charset' => + array ( + 0 => 'null|object', + 'mysql' => 'mysqli', + ), + 'mysqli_get_client_info' => + array ( + 0 => 'string', + 'mysql=' => 'mysqli|null', + ), + 'mysqli_get_client_stats' => + array ( + 0 => 'array', + ), + 'mysqli_get_client_version' => + array ( + 0 => 'int', + ), + 'mysqli_get_connection_stats' => + array ( + 0 => 'array', + 'mysql' => 'mysqli', + ), + 'mysqli_get_host_info' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_get_links_stats' => + array ( + 0 => 'array', + ), + 'mysqli_get_proto_info' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_get_server_info' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_get_server_version' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_get_warnings' => + array ( + 0 => 'mysqli_warning', + 'mysql' => 'mysqli', + ), + 'mysqli_info' => + array ( + 0 => 'null|string', + 'mysql' => 'mysqli', + ), + 'mysqli_init' => + array ( + 0 => 'false|mysqli', + ), + 'mysqli_insert_id' => + array ( + 0 => 'int|string', + 'mysql' => 'mysqli', + ), + 'mysqli_kill' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'process_id' => 'int', + ), + 'mysqli_link_construct' => + array ( + 0 => 'object', + ), + 'mysqli_master_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_more_results' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_multi_query' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_next_result' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_num_fields' => + array ( + 0 => 'int', + 'result' => 'mysqli_result', + ), + 'mysqli_num_rows' => + array ( + 0 => 'int<0, max>|numeric-string', + 'result' => 'mysqli_result', + ), + 'mysqli_options' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli_ping' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_poll' => + array ( + 0 => 'false|int', + '&w_read' => 'array|null', + '&w_error' => 'array|null', + '&w_reject' => 'array', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'mysqli_prepare' => + array ( + 0 => 'false|mysqli_stmt', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_query' => + array ( + 0 => 'bool|mysqli_result', + 'mysql' => 'mysqli', + 'query' => 'string', + 'result_mode=' => 'int', + ), + 'mysqli_real_connect' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + 'flags=' => 'int', + ), + 'mysqli_real_escape_string' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + 'string' => 'string', + ), + 'mysqli_real_query' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_reap_async_query' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + ), + 'mysqli_refresh' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags' => 'int', + ), + 'mysqli_release_savepoint' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'name' => 'string', + ), + 'mysqli_report' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'mysqli_result::__construct' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'result_mode=' => 'int', + ), + 'mysqli_result::close' => + array ( + 0 => 'void', + ), + 'mysqli_result::data_seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'mysqli_result::fetch_all' => + array ( + 0 => 'list>', + 'mode=' => '3', + ), + 'mysqli_result::fetch_all\'1' => + array ( + 0 => 'list>', + 'mode=' => '1', + ), + 'mysqli_result::fetch_all\'2' => + array ( + 0 => 'list>', + 'mode=' => '2', + ), + 'mysqli_result::fetch_array' => + array ( + 0 => 'array|false|null', + 'mode=' => '3', + ), + 'mysqli_result::fetch_array\'1' => + array ( + 0 => 'array|false|null', + 'mode=' => '1', + ), + 'mysqli_result::fetch_array\'2' => + array ( + 0 => 'false|list|null', + 'mode=' => '2', + ), + 'mysqli_result::fetch_assoc' => + array ( + 0 => 'array|false|null', + ), + 'mysqli_result::fetch_column' => + array ( + 0 => 'false|float|int|null|string', + 'column=' => 'int', + ), + 'mysqli_result::fetch_field' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + ), + 'mysqli_result::fetch_field_direct' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'index' => 'int', + ), + 'mysqli_result::fetch_fields' => + array ( + 0 => 'list', + ), + 'mysqli_result::fetch_object' => + array ( + 0 => 'false|null|object', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'mysqli_result::fetch_row' => + array ( + 0 => 'false|list|null', + ), + 'mysqli_result::field_seek' => + array ( + 0 => 'true', + 'index' => 'int', + ), + 'mysqli_result::free' => + array ( + 0 => 'void', + ), + 'mysqli_result::free_result' => + array ( + 0 => 'void', + ), + 'mysqli_rollback' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + 'mysqli_rpl_parse_enabled' => + array ( + 0 => 'int', + 'link' => 'mysqli', + ), + 'mysqli_rpl_probe' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_rpl_query_type' => + array ( + 0 => 'int', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_savepoint' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'name' => 'string', + ), + 'mysqli_savepoint_libmysql' => + array ( + 0 => 'bool', + ), + 'mysqli_select_db' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'database' => 'string', + ), + 'mysqli_send_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_set_charset' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'charset' => 'string', + ), + 'mysqli_set_local_infile_default' => + array ( + 0 => 'void', + 'link' => 'mysqli', + ), + 'mysqli_set_local_infile_handler' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'read_func' => 'callable', + ), + 'mysqli_set_opt' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli_slave_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_sqlstate' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_ssl_set' => + array ( + 0 => 'true', + 'mysql' => 'mysqli', + 'key' => 'null|string', + 'certificate' => 'null|string', + 'ca_certificate' => 'null|string', + 'ca_path' => 'null|string', + 'cipher_algos' => 'null|string', + ), + 'mysqli_stat' => + array ( + 0 => 'false|string', + 'mysql' => 'mysqli', + ), + 'mysqli_stmt::__construct' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'query=' => 'null|string', + ), + 'mysqli_stmt::attr_get' => + array ( + 0 => 'int', + 'attribute' => 'int', + ), + 'mysqli_stmt::attr_set' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'int', + ), + 'mysqli_stmt::bind_param' => + array ( + 0 => 'bool', + 'types' => 'string', + '&var' => 'mixed', + '&...vars=' => 'mixed', + ), + 'mysqli_stmt::bind_result' => + array ( + 0 => 'bool', + '&w_var1' => 'mixed', + '&...w_vars=' => 'mixed', + ), + 'mysqli_stmt::close' => + array ( + 0 => 'true', + ), + 'mysqli_stmt::data_seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'mysqli_stmt::execute' => + array ( + 0 => 'bool', + 'params=' => 'list|null', + ), + 'mysqli_stmt::fetch' => + array ( + 0 => 'bool|null', + ), + 'mysqli_stmt::free_result' => + array ( + 0 => 'void', + ), + 'mysqli_stmt::get_result' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_stmt::get_warnings' => + array ( + 0 => 'object', + ), + 'mysqli_stmt::more_results' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::next_result' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::num_rows' => + array ( + 0 => 'int<0, max>|numeric-string', + ), + 'mysqli_stmt::prepare' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli_stmt::reset' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::result_metadata' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_stmt::send_long_data' => + array ( + 0 => 'bool', + 'param_num' => 'int', + 'data' => 'string', + ), + 'mysqli_stmt::store_result' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt_affected_rows' => + array ( + 0 => 'int<-1, max>|numeric-string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_attr_get' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + 'attribute' => 'int', + ), + 'mysqli_stmt_attr_set' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'attribute' => 'int', + 'value' => 'int', + ), + 'mysqli_stmt_bind_param' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'types' => 'string', + '&var' => 'mixed', + '&...vars=' => 'mixed', + ), + 'mysqli_stmt_bind_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + '&w_var1' => 'mixed', + '&...w_vars=' => 'mixed', + ), + 'mysqli_stmt_close' => + array ( + 0 => 'true', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_data_seek' => + array ( + 0 => 'void', + 'statement' => 'mysqli_stmt', + 'offset' => 'int', + ), + 'mysqli_stmt_errno' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_error' => + array ( + 0 => 'string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_error_list' => + array ( + 0 => 'array', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'params=' => 'list|null', + ), + 'mysqli_stmt_fetch' => + array ( + 0 => 'bool|null', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_field_count' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_free_result' => + array ( + 0 => 'void', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_get_result' => + array ( + 0 => 'false|mysqli_result', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_get_warnings' => + array ( + 0 => 'object', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_init' => + array ( + 0 => 'mysqli_stmt', + 'mysql' => 'mysqli', + ), + 'mysqli_stmt_insert_id' => + array ( + 0 => 'mixed', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_more_results' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_next_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_num_rows' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_param_count' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_prepare' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'query' => 'string', + ), + 'mysqli_stmt_reset' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_result_metadata' => + array ( + 0 => 'false|mysqli_result', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_send_long_data' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'param_num' => 'int', + 'data' => 'string', + ), + 'mysqli_stmt_sqlstate' => + array ( + 0 => 'string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_store_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_store_result' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + 'mode=' => 'int', + ), + 'mysqli_thread_id' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_thread_safe' => + array ( + 0 => 'bool', + ), + 'mysqli_use_result' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + ), + 'mysqli_warning::__construct' => + array ( + 0 => 'void', + ), + 'mysqli_warning::next' => + array ( + 0 => 'bool', + ), + 'mysqli_warning_count' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqlnd_memcache_get_config' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_memcache_set' => + array ( + 0 => 'bool', + 'mysql_connection' => 'mixed', + 'memcache_connection=' => 'Memcached', + 'pattern=' => 'string', + 'callback=' => 'callable', + ), + 'mysqlnd_ms_dump_servers' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_fabric_select_global' => + array ( + 0 => 'array', + 'connection' => 'mixed', + 'table_name' => 'mixed', + ), + 'mysqlnd_ms_fabric_select_shard' => + array ( + 0 => 'array', + 'connection' => 'mixed', + 'table_name' => 'mixed', + 'shard_key' => 'mixed', + ), + 'mysqlnd_ms_get_last_gtid' => + array ( + 0 => 'string', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_get_last_used_connection' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_get_stats' => + array ( + 0 => 'array', + ), + 'mysqlnd_ms_match_wild' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'wildcard' => 'string', + ), + 'mysqlnd_ms_query_is_select' => + array ( + 0 => 'int', + 'query' => 'string', + ), + 'mysqlnd_ms_set_qos' => + array ( + 0 => 'bool', + 'connection' => 'mixed', + 'service_level' => 'int', + 'service_level_option=' => 'int', + 'option_value=' => 'mixed', + ), + 'mysqlnd_ms_set_user_pick_server' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'mysqlnd_ms_xa_begin' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + 'timeout=' => 'int', + ), + 'mysqlnd_ms_xa_commit' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + ), + 'mysqlnd_ms_xa_gc' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid=' => 'string', + 'ignore_max_retries=' => 'bool', + ), + 'mysqlnd_ms_xa_rollback' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + ), + 'mysqlnd_qc_change_handler' => + array ( + 0 => 'bool', + 'handler' => 'mixed', + ), + 'mysqlnd_qc_clear_cache' => + array ( + 0 => 'bool', + ), + 'mysqlnd_qc_get_available_handlers' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_cache_info' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_core_stats' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_handler' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_normalized_query_trace_log' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_query_trace_log' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_set_cache_condition' => + array ( + 0 => 'bool', + 'condition_type' => 'int', + 'condition' => 'mixed', + 'condition_option' => 'mixed', + ), + 'mysqlnd_qc_set_is_select' => + array ( + 0 => 'mixed', + 'callback' => 'string', + ), + 'mysqlnd_qc_set_storage_handler' => + array ( + 0 => 'bool', + 'handler' => 'string', + ), + 'mysqlnd_qc_set_user_handlers' => + array ( + 0 => 'bool', + 'get_hash' => 'string', + 'find_query_in_cache' => 'string', + 'return_to_cache' => 'string', + 'add_query_to_cache_if_not_exists' => 'string', + 'query_is_select' => 'string', + 'update_query_run_time_stats' => 'string', + 'get_stats' => 'string', + 'clear_cache' => 'string', + ), + 'mysqlnd_uh_convert_to_mysqlnd' => + array ( + 0 => 'resource', + '&rw_mysql_connection' => 'mysqli', + ), + 'mysqlnd_uh_set_connection_proxy' => + array ( + 0 => 'bool', + '&rw_connection_proxy' => 'MysqlndUhConnection', + '&rw_mysqli_connection=' => 'mysqli', + ), + 'mysqlnd_uh_set_statement_proxy' => + array ( + 0 => 'bool', + '&rw_statement_proxy' => 'MysqlndUhStatement', + ), + 'MysqlndUhConnection::__construct' => + array ( + 0 => 'void', + ), + 'MysqlndUhConnection::changeUser' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'user' => 'string', + 'password' => 'string', + 'database' => 'string', + 'silent' => 'bool', + 'passwd_len' => 'int', + ), + 'MysqlndUhConnection::charsetName' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::close' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'close_type' => 'int', + ), + 'MysqlndUhConnection::connect' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'host' => 'string', + 'use' => 'string', + 'password' => 'string', + 'database' => 'string', + 'port' => 'int', + 'socket' => 'string', + 'mysql_flags' => 'int', + ), + 'MysqlndUhConnection::endPSession' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::escapeString' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + 'escape_string' => 'string', + ), + 'MysqlndUhConnection::getAffectedRows' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getErrorNumber' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getErrorString' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getFieldCount' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getHostInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getLastInsertId' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getLastMessage' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getProtocolInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerStatistics' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerVersion' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getSqlstate' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getStatistics' => + array ( + 0 => 'array', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getThreadId' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getWarningCount' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::init' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::killConnection' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'pid' => 'int', + ), + 'MysqlndUhConnection::listFields' => + array ( + 0 => 'array', + 'connection' => 'mysqlnd_connection', + 'table' => 'string', + 'achtung_wild' => 'string', + ), + 'MysqlndUhConnection::listMethod' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + 'achtung_wild' => 'string', + 'par1' => 'string', + ), + 'MysqlndUhConnection::moreResults' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::nextResult' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::ping' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::query' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + ), + 'MysqlndUhConnection::queryReadResultsetHeader' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'mysqlnd_stmt' => 'mysqlnd_statement', + ), + 'MysqlndUhConnection::reapQuery' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::refreshServer' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'options' => 'int', + ), + 'MysqlndUhConnection::restartPSession' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::selectDb' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'database' => 'string', + ), + 'MysqlndUhConnection::sendClose' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::sendQuery' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + ), + 'MysqlndUhConnection::serverDumpDebugInformation' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::setAutocommit' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'mode' => 'int', + ), + 'MysqlndUhConnection::setCharset' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'charset' => 'string', + ), + 'MysqlndUhConnection::setClientOption' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'option' => 'int', + 'value' => 'int', + ), + 'MysqlndUhConnection::setServerOption' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + 'option' => 'int', + ), + 'MysqlndUhConnection::shutdownServer' => + array ( + 0 => 'void', + 'MYSQLND_UH_RES_MYSQLND_NAME' => 'string', + 'level' => 'string', + ), + 'MysqlndUhConnection::simpleCommand' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'command' => 'int', + 'arg' => 'string', + 'ok_packet' => 'int', + 'silent' => 'bool', + 'ignore_upsert_status' => 'bool', + ), + 'MysqlndUhConnection::simpleCommandHandleResponse' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'ok_packet' => 'int', + 'silent' => 'bool', + 'command' => 'int', + 'ignore_upsert_status' => 'bool', + ), + 'MysqlndUhConnection::sslSet' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'key' => 'string', + 'cert' => 'string', + 'ca' => 'string', + 'capath' => 'string', + 'cipher' => 'string', + ), + 'MysqlndUhConnection::stmtInit' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::storeResult' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::txCommit' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::txRollback' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::useResult' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhPreparedStatement::__construct' => + array ( + 0 => 'void', + ), + 'MysqlndUhPreparedStatement::execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqlnd_prepared_statement', + ), + 'MysqlndUhPreparedStatement::prepare' => + array ( + 0 => 'bool', + 'statement' => 'mysqlnd_prepared_statement', + 'query' => 'string', + ), + 'natcasesort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + 'natsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + 'net_get_interfaces' => + array ( + 0 => 'array>|false', + ), + 'newrelic_add_custom_parameter' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'scalar', + ), + 'newrelic_add_custom_tracer' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'newrelic_background_job' => + array ( + 0 => 'void', + 'flag=' => 'bool', + ), + 'newrelic_capture_params' => + array ( + 0 => 'void', + 'enable=' => 'bool', + ), + 'newrelic_custom_metric' => + array ( + 0 => 'bool', + 'metric_name' => 'string', + 'value' => 'float', + ), + 'newrelic_disable_autorum' => + array ( + 0 => 'true', + ), + 'newrelic_end_of_transaction' => + array ( + 0 => 'void', + ), + 'newrelic_end_transaction' => + array ( + 0 => 'bool', + 'ignore=' => 'bool', + ), + 'newrelic_get_browser_timing_footer' => + array ( + 0 => 'string', + 'include_tags=' => 'bool', + ), + 'newrelic_get_browser_timing_header' => + array ( + 0 => 'string', + 'include_tags=' => 'bool', + ), + 'newrelic_ignore_apdex' => + array ( + 0 => 'void', + ), + 'newrelic_ignore_transaction' => + array ( + 0 => 'void', + ), + 'newrelic_name_transaction' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'newrelic_notice_error' => + array ( + 0 => 'void', + 'message' => 'string', + 'exception=' => 'Exception|Throwable', + ), + 'newrelic_notice_error\'1' => + array ( + 0 => 'void', + 'unused_1' => 'string', + 'message' => 'string', + 'unused_2' => 'string', + 'unused_3' => 'int', + 'unused_4=' => 'mixed', + ), + 'newrelic_record_custom_event' => + array ( + 0 => 'void', + 'name' => 'string', + 'attributes' => 'array', + ), + 'newrelic_record_datastore_segment' => + array ( + 0 => 'mixed', + 'func' => 'callable', + 'parameters' => 'array', + ), + 'newrelic_set_appname' => + array ( + 0 => 'bool', + 'name' => 'string', + 'license=' => 'string', + 'xmit=' => 'bool', + ), + 'newrelic_set_user_attributes' => + array ( + 0 => 'bool', + 'user' => 'string', + 'account' => 'string', + 'product' => 'string', + ), + 'newrelic_start_transaction' => + array ( + 0 => 'bool', + 'appname' => 'string', + 'license=' => 'string', + ), + 'next' => + array ( + 0 => 'mixed', + '&r_array' => 'array', + ), + 'ngettext' => + array ( + 0 => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + ), + 'nl2br' => + array ( + 0 => 'string', + 'string' => 'string', + 'use_xhtml=' => 'bool', + ), + 'nl_langinfo' => + array ( + 0 => 'false|string', + 'item' => 'int', + ), + 'NoRewindIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'NoRewindIterator::current' => + array ( + 0 => 'mixed', + ), + 'NoRewindIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'NoRewindIterator::key' => + array ( + 0 => 'mixed', + ), + 'NoRewindIterator::next' => + array ( + 0 => 'void', + ), + 'NoRewindIterator::rewind' => + array ( + 0 => 'void', + ), + 'NoRewindIterator::valid' => + array ( + 0 => 'bool', + ), + 'Normalizer::getRawDecomposition' => + array ( + 0 => 'null|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'Normalizer::isNormalized' => + array ( + 0 => 'bool', + 'string' => 'string', + 'form=' => 'int', + ), + 'Normalizer::normalize' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'normalizer_get_raw_decomposition' => + array ( + 0 => 'null|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'normalizer_is_normalized' => + array ( + 0 => 'bool', + 'string' => 'string', + 'form=' => 'int', + ), + 'normalizer_normalize' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'notes_body' => + array ( + 0 => 'array', + 'server' => 'string', + 'mailbox' => 'string', + 'msg_number' => 'int', + ), + 'notes_copy_db' => + array ( + 0 => 'bool', + 'from_database_name' => 'string', + 'to_database_name' => 'string', + ), + 'notes_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + ), + 'notes_create_note' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'form_name' => 'string', + ), + 'notes_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + ), + 'notes_find_note' => + array ( + 0 => 'int', + 'database_name' => 'string', + 'name' => 'string', + 'type=' => 'string', + ), + 'notes_header_info' => + array ( + 0 => 'object', + 'server' => 'string', + 'mailbox' => 'string', + 'msg_number' => 'int', + ), + 'notes_list_msgs' => + array ( + 0 => 'bool', + 'db' => 'string', + ), + 'notes_mark_read' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'user_name' => 'string', + 'note_id' => 'string', + ), + 'notes_mark_unread' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'user_name' => 'string', + 'note_id' => 'string', + ), + 'notes_nav_create' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'name' => 'string', + ), + 'notes_search' => + array ( + 0 => 'array', + 'database_name' => 'string', + 'keywords' => 'string', + ), + 'notes_unread' => + array ( + 0 => 'array', + 'database_name' => 'string', + 'user_name' => 'string', + ), + 'notes_version' => + array ( + 0 => 'float', + 'database_name' => 'string', + ), + 'nsapi_request_headers' => + array ( + 0 => 'array', + ), + 'nsapi_response_headers' => + array ( + 0 => 'array', + ), + 'nsapi_virtual' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'nthmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'number_format' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals=' => 'int', + 'decimal_separator=' => 'null|string', + 'thousands_separator=' => 'null|string', + ), + 'NumberFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + 'NumberFormatter::create' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + 'NumberFormatter::format' => + array ( + 0 => 'false|string', + 'num' => 'mixed', + 'type=' => 'int', + ), + 'NumberFormatter::formatCurrency' => + array ( + 0 => 'false|string', + 'amount' => 'float', + 'currency' => 'string', + ), + 'NumberFormatter::getAttribute' => + array ( + 0 => 'false|float|int', + 'attribute' => 'int', + ), + 'NumberFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'NumberFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'NumberFormatter::getLocale' => + array ( + 0 => 'string', + 'type=' => 'int', + ), + 'NumberFormatter::getPattern' => + array ( + 0 => 'false|string', + ), + 'NumberFormatter::getSymbol' => + array ( + 0 => 'false|string', + 'symbol' => 'int', + ), + 'NumberFormatter::getTextAttribute' => + array ( + 0 => 'false|string', + 'attribute' => 'int', + ), + 'NumberFormatter::parse' => + array ( + 0 => 'false|float|int', + 'string' => 'string', + 'type=' => 'int', + '&rw_offset=' => 'int', + ), + 'NumberFormatter::parseCurrency' => + array ( + 0 => 'false|float', + 'string' => 'string', + '&w_currency' => 'string', + '&rw_offset=' => 'int', + ), + 'NumberFormatter::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'float|int', + ), + 'NumberFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'NumberFormatter::setSymbol' => + array ( + 0 => 'bool', + 'symbol' => 'int', + 'value' => 'string', + ), + 'NumberFormatter::setTextAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'string', + ), + 'numfmt_create' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + 'numfmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'num' => 'float|int', + 'type=' => 'int', + ), + 'numfmt_format_currency' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'amount' => 'float', + 'currency' => 'string', + ), + 'numfmt_get_attribute' => + array ( + 0 => 'false|float|int', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + ), + 'numfmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_locale' => + array ( + 0 => 'string', + 'formatter' => 'NumberFormatter', + 'type=' => 'int', + ), + 'numfmt_get_pattern' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_symbol' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'symbol' => 'int', + ), + 'numfmt_get_text_attribute' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + ), + 'numfmt_parse' => + array ( + 0 => 'false|float|int', + 'formatter' => 'NumberFormatter', + 'string' => 'string', + 'type=' => 'int', + '&rw_offset=' => 'int', + ), + 'numfmt_parse_currency' => + array ( + 0 => 'false|float', + 'formatter' => 'NumberFormatter', + 'string' => 'string', + '&w_currency' => 'string', + '&rw_offset=' => 'int', + ), + 'numfmt_set_attribute' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + 'value' => 'float|int', + ), + 'numfmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'pattern' => 'string', + ), + 'numfmt_set_symbol' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'symbol' => 'int', + 'value' => 'string', + ), + 'numfmt_set_text_attribute' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + 'value' => 'string', + ), + 'OAuth::__construct' => + array ( + 0 => 'void', + 'consumer_key' => 'string', + 'consumer_secret' => 'string', + 'signature_method=' => 'string', + 'auth_type=' => 'int', + ), + 'OAuth::disableDebug' => + array ( + 0 => 'bool', + ), + 'OAuth::disableRedirects' => + array ( + 0 => 'bool', + ), + 'OAuth::disableSSLChecks' => + array ( + 0 => 'bool', + ), + 'OAuth::enableDebug' => + array ( + 0 => 'bool', + ), + 'OAuth::enableRedirects' => + array ( + 0 => 'bool', + ), + 'OAuth::enableSSLChecks' => + array ( + 0 => 'bool', + ), + 'OAuth::fetch' => + array ( + 0 => 'mixed', + 'protected_resource_url' => 'string', + 'extra_parameters=' => 'array', + 'http_method=' => 'string', + 'http_headers=' => 'array', + ), + 'OAuth::generateSignature' => + array ( + 0 => 'string', + 'http_method' => 'string', + 'url' => 'string', + 'extra_parameters=' => 'mixed', + ), + 'OAuth::getAccessToken' => + array ( + 0 => 'array|false', + 'access_token_url' => 'string', + 'auth_session_handle=' => 'string', + 'verifier_token=' => 'string', + 'http_method=' => 'string', + ), + 'OAuth::getCAPath' => + array ( + 0 => 'array', + ), + 'OAuth::getLastResponse' => + array ( + 0 => 'string', + ), + 'OAuth::getLastResponseHeaders' => + array ( + 0 => 'false|string', + ), + 'OAuth::getLastResponseInfo' => + array ( + 0 => 'array', + ), + 'OAuth::getRequestHeader' => + array ( + 0 => 'false|string', + 'http_method' => 'string', + 'url' => 'string', + 'extra_parameters=' => 'mixed', + ), + 'OAuth::getRequestToken' => + array ( + 0 => 'array|false', + 'request_token_url' => 'string', + 'callback_url=' => 'string', + 'http_method=' => 'string', + ), + 'OAuth::setAuthType' => + array ( + 0 => 'bool', + 'auth_type' => 'int', + ), + 'OAuth::setCAPath' => + array ( + 0 => 'mixed', + 'ca_path=' => 'string', + 'ca_info=' => 'string', + ), + 'OAuth::setNonce' => + array ( + 0 => 'mixed', + 'nonce' => 'string', + ), + 'OAuth::setRequestEngine' => + array ( + 0 => 'void', + 'reqengine' => 'int', + ), + 'OAuth::setRSACertificate' => + array ( + 0 => 'mixed', + 'cert' => 'string', + ), + 'OAuth::setSSLChecks' => + array ( + 0 => 'bool', + 'sslcheck' => 'int', + ), + 'OAuth::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'OAuth::setTimestamp' => + array ( + 0 => 'mixed', + 'timestamp' => 'string', + ), + 'OAuth::setToken' => + array ( + 0 => 'bool', + 'token' => 'string', + 'token_secret' => 'string', + ), + 'OAuth::setVersion' => + array ( + 0 => 'bool', + 'version' => 'string', + ), + 'oauth_get_sbs' => + array ( + 0 => 'string', + 'http_method' => 'string', + 'uri' => 'string', + 'parameters' => 'array', + ), + 'oauth_urlencode' => + array ( + 0 => 'string', + 'uri' => 'string', + ), + 'OAuthProvider::__construct' => + array ( + 0 => 'void', + 'params_array=' => 'array', + ), + 'OAuthProvider::addRequiredParameter' => + array ( + 0 => 'bool', + 'req_params' => 'string', + ), + 'OAuthProvider::callconsumerHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::callTimestampNonceHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::calltokenHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::checkOAuthRequest' => + array ( + 0 => 'void', + 'uri=' => 'string', + 'method=' => 'string', + ), + 'OAuthProvider::consumerHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'OAuthProvider::generateToken' => + array ( + 0 => 'string', + 'size' => 'int', + 'strong=' => 'bool', + ), + 'OAuthProvider::is2LeggedEndpoint' => + array ( + 0 => 'void', + 'params_array' => 'mixed', + ), + 'OAuthProvider::isRequestTokenEndpoint' => + array ( + 0 => 'void', + 'will_issue_request_token' => 'bool', + ), + 'OAuthProvider::removeRequiredParameter' => + array ( + 0 => 'bool', + 'req_params' => 'string', + ), + 'OAuthProvider::reportProblem' => + array ( + 0 => 'string', + 'oauthexception' => 'string', + 'send_headers=' => 'bool', + ), + 'OAuthProvider::setParam' => + array ( + 0 => 'bool', + 'param_key' => 'string', + 'param_val=' => 'mixed', + ), + 'OAuthProvider::setRequestTokenPath' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'OAuthProvider::timestampNonceHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'OAuthProvider::tokenHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'ob_clean' => + array ( + 0 => 'bool', + ), + 'ob_deflatehandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_end_clean' => + array ( + 0 => 'bool', + ), + 'ob_end_flush' => + array ( + 0 => 'bool', + ), + 'ob_etaghandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_flush' => + array ( + 0 => 'bool', + ), + 'ob_get_clean' => + array ( + 0 => 'false|string', + ), + 'ob_get_contents' => + array ( + 0 => 'false|string', + ), + 'ob_get_flush' => + array ( + 0 => 'false|string', + ), + 'ob_get_length' => + array ( + 0 => 'false|int', + ), + 'ob_get_level' => + array ( + 0 => 'int', + ), + 'ob_get_status' => + array ( + 0 => 'array', + 'full_status=' => 'bool', + ), + 'ob_gzhandler' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'flags' => 'int', + ), + 'ob_iconv_handler' => + array ( + 0 => 'string', + 'contents' => 'string', + 'status' => 'int', + ), + 'ob_implicit_flush' => + array ( + 0 => 'void', + 'enable=' => 'bool', + ), + 'ob_inflatehandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_list_handlers' => + array ( + 0 => 'list', + ), + 'ob_start' => + array ( + 0 => 'bool', + 'callback=' => 'array|callable|null|string', + 'chunk_size=' => 'int', + 'flags=' => 'int', + ), + 'ob_tidyhandler' => + array ( + 0 => 'string', + 'input' => 'string', + 'mode=' => 'int', + ), + 'oci_bind_array_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'param' => 'string', + '&rw_var' => 'array', + 'max_array_length' => 'int', + 'max_item_length=' => 'int', + 'type=' => 'int', + ), + 'oci_bind_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'param' => 'string', + '&rw_var' => 'mixed', + 'max_length=' => 'int', + 'type=' => 'int', + ), + 'oci_cancel' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_client_version' => + array ( + 0 => 'string', + ), + 'oci_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'OCICollection::append' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'OCICollection::assign' => + array ( + 0 => 'bool', + 'from' => 'OCI_Collection', + ), + 'OCICollection::assignElem' => + array ( + 0 => 'bool', + 'index' => 'int', + 'value' => 'mixed', + ), + 'OCICollection::free' => + array ( + 0 => 'bool', + ), + 'OCICollection::getElem' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'OCICollection::max' => + array ( + 0 => 'false|int', + ), + 'OCICollection::size' => + array ( + 0 => 'false|int', + ), + 'OCICollection::trim' => + array ( + 0 => 'bool', + 'num' => 'int', + ), + 'oci_collection_append' => + array ( + 0 => 'bool', + 'collection' => 'string', + ), + 'oci_collection_assign' => + array ( + 0 => 'bool', + 'to' => 'object', + ), + 'oci_collection_element_assign' => + array ( + 0 => 'bool', + 'collection' => 'int', + 'index' => 'string', + ), + 'oci_collection_element_get' => + array ( + 0 => 'string', + 'collection' => 'int', + ), + 'oci_collection_max' => + array ( + 0 => 'int', + ), + 'oci_collection_size' => + array ( + 0 => 'int', + ), + 'oci_collection_trim' => + array ( + 0 => 'bool', + 'collection' => 'int', + ), + 'oci_commit' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'oci_connect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_define_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'column' => 'string', + '&w_var' => 'mixed', + 'type=' => 'int', + ), + 'oci_error' => + array ( + 0 => 'array|false', + 'connection_or_statement=' => 'resource', + ), + 'oci_execute' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'mode=' => 'int', + ), + 'oci_fetch' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_fetch_all' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + '&w_output' => 'array', + 'offset=' => 'int', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'oci_fetch_array' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + 'mode=' => 'int', + ), + 'oci_fetch_assoc' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + ), + 'oci_fetch_object' => + array ( + 0 => 'false|object', + 'statement' => 'resource', + ), + 'oci_fetch_row' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + ), + 'oci_field_is_null' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_name' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_precision' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_scale' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_size' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_type' => + array ( + 0 => 'false|mixed', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_type_raw' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_free_collection' => + array ( + 0 => 'bool', + ), + 'oci_free_cursor' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_free_descriptor' => + array ( + 0 => 'bool', + ), + 'oci_free_statement' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_get_implicit' => + array ( + 0 => 'bool', + 'stmt' => 'mixed', + ), + 'oci_get_implicit_resultset' => + array ( + 0 => 'false|resource', + 'statement' => 'resource', + ), + 'oci_internal_debug' => + array ( + 0 => 'void', + 'onoff' => 'bool', + ), + 'OCILob::append' => + array ( + 0 => 'bool', + 'lob_from' => 'OCILob', + ), + 'OCILob::close' => + array ( + 0 => 'bool', + ), + 'OCILob::eof' => + array ( + 0 => 'bool', + ), + 'OCILob::erase' => + array ( + 0 => 'false|int', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'OCILob::export' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'OCILob::flush' => + array ( + 0 => 'bool', + 'flag=' => 'int', + ), + 'OCILob::free' => + array ( + 0 => 'bool', + ), + 'OCILob::getbuffering' => + array ( + 0 => 'bool', + ), + 'OCILob::import' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'OCILob::load' => + array ( + 0 => 'false|string', + ), + 'OCILob::read' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'OCILob::rewind' => + array ( + 0 => 'bool', + ), + 'OCILob::save' => + array ( + 0 => 'bool', + 'data' => 'string', + 'offset=' => 'int', + ), + 'OCILob::savefile' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + ), + 'OCILob::seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'OCILob::setbuffering' => + array ( + 0 => 'bool', + 'on_off' => 'bool', + ), + 'OCILob::size' => + array ( + 0 => 'false|int', + ), + 'OCILob::tell' => + array ( + 0 => 'false|int', + ), + 'OCILob::truncate' => + array ( + 0 => 'bool', + 'length=' => 'int', + ), + 'OCILob::write' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + 'OCILob::writeTemporary' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lob_type=' => 'int', + ), + 'OCILob::writetofile' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + 'start' => 'mixed', + 'length' => 'mixed', + ), + 'oci_lob_append' => + array ( + 0 => 'bool', + 'to' => 'object', + ), + 'oci_lob_close' => + array ( + 0 => 'bool', + ), + 'oci_lob_copy' => + array ( + 0 => 'bool', + 'to' => 'OCILob', + 'from' => 'OCILob', + 'length=' => 'int', + ), + 'oci_lob_eof' => + array ( + 0 => 'bool', + ), + 'oci_lob_erase' => + array ( + 0 => 'int', + 'lob' => 'int', + 'offset' => 'int', + ), + 'oci_lob_export' => + array ( + 0 => 'bool', + 'lob' => 'string', + 'filename' => 'int', + 'offset' => 'int', + ), + 'oci_lob_flush' => + array ( + 0 => 'bool', + 'lob' => 'int', + ), + 'oci_lob_import' => + array ( + 0 => 'bool', + 'lob' => 'string', + ), + 'oci_lob_is_equal' => + array ( + 0 => 'bool', + 'lob1' => 'OCILob', + 'lob2' => 'OCILob', + ), + 'oci_lob_load' => + array ( + 0 => 'string', + ), + 'oci_lob_read' => + array ( + 0 => 'string', + 'lob' => 'int', + ), + 'oci_lob_rewind' => + array ( + 0 => 'bool', + ), + 'oci_lob_save' => + array ( + 0 => 'bool', + 'lob' => 'string', + 'data' => 'int', + ), + 'oci_lob_seek' => + array ( + 0 => 'bool', + 'lob' => 'int', + 'offset' => 'int', + ), + 'oci_lob_size' => + array ( + 0 => 'int', + ), + 'oci_lob_tell' => + array ( + 0 => 'int', + ), + 'oci_lob_truncate' => + array ( + 0 => 'bool', + 'lob' => 'int', + ), + 'oci_lob_write' => + array ( + 0 => 'int', + 'lob' => 'string', + 'data' => 'int', + ), + 'oci_lob_write_temporary' => + array ( + 0 => 'bool', + 'value' => 'string', + 'lob_type' => 'int', + ), + 'oci_new_collection' => + array ( + 0 => 'OCICollection|false', + 'connection' => 'resource', + 'type_name' => 'string', + 'schema=' => 'string', + ), + 'oci_new_connect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_new_cursor' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'oci_new_descriptor' => + array ( + 0 => 'OCILob|false', + 'connection' => 'resource', + 'type=' => 'int', + ), + 'oci_num_fields' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + ), + 'oci_num_rows' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + ), + 'oci_parse' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'sql' => 'string', + ), + 'oci_password_change' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'username' => 'string', + 'old_password' => 'string', + 'new_password' => 'string', + ), + 'oci_pconnect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_register_taf_callback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'callback=' => 'callable', + ), + 'oci_result' => + array ( + 0 => 'false|mixed', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_rollback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'oci_server_version' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + ), + 'oci_set_action' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'action' => 'string', + ), + 'oci_set_call_timeout' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'timeout' => 'int', + ), + 'oci_set_client_identifier' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'client_id' => 'string', + ), + 'oci_set_client_info' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'client_info' => 'string', + ), + 'oci_set_db_operation' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'action' => 'string', + ), + 'oci_set_edition' => + array ( + 0 => 'bool', + 'edition' => 'string', + ), + 'oci_set_module_name' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'name' => 'string', + ), + 'oci_set_prefetch' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'rows' => 'int', + ), + 'oci_statement_type' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + ), + 'oci_unregister_taf_callback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'ocifetchinto' => + array ( + 0 => 'bool|int', + 'statement' => 'resource', + '&w_result' => 'array', + 'mode=' => 'int', + ), + 'ocigetbufferinglob' => + array ( + 0 => 'bool', + ), + 'ocisetbufferinglob' => + array ( + 0 => 'bool', + 'lob' => 'bool', + ), + 'octdec' => + array ( + 0 => 'float|int', + 'octal_string' => 'string', + ), + 'odbc_autocommit' => + array ( + 0 => 'bool|int', + 'odbc' => 'resource', + 'enable=' => 'bool', + ), + 'odbc_binmode' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'mode' => 'int', + ), + 'odbc_close' => + array ( + 0 => 'void', + 'odbc' => 'resource', + ), + 'odbc_close_all' => + array ( + 0 => 'void', + ), + 'odbc_columnprivileges' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'column' => 'string', + ), + 'odbc_columns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'table=' => 'null|string', + 'column=' => 'null|string', + ), + 'odbc_commit' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + ), + 'odbc_connect' => + array ( + 0 => 'false|resource', + 'dsn' => 'string', + 'user' => 'string', + 'password' => 'string', + 'cursor_option=' => 'int', + ), + 'odbc_cursor' => + array ( + 0 => 'string', + 'statement' => 'resource', + ), + 'odbc_data_source' => + array ( + 0 => 'array|false', + 'odbc' => 'resource', + 'fetch_type' => 'int', + ), + 'odbc_do' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + 'odbc_error' => + array ( + 0 => 'string', + 'odbc=' => 'resource', + ), + 'odbc_errormsg' => + array ( + 0 => 'string', + 'odbc=' => 'resource', + ), + 'odbc_exec' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + 'odbc_execute' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'params=' => 'array', + ), + 'odbc_fetch_array' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'odbc_fetch_into' => + array ( + 0 => 'int', + 'statement' => 'resource', + '&w_array' => 'array', + 'row=' => 'int', + ), + 'odbc_fetch_object' => + array ( + 0 => 'false|stdClass', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'odbc_fetch_row' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'row=' => 'int|null', + ), + 'odbc_field_len' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_name' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_num' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'string', + ), + 'odbc_field_precision' => + array ( + 0 => 'int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_scale' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_type' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_foreignkeys' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'pk_catalog' => 'null|string', + 'pk_schema' => 'string', + 'pk_table' => 'string', + 'fk_catalog' => 'string', + 'fk_schema' => 'string', + 'fk_table' => 'string', + ), + 'odbc_free_result' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'odbc_gettypeinfo' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'data_type=' => 'int', + ), + 'odbc_longreadlen' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'length' => 'int', + ), + 'odbc_next_result' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'odbc_num_fields' => + array ( + 0 => 'int', + 'statement' => 'resource', + ), + 'odbc_num_rows' => + array ( + 0 => 'int', + 'statement' => 'resource', + ), + 'odbc_pconnect' => + array ( + 0 => 'false|resource', + 'dsn' => 'string', + 'user' => 'string', + 'password' => 'string', + 'cursor_option=' => 'int', + ), + 'odbc_prepare' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + 'odbc_primarykeys' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + ), + 'odbc_procedurecolumns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'procedure=' => 'null|string', + 'column=' => 'null|string', + ), + 'odbc_procedures' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'procedure=' => 'null|string', + ), + 'odbc_result' => + array ( + 0 => 'bool|null|string', + 'statement' => 'resource', + 'field' => 'int|string', + ), + 'odbc_result_all' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'format=' => 'string', + ), + 'odbc_rollback' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + ), + 'odbc_setoption' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + 'which' => 'int', + 'option' => 'int', + 'value' => 'int', + ), + 'odbc_specialcolumns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'type' => 'int', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'scope' => 'int', + 'nullable' => 'int', + ), + 'odbc_statistics' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'unique' => 'int', + 'accuracy' => 'int', + ), + 'odbc_tableprivileges' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + ), + 'odbc_tables' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'table=' => 'null|string', + 'types=' => 'null|string', + ), + 'opcache_compile_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'opcache_get_configuration' => + array ( + 0 => 'array', + ), + 'opcache_get_status' => + array ( + 0 => 'array|false', + 'include_scripts=' => 'bool', + ), + 'opcache_invalidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'force=' => 'bool', + ), + 'opcache_is_script_cached' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'opcache_reset' => + array ( + 0 => 'bool', + ), + 'openal_buffer_create' => + array ( + 0 => 'resource', + ), + 'openal_buffer_data' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + 'format' => 'int', + 'data' => 'string', + 'freq' => 'int', + ), + 'openal_buffer_destroy' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + ), + 'openal_buffer_get' => + array ( + 0 => 'int', + 'buffer' => 'resource', + 'property' => 'int', + ), + 'openal_buffer_loadwav' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + 'wavfile' => 'string', + ), + 'openal_context_create' => + array ( + 0 => 'resource', + 'device' => 'resource', + ), + 'openal_context_current' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_destroy' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_process' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_suspend' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_device_close' => + array ( + 0 => 'bool', + 'device' => 'resource', + ), + 'openal_device_open' => + array ( + 0 => 'false|resource', + 'device_desc=' => 'string', + ), + 'openal_listener_get' => + array ( + 0 => 'mixed', + 'property' => 'int', + ), + 'openal_listener_set' => + array ( + 0 => 'bool', + 'property' => 'int', + 'setting' => 'mixed', + ), + 'openal_source_create' => + array ( + 0 => 'resource', + ), + 'openal_source_destroy' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_get' => + array ( + 0 => 'mixed', + 'source' => 'resource', + 'property' => 'int', + ), + 'openal_source_pause' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_play' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_rewind' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_set' => + array ( + 0 => 'bool', + 'source' => 'resource', + 'property' => 'int', + 'setting' => 'mixed', + ), + 'openal_source_stop' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_stream' => + array ( + 0 => 'resource', + 'source' => 'resource', + 'format' => 'int', + 'rate' => 'int', + ), + 'opendir' => + array ( + 0 => 'false|resource', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'openlog' => + array ( + 0 => 'true', + 'prefix' => 'string', + 'flags' => 'int', + 'facility' => 'int', + ), + 'openssl_cipher_iv_length' => + array ( + 0 => 'false|int', + 'cipher_algo' => 'string', + ), + 'openssl_cipher_key_length' => + array ( + 0 => 'false|int<1, max>', + 'cipher_algo' => 'non-empty-string', + ), + 'openssl_csr_export' => + array ( + 0 => 'bool', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_csr_export_to_file' => + array ( + 0 => 'bool', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_csr_get_public_key' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'short_names=' => 'bool', + ), + 'openssl_csr_get_subject' => + array ( + 0 => 'array|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'short_names=' => 'bool', + ), + 'openssl_csr_new' => + array ( + 0 => 'OpenSSLCertificateSigningRequest|false', + 'distinguished_names' => 'array', + '&w_private_key' => 'OpenSSLAsymmetricKey', + 'options=' => 'array|null', + 'extra_attributes=' => 'array|null', + ), + 'openssl_csr_sign' => + array ( + 0 => 'OpenSSLCertificate|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'ca_certificate' => 'OpenSSLCertificate|null|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'days' => 'int', + 'options=' => 'array|null', + 'serial=' => 'int', + ), + 'openssl_decrypt' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + 'tag=' => 'null|string', + 'aad=' => 'string', + ), + 'openssl_dh_compute_key' => + array ( + 0 => 'false|string', + 'public_key' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey', + ), + 'openssl_digest' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'digest_algo' => 'string', + 'binary=' => 'bool', + ), + 'openssl_encrypt' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + '&w_tag=' => 'string', + 'aad=' => 'string', + 'tag_length=' => 'int', + ), + 'openssl_error_string' => + array ( + 0 => 'false|string', + ), + 'openssl_free_key' => + array ( + 0 => 'void', + 'key' => 'OpenSSLAsymmetricKey', + ), + 'openssl_get_cert_locations' => + array ( + 0 => 'array', + ), + 'openssl_get_cipher_methods' => + array ( + 0 => 'array', + 'aliases=' => 'bool', + ), + 'openssl_get_curve_names' => + array ( + 0 => 'list', + ), + 'openssl_get_md_methods' => + array ( + 0 => 'array', + 'aliases=' => 'bool', + ), + 'openssl_get_privatekey' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase=' => 'null|string', + ), + 'openssl_get_publickey' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + 'openssl_open' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_output' => 'string', + 'encrypted_key' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'cipher_algo' => 'string', + 'iv=' => 'null|string', + ), + 'openssl_pbkdf2' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'salt' => 'string', + 'key_length' => 'int', + 'iterations' => 'int', + 'digest_algo=' => 'string', + ), + 'openssl_pkcs12_export' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + '&w_output' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'openssl_pkcs12_export_to_file' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'output_filename' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'openssl_pkcs12_read' => + array ( + 0 => 'bool', + 'pkcs12' => 'string', + '&w_certificates' => 'array', + 'passphrase' => 'string', + ), + 'openssl_pkcs7_decrypt' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key=' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|null|string', + ), + 'openssl_pkcs7_encrypt' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|list|string', + 'headers' => 'array|null', + 'flags=' => 'int', + 'cipher_algo=' => 'int', + ), + 'openssl_pkcs7_read' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_certificates' => 'array', + ), + 'openssl_pkcs7_sign' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'headers' => 'array|null', + 'flags=' => 'int', + 'untrusted_certificates_filename=' => 'null|string', + ), + 'openssl_pkcs7_verify' => + array ( + 0 => 'bool|int', + 'input_filename' => 'string', + 'flags' => 'int', + 'signers_certificates_filename=' => 'null|string', + 'ca_info=' => 'array', + 'untrusted_certificates_filename=' => 'null|string', + 'content=' => 'null|string', + 'output_filename=' => 'null|string', + ), + 'openssl_pkey_derive' => + array ( + 0 => 'false|string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'key_length=' => 'int', + ), + 'openssl_pkey_export' => + array ( + 0 => 'bool', + 'key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + '&w_output' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array|null', + ), + 'openssl_pkey_export_to_file' => + array ( + 0 => 'bool', + 'key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'output_filename' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array|null', + ), + 'openssl_pkey_free' => + array ( + 0 => 'void', + 'key' => 'OpenSSLAsymmetricKey', + ), + 'openssl_pkey_get_details' => + array ( + 0 => 'array|false', + 'key' => 'OpenSSLAsymmetricKey', + ), + 'openssl_pkey_get_private' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', + 'passphrase=' => 'null|string', + ), + 'openssl_pkey_get_public' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + 'openssl_pkey_new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'options=' => 'array|null', + ), + 'openssl_private_decrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + 'openssl_private_encrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + 'openssl_public_decrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + 'openssl_public_encrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + 'openssl_random_pseudo_bytes' => + array ( + 0 => 'string', + 'length' => 'int', + '&w_strong_result=' => 'bool', + ), + 'openssl_seal' => + array ( + 0 => 'false|int', + 'data' => 'string', + '&w_sealed_data' => 'string', + '&w_encrypted_keys' => 'array', + 'public_key' => 'list', + 'cipher_algo' => 'string', + '&rw_iv=' => 'string', + ), + 'openssl_sign' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_signature' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'algorithm=' => 'int|string', + ), + 'openssl_spki_export' => + array ( + 0 => 'false|string', + 'spki' => 'string', + ), + 'openssl_spki_export_challenge' => + array ( + 0 => 'false|string', + 'spki' => 'string', + ), + 'openssl_spki_new' => + array ( + 0 => 'false|string', + 'private_key' => 'OpenSSLAsymmetricKey', + 'challenge' => 'string', + 'digest_algo=' => 'int', + ), + 'openssl_spki_verify' => + array ( + 0 => 'bool', + 'spki' => 'string', + ), + 'openssl_verify' => + array ( + 0 => '-1|0|1|false', + 'data' => 'string', + 'signature' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'algorithm=' => 'int|string', + ), + 'openssl_x509_check_private_key' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + 'openssl_x509_checkpurpose' => + array ( + 0 => 'bool|int', + 'certificate' => 'OpenSSLCertificate|string', + 'purpose' => 'int', + 'ca_info=' => 'array', + 'untrusted_certificates_file=' => 'null|string', + ), + 'openssl_x509_export' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_x509_export_to_file' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_x509_fingerprint' => + array ( + 0 => 'false|string', + 'certificate' => 'OpenSSLCertificate|string', + 'digest_algo=' => 'string', + 'binary=' => 'bool', + ), + 'openssl_x509_free' => + array ( + 0 => 'void', + 'certificate' => 'OpenSSLCertificate', + ), + 'openssl_x509_parse' => + array ( + 0 => 'array|false', + 'certificate' => 'OpenSSLCertificate|string', + 'short_names=' => 'bool', + ), + 'openssl_x509_read' => + array ( + 0 => 'OpenSSLCertificate|false', + 'certificate' => 'OpenSSLCertificate|string', + ), + 'openssl_x509_verify' => + array ( + 0 => 'int', + 'certificate' => 'OpenSSLCertificate|string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', + ), + 'ord' => + array ( + 0 => 'int<0, 255>', + 'character' => 'string', + ), + 'OuterIterator::current' => + array ( + 0 => 'mixed', + ), + 'OuterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'OuterIterator::key' => + array ( + 0 => 'int|string', + ), + 'OuterIterator::next' => + array ( + 0 => 'void', + ), + 'OuterIterator::rewind' => + array ( + 0 => 'void', + ), + 'OuterIterator::valid' => + array ( + 0 => 'bool', + ), + 'OutOfBoundsException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OutOfBoundsException::__toString' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getCode' => + array ( + 0 => 'int', + ), + 'OutOfBoundsException::getFile' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getLine' => + array ( + 0 => 'int', + ), + 'OutOfBoundsException::getMessage' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OutOfBoundsException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OutOfBoundsException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OutOfRangeException::__toString' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getCode' => + array ( + 0 => 'int', + ), + 'OutOfRangeException::getFile' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getLine' => + array ( + 0 => 'int', + ), + 'OutOfRangeException::getMessage' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OutOfRangeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OutOfRangeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'output_add_rewrite_var' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'output_cache_disable' => + array ( + 0 => 'void', + ), + 'output_cache_disable_compression' => + array ( + 0 => 'void', + ), + 'output_cache_exists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'lifetime' => 'int', + ), + 'output_cache_fetch' => + array ( + 0 => 'string', + 'key' => 'string', + 'function' => 'mixed', + 'lifetime' => 'int', + ), + 'output_cache_get' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + 'lifetime' => 'int', + ), + 'output_cache_output' => + array ( + 0 => 'string', + 'key' => 'string', + 'function' => 'mixed', + 'lifetime' => 'int', + ), + 'output_cache_put' => + array ( + 0 => 'bool', + 'key' => 'string', + 'data' => 'mixed', + ), + 'output_cache_remove' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + ), + 'output_cache_remove_key' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'output_cache_remove_url' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'output_cache_stop' => + array ( + 0 => 'void', + ), + 'output_reset_rewrite_vars' => + array ( + 0 => 'bool', + ), + 'outputformatObj::getOption' => + array ( + 0 => 'string', + 'property_name' => 'string', + ), + 'outputformatObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'outputformatObj::setOption' => + array ( + 0 => 'void', + 'property_name' => 'string', + 'new_value' => 'string', + ), + 'outputformatObj::validate' => + array ( + 0 => 'int', + ), + 'OverflowException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OverflowException::__toString' => + array ( + 0 => 'string', + ), + 'OverflowException::getCode' => + array ( + 0 => 'int', + ), + 'OverflowException::getFile' => + array ( + 0 => 'string', + ), + 'OverflowException::getLine' => + array ( + 0 => 'int', + ), + 'OverflowException::getMessage' => + array ( + 0 => 'string', + ), + 'OverflowException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OverflowException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OverflowException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'overload' => + array ( + 0 => 'mixed', + 'class_name' => 'string', + ), + 'override_function' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'function_args' => 'string', + 'function_code' => 'string', + ), + 'OwsrequestObj::__construct' => + array ( + 0 => 'void', + ), + 'OwsrequestObj::addParameter' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'OwsrequestObj::getName' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'OwsrequestObj::getValue' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'OwsrequestObj::getValueByName' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'OwsrequestObj::loadParams' => + array ( + 0 => 'int', + ), + 'OwsrequestObj::setParameter' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'pack' => + array ( + 0 => 'string', + 'format' => 'string', + '...values=' => 'mixed', + ), + 'parallel\\Future::done' => + array ( + 0 => 'bool', + ), + 'parallel\\Future::select' => + array ( + 0 => 'mixed', + '&resolving' => 'array', + '&w_resolved' => 'array', + '&w_errored' => 'array', + '&w_timedout=' => 'array', + 'timeout=' => 'int', + ), + 'parallel\\Future::value' => + array ( + 0 => 'mixed', + 'timeout=' => 'int', + ), + 'parallel\\Runtime::__construct' => + array ( + 0 => 'void', + 'arg' => 'array|string', + ), + 'parallel\\Runtime::__construct\'1' => + array ( + 0 => 'void', + 'bootstrap' => 'string', + 'configuration' => 'array', + ), + 'parallel\\Runtime::close' => + array ( + 0 => 'void', + ), + 'parallel\\Runtime::kill' => + array ( + 0 => 'void', + ), + 'parallel\\Runtime::run' => + array ( + 0 => 'null|parallel\\Future', + 'closure' => 'Closure', + 'args=' => 'array', + ), + 'ParentIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + ), + 'ParentIterator::accept' => + array ( + 0 => 'bool', + ), + 'ParentIterator::getChildren' => + array ( + 0 => 'ParentIterator|null', + ), + 'ParentIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'ParentIterator::next' => + array ( + 0 => 'void', + ), + 'ParentIterator::rewind' => + array ( + 0 => 'void', + ), + 'ParentIterator::valid' => + array ( + 0 => 'bool', + ), + 'Parle\\Lexer::advance' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::build' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::callout' => + array ( + 0 => 'void', + 'id' => 'int', + 'callback' => 'callable', + ), + 'Parle\\Lexer::consume' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'Parle\\Lexer::dump' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::getToken' => + array ( + 0 => 'Parle\\Token', + ), + 'Parle\\Lexer::insertMacro' => + array ( + 0 => 'void', + 'name' => 'string', + 'regex' => 'string', + ), + 'Parle\\Lexer::push' => + array ( + 0 => 'void', + 'regex' => 'string', + 'id' => 'int', + ), + 'Parle\\Lexer::reset' => + array ( + 0 => 'void', + 'pos' => 'int', + ), + 'Parle\\Parser::advance' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::build' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::consume' => + array ( + 0 => 'void', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\Parser::dump' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::errorInfo' => + array ( + 0 => 'Parle\\ErrorInfo', + ), + 'Parle\\Parser::left' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::nonassoc' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::precedence' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::push' => + array ( + 0 => 'int', + 'name' => 'string', + 'rule' => 'string', + ), + 'Parle\\Parser::reset' => + array ( + 0 => 'void', + 'tokenId' => 'int', + ), + 'Parle\\Parser::right' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::sigil' => + array ( + 0 => 'string', + 'idx' => 'array', + ), + 'Parle\\Parser::token' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::tokenId' => + array ( + 0 => 'int', + 'token' => 'string', + ), + 'Parle\\Parser::trace' => + array ( + 0 => 'string', + ), + 'Parle\\Parser::validate' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\RLexer::advance' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::build' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::callout' => + array ( + 0 => 'void', + 'id' => 'int', + 'callback' => 'callable', + ), + 'Parle\\RLexer::consume' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'Parle\\RLexer::dump' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::getToken' => + array ( + 0 => 'Parle\\Token', + ), + 'parle\\rlexer::insertMacro' => + array ( + 0 => 'void', + 'name' => 'string', + 'regex' => 'string', + ), + 'Parle\\RLexer::push' => + array ( + 0 => 'void', + 'state' => 'string', + 'regex' => 'string', + 'newState' => 'string', + ), + 'Parle\\RLexer::pushState' => + array ( + 0 => 'int', + 'state' => 'string', + ), + 'Parle\\RLexer::reset' => + array ( + 0 => 'void', + 'pos' => 'int', + ), + 'Parle\\RParser::advance' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::build' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::consume' => + array ( + 0 => 'void', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\RParser::dump' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::errorInfo' => + array ( + 0 => 'Parle\\ErrorInfo', + ), + 'Parle\\RParser::left' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::nonassoc' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::precedence' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::push' => + array ( + 0 => 'int', + 'name' => 'string', + 'rule' => 'string', + ), + 'Parle\\RParser::reset' => + array ( + 0 => 'void', + 'tokenId' => 'int', + ), + 'Parle\\RParser::right' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::sigil' => + array ( + 0 => 'string', + 'idx' => 'array', + ), + 'Parle\\RParser::token' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::tokenId' => + array ( + 0 => 'int', + 'token' => 'string', + ), + 'Parle\\RParser::trace' => + array ( + 0 => 'string', + ), + 'Parle\\RParser::validate' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\Stack::pop' => + array ( + 0 => 'void', + ), + 'Parle\\Stack::push' => + array ( + 0 => 'void', + 'item' => 'mixed', + ), + 'parse_ini_file' => + array ( + 0 => 'array|false', + 'filename' => 'string', + 'process_sections=' => 'bool', + 'scanner_mode=' => 'int', + ), + 'parse_ini_string' => + array ( + 0 => 'array|false', + 'ini_string' => 'string', + 'process_sections=' => 'bool', + 'scanner_mode=' => 'int', + ), + 'parse_str' => + array ( + 0 => 'void', + 'string' => 'string', + '&w_result' => 'array', + ), + 'parse_url' => + array ( + 0 => 'array|false|int|null|string', + 'url' => 'string', + 'component=' => 'int', + ), + 'ParseError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ParseError::__toString' => + array ( + 0 => 'string', + ), + 'ParseError::getCode' => + array ( + 0 => 'int', + ), + 'ParseError::getFile' => + array ( + 0 => 'string', + ), + 'ParseError::getLine' => + array ( + 0 => 'int', + ), + 'ParseError::getMessage' => + array ( + 0 => 'string', + ), + 'ParseError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ParseError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ParseError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'parsekit_compile_file' => + array ( + 0 => 'array', + 'filename' => 'string', + 'errors=' => 'array', + 'options=' => 'int', + ), + 'parsekit_compile_string' => + array ( + 0 => 'array', + 'phpcode' => 'string', + 'errors=' => 'array', + 'options=' => 'int', + ), + 'parsekit_func_arginfo' => + array ( + 0 => 'array', + 'function' => 'mixed', + ), + 'passthru' => + array ( + 0 => 'void', + 'command' => 'string', + '&w_result_code=' => 'int', + ), + 'password_get_info' => + array ( + 0 => 'array', + 'hash' => 'string', + ), + 'password_hash' => + array ( + 0 => 'string', + 'password' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + 'password_make_salt' => + array ( + 0 => 'bool', + 'password' => 'string', + 'hash' => 'string', + ), + 'password_needs_rehash' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + 'password_verify' => + array ( + 0 => 'bool', + 'password' => 'string', + 'hash' => 'string', + ), + 'pathinfo' => + array ( + 0 => 'array|string', + 'path' => 'string', + 'flags=' => 'int', + ), + 'pclose' => + array ( + 0 => 'int', + 'handle' => 'resource', + ), + 'pcnlt_sigwaitinfo' => + array ( + 0 => 'int', + 'set' => 'array', + '&w_siginfo' => 'array', + ), + 'pcntl_alarm' => + array ( + 0 => 'int', + 'seconds' => 'int', + ), + 'pcntl_async_signals' => + array ( + 0 => 'bool', + 'enable=' => 'bool|null', + ), + 'pcntl_errno' => + array ( + 0 => 'int', + ), + 'pcntl_exec' => + array ( + 0 => 'false', + 'path' => 'string', + 'args=' => 'array', + 'env_vars=' => 'array', + ), + 'pcntl_fork' => + array ( + 0 => 'int', + ), + 'pcntl_get_last_error' => + array ( + 0 => 'int', + ), + 'pcntl_getpriority' => + array ( + 0 => 'int', + 'process_id=' => 'int|null', + 'mode=' => 'int', + ), + 'pcntl_setpriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + 'process_id=' => 'int|null', + 'mode=' => 'int', + ), + 'pcntl_signal' => + array ( + 0 => 'bool', + 'signal' => 'int', + 'handler' => 'callable():void|callable(int):void|callable(int, array):void|int', + 'restart_syscalls=' => 'bool', + ), + 'pcntl_signal_dispatch' => + array ( + 0 => 'bool', + ), + 'pcntl_signal_get_handler' => + array ( + 0 => 'int|string', + 'signal' => 'int', + ), + 'pcntl_sigprocmask' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'signals' => 'array', + '&w_old_signals=' => 'array', + ), + 'pcntl_sigtimedwait' => + array ( + 0 => 'int', + 'signals' => 'array', + '&w_info=' => 'array', + 'seconds=' => 'int', + 'nanoseconds=' => 'int', + ), + 'pcntl_sigwaitinfo' => + array ( + 0 => 'int', + 'signals' => 'array', + '&w_info=' => 'array', + ), + 'pcntl_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'pcntl_wait' => + array ( + 0 => 'int', + '&w_status' => 'int', + 'flags=' => 'int', + '&w_resource_usage=' => 'array', + ), + 'pcntl_waitpid' => + array ( + 0 => 'int', + 'process_id' => 'int', + '&w_status' => 'int', + 'flags=' => 'int', + '&w_resource_usage=' => 'array', + ), + 'pcntl_wexitstatus' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'pcntl_wifcontinued' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifexited' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifsignaled' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifstopped' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wstopsig' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'pcntl_wtermsig' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'PDF_activate_item' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'id' => 'int', + ), + 'PDF_add_launchlink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'PDF_add_locallink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDF_add_nameddest' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_note' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'PDF_add_pdflink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'bottom_left_x' => 'float', + 'bottom_left_y' => 'float', + 'up_right_x' => 'float', + 'up_right_y' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDF_add_table_cell' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'column' => 'int', + 'row' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_textflow' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_thumbnail' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + ), + 'PDF_add_weblink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'url' => 'string', + ), + 'PDF_arc' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_arcn' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_attach_file' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'description' => 'string', + 'author' => 'string', + 'mimetype' => 'string', + 'icon' => 'string', + ), + 'PDF_begin_document' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_begin_font' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + 'optlist' => 'string', + ), + 'PDF_begin_glyph' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'glyphname' => 'string', + 'wx' => 'float', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + ), + 'PDF_begin_item' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'tag' => 'string', + 'optlist' => 'string', + ), + 'PDF_begin_layer' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'layer' => 'int', + ), + 'PDF_begin_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_begin_page_ext' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDF_begin_pattern' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'PDF_begin_template' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_begin_template_ext' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDF_circle' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + ), + 'PDF_clip' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_close' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_close_image' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'image' => 'int', + ), + 'PDF_close_pdi' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'doc' => 'int', + ), + 'PDF_close_pdi_page' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'page' => 'int', + ), + 'PDF_closepath' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_closepath_fill_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_closepath_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_concat' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDF_continue_text' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'text' => 'string', + ), + 'PDF_create_3dview' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'username' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_action' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_annotation' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_bookmark' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_field' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'name' => 'string', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_fieldgroup' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_gstate' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_create_pvf' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'data' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_textflow' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_curveto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'PDF_define_layer' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_delete' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_delete_pvf' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + ), + 'PDF_delete_table' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'optlist' => 'string', + ), + 'PDF_delete_textflow' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + ), + 'PDF_encoding_set_char' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'encoding' => 'string', + 'slot' => 'int', + 'glyphname' => 'string', + 'uv' => 'int', + ), + 'PDF_end_document' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_end_font' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_glyph' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_item' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'id' => 'int', + ), + 'PDF_end_layer' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_page' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_end_page_ext' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_end_pattern' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_end_template' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_endpath' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill_imageblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'image' => 'int', + 'optlist' => 'string', + ), + 'PDF_fill_pdfblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'contents' => 'int', + 'optlist' => 'string', + ), + 'PDF_fill_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill_textblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_findfont' => + array ( + 0 => 'int', + 'p' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed' => 'int', + ), + 'PDF_fit_image' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_pdi_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_table' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_textflow' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_textline' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_get_apiname' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + ), + 'PDF_get_buffer' => + array ( + 0 => 'string', + 'p' => 'resource', + ), + 'PDF_get_errmsg' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + ), + 'PDF_get_errnum' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + ), + 'PDF_get_majorversion' => + array ( + 0 => 'int', + ), + 'PDF_get_minorversion' => + array ( + 0 => 'int', + ), + 'PDF_get_parameter' => + array ( + 0 => 'string', + 'p' => 'resource', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDF_get_pdi_parameter' => + array ( + 0 => 'string', + 'p' => 'resource', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDF_get_pdi_value' => + array ( + 0 => 'float', + 'p' => 'resource', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDF_get_value' => + array ( + 0 => 'float', + 'p' => 'resource', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDF_info_font' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'font' => 'int', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDF_info_matchbox' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'boxname' => 'string', + 'num' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_table' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_textflow' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_textline' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDF_initgraphics' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_lineto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_load_3ddata' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_font' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_iccprofile' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'profilename' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_image' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'imagetype' => 'string', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_makespotcolor' => + array ( + 0 => 'int', + 'p' => 'resource', + 'spotname' => 'string', + ), + 'PDF_moveto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_new' => + array ( + 0 => 'resource', + ), + 'PDF_open_ccitt' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'bitreverse' => 'int', + 'k' => 'int', + 'blackls1' => 'int', + ), + 'PDF_open_file' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'filename' => 'string', + ), + 'PDF_open_image' => + array ( + 0 => 'int', + 'p' => 'resource', + 'imagetype' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'PDF_open_image_file' => + array ( + 0 => 'int', + 'p' => 'resource', + 'imagetype' => 'string', + 'filename' => 'string', + 'stringparam' => 'string', + 'intparam' => 'int', + ), + 'PDF_open_memory_image' => + array ( + 0 => 'int', + 'p' => 'resource', + 'image' => 'resource', + ), + 'PDF_open_pdi' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + 'length' => 'int', + ), + 'PDF_open_pdi_document' => + array ( + 0 => 'int', + 'p' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_open_pdi_page' => + array ( + 0 => 'int', + 'p' => 'resource', + 'doc' => 'int', + 'pagenumber' => 'int', + 'optlist' => 'string', + ), + 'PDF_pcos_get_number' => + array ( + 0 => 'float', + 'p' => 'resource', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDF_pcos_get_stream' => + array ( + 0 => 'string', + 'p' => 'resource', + 'doc' => 'int', + 'optlist' => 'string', + 'path' => 'string', + ), + 'PDF_pcos_get_string' => + array ( + 0 => 'string', + 'p' => 'resource', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDF_place_image' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'PDF_place_pdi_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDF_process_pdi' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'doc' => 'int', + 'page' => 'int', + 'optlist' => 'string', + ), + 'PDF_rect' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_restore' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_resume_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_rotate' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'phi' => 'float', + ), + 'PDF_save' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_scale' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDF_set_border_color' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_set_border_dash' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'black' => 'float', + 'white' => 'float', + ), + 'PDF_set_border_style' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'style' => 'string', + 'width' => 'float', + ), + 'PDF_set_gstate' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'gstate' => 'int', + ), + 'PDF_set_info' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'PDF_set_layer_dependency' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_set_parameter' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'PDF_set_text_pos' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_set_value' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'float', + ), + 'PDF_setcolor' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'fstype' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'PDF_setdash' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'b' => 'float', + 'w' => 'float', + ), + 'PDF_setdashpattern' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_setflat' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'flatness' => 'float', + ), + 'PDF_setfont' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDF_setgray' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setgray_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setgray_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setlinecap' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'linecap' => 'int', + ), + 'PDF_setlinejoin' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'value' => 'int', + ), + 'PDF_setlinewidth' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'width' => 'float', + ), + 'PDF_setmatrix' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDF_setmiterlimit' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'miter' => 'float', + ), + 'PDF_setrgbcolor' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_setrgbcolor_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_setrgbcolor_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_shading' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'shtype' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'PDF_shading_pattern' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'shading' => 'int', + 'optlist' => 'string', + ), + 'PDF_shfill' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'shading' => 'int', + ), + 'PDF_show' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'text' => 'string', + ), + 'PDF_show_boxed' => + array ( + 0 => 'int', + 'p' => 'resource', + 'text' => 'string', + 'left' => 'float', + 'top' => 'float', + 'width' => 'float', + 'height' => 'float', + 'mode' => 'string', + 'feature' => 'string', + ), + 'PDF_show_xy' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_skew' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_stringwidth' => + array ( + 0 => 'float', + 'p' => 'resource', + 'text' => 'string', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDF_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_suspend_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_translate' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'tx' => 'float', + 'ty' => 'float', + ), + 'PDF_utf16_to_utf8' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf16string' => 'string', + ), + 'PDF_utf32_to_utf16' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf32string' => 'string', + 'ordering' => 'string', + ), + 'PDF_utf8_to_utf16' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf8string' => 'string', + 'ordering' => 'string', + ), + 'PDFlib::activate_item' => + array ( + 0 => 'bool', + 'id' => 'mixed', + ), + 'PDFlib::add_launchlink' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'PDFlib::add_locallink' => + array ( + 0 => 'bool', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDFlib::add_nameddest' => + array ( + 0 => 'bool', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_note' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'PDFlib::add_pdflink' => + array ( + 0 => 'bool', + 'bottom_left_x' => 'float', + 'bottom_left_y' => 'float', + 'up_right_x' => 'float', + 'up_right_y' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDFlib::add_table_cell' => + array ( + 0 => 'int', + 'table' => 'int', + 'column' => 'int', + 'row' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_textflow' => + array ( + 0 => 'int', + 'textflow' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_thumbnail' => + array ( + 0 => 'bool', + 'image' => 'int', + ), + 'PDFlib::add_weblink' => + array ( + 0 => 'bool', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'url' => 'string', + ), + 'PDFlib::arc' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::arcn' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::attach_file' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'description' => 'string', + 'author' => 'string', + 'mimetype' => 'string', + 'icon' => 'string', + ), + 'PDFlib::begin_document' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::begin_font' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::begin_glyph' => + array ( + 0 => 'bool', + 'glyphname' => 'string', + 'wx' => 'float', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + ), + 'PDFlib::begin_item' => + array ( + 0 => 'int', + 'tag' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::begin_layer' => + array ( + 0 => 'bool', + 'layer' => 'int', + ), + 'PDFlib::begin_page' => + array ( + 0 => 'bool', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::begin_page_ext' => + array ( + 0 => 'bool', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::begin_pattern' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'PDFlib::begin_template' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::begin_template_ext' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::circle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + ), + 'PDFlib::clip' => + array ( + 0 => 'bool', + ), + 'PDFlib::close' => + array ( + 0 => 'bool', + ), + 'PDFlib::close_image' => + array ( + 0 => 'bool', + 'image' => 'int', + ), + 'PDFlib::close_pdi' => + array ( + 0 => 'bool', + 'doc' => 'int', + ), + 'PDFlib::close_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + ), + 'PDFlib::closepath' => + array ( + 0 => 'bool', + ), + 'PDFlib::closepath_fill_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::closepath_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::concat' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDFlib::continue_text' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'PDFlib::create_3dview' => + array ( + 0 => 'int', + 'username' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_action' => + array ( + 0 => 'int', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_annotation' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_bookmark' => + array ( + 0 => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_field' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'name' => 'string', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_fieldgroup' => + array ( + 0 => 'bool', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_gstate' => + array ( + 0 => 'int', + 'optlist' => 'string', + ), + 'PDFlib::create_pvf' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'data' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_textflow' => + array ( + 0 => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::curveto' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'PDFlib::define_layer' => + array ( + 0 => 'int', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::delete' => + array ( + 0 => 'bool', + ), + 'PDFlib::delete_pvf' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'PDFlib::delete_table' => + array ( + 0 => 'bool', + 'table' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::delete_textflow' => + array ( + 0 => 'bool', + 'textflow' => 'int', + ), + 'PDFlib::encoding_set_char' => + array ( + 0 => 'bool', + 'encoding' => 'string', + 'slot' => 'int', + 'glyphname' => 'string', + 'uv' => 'int', + ), + 'PDFlib::end_document' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::end_font' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_glyph' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_item' => + array ( + 0 => 'bool', + 'id' => 'int', + ), + 'PDFlib::end_layer' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_page' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::end_page_ext' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::end_pattern' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::end_template' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::endpath' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::fill' => + array ( + 0 => 'bool', + ), + 'PDFlib::fill_imageblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'image' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::fill_pdfblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'contents' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::fill_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::fill_textblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::findfont' => + array ( + 0 => 'int', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed' => 'int', + ), + 'PDFlib::fit_image' => + array ( + 0 => 'bool', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_table' => + array ( + 0 => 'string', + 'table' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_textflow' => + array ( + 0 => 'string', + 'textflow' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_textline' => + array ( + 0 => 'bool', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::get_apiname' => + array ( + 0 => 'string', + ), + 'PDFlib::get_buffer' => + array ( + 0 => 'string', + ), + 'PDFlib::get_errmsg' => + array ( + 0 => 'string', + ), + 'PDFlib::get_errnum' => + array ( + 0 => 'int', + ), + 'PDFlib::get_majorversion' => + array ( + 0 => 'int', + ), + 'PDFlib::get_minorversion' => + array ( + 0 => 'int', + ), + 'PDFlib::get_parameter' => + array ( + 0 => 'string', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDFlib::get_pdi_parameter' => + array ( + 0 => 'string', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDFlib::get_pdi_value' => + array ( + 0 => 'float', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDFlib::get_value' => + array ( + 0 => 'float', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDFlib::info_font' => + array ( + 0 => 'float', + 'font' => 'int', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::info_matchbox' => + array ( + 0 => 'float', + 'boxname' => 'string', + 'num' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_table' => + array ( + 0 => 'float', + 'table' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_textflow' => + array ( + 0 => 'float', + 'textflow' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_textline' => + array ( + 0 => 'float', + 'text' => 'string', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::initgraphics' => + array ( + 0 => 'bool', + ), + 'PDFlib::lineto' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::load_3ddata' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_font' => + array ( + 0 => 'int', + 'fontname' => 'string', + 'encoding' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_iccprofile' => + array ( + 0 => 'int', + 'profilename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_image' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::makespotcolor' => + array ( + 0 => 'int', + 'spotname' => 'string', + ), + 'PDFlib::moveto' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::open_ccitt' => + array ( + 0 => 'int', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'BitReverse' => 'int', + 'k' => 'int', + 'Blackls1' => 'int', + ), + 'PDFlib::open_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'PDFlib::open_image' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'PDFlib::open_image_file' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'filename' => 'string', + 'stringparam' => 'string', + 'intparam' => 'int', + ), + 'PDFlib::open_memory_image' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'PDFlib::open_pdi' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + 'length' => 'int', + ), + 'PDFlib::open_pdi_document' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::open_pdi_page' => + array ( + 0 => 'int', + 'doc' => 'int', + 'pagenumber' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::pcos_get_number' => + array ( + 0 => 'float', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDFlib::pcos_get_stream' => + array ( + 0 => 'string', + 'doc' => 'int', + 'optlist' => 'string', + 'path' => 'string', + ), + 'PDFlib::pcos_get_string' => + array ( + 0 => 'string', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDFlib::place_image' => + array ( + 0 => 'bool', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'PDFlib::place_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDFlib::process_pdi' => + array ( + 0 => 'int', + 'doc' => 'int', + 'page' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::rect' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::restore' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::resume_page' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::rotate' => + array ( + 0 => 'bool', + 'phi' => 'float', + ), + 'PDFlib::save' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::scale' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDFlib::set_border_color' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::set_border_dash' => + array ( + 0 => 'bool', + 'black' => 'float', + 'white' => 'float', + ), + 'PDFlib::set_border_style' => + array ( + 0 => 'bool', + 'style' => 'string', + 'width' => 'float', + ), + 'PDFlib::set_gstate' => + array ( + 0 => 'bool', + 'gstate' => 'int', + ), + 'PDFlib::set_info' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'PDFlib::set_layer_dependency' => + array ( + 0 => 'bool', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::set_parameter' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'PDFlib::set_text_pos' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::set_value' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'float', + ), + 'PDFlib::setcolor' => + array ( + 0 => 'bool', + 'fstype' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'PDFlib::setdash' => + array ( + 0 => 'bool', + 'b' => 'float', + 'w' => 'float', + ), + 'PDFlib::setdashpattern' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::setflat' => + array ( + 0 => 'bool', + 'flatness' => 'float', + ), + 'PDFlib::setfont' => + array ( + 0 => 'bool', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDFlib::setgray' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setgray_fill' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setgray_stroke' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setlinecap' => + array ( + 0 => 'bool', + 'linecap' => 'int', + ), + 'PDFlib::setlinejoin' => + array ( + 0 => 'bool', + 'value' => 'int', + ), + 'PDFlib::setlinewidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'PDFlib::setmatrix' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDFlib::setmiterlimit' => + array ( + 0 => 'bool', + 'miter' => 'float', + ), + 'PDFlib::setrgbcolor' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::setrgbcolor_fill' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::setrgbcolor_stroke' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::shading' => + array ( + 0 => 'int', + 'shtype' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::shading_pattern' => + array ( + 0 => 'int', + 'shading' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::shfill' => + array ( + 0 => 'bool', + 'shading' => 'int', + ), + 'PDFlib::show' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'PDFlib::show_boxed' => + array ( + 0 => 'int', + 'text' => 'string', + 'left' => 'float', + 'top' => 'float', + 'width' => 'float', + 'height' => 'float', + 'mode' => 'string', + 'feature' => 'string', + ), + 'PDFlib::show_xy' => + array ( + 0 => 'bool', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::skew' => + array ( + 0 => 'bool', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::stringwidth' => + array ( + 0 => 'float', + 'text' => 'string', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDFlib::stroke' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::suspend_page' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::translate' => + array ( + 0 => 'bool', + 'tx' => 'float', + 'ty' => 'float', + ), + 'PDFlib::utf16_to_utf8' => + array ( + 0 => 'string', + 'utf16string' => 'string', + ), + 'PDFlib::utf32_to_utf16' => + array ( + 0 => 'string', + 'utf32string' => 'string', + 'ordering' => 'string', + ), + 'PDFlib::utf8_to_utf16' => + array ( + 0 => 'string', + 'utf8string' => 'string', + 'ordering' => 'string', + ), + 'PDO::__construct' => + array ( + 0 => 'void', + 'dsn' => 'string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'options=' => 'array|null', + ), + 'PDO::beginTransaction' => + array ( + 0 => 'bool', + ), + 'PDO::commit' => + array ( + 0 => 'bool', + ), + 'PDO::cubrid_schema' => + array ( + 0 => 'array', + 'schema_type' => 'int', + 'table_name=' => 'string', + 'col_name=' => 'string', + ), + 'PDO::errorCode' => + array ( + 0 => 'null|string', + ), + 'PDO::errorInfo' => + array ( + 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', + ), + 'PDO::exec' => + array ( + 0 => 'false|int', + 'statement' => 'string', + ), + 'PDO::getAttribute' => + array ( + 0 => 'mixed', + 'attribute' => 'int', + ), + 'PDO::getAvailableDrivers' => + array ( + 0 => 'array', + ), + 'PDO::inTransaction' => + array ( + 0 => 'bool', + ), + 'PDO::lastInsertId' => + array ( + 0 => 'string', + 'name=' => 'null|string', + ), + 'PDO::pgsqlCopyFromArray' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'rows' => 'array', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyFromFile' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'filename' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyToArray' => + array ( + 0 => 'array', + 'table_name' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyToFile' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'filename' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlGetNotify' => + array ( + 0 => 'array{message: string, payload?: string, pid: int}|false', + 'result_type=' => 'PDO::FETCH_*', + 'ms_timeout=' => 'int', + ), + 'PDO::pgsqlGetPid' => + array ( + 0 => 'int', + ), + 'PDO::pgsqlLOBCreate' => + array ( + 0 => 'string', + ), + 'PDO::pgsqlLOBOpen' => + array ( + 0 => 'resource', + 'oid' => 'string', + 'mode=' => 'string', + ), + 'PDO::pgsqlLOBUnlink' => + array ( + 0 => 'bool', + 'oid' => 'string', + ), + 'PDO::prepare' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'options=' => 'array', + ), + 'PDO::query' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + ), + 'PDO::query\'1' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_column' => 'int', + 'colno=' => 'int', + ), + 'PDO::query\'2' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_class' => 'int', + 'classname' => 'string', + 'constructorArgs' => 'array', + ), + 'PDO::query\'3' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_into' => 'int', + 'object' => 'object', + ), + 'PDO::quote' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'type=' => 'int', + ), + 'PDO::rollBack' => + array ( + 0 => 'bool', + ), + 'PDO::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'mixed', + ), + 'PDO::sqliteCreateAggregate' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'PDO::sqliteCreateCollation' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + ), + 'PDO::sqliteCreateFunction' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'pdo_drivers' => + array ( + 0 => 'array', + ), + 'PDOException::getCode' => + array ( + 0 => 'int|string', + ), + 'PDOException::getFile' => + array ( + 0 => 'string', + ), + 'PDOException::getLine' => + array ( + 0 => 'int', + ), + 'PDOException::getMessage' => + array ( + 0 => 'string', + ), + 'PDOException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'PDOException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'PDOException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'PDOStatement::bindColumn' => + array ( + 0 => 'bool', + 'column' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + 'maxLength=' => 'int', + 'driverOptions=' => 'mixed', + ), + 'PDOStatement::bindParam' => + array ( + 0 => 'bool', + 'param' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + 'maxLength=' => 'int', + 'driverOptions=' => 'mixed', + ), + 'PDOStatement::bindValue' => + array ( + 0 => 'bool', + 'param' => 'int|string', + 'value' => 'mixed', + 'type=' => 'int', + ), + 'PDOStatement::closeCursor' => + array ( + 0 => 'bool', + ), + 'PDOStatement::columnCount' => + array ( + 0 => 'int', + ), + 'PDOStatement::debugDumpParams' => + array ( + 0 => 'bool|null', + ), + 'PDOStatement::errorCode' => + array ( + 0 => 'null|string', + ), + 'PDOStatement::errorInfo' => + array ( + 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', + ), + 'PDOStatement::execute' => + array ( + 0 => 'bool', + 'params=' => 'array|null', + ), + 'PDOStatement::fetch' => + array ( + 0 => 'mixed', + 'mode=' => 'int', + 'cursorOrientation=' => 'int', + 'cursorOffset=' => 'int', + ), + 'PDOStatement::fetchAll' => + array ( + 0 => 'array', + 'mode=' => 'int', + '...args=' => 'mixed', + ), + 'PDOStatement::fetchColumn' => + array ( + 0 => 'mixed', + 'column=' => 'int', + ), + 'PDOStatement::fetchObject' => + array ( + 0 => 'false|object', + 'class=' => 'class-string|null', + 'constructorArgs=' => 'array', + ), + 'PDOStatement::getAttribute' => + array ( + 0 => 'mixed', + 'name' => 'int', + ), + 'PDOStatement::getColumnMeta' => + array ( + 0 => 'array|false', + 'column' => 'int', + ), + 'PDOStatement::nextRowset' => + array ( + 0 => 'bool', + ), + 'PDOStatement::rowCount' => + array ( + 0 => 'int', + ), + 'PDOStatement::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'mixed', + ), + 'PDOStatement::setFetchMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + '...args=' => 'mixed', + ), + 'pfsockopen' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + ), + 'pg_affected_rows' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + 'pg_cancel_query' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + 'pg_client_encoding' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_close' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_connect' => + array ( + 0 => 'PgSql\\Connection|false', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'pg_connect_poll' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + 'pg_connection_busy' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + 'pg_connection_reset' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + 'pg_connection_status' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + 'pg_consume_input' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + 'pg_convert' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'pg_copy_from' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'rows' => 'array', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'pg_copy_to' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'pg_dbname' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_delete' => + array ( + 0 => 'bool|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'pg_end_copy' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_escape_bytea' => + array ( + 0 => 'string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + 'pg_escape_bytea\'1' => + array ( + 0 => 'string', + 'connection' => 'string', + ), + 'pg_escape_identifier' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + 'pg_escape_identifier\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_escape_literal' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + 'pg_escape_literal\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_escape_string' => + array ( + 0 => 'string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + 'pg_escape_string\'1' => + array ( + 0 => 'string', + 'connection' => 'string', + ), + 'pg_exec' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + 'pg_exec\'1' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + ), + 'pg_execute' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'pg_execute\'1' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'statement_name' => 'array', + ), + 'pg_fetch_all' => + array ( + 0 => 'array>', + 'result' => 'PgSql\\Result', + 'mode=' => 'int', + ), + 'pg_fetch_all_columns' => + array ( + 0 => 'array', + 'result' => 'PgSql\\Result', + 'field=' => 'int', + ), + 'pg_fetch_array' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'pg_fetch_assoc' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + ), + 'pg_fetch_object' => + array ( + 0 => 'false|object', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'pg_fetch_result' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + 'pg_fetch_result\'1' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'row' => 'int|null', + 'field' => 'int|string', + ), + 'pg_fetch_row' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'pg_field_is_null' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + 'pg_field_is_null\'1' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int', + 'field' => 'int|string', + ), + 'pg_field_name' => + array ( + 0 => 'string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + 'pg_field_num' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + 'field' => 'string', + ), + 'pg_field_prtlen' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + 'pg_field_prtlen\'1' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int', + 'field' => 'int|string', + ), + 'pg_field_size' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + 'pg_field_table' => + array ( + 0 => 'false|int|string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + 'oid_only=' => 'bool', + ), + 'pg_field_type' => + array ( + 0 => 'string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + 'pg_field_type_oid' => + array ( + 0 => 'int|string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + 'pg_flush' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + ), + 'pg_free_result' => + array ( + 0 => 'bool', + 'result' => 'PgSql\\Result', + ), + 'pg_get_notify' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'mode=' => 'int', + ), + 'pg_get_pid' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + 'pg_get_result' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + ), + 'pg_host' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_insert' => + array ( + 0 => 'PgSql\\Result|false|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'pg_last_error' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_last_notice' => + array ( + 0 => 'array|bool|string', + 'connection' => 'PgSql\\Connection', + 'mode=' => 'int', + ), + 'pg_last_oid' => + array ( + 0 => 'false|int|string', + 'result' => 'PgSql\\Result', + ), + 'pg_lo_close' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + ), + 'pg_lo_create' => + array ( + 0 => 'false|int|string', + 'connection=' => 'PgSql\\Connection', + 'oid=' => 'int|string', + ), + 'pg_lo_export' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + 'filename' => 'string', + ), + 'pg_lo_export\'1' => + array ( + 0 => 'bool', + 'connection' => 'int|string', + 'oid' => 'string', + ), + 'pg_lo_import' => + array ( + 0 => 'false|int|string', + 'connection' => 'PgSql\\Connection', + 'filename' => 'string', + 'oid' => 'int|string', + ), + 'pg_lo_import\'1' => + array ( + 0 => 'false|int|string', + 'connection' => 'string', + 'filename' => 'int|string', + ), + 'pg_lo_open' => + array ( + 0 => 'PgSql\\Lob|false', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + 'mode' => 'string', + ), + 'pg_lo_open\'1' => + array ( + 0 => 'PgSql\\Lob|false', + 'connection' => 'int|string', + 'oid' => 'string', + ), + 'pg_lo_read' => + array ( + 0 => 'false|string', + 'lob' => 'PgSql\\Lob', + 'length=' => 'int', + ), + 'pg_lo_read_all' => + array ( + 0 => 'int', + 'lob' => 'PgSql\\Lob', + ), + 'pg_lo_seek' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'pg_lo_tell' => + array ( + 0 => 'int', + 'lob' => 'PgSql\\Lob', + ), + 'pg_lo_truncate' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + 'size' => 'int', + ), + 'pg_lo_unlink' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + ), + 'pg_lo_unlink\'1' => + array ( + 0 => 'bool', + 'connection' => 'int|string', + ), + 'pg_lo_write' => + array ( + 0 => 'false|int', + 'lob' => 'PgSql\\Lob', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'pg_meta_data' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'extended=' => 'bool', + ), + 'pg_num_fields' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + 'pg_num_rows' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + 'pg_options' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_parameter_status' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'name' => 'string', + ), + 'pg_parameter_status\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_pconnect' => + array ( + 0 => 'PgSql\\Connection|false', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'pg_ping' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_port' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_prepare' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'pg_prepare\'1' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'statement_name' => 'string', + ), + 'pg_put_line' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'data' => 'string', + ), + 'pg_put_line\'1' => + array ( + 0 => 'bool', + 'connection' => 'string', + ), + 'pg_query' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + 'pg_query\'1' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + ), + 'pg_query_params' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + 'params' => 'array', + ), + 'pg_query_params\'1' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'query' => 'array', + ), + 'pg_result_error' => + array ( + 0 => 'false|string', + 'result' => 'PgSql\\Result', + ), + 'pg_result_error_field' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'field_code' => 'int', + ), + 'pg_result_seek' => + array ( + 0 => 'bool', + 'result' => 'PgSql\\Result', + 'row' => 'int', + ), + 'pg_result_status' => + array ( + 0 => 'int|string', + 'result' => 'PgSql\\Result', + 'mode=' => 'int', + ), + 'pg_select' => + array ( + 0 => 'array|false|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + 'mode=' => 'int', + ), + 'pg_send_execute' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'pg_send_prepare' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'pg_send_query' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + 'pg_send_query_params' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + 'params' => 'array', + ), + 'pg_set_client_encoding' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + 'encoding' => 'string', + ), + 'pg_set_client_encoding\'1' => + array ( + 0 => 'int', + 'connection' => 'string', + ), + 'pg_set_error_verbosity' => + array ( + 0 => 'false|int', + 'connection' => 'PgSql\\Connection', + 'verbosity' => 'int', + ), + 'pg_set_error_verbosity\'1' => + array ( + 0 => 'false|int', + 'connection' => 'int', + ), + 'pg_socket' => + array ( + 0 => 'false|resource', + 'connection' => 'PgSql\\Connection', + ), + 'pg_trace' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_transaction_status' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + 'pg_tty' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_unescape_bytea' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'pg_untrace' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + 'pg_update' => + array ( + 0 => 'bool|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'pg_version' => + array ( + 0 => 'array', + 'connection=' => 'PgSql\\Connection|null', + ), + 'Phar::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'alias=' => 'null|string', + ), + 'Phar::addEmptyDir' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'Phar::addFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'null|string', + ), + 'Phar::addFromString' => + array ( + 0 => 'void', + 'localName' => 'string', + 'contents' => 'string', + ), + 'Phar::apiVersion' => + array ( + 0 => 'string', + ), + 'Phar::buildFromDirectory' => + array ( + 0 => 'array', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'Phar::buildFromIterator' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + 'Phar::canCompress' => + array ( + 0 => 'bool', + 'compression=' => 'int', + ), + 'Phar::canWrite' => + array ( + 0 => 'bool', + ), + 'Phar::compress' => + array ( + 0 => 'Phar|null', + 'compression' => 'int', + 'extension=' => 'null|string', + ), + 'Phar::compressFiles' => + array ( + 0 => 'void', + 'compression' => 'int', + ), + 'Phar::convertToData' => + array ( + 0 => 'PharData|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + 'Phar::convertToExecutable' => + array ( + 0 => 'Phar|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + 'Phar::copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'Phar::count' => + array ( + 0 => 'int', + 'mode=' => 'int', + ), + 'Phar::createDefaultStub' => + array ( + 0 => 'string', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + 'Phar::decompress' => + array ( + 0 => 'Phar|null', + 'extension=' => 'null|string', + ), + 'Phar::decompressFiles' => + array ( + 0 => 'bool', + ), + 'Phar::delete' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'Phar::delMetadata' => + array ( + 0 => 'bool', + ), + 'Phar::extractTo' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'files=' => 'array|null|string', + 'overwrite=' => 'bool', + ), + 'Phar::getAlias' => + array ( + 0 => 'null|string', + ), + 'Phar::getMetadata' => + array ( + 0 => 'mixed', + 'unserializeOptions=' => 'array', + ), + 'Phar::getModified' => + array ( + 0 => 'bool', + ), + 'Phar::getPath' => + array ( + 0 => 'string', + ), + 'Phar::getSignature' => + array ( + 0 => 'array{hash: string, hash_type: string}', + ), + 'Phar::getStub' => + array ( + 0 => 'string', + ), + 'Phar::getSupportedCompression' => + array ( + 0 => 'array', + ), + 'Phar::getSupportedSignatures' => + array ( + 0 => 'array', + ), + 'Phar::getVersion' => + array ( + 0 => 'string', + ), + 'Phar::hasMetadata' => + array ( + 0 => 'bool', + ), + 'Phar::interceptFileFuncs' => + array ( + 0 => 'void', + ), + 'Phar::isBuffering' => + array ( + 0 => 'bool', + ), + 'Phar::isCompressed' => + array ( + 0 => 'false|int', + ), + 'Phar::isFileFormat' => + array ( + 0 => 'bool', + 'format' => 'int', + ), + 'Phar::isValidPharFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'executable=' => 'bool', + ), + 'Phar::isWritable' => + array ( + 0 => 'bool', + ), + 'Phar::loadPhar' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'alias=' => 'null|string', + ), + 'Phar::mapPhar' => + array ( + 0 => 'bool', + 'alias=' => 'null|string', + 'offset=' => 'int', + ), + 'Phar::mount' => + array ( + 0 => 'void', + 'pharPath' => 'string', + 'externalPath' => 'string', + ), + 'Phar::mungServer' => + array ( + 0 => 'void', + 'variables' => 'list', + ), + 'Phar::offsetExists' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'Phar::offsetGet' => + array ( + 0 => 'PharFileInfo', + 'localName' => 'string', + ), + 'Phar::offsetSet' => + array ( + 0 => 'void', + 'localName' => 'string', + 'value' => 'resource|string', + ), + 'Phar::offsetUnset' => + array ( + 0 => 'void', + 'localName' => 'string', + ), + 'Phar::running' => + array ( + 0 => 'string', + 'returnPhar=' => 'bool', + ), + 'Phar::setAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'Phar::setDefaultStub' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + 'Phar::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'Phar::setSignatureAlgorithm' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'null|string', + ), + 'Phar::setStub' => + array ( + 0 => 'bool', + 'stub' => 'string', + 'length=' => 'int', + ), + 'Phar::startBuffering' => + array ( + 0 => 'void', + ), + 'Phar::stopBuffering' => + array ( + 0 => 'void', + ), + 'Phar::unlinkArchive' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Phar::webPhar' => + array ( + 0 => 'void', + 'alias=' => 'null|string', + 'index=' => 'null|string', + 'fileNotFoundScript=' => 'null|string', + 'mimeTypes=' => 'array', + 'rewrite=' => 'callable|null', + ), + 'PharData::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'alias=' => 'null|string', + 'format=' => 'int', + ), + 'PharData::addEmptyDir' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'PharData::addFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'null|string', + ), + 'PharData::addFromString' => + array ( + 0 => 'void', + 'localName' => 'string', + 'contents' => 'string', + ), + 'PharData::buildFromDirectory' => + array ( + 0 => 'array', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'PharData::buildFromIterator' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + 'PharData::compress' => + array ( + 0 => 'PharData|null', + 'compression' => 'int', + 'extension=' => 'null|string', + ), + 'PharData::compressFiles' => + array ( + 0 => 'void', + 'compression' => 'int', + ), + 'PharData::convertToData' => + array ( + 0 => 'PharData|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + 'PharData::convertToExecutable' => + array ( + 0 => 'Phar|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + 'PharData::copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'PharData::decompress' => + array ( + 0 => 'PharData|null', + 'extension=' => 'null|string', + ), + 'PharData::decompressFiles' => + array ( + 0 => 'bool', + ), + 'PharData::delete' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'PharData::delMetadata' => + array ( + 0 => 'bool', + ), + 'PharData::extractTo' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'files=' => 'array|null|string', + 'overwrite=' => 'bool', + ), + 'PharData::isWritable' => + array ( + 0 => 'bool', + ), + 'PharData::offsetExists' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'PharData::offsetGet' => + array ( + 0 => 'PharFileInfo', + 'localName' => 'string', + ), + 'PharData::offsetSet' => + array ( + 0 => 'void', + 'localName' => 'string', + 'value' => 'string', + ), + 'PharData::offsetUnset' => + array ( + 0 => 'void', + 'localName' => 'string', + ), + 'PharData::setAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'PharData::setDefaultStub' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + 'PharData::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'PharData::setSignatureAlgorithm' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'null|string', + ), + 'PharData::setStub' => + array ( + 0 => 'bool', + 'stub' => 'string', + 'length=' => 'int', + ), + 'PharFileInfo::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'PharFileInfo::chmod' => + array ( + 0 => 'void', + 'perms' => 'int', + ), + 'PharFileInfo::compress' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'PharFileInfo::decompress' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::delMetadata' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::getCompressedSize' => + array ( + 0 => 'int', + ), + 'PharFileInfo::getContent' => + array ( + 0 => 'string', + ), + 'PharFileInfo::getCRC32' => + array ( + 0 => 'int', + ), + 'PharFileInfo::getMetadata' => + array ( + 0 => 'mixed', + 'unserializeOptions=' => 'array', + ), + 'PharFileInfo::getPharFlags' => + array ( + 0 => 'int', + ), + 'PharFileInfo::hasMetadata' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::isCompressed' => + array ( + 0 => 'bool', + 'compression=' => 'int|null', + ), + 'PharFileInfo::isCRCChecked' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'phdfs::__construct' => + array ( + 0 => 'void', + 'ip' => 'string', + 'port' => 'string', + ), + 'phdfs::__destruct' => + array ( + 0 => 'void', + ), + 'phdfs::connect' => + array ( + 0 => 'bool', + ), + 'phdfs::copy' => + array ( + 0 => 'bool', + 'source_file' => 'string', + 'destination_file' => 'string', + ), + 'phdfs::create_directory' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::delete' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::disconnect' => + array ( + 0 => 'bool', + ), + 'phdfs::exists' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::file_info' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'phdfs::list_directory' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'phdfs::read' => + array ( + 0 => 'string', + 'path' => 'string', + 'length=' => 'string', + ), + 'phdfs::rename' => + array ( + 0 => 'bool', + 'old_path' => 'string', + 'new_path' => 'string', + ), + 'phdfs::tell' => + array ( + 0 => 'int', + 'path' => 'string', + ), + 'phdfs::write' => + array ( + 0 => 'bool', + 'path' => 'string', + 'buffer' => 'string', + 'mode=' => 'string', + ), + 'php_check_syntax' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'error_message=' => 'string', + ), + 'php_ini_loaded_file' => + array ( + 0 => 'false|string', + ), + 'php_ini_scanned_files' => + array ( + 0 => 'false|string', + ), + 'php_logo_guid' => + array ( + 0 => 'string', + ), + 'php_sapi_name' => + array ( + 0 => 'string', + ), + 'php_strip_whitespace' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'php_uname' => + array ( + 0 => 'string', + 'mode=' => 'string', + ), + 'php_user_filter::filter' => + array ( + 0 => 'int', + 'in' => 'resource', + 'out' => 'resource', + '&rw_consumed' => 'int', + 'closing' => 'bool', + ), + 'php_user_filter::onClose' => + array ( + 0 => 'void', + ), + 'php_user_filter::onCreate' => + array ( + 0 => 'bool', + ), + 'phpcredits' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'phpdbg_break_file' => + array ( + 0 => 'void', + 'file' => 'string', + 'line' => 'int', + ), + 'phpdbg_break_function' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'phpdbg_break_method' => + array ( + 0 => 'void', + 'class' => 'string', + 'method' => 'string', + ), + 'phpdbg_break_next' => + array ( + 0 => 'void', + ), + 'phpdbg_clear' => + array ( + 0 => 'void', + ), + 'phpdbg_color' => + array ( + 0 => 'void', + 'element' => 'int', + 'color' => 'string', + ), + 'phpdbg_end_oplog' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'phpdbg_exec' => + array ( + 0 => 'mixed', + 'context=' => 'string', + ), + 'phpdbg_get_executable' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'phpdbg_prompt' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'phpdbg_start_oplog' => + array ( + 0 => 'void', + ), + 'phpinfo' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'PhpToken::tokenize' => + array ( + 0 => 'list', + 'code' => 'string', + 'flags=' => 'int', + ), + 'PhpToken::is' => + array ( + 0 => 'bool', + 'kind' => 'array|int|string', + ), + 'PhpToken::isIgnorable' => + array ( + 0 => 'bool', + ), + 'PhpToken::getTokenName' => + array ( + 0 => 'null|string', + ), + 'phpversion' => + array ( + 0 => 'false|string', + 'extension=' => 'null|string', + ), + 'pht\\AtomicInteger::__construct' => + array ( + 0 => 'void', + 'value=' => 'int', + ), + 'pht\\AtomicInteger::dec' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::get' => + array ( + 0 => 'int', + ), + 'pht\\AtomicInteger::inc' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::lock' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::set' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'pht\\AtomicInteger::unlock' => + array ( + 0 => 'void', + ), + 'pht\\HashTable::lock' => + array ( + 0 => 'void', + ), + 'pht\\HashTable::size' => + array ( + 0 => 'int', + ), + 'pht\\HashTable::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Queue::front' => + array ( + 0 => 'mixed', + ), + 'pht\\Queue::lock' => + array ( + 0 => 'void', + ), + 'pht\\Queue::pop' => + array ( + 0 => 'mixed', + ), + 'pht\\Queue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Queue::size' => + array ( + 0 => 'int', + ), + 'pht\\Queue::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Runnable::run' => + array ( + 0 => 'void', + ), + 'pht\\thread::addClassTask' => + array ( + 0 => 'void', + 'className' => 'string', + '...ctorArgs=' => 'mixed', + ), + 'pht\\thread::addFileTask' => + array ( + 0 => 'void', + 'fileName' => 'string', + '...globals=' => 'mixed', + ), + 'pht\\thread::addFunctionTask' => + array ( + 0 => 'void', + 'func' => 'callable', + '...funcArgs=' => 'mixed', + ), + 'pht\\thread::join' => + array ( + 0 => 'void', + ), + 'pht\\thread::start' => + array ( + 0 => 'void', + ), + 'pht\\thread::taskCount' => + array ( + 0 => 'int', + ), + 'pht\\threaded::lock' => + array ( + 0 => 'void', + ), + 'pht\\threaded::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Vector::__construct' => + array ( + 0 => 'void', + 'size=' => 'int', + 'value=' => 'mixed', + ), + 'pht\\Vector::deleteAt' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'pht\\Vector::insertAt' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'offset' => 'int', + ), + 'pht\\Vector::lock' => + array ( + 0 => 'void', + ), + 'pht\\Vector::pop' => + array ( + 0 => 'mixed', + ), + 'pht\\Vector::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Vector::resize' => + array ( + 0 => 'void', + 'size' => 'int', + 'value=' => 'mixed', + ), + 'pht\\Vector::shift' => + array ( + 0 => 'mixed', + ), + 'pht\\Vector::size' => + array ( + 0 => 'int', + ), + 'pht\\Vector::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Vector::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Vector::updateAt' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'offset' => 'int', + ), + 'pi' => + array ( + 0 => 'float', + ), + 'pointObj::__construct' => + array ( + 0 => 'void', + ), + 'pointObj::distanceToLine' => + array ( + 0 => 'float', + 'p1' => 'pointObj', + 'p2' => 'pointObj', + ), + 'pointObj::distanceToPoint' => + array ( + 0 => 'float', + 'poPoint' => 'pointObj', + ), + 'pointObj::distanceToShape' => + array ( + 0 => 'float', + 'shape' => 'shapeObj', + ), + 'pointObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + 'class_index' => 'int', + 'text' => 'string', + ), + 'pointObj::ms_newPointObj' => + array ( + 0 => 'pointObj', + ), + 'pointObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'pointObj::setXY' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'm' => 'float', + ), + 'pointObj::setXYZ' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + 'm' => 'float', + ), + 'Pool::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'class' => 'string', + 'ctor=' => 'array', + ), + 'Pool::collect' => + array ( + 0 => 'int', + 'collector=' => 'callable', + ), + 'Pool::resize' => + array ( + 0 => 'void', + 'size' => 'int', + ), + 'Pool::shutdown' => + array ( + 0 => 'void', + ), + 'Pool::submit' => + array ( + 0 => 'int', + 'task' => 'Threaded', + ), + 'Pool::submitTo' => + array ( + 0 => 'int', + 'worker' => 'int', + 'task' => 'Threaded', + ), + 'popen' => + array ( + 0 => 'false|resource', + 'command' => 'string', + 'mode' => 'string', + ), + 'pos' => + array ( + 0 => 'mixed', + 'array' => 'array', + ), + 'posix_access' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'posix_ctermid' => + array ( + 0 => 'false|string', + ), + 'posix_errno' => + array ( + 0 => 'int', + ), + 'posix_get_last_error' => + array ( + 0 => 'int', + ), + 'posix_getcwd' => + array ( + 0 => 'false|string', + ), + 'posix_getegid' => + array ( + 0 => 'int', + ), + 'posix_geteuid' => + array ( + 0 => 'int', + ), + 'posix_getgid' => + array ( + 0 => 'int', + ), + 'posix_getgrgid' => + array ( + 0 => 'array{gid: int, members: list, name: string, passwd: string}|false', + 'group_id' => 'int', + ), + 'posix_getgrnam' => + array ( + 0 => 'array{gid: int, members: list, name: string, passwd: string}|false', + 'name' => 'string', + ), + 'posix_getgroups' => + array ( + 0 => 'false|list', + ), + 'posix_getlogin' => + array ( + 0 => 'false|string', + ), + 'posix_getpgid' => + array ( + 0 => 'false|int', + 'process_id' => 'int', + ), + 'posix_getpgrp' => + array ( + 0 => 'int', + ), + 'posix_getpid' => + array ( + 0 => 'int', + ), + 'posix_getppid' => + array ( + 0 => 'int', + ), + 'posix_getpwnam' => + array ( + 0 => 'array{dir: string, gecos: string, gid: int, name: string, passwd: string, shell: string, uid: int}|false', + 'username' => 'string', + ), + 'posix_getpwuid' => + array ( + 0 => 'array{dir: string, gecos: string, gid: int, name: string, passwd: string, shell: string, uid: int}|false', + 'user_id' => 'int', + ), + 'posix_getrlimit' => + array ( + 0 => 'array{\'hard core\': string, \'hard cpu\': string, \'hard data\': string, \'hard filesize\': string, \'hard maxproc\': int, \'hard memlock\': int, \'hard openfiles\': int, \'hard rss\': string, \'hard stack\': string, \'hard totalmem\': string, \'soft core\': string, \'soft cpu\': string, \'soft data\': string, \'soft filesize\': string, \'soft maxproc\': int, \'soft memlock\': int, \'soft openfiles\': int, \'soft rss\': string, \'soft stack\': int, \'soft totalmem\': string}|false', + 'resource=' => 'int|null', + ), + 'posix_getsid' => + array ( + 0 => 'false|int', + 'process_id' => 'int', + ), + 'posix_getuid' => + array ( + 0 => 'int', + ), + 'posix_initgroups' => + array ( + 0 => 'bool', + 'username' => 'string', + 'group_id' => 'int', + ), + 'posix_isatty' => + array ( + 0 => 'bool', + 'file_descriptor' => 'int|resource', + ), + 'posix_kill' => + array ( + 0 => 'bool', + 'process_id' => 'int', + 'signal' => 'int', + ), + 'posix_mkfifo' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'permissions' => 'int', + ), + 'posix_mknod' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + 'major=' => 'int', + 'minor=' => 'int', + ), + 'posix_setegid' => + array ( + 0 => 'bool', + 'group_id' => 'int', + ), + 'posix_seteuid' => + array ( + 0 => 'bool', + 'user_id' => 'int', + ), + 'posix_setgid' => + array ( + 0 => 'bool', + 'group_id' => 'int', + ), + 'posix_setpgid' => + array ( + 0 => 'bool', + 'process_id' => 'int', + 'process_group_id' => 'int', + ), + 'posix_setrlimit' => + array ( + 0 => 'bool', + 'resource' => 'int', + 'soft_limit' => 'int', + 'hard_limit' => 'int', + ), + 'posix_setsid' => + array ( + 0 => 'int', + ), + 'posix_setuid' => + array ( + 0 => 'bool', + 'user_id' => 'int', + ), + 'posix_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'posix_times' => + array ( + 0 => 'array{cstime: int, cutime: int, stime: int, ticks: int, utime: int}|false', + ), + 'posix_ttyname' => + array ( + 0 => 'false|string', + 'file_descriptor' => 'int|resource', + ), + 'posix_uname' => + array ( + 0 => 'array{domainname: string, machine: string, nodename: string, release: string, sysname: string, version: string}|false', + ), + 'Postal\\Expand::expand_address' => + array ( + 0 => 'array', + 'address' => 'string', + 'options=' => 'array', + ), + 'Postal\\Parser::parse_address' => + array ( + 0 => 'array', + 'address' => 'string', + 'options=' => 'array', + ), + 'pow' => + array ( + 0 => 'float|int', + 'num' => 'float|int', + 'exponent' => 'float|int', + ), + 'preg_filter' => + array ( + 0 => 'array|null|string', + 'pattern' => 'array|string', + 'replacement' => 'array|string', + 'subject' => 'array|string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_grep' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'array' => 'array', + 'flags=' => 'int', + ), + 'preg_last_error' => + array ( + 0 => 'int', + ), + 'preg_match' => + array ( + 0 => '0|1|false', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => '0', + 'offset=' => 'int', + ), + 'preg_match\'1' => + array ( + 0 => '0|1|false', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => 'int', + 'offset=' => 'int', + ), + 'preg_match_all' => + array ( + 0 => 'false|int<0, max>', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => 'int', + 'offset=' => 'int', + ), + 'preg_quote' => + array ( + 0 => 'string', + 'str' => 'string', + 'delimiter=' => 'null|string', + ), + 'preg_replace' => + array ( + 0 => 'array|null|string', + 'pattern' => 'array|string', + 'replacement' => 'array|string', + 'subject' => 'array|string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_replace_callback' => + array ( + 0 => 'null|string', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + 'preg_replace_callback\'1' => + array ( + 0 => 'array|null', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + 'preg_replace_callback_array' => + array ( + 0 => 'null|string', + 'pattern' => 'array):string>', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + 'preg_replace_callback_array\'1' => + array ( + 0 => 'array|null', + 'pattern' => 'array):string>', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + 'preg_split' => + array ( + 0 => 'false|list', + 'pattern' => 'string', + 'subject' => 'string', + 'limit' => 'int', + 'flags=' => 'null', + ), + 'preg_split\'1' => + array ( + 0 => 'false|list|string>', + 'pattern' => 'string', + 'subject' => 'string', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'prev' => + array ( + 0 => 'mixed', + '&r_array' => 'array', + ), + 'print' => + array ( + 0 => 'int', + 'arg' => 'string', + ), + 'print_r' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'print_r\'1' => + array ( + 0 => 'true', + 'value' => 'mixed', + 'return=' => 'bool', + ), + 'printf' => + array ( + 0 => 'int<0, max>', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'proc_close' => + array ( + 0 => 'int', + 'process' => 'resource', + ), + 'proc_get_status' => + array ( + 0 => 'array{command: string, exitcode: int, pid: int, running: bool, signaled: bool, stopped: bool, stopsig: int, termsig: int}', + 'process' => 'resource', + ), + 'proc_nice' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'proc_open' => + array ( + 0 => 'false|resource', + 'command' => 'array|string', + 'descriptor_spec' => 'array', + '&pipes' => 'array', + 'cwd=' => 'null|string', + 'env_vars=' => 'array|null', + 'options=' => 'array|null', + ), + 'proc_terminate' => + array ( + 0 => 'bool', + 'process' => 'resource', + 'signal=' => 'int', + ), + 'projectionObj::__construct' => + array ( + 0 => 'void', + 'projectionString' => 'string', + ), + 'projectionObj::getUnits' => + array ( + 0 => 'int', + ), + 'projectionObj::ms_newProjectionObj' => + array ( + 0 => 'projectionObj', + 'projectionString' => 'string', + ), + 'property_exists' => + array ( + 0 => 'bool', + 'object_or_class' => 'object|string', + 'property' => 'string', + ), + 'ps_add_bookmark' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'text' => 'string', + 'parent=' => 'int', + 'open=' => 'int', + ), + 'ps_add_launchlink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'ps_add_locallink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'ps_add_note' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'ps_add_pdflink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'ps_add_weblink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'url' => 'string', + ), + 'ps_arc' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'ps_arcn' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'ps_begin_page' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_begin_pattern' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'ps_begin_template' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_circle' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + ), + 'ps_clip' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_close' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_close_image' => + array ( + 0 => 'void', + 'psdoc' => 'resource', + 'imageid' => 'int', + ), + 'ps_closepath' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_closepath_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_continue_text' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_curveto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'ps_delete' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_page' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_pattern' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_template' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_fill' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_fill_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_findfont' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed=' => 'bool', + ), + 'ps_get_buffer' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + ), + 'ps_get_parameter' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + 'name' => 'string', + 'modifier=' => 'float', + ), + 'ps_get_value' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'name' => 'string', + 'modifier=' => 'float', + ), + 'ps_hyphenate' => + array ( + 0 => 'array', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_include_file' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'file' => 'string', + ), + 'ps_lineto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_makespotcolor' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'name' => 'string', + 'reserved=' => 'int', + ), + 'ps_moveto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_new' => + array ( + 0 => 'resource', + ), + 'ps_open_file' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'filename=' => 'string', + ), + 'ps_open_image' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'ps_open_image_file' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'filename' => 'string', + 'stringparam=' => 'string', + 'intparam=' => 'int', + ), + 'ps_open_memory_image' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'gd' => 'int', + ), + 'ps_place_image' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'imageid' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'ps_rect' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_restore' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_rotate' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'rot' => 'float', + ), + 'ps_save' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_scale' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_set_border_color' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'ps_set_border_dash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'black' => 'float', + 'white' => 'float', + ), + 'ps_set_border_style' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'style' => 'string', + 'width' => 'float', + ), + 'ps_set_info' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'ps_set_parameter' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'ps_set_text_pos' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_set_value' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'name' => 'string', + 'value' => 'float', + ), + 'ps_setcolor' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'ps_setdash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'on' => 'float', + 'off' => 'float', + ), + 'ps_setflat' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'value' => 'float', + ), + 'ps_setfont' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'fontid' => 'int', + 'size' => 'float', + ), + 'ps_setgray' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'gray' => 'float', + ), + 'ps_setlinecap' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'int', + ), + 'ps_setlinejoin' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'int', + ), + 'ps_setlinewidth' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'width' => 'float', + ), + 'ps_setmiterlimit' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'value' => 'float', + ), + 'ps_setoverprintmode' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'mode' => 'int', + ), + 'ps_setpolydash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'arr' => 'float', + ), + 'ps_shading' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'ps_shading_pattern' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'shadingid' => 'int', + 'optlist' => 'string', + ), + 'ps_shfill' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'shadingid' => 'int', + ), + 'ps_show' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_show2' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'length' => 'int', + ), + 'ps_show_boxed' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'text' => 'string', + 'left' => 'float', + 'bottom' => 'float', + 'width' => 'float', + 'height' => 'float', + 'hmode' => 'string', + 'feature=' => 'string', + ), + 'ps_show_xy' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_show_xy2' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'length' => 'int', + 'xcoor' => 'float', + 'ycoor' => 'float', + ), + 'ps_string_geometry' => + array ( + 0 => 'array', + 'psdoc' => 'resource', + 'text' => 'string', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_stringwidth' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'text' => 'string', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_symbol' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'ord' => 'int', + ), + 'ps_symbol_name' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + 'ord' => 'int', + 'fontid=' => 'int', + ), + 'ps_symbol_width' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'ord' => 'int', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_translate' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'pspell_add_to_personal' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + 'pspell_add_to_session' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + 'pspell_check' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + 'pspell_clear_session' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + ), + 'pspell_config_create' => + array ( + 0 => 'PSpell\\Config', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + ), + 'pspell_config_data_dir' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'directory' => 'string', + ), + 'pspell_config_dict_dir' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'directory' => 'string', + ), + 'pspell_config_ignore' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'min_length' => 'int', + ), + 'pspell_config_mode' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'mode' => 'int', + ), + 'pspell_config_personal' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'filename' => 'string', + ), + 'pspell_config_repl' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'filename' => 'string', + ), + 'pspell_config_runtogether' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'allow' => 'bool', + ), + 'pspell_config_save_repl' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'save' => 'bool', + ), + 'pspell_new' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'pspell_new_config' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'config' => 'PSpell\\Config', + ), + 'pspell_new_personal' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'filename' => 'string', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'pspell_save_wordlist' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + ), + 'pspell_store_replacement' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'pspell_suggest' => + array ( + 0 => 'array', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + 'putenv' => + array ( + 0 => 'bool', + 'assignment' => 'string', + ), + 'px_close' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + ), + 'px_create_fp' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'file' => 'resource', + 'fielddesc' => 'array', + ), + 'px_date2string' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'value' => 'int', + 'format' => 'string', + ), + 'px_delete' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + ), + 'px_delete_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'num' => 'int', + ), + 'px_get_field' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'fieldno' => 'int', + ), + 'px_get_info' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + ), + 'px_get_parameter' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_get_record' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'num' => 'int', + 'mode=' => 'int', + ), + 'px_get_schema' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'mode=' => 'int', + ), + 'px_get_value' => + array ( + 0 => 'float', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_insert_record' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + 'data' => 'array', + ), + 'px_new' => + array ( + 0 => 'resource', + ), + 'px_numfields' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + ), + 'px_numrecords' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + ), + 'px_open_fp' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'file' => 'resource', + ), + 'px_put_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'record' => 'array', + 'recpos=' => 'int', + ), + 'px_retrieve_record' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'num' => 'int', + 'mode=' => 'int', + ), + 'px_set_blob_file' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'filename' => 'string', + ), + 'px_set_parameter' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'px_set_tablename' => + array ( + 0 => 'void', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_set_targetencoding' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'encoding' => 'string', + ), + 'px_set_value' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'name' => 'string', + 'value' => 'float', + ), + 'px_timestamp2string' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'value' => 'float', + 'format' => 'string', + ), + 'px_update_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'data' => 'array', + 'num' => 'int', + ), + 'qdom_error' => + array ( + 0 => 'string', + ), + 'qdom_tree' => + array ( + 0 => 'QDomDocument', + 'doc' => 'string', + ), + 'querymapObj::convertToString' => + array ( + 0 => 'string', + ), + 'querymapObj::free' => + array ( + 0 => 'void', + ), + 'querymapObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'querymapObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'QuickHashIntHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntHash::add' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value=' => 'int', + ), + 'QuickHashIntHash::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntHash::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntHash::get' => + array ( + 0 => 'int', + 'key' => 'int', + ), + 'QuickHashIntHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntHash::loadFromFile' => + array ( + 0 => 'QuickHashIntHash', + 'filename' => 'string', + 'options=' => 'int', + ), + 'QuickHashIntHash::loadFromString' => + array ( + 0 => 'QuickHashIntHash', + 'contents' => 'string', + 'options=' => 'int', + ), + 'QuickHashIntHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntHash::set' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'int', + ), + 'QuickHashIntHash::update' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'int', + ), + 'QuickHashIntSet::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::add' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntSet::loadFromFile' => + array ( + 0 => 'QuickHashIntSet', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::loadFromString' => + array ( + 0 => 'QuickHashIntSet', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntSet::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntStringHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::add' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashIntStringHash::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntStringHash::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntStringHash::get' => + array ( + 0 => 'mixed', + 'key' => 'int', + ), + 'QuickHashIntStringHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntStringHash::loadFromFile' => + array ( + 0 => 'QuickHashIntStringHash', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::loadFromString' => + array ( + 0 => 'QuickHashIntStringHash', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntStringHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntStringHash::set' => + array ( + 0 => 'int', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashIntStringHash::update' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashStringIntHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int', + ), + 'QuickHashStringIntHash::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'QuickHashStringIntHash::exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'QuickHashStringIntHash::get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'QuickHashStringIntHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashStringIntHash::loadFromFile' => + array ( + 0 => 'QuickHashStringIntHash', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::loadFromString' => + array ( + 0 => 'QuickHashStringIntHash', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashStringIntHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashStringIntHash::set' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'QuickHashStringIntHash::update' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int', + ), + 'quoted_printable_decode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'quoted_printable_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'quotemeta' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'rad2deg' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'radius_acct_open' => + array ( + 0 => 'false|resource', + ), + 'radius_add_server' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'hostname' => 'string', + 'port' => 'int', + 'secret' => 'string', + 'timeout' => 'int', + 'max_tries' => 'int', + ), + 'radius_auth_open' => + array ( + 0 => 'false|resource', + ), + 'radius_close' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + ), + 'radius_config' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'file' => 'string', + ), + 'radius_create_request' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + ), + 'radius_cvt_addr' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_cvt_int' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'radius_cvt_string' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_demangle' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'mangled' => 'string', + ), + 'radius_demangle_mppe_key' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'mangled' => 'string', + ), + 'radius_get_attr' => + array ( + 0 => 'mixed', + 'radius_handle' => 'resource', + ), + 'radius_get_tagged_attr_data' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_get_tagged_attr_tag' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'radius_get_vendor_attr' => + array ( + 0 => 'array', + 'data' => 'string', + ), + 'radius_put_addr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'addr' => 'string', + ), + 'radius_put_attr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_int' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'int', + ), + 'radius_put_string' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_vendor_addr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'addr' => 'string', + ), + 'radius_put_vendor_attr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_vendor_int' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'int', + ), + 'radius_put_vendor_string' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_request_authenticator' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'radius_salt_encrypt_attr' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'data' => 'string', + ), + 'radius_send_request' => + array ( + 0 => 'false|int', + 'radius_handle' => 'resource', + ), + 'radius_server_secret' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'radius_strerror' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'rand' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'rand\'1' => + array ( + 0 => 'int', + ), + 'random_bytes' => + array ( + 0 => 'non-empty-string', + 'length' => 'int<1, max>', + ), + 'random_int' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'range' => + array ( + 0 => 'non-empty-array', + 'start' => 'float|int|string', + 'end' => 'float|int|string', + 'step=' => 'float|int<1, max>', + ), + 'RangeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'RangeException::__toString' => + array ( + 0 => 'string', + ), + 'RangeException::getCode' => + array ( + 0 => 'int', + ), + 'RangeException::getFile' => + array ( + 0 => 'string', + ), + 'RangeException::getLine' => + array ( + 0 => 'int', + ), + 'RangeException::getMessage' => + array ( + 0 => 'string', + ), + 'RangeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'RangeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RangeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'rar_allow_broken_set' => + array ( + 0 => 'bool', + 'rarfile' => 'RarArchive', + 'allow_broken' => 'bool', + ), + 'rar_broken_is' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_close' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_comment_get' => + array ( + 0 => 'string', + 'rarfile' => 'rararchive', + ), + 'rar_entry_get' => + array ( + 0 => 'RarEntry', + 'rarfile' => 'RarArchive', + 'entryname' => 'string', + ), + 'rar_list' => + array ( + 0 => 'RarArchive', + 'rarfile' => 'rararchive', + ), + 'rar_open' => + array ( + 0 => 'RarArchive', + 'filename' => 'string', + 'password=' => 'string', + 'volume_callback=' => 'callable', + ), + 'rar_solid_is' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_wrapper_cache_stats' => + array ( + 0 => 'string', + ), + 'RarArchive::__toString' => + array ( + 0 => 'string', + ), + 'RarArchive::close' => + array ( + 0 => 'bool', + ), + 'RarArchive::getComment' => + array ( + 0 => 'null|string', + ), + 'RarArchive::getEntries' => + array ( + 0 => 'array|false', + ), + 'RarArchive::getEntry' => + array ( + 0 => 'RarEntry|false', + 'entryname' => 'string', + ), + 'RarArchive::isBroken' => + array ( + 0 => 'bool', + ), + 'RarArchive::isSolid' => + array ( + 0 => 'bool', + ), + 'RarArchive::open' => + array ( + 0 => 'RarArchive|false', + 'filename' => 'string', + 'password=' => 'string', + 'volume_callback=' => 'callable', + ), + 'RarArchive::setAllowBroken' => + array ( + 0 => 'bool', + 'allow_broken' => 'bool', + ), + 'RarEntry::__toString' => + array ( + 0 => 'string', + ), + 'RarEntry::extract' => + array ( + 0 => 'bool', + 'dir' => 'string', + 'filepath=' => 'string', + 'password=' => 'string', + 'extended_data=' => 'bool', + ), + 'RarEntry::getAttr' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getCrc' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getFileTime' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getHostOs' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getMethod' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getName' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getPackedSize' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getStream' => + array ( + 0 => 'false|resource', + 'password=' => 'string', + ), + 'RarEntry::getUnpackedSize' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getVersion' => + array ( + 0 => 'false|int', + ), + 'RarEntry::isDirectory' => + array ( + 0 => 'bool', + ), + 'RarEntry::isEncrypted' => + array ( + 0 => 'bool', + ), + 'RarException::getCode' => + array ( + 0 => 'int', + ), + 'RarException::getFile' => + array ( + 0 => 'string', + ), + 'RarException::getLine' => + array ( + 0 => 'int', + ), + 'RarException::getMessage' => + array ( + 0 => 'string', + ), + 'RarException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'RarException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RarException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'RarException::isUsingExceptions' => + array ( + 0 => 'bool', + ), + 'RarException::setUsingExceptions' => + array ( + 0 => 'RarEntry', + 'using_exceptions' => 'bool', + ), + 'rawurldecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'rawurlencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'readdir' => + array ( + 0 => 'false|string', + 'dir_handle=' => 'resource', + ), + 'readfile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'resource', + ), + 'readgzfile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'use_include_path=' => 'int', + ), + 'readline' => + array ( + 0 => 'false|string', + 'prompt=' => 'null|string', + ), + 'readline_add_history' => + array ( + 0 => 'bool', + 'prompt' => 'string', + ), + 'readline_callback_handler_install' => + array ( + 0 => 'bool', + 'prompt' => 'string', + 'callback' => 'callable', + ), + 'readline_callback_handler_remove' => + array ( + 0 => 'bool', + ), + 'readline_callback_read_char' => + array ( + 0 => 'void', + ), + 'readline_clear_history' => + array ( + 0 => 'bool', + ), + 'readline_completion_function' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'readline_info' => + array ( + 0 => 'mixed', + 'var_name=' => 'null|string', + 'value=' => 'bool|int|null|string', + ), + 'readline_list_history' => + array ( + 0 => 'array', + ), + 'readline_on_new_line' => + array ( + 0 => 'void', + ), + 'readline_read_history' => + array ( + 0 => 'bool', + 'filename=' => 'null|string', + ), + 'readline_redisplay' => + array ( + 0 => 'void', + ), + 'readline_write_history' => + array ( + 0 => 'bool', + 'filename=' => 'null|string', + ), + 'readlink' => + array ( + 0 => 'false|non-falsy-string', + 'path' => 'string', + ), + 'realpath' => + array ( + 0 => 'false|non-falsy-string', + 'path' => 'string', + ), + 'realpath_cache_get' => + array ( + 0 => 'array', + ), + 'realpath_cache_size' => + array ( + 0 => 'int', + ), + 'recode' => + array ( + 0 => 'string', + 'request' => 'string', + 'string' => 'string', + ), + 'recode_file' => + array ( + 0 => 'bool', + 'request' => 'string', + 'input' => 'resource', + 'output' => 'resource', + ), + 'recode_string' => + array ( + 0 => 'false|string', + 'request' => 'string', + 'string' => 'string', + ), + 'rectObj::__construct' => + array ( + 0 => 'void', + ), + 'rectObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + 'class_index' => 'int', + 'text' => 'string', + ), + 'rectObj::fit' => + array ( + 0 => 'float', + 'width' => 'int', + 'height' => 'int', + ), + 'rectObj::ms_newRectObj' => + array ( + 0 => 'rectObj', + ), + 'rectObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'rectObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'rectObj::setextent' => + array ( + 0 => 'void', + 'minx' => 'float', + 'miny' => 'float', + 'maxx' => 'float', + 'maxy' => 'float', + ), + 'RecursiveArrayIterator::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'RecursiveArrayIterator::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::count' => + array ( + 0 => 'int', + ), + 'RecursiveArrayIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveArrayIterator::getArrayCopy' => + array ( + 0 => 'array', + ), + 'RecursiveArrayIterator::getChildren' => + array ( + 0 => 'RecursiveArrayIterator|null', + ), + 'RecursiveArrayIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveArrayIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveArrayIterator::key' => + array ( + 0 => 'int|null|string', + ), + 'RecursiveArrayIterator::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::natcasesort' => + array ( + 0 => 'true', + ), + 'RecursiveArrayIterator::natsort' => + array ( + 0 => 'true', + ), + 'RecursiveArrayIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveArrayIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'string', + ), + 'RecursiveArrayIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveArrayIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'RecursiveArrayIterator::serialize' => + array ( + 0 => 'string', + ), + 'RecursiveArrayIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveArrayIterator::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'RecursiveArrayIterator::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'RecursiveArrayIterator::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'RecursiveArrayIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'flags=' => 'int', + ), + 'RecursiveCachingIterator::__toString' => + array ( + 0 => 'string', + ), + 'RecursiveCachingIterator::count' => + array ( + 0 => 'int', + ), + 'RecursiveCachingIterator::current' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::getCache' => + array ( + 0 => 'array', + ), + 'RecursiveCachingIterator::getChildren' => + array ( + 0 => 'RecursiveCachingIterator|null', + ), + 'RecursiveCachingIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveCachingIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveCachingIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::hasNext' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::key' => + array ( + 0 => 'scalar', + ), + 'RecursiveCachingIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RecursiveCachingIterator::offsetGet' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RecursiveCachingIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'RecursiveCachingIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'RecursiveCachingIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveCachingIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + 'callback' => 'callable(mixed, mixed=, mixed=):bool', + ), + 'RecursiveCallbackFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveCallbackFilterIterator::getChildren' => + array ( + 0 => 'RecursiveCallbackFilterIterator', + ), + 'RecursiveCallbackFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveCallbackFilterIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::key' => + array ( + 0 => 'scalar', + ), + 'RecursiveCallbackFilterIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveCallbackFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveCallbackFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + 'flags=' => 'int', + ), + 'RecursiveDirectoryIterator::__toString' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'RecursiveDirectoryIterator::getATime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'RecursiveDirectoryIterator::getChildren' => + array ( + 0 => 'RecursiveDirectoryIterator', + ), + 'RecursiveDirectoryIterator::getCTime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getExtension' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'RecursiveDirectoryIterator::getFilename' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getGroup' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getInode' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getMTime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getOwner' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getPath' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'RecursiveDirectoryIterator::getPathname' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getPerms' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'RecursiveDirectoryIterator::getSize' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getSubPath' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getSubPathname' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getType' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::hasChildren' => + array ( + 0 => 'bool', + 'allowLinks=' => 'bool', + ), + 'RecursiveDirectoryIterator::isDir' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isDot' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isFile' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isLink' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::key' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveDirectoryIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'RecursiveDirectoryIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveDirectoryIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'RecursiveDirectoryIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveDirectoryIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + ), + 'RecursiveFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveFilterIterator::getChildren' => + array ( + 0 => 'RecursiveFilterIterator|null', + ), + 'RecursiveFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveFilterIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveFilterIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveIterator::__construct' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveIterator::getChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveIterator::key' => + array ( + 0 => 'int|string', + ), + 'RecursiveIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveIteratorIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'IteratorAggregate|RecursiveIterator', + 'mode=' => 'int', + 'flags=' => 'int', + ), + 'RecursiveIteratorIterator::beginChildren' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::beginIteration' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::callGetChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveIteratorIterator::callHasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveIteratorIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveIteratorIterator::endChildren' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::endIteration' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::getDepth' => + array ( + 0 => 'int', + ), + 'RecursiveIteratorIterator::getInnerIterator' => + array ( + 0 => 'RecursiveIterator', + ), + 'RecursiveIteratorIterator::getMaxDepth' => + array ( + 0 => 'false|int', + ), + 'RecursiveIteratorIterator::getSubIterator' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int|null', + ), + 'RecursiveIteratorIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveIteratorIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::nextElement' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::setMaxDepth' => + array ( + 0 => 'void', + 'maxDepth=' => 'int', + ), + 'RecursiveIteratorIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + 'pattern' => 'string', + 'mode=' => 'int', + 'flags=' => 'int', + 'pregFlags=' => 'int', + ), + 'RecursiveRegexIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveRegexIterator::getChildren' => + array ( + 0 => 'RecursiveRegexIterator', + ), + 'RecursiveRegexIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveRegexIterator::getMode' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getPregFlags' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getRegex' => + array ( + 0 => 'string', + ), + 'RecursiveRegexIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveRegexIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveRegexIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveRegexIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveRegexIterator::setMode' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'RecursiveRegexIterator::setPregFlags' => + array ( + 0 => 'void', + 'pregFlags' => 'int', + ), + 'RecursiveRegexIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveTreeIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'IteratorAggregate|RecursiveIterator', + 'flags=' => 'int', + 'cachingIteratorFlags=' => 'int', + 'mode=' => 'int', + ), + 'RecursiveTreeIterator::beginChildren' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::beginIteration' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::callGetChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveTreeIterator::callHasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveTreeIterator::current' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::endChildren' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::endIteration' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::getDepth' => + array ( + 0 => 'int', + ), + 'RecursiveTreeIterator::getEntry' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getInnerIterator' => + array ( + 0 => 'RecursiveIterator', + ), + 'RecursiveTreeIterator::getMaxDepth' => + array ( + 0 => 'false|int', + ), + 'RecursiveTreeIterator::getPostfix' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getPrefix' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getSubIterator' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int|null', + ), + 'RecursiveTreeIterator::key' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::nextElement' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::setMaxDepth' => + array ( + 0 => 'void', + 'maxDepth=' => 'int', + ), + 'RecursiveTreeIterator::setPostfix' => + array ( + 0 => 'void', + 'postfix' => 'string', + ), + 'RecursiveTreeIterator::setPrefixPart' => + array ( + 0 => 'void', + 'part' => 'int', + 'value' => 'string', + ), + 'RecursiveTreeIterator::valid' => + array ( + 0 => 'bool', + ), + 'Redis::__construct' => + array ( + 0 => 'void', + ), + 'Redis::__destruct' => + array ( + 0 => 'void', + ), + 'Redis::_prefix' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'Redis::_serialize' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Redis::_unserialize' => + array ( + 0 => 'mixed', + 'value' => 'string', + ), + 'Redis::append' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::auth' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'Redis::bgRewriteAOF' => + array ( + 0 => 'bool', + ), + 'Redis::bgSave' => + array ( + 0 => 'bool', + ), + 'Redis::bitCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::bitOp' => + array ( + 0 => 'int', + 'operation' => 'string', + 'ret_key' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::bitpos' => + array ( + 0 => 'int', + 'key' => 'string', + 'bit' => 'int', + 'start=' => 'int', + 'end=' => 'int', + ), + 'Redis::blPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'Redis::blPop\'1' => + array ( + 0 => 'array', + 'key' => 'string', + 'timeout_or_key' => 'int|string', + '...extra_args' => 'int|string', + ), + 'Redis::brPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'Redis::brPop\'1' => + array ( + 0 => 'array', + 'key' => 'string', + 'timeout_or_key' => 'int|string', + '...extra_args' => 'int|string', + ), + 'Redis::brpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'timeout' => 'int', + ), + 'Redis::clearLastError' => + array ( + 0 => 'bool', + ), + 'Redis::client' => + array ( + 0 => 'mixed', + 'command' => 'string', + 'arg=' => 'string', + ), + 'Redis::close' => + array ( + 0 => 'bool', + ), + 'Redis::command' => + array ( + 0 => 'mixed', + '...args' => 'mixed', + ), + 'Redis::config' => + array ( + 0 => 'string', + 'operation' => 'string', + 'key' => 'string', + 'value=' => 'string', + ), + 'Redis::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'reserved=' => 'null', + 'retry_interval=' => 'int|null', + 'read_timeout=' => 'float', + ), + 'Redis::dbSize' => + array ( + 0 => 'int', + ), + 'Redis::debug' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'Redis::decr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::decrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'Redis::decrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + ), + 'Redis::del' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::del\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::delete' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::delete\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::discard' => + array ( + 0 => 'mixed', + ), + 'Redis::dump' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::echo' => + array ( + 0 => 'string', + 'message' => 'string', + ), + 'Redis::eval' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + 'args=' => 'mixed', + 'numKeys=' => 'mixed', + ), + 'Redis::evalSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::evaluate' => + array ( + 0 => 'mixed', + 'script' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::evaluateSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::exec' => + array ( + 0 => 'array', + ), + 'Redis::exists' => + array ( + 0 => 'int', + 'keys' => 'array|string', + ), + 'Redis::exists\'1' => + array ( + 0 => 'int', + '...keys' => 'string', + ), + 'Redis::expire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::expireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiry' => 'int', + ), + 'Redis::flushAll' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'Redis::flushDb' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'Redis::geoAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'member' => 'string', + '...other_triples=' => 'float|int|string', + ), + 'Redis::geoDist' => + array ( + 0 => 'float', + 'key' => 'string', + 'member1' => 'string', + 'member2' => 'string', + 'unit=' => 'string', + ), + 'Redis::geoHash' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::geoPos' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...members=' => 'string', + ), + 'Redis::geoRadius' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'radius' => 'float', + 'unit' => 'float', + 'options=' => 'array', + ), + 'Redis::geoRadiusByMember' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'member' => 'string', + 'radius' => 'float', + 'units' => 'string', + 'options=' => 'array', + ), + 'Redis::get' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::getAuth' => + array ( + 0 => 'false|null|string', + ), + 'Redis::getBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + ), + 'Redis::getDBNum' => + array ( + 0 => 'false|int', + ), + 'Redis::getHost' => + array ( + 0 => 'false|string', + ), + 'Redis::getKeys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'Redis::getLastError' => + array ( + 0 => 'null|string', + ), + 'Redis::getMode' => + array ( + 0 => 'int', + ), + 'Redis::getMultiple' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'Redis::getOption' => + array ( + 0 => 'int', + 'name' => 'int', + ), + 'Redis::getPersistentID' => + array ( + 0 => 'false|null|string', + ), + 'Redis::getPort' => + array ( + 0 => 'false|int', + ), + 'Redis::getRange' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::getReadTimeout' => + array ( + 0 => 'false|float', + ), + 'Redis::getSet' => + array ( + 0 => 'string', + 'key' => 'string', + 'string' => 'string', + ), + 'Redis::getTimeout' => + array ( + 0 => 'false|float', + ), + 'Redis::hDel' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey1' => 'string', + '...otherHashKeys=' => 'string', + ), + 'Redis::hExists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'Redis::hGet' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'Redis::hGetAll' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::hIncrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'int', + ), + 'Redis::hIncrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'field' => 'string', + 'increment' => 'float', + ), + 'Redis::hKeys' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::hLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::hMGet' => + array ( + 0 => 'array', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'Redis::hMSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'Redis::hScan' => + array ( + 0 => 'array', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::hSet' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'Redis::hSetNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'Redis::hStrLen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'member' => 'mixed', + ), + 'Redis::hVals' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::incr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::incrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'Redis::incrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + ), + 'Redis::info' => + array ( + 0 => 'array', + 'option=' => 'string', + ), + 'Redis::isConnected' => + array ( + 0 => 'bool', + ), + 'Redis::keys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'Redis::lastSave' => + array ( + 0 => 'int', + ), + 'Redis::lGet' => + array ( + 0 => 'string', + 'key' => 'string', + 'index' => 'int', + ), + 'Redis::lGetRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::lIndex' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'index' => 'int', + ), + 'Redis::lInsert' => + array ( + 0 => 'int', + 'key' => 'string', + 'position' => 'int', + 'pivot' => 'string', + 'value' => 'string', + ), + 'Redis::listTrim' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'Redis::lLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::lPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::lPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::lPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::lRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::lRem' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'Redis::lRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'Redis::lSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'index' => 'int', + 'value' => 'string', + ), + 'Redis::lSize' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::lTrim' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'Redis::mGet' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'Redis::migrate' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'key' => 'array|string', + 'db' => 'int', + 'timeout' => 'int', + 'copy=' => 'bool', + 'replace=' => 'bool', + ), + 'Redis::move' => + array ( + 0 => 'bool', + 'key' => 'string', + 'dbindex' => 'int', + ), + 'Redis::mSet' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'Redis::mSetNx' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'Redis::multi' => + array ( + 0 => 'Redis', + 'mode=' => 'int', + ), + 'Redis::object' => + array ( + 0 => 'false|long|string', + 'info' => 'string', + 'key' => 'string', + ), + 'Redis::open' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'reserved=' => 'null', + 'retry_interval=' => 'int|null', + 'read_timeout=' => 'float', + ), + 'Redis::pconnect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'persistent_id=' => 'string', + 'retry_interval=' => 'int|null', + ), + 'Redis::persist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'Redis::pExpire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::pexpireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiry' => 'int', + ), + 'Redis::pfAdd' => + array ( + 0 => 'bool', + 'key' => 'string', + 'elements' => 'array', + ), + 'Redis::pfCount' => + array ( + 0 => 'int', + 'key' => 'array|string', + ), + 'Redis::pfMerge' => + array ( + 0 => 'bool', + 'destkey' => 'string', + 'sourcekeys' => 'array', + ), + 'Redis::ping' => + array ( + 0 => 'string', + ), + 'Redis::pipeline' => + array ( + 0 => 'Redis', + ), + 'Redis::popen' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'persistent_id=' => 'string', + 'retry_interval=' => 'int|null', + ), + 'Redis::psetex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::psubscribe' => + array ( + 0 => 'mixed', + 'patterns' => 'array', + 'callback' => 'array|string', + ), + 'Redis::pttl' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::publish' => + array ( + 0 => 'int', + 'channel' => 'string', + 'message' => 'string', + ), + 'Redis::pubsub' => + array ( + 0 => 'array|int', + 'keyword' => 'string', + 'argument=' => 'array|string', + ), + 'Redis::punsubscribe' => + array ( + 0 => 'mixed', + 'pattern' => 'string', + '...other_patterns=' => 'string', + ), + 'Redis::randomKey' => + array ( + 0 => 'string', + ), + 'Redis::rawCommand' => + array ( + 0 => 'mixed', + 'command' => 'string', + '...arguments=' => 'mixed', + ), + 'Redis::rename' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::renameKey' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::renameNx' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::resetStat' => + array ( + 0 => 'bool', + ), + 'Redis::restore' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::role' => + array ( + 0 => 'array', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'Redis::rPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::rpoplpush' => + array ( + 0 => 'string', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'Redis::rPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::rPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::sAdd' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::sAddArray' => + array ( + 0 => 'bool', + 'key' => 'string', + 'values' => 'array', + ), + 'Redis::save' => + array ( + 0 => 'bool', + ), + 'Redis::scan' => + array ( + 0 => 'array|false', + '&rw_iterator' => 'int|null', + 'pattern=' => 'null|string', + 'count=' => 'int|null', + ), + 'Redis::sCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::sContains' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::script' => + array ( + 0 => 'mixed', + 'command' => 'string', + '...args=' => 'mixed', + ), + 'Redis::sDiff' => + array ( + 0 => 'array', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sDiffStore' => + array ( + 0 => 'false|int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::select' => + array ( + 0 => 'bool', + 'dbindex' => 'int', + ), + 'Redis::sendEcho' => + array ( + 0 => 'string', + 'msg' => 'string', + ), + 'Redis::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Redis::set\'1' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'timeout=' => 'int', + ), + 'Redis::setBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'int', + ), + 'Redis::setEx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::setNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::setOption' => + array ( + 0 => 'bool', + 'name' => 'int', + 'value' => 'mixed', + ), + 'Redis::setRange' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'end' => 'int', + ), + 'Redis::setTimeout' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::sGetMembers' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'Redis::sInter' => + array ( + 0 => 'array|false', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sInterStore' => + array ( + 0 => 'false|int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sIsMember' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::slave' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + ), + 'Redis::slave\'1' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + ), + 'Redis::slaveof' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'Redis::slowLog' => + array ( + 0 => 'mixed', + 'operation' => 'string', + 'length=' => 'int', + ), + 'Redis::sMembers' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::sMove' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'member' => 'string', + ), + 'Redis::sort' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'options=' => 'array', + ), + 'Redis::sortAsc' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'string', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortAscAlpha' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortDesc' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortDescAlpha' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::sRandMember' => + array ( + 0 => 'array|false|string', + 'key' => 'string', + 'count=' => 'int', + ), + 'Redis::sRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'Redis::sRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'Redis::sScan' => + array ( + 0 => 'array|bool', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::sSize' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::strLen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::subscribe' => + array ( + 0 => 'mixed|null', + 'channels' => 'array', + 'callback' => 'array|string', + ), + 'Redis::substr' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::sUnion' => + array ( + 0 => 'array', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sUnionStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::swapdb' => + array ( + 0 => 'bool', + 'srcdb' => 'int', + 'dstdb' => 'int', + ), + 'Redis::time' => + array ( + 0 => 'array', + ), + 'Redis::ttl' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::type' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::unlink\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::unsubscribe' => + array ( + 0 => 'mixed', + 'channel' => 'string', + '...other_channels=' => 'string', + ), + 'Redis::unwatch' => + array ( + 0 => 'mixed', + ), + 'Redis::wait' => + array ( + 0 => 'int', + 'numSlaves' => 'int', + 'timeout' => 'int', + ), + 'Redis::watch' => + array ( + 0 => 'void', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::xack' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'arr_ids' => 'array', + ), + 'Redis::xadd' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_id' => 'string', + 'arr_fields' => 'array', + 'i_maxlen=' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'Redis::xclaim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'i_min_idle' => 'mixed', + 'arr_ids' => 'array', + 'arr_opts=' => 'array', + ), + 'Redis::xdel' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'arr_ids' => 'array', + ), + 'Redis::xgroup' => + array ( + 0 => 'mixed', + 'str_operation' => 'string', + 'str_key=' => 'string', + 'str_arg1=' => 'mixed', + 'str_arg2=' => 'mixed', + 'str_arg3=' => 'mixed', + ), + 'Redis::xinfo' => + array ( + 0 => 'mixed', + 'str_cmd' => 'string', + 'str_key=' => 'string', + 'str_group=' => 'string', + ), + 'Redis::xlen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'Redis::xpending' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_start=' => 'mixed', + 'str_end=' => 'mixed', + 'i_count=' => 'mixed', + 'str_consumer=' => 'string', + ), + 'Redis::xrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'Redis::xread' => + array ( + 0 => 'mixed', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'Redis::xreadgroup' => + array ( + 0 => 'mixed', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'Redis::xrevrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'Redis::xtrim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'i_maxlen' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'Redis::zAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'Redis::zAdd\'1' => + array ( + 0 => 'int', + 'options' => 'array', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'Redis::zCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::zCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + ), + 'Redis::zDelete' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zDeleteRangeByRank' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zDeleteRangeByScore' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'float', + 'end' => 'float', + ), + 'Redis::zIncrBy' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + 'member' => 'string', + ), + 'Redis::zInter' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zInterStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zLexCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + ), + 'Redis::zRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscores=' => 'bool', + ), + 'Redis::zRangeByLex' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'Redis::zRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int|string', + 'end' => 'int|string', + 'options=' => 'array', + ), + 'Redis::zRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zRemoveRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zRemoveRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'Redis::zRemRangeByLex' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + ), + 'Redis::zRemRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zRemRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'Redis::zReverseRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'Redis::zRevRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'Redis::zRevRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'Redis::zRevRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + 'options=' => 'array', + ), + 'Redis::zRevRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zScan' => + array ( + 0 => 'array|bool', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::zScore' => + array ( + 0 => 'false|float', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zSize' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'Redis::zUnion' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zUnionStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'RedisArray::__call' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + ), + 'RedisArray::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'hosts=' => 'array|null', + 'opts=' => 'array|null', + ), + 'RedisArray::_continuum' => + array ( + 0 => 'mixed', + ), + 'RedisArray::_distributor' => + array ( + 0 => 'mixed', + ), + 'RedisArray::_function' => + array ( + 0 => 'string', + ), + 'RedisArray::_hosts' => + array ( + 0 => 'array', + ), + 'RedisArray::_instance' => + array ( + 0 => 'mixed', + 'host' => 'mixed', + ), + 'RedisArray::_rehash' => + array ( + 0 => 'mixed', + 'callable=' => 'callable', + ), + 'RedisArray::_target' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RedisArray::bgsave' => + array ( + 0 => 'mixed', + ), + 'RedisArray::del' => + array ( + 0 => 'bool', + 'key' => 'string', + '...args' => 'string', + ), + 'RedisArray::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + '...args' => 'string', + ), + 'RedisArray::delete\'1' => + array ( + 0 => 'bool', + 'key' => 'array', + ), + 'RedisArray::discard' => + array ( + 0 => 'mixed', + ), + 'RedisArray::exec' => + array ( + 0 => 'array', + ), + 'RedisArray::flushAll' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'RedisArray::flushDb' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'RedisArray::getMultiple' => + array ( + 0 => 'mixed', + 'keys' => 'mixed', + ), + 'RedisArray::getOption' => + array ( + 0 => 'mixed', + 'opt' => 'mixed', + ), + 'RedisArray::info' => + array ( + 0 => 'array', + ), + 'RedisArray::keys' => + array ( + 0 => 'array', + 'pattern' => 'mixed', + ), + 'RedisArray::mGet' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'RedisArray::mSet' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'RedisArray::multi' => + array ( + 0 => 'RedisArray', + 'host' => 'string', + 'mode=' => 'int', + ), + 'RedisArray::ping' => + array ( + 0 => 'string', + ), + 'RedisArray::save' => + array ( + 0 => 'bool', + ), + 'RedisArray::select' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'RedisArray::setOption' => + array ( + 0 => 'mixed', + 'opt' => 'mixed', + 'value' => 'mixed', + ), + 'RedisArray::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisArray::unlink\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'RedisArray::unwatch' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::__construct' => + array ( + 0 => 'void', + 'name' => 'null|string', + 'seeds=' => 'array', + 'timeout=' => 'float', + 'readTimeout=' => 'float', + 'persistent=' => 'bool', + 'auth=' => 'null|string', + ), + 'RedisCluster::_masters' => + array ( + 0 => 'array', + ), + 'RedisCluster::_prefix' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'RedisCluster::_redir' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::_serialize' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'RedisCluster::_unserialize' => + array ( + 0 => 'mixed', + 'value' => 'string', + ), + 'RedisCluster::append' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::bgrewriteaof' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::bgsave' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::bitCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::bitOp' => + array ( + 0 => 'int', + 'operation' => 'string', + 'retKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::bitpos' => + array ( + 0 => 'int', + 'key' => 'string', + 'bit' => 'int', + 'start=' => 'int', + 'end=' => 'int', + ), + 'RedisCluster::blPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'RedisCluster::brPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'RedisCluster::brpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'timeout' => 'int', + ), + 'RedisCluster::clearLastError' => + array ( + 0 => 'bool', + ), + 'RedisCluster::client' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'subCmd=' => 'string', + '...args=' => 'mixed', + ), + 'RedisCluster::close' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::cluster' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'arguments=' => 'mixed', + ), + 'RedisCluster::command' => + array ( + 0 => 'array|bool', + ), + 'RedisCluster::config' => + array ( + 0 => 'array|bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'operation' => 'string', + 'key' => 'string', + 'value=' => 'string', + ), + 'RedisCluster::dbSize' => + array ( + 0 => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::decr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::decrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'RedisCluster::del' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::del\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'RedisCluster::discard' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::dump' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::echo' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'msg' => 'string', + ), + 'RedisCluster::eval' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + 'args=' => 'mixed', + 'numKeys=' => 'mixed', + ), + 'RedisCluster::evalSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'RedisCluster::exec' => + array ( + 0 => 'array|null', + ), + 'RedisCluster::exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RedisCluster::expire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'RedisCluster::expireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timestamp' => 'int', + ), + 'RedisCluster::flushAll' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'async=' => 'bool', + ), + 'RedisCluster::flushDB' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'async=' => 'bool', + ), + 'RedisCluster::geoAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'member' => 'string', + '...other_members=' => 'float|string', + ), + 'RedisCluster::geoDist' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'member1' => 'string', + 'member2' => 'string', + 'unit=' => 'string', + ), + 'RedisCluster::geohash' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::geopos' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::geoRadius' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'radius' => 'float', + 'radiusUnit' => 'string', + 'options=' => 'array', + ), + 'RedisCluster::geoRadiusByMember' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + 'radius' => 'float', + 'radiusUnit' => 'string', + 'options=' => 'array', + ), + 'RedisCluster::get' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::getBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + ), + 'RedisCluster::getLastError' => + array ( + 0 => 'null|string', + ), + 'RedisCluster::getMode' => + array ( + 0 => 'int', + ), + 'RedisCluster::getOption' => + array ( + 0 => 'int', + 'option' => 'int', + ), + 'RedisCluster::getRange' => + array ( + 0 => 'string', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::getSet' => + array ( + 0 => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hDel' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey' => 'string', + '...other_hashKeys=' => 'array', + ), + 'RedisCluster::hExists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'RedisCluster::hGet' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'RedisCluster::hGetAll' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::hIncrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'int', + ), + 'RedisCluster::hIncrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'field' => 'string', + 'increment' => 'float', + ), + 'RedisCluster::hKeys' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::hLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'RedisCluster::hMGet' => + array ( + 0 => 'array', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'RedisCluster::hMSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'RedisCluster::hScan' => + array ( + 0 => 'array', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::hSet' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hSetNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hStrlen' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::hVals' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::incr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::incrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'RedisCluster::incrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'increment' => 'float', + ), + 'RedisCluster::info' => + array ( + 0 => 'array', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'option=' => 'string', + ), + 'RedisCluster::keys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'RedisCluster::lastSave' => + array ( + 0 => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::lGet' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'index' => 'int', + ), + 'RedisCluster::lIndex' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'index' => 'int', + ), + 'RedisCluster::lInsert' => + array ( + 0 => 'int', + 'key' => 'string', + 'position' => 'int', + 'pivot' => 'string', + 'value' => 'string', + ), + 'RedisCluster::lLen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::lPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::lPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::lPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::lRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::lRem' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'RedisCluster::lSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'index' => 'int', + 'value' => 'string', + ), + 'RedisCluster::lTrim' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'RedisCluster::mget' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'RedisCluster::mset' => + array ( + 0 => 'bool', + 'array' => 'array', + ), + 'RedisCluster::msetnx' => + array ( + 0 => 'int', + 'array' => 'array', + ), + 'RedisCluster::multi' => + array ( + 0 => 'Redis', + 'mode=' => 'int', + ), + 'RedisCluster::object' => + array ( + 0 => 'false|int|string', + 'string' => 'string', + 'key' => 'string', + ), + 'RedisCluster::persist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RedisCluster::pExpire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'RedisCluster::pExpireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timestamp' => 'int', + ), + 'RedisCluster::pfAdd' => + array ( + 0 => 'bool', + 'key' => 'string', + 'elements' => 'array', + ), + 'RedisCluster::pfCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::pfMerge' => + array ( + 0 => 'bool', + 'destKey' => 'string', + 'sourceKeys' => 'array', + ), + 'RedisCluster::ping' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::psetex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::psubscribe' => + array ( + 0 => 'mixed', + 'patterns' => 'array', + 'callback' => 'string', + ), + 'RedisCluster::pttl' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::publish' => + array ( + 0 => 'int', + 'channel' => 'string', + 'message' => 'string', + ), + 'RedisCluster::pubsub' => + array ( + 0 => 'array', + 'nodeParams' => 'string', + 'keyword' => 'string', + '...argument=' => 'string', + ), + 'RedisCluster::punSubscribe' => + array ( + 0 => 'mixed', + 'channels' => 'mixed', + 'callback' => 'mixed', + ), + 'RedisCluster::randomKey' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::rawCommand' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'arguments=' => 'mixed', + ), + 'RedisCluster::rename' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::renameNx' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::restore' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::role' => + array ( + 0 => 'array', + ), + 'RedisCluster::rPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::rpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::rPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::rPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::sAdd' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::sAddArray' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'valueArray' => 'array', + ), + 'RedisCluster::save' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::scan' => + array ( + 0 => 'array|false', + '&iterator' => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::sCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::script' => + array ( + 0 => 'array|bool|string', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'script=' => 'string', + '...other_scripts=' => 'array', + ), + 'RedisCluster::sDiff' => + array ( + 0 => 'list', + 'key1' => 'string', + 'key2' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sDiffStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + 'timeout=' => 'array|int', + ), + 'RedisCluster::setBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'bool|int', + ), + 'RedisCluster::setex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::setnx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::setOption' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'RedisCluster::setRange' => + array ( + 0 => 'string', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'string', + ), + 'RedisCluster::sInter' => + array ( + 0 => 'list', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sInterStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sIsMember' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::slowLog' => + array ( + 0 => 'array|bool|int', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'length=' => 'int', + ), + 'RedisCluster::sMembers' => + array ( + 0 => 'list', + 'key' => 'string', + ), + 'RedisCluster::sMove' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'member' => 'string', + ), + 'RedisCluster::sort' => + array ( + 0 => 'array', + 'key' => 'string', + 'option=' => 'array', + ), + 'RedisCluster::sPop' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RedisCluster::sRandMember' => + array ( + 0 => 'array|string', + 'key' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::sRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::sScan' => + array ( + 0 => 'array|false', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'null', + 'count=' => 'int', + ), + 'RedisCluster::strlen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::subscribe' => + array ( + 0 => 'mixed', + 'channels' => 'array', + 'callback' => 'string', + ), + 'RedisCluster::sUnion' => + array ( + 0 => 'list', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sUnion\'1' => + array ( + 0 => 'list', + 'keys' => 'array', + ), + 'RedisCluster::sUnionStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::time' => + array ( + 0 => 'array', + ), + 'RedisCluster::ttl' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::type' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::unSubscribe' => + array ( + 0 => 'mixed', + 'channels' => 'mixed', + '...other_channels=' => 'mixed', + ), + 'RedisCluster::unwatch' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::watch' => + array ( + 0 => 'void', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::xack' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'arr_ids' => 'array', + ), + 'RedisCluster::xadd' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_id' => 'string', + 'arr_fields' => 'array', + 'i_maxlen=' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'RedisCluster::xclaim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'i_min_idle' => 'mixed', + 'arr_ids' => 'array', + 'arr_opts=' => 'array', + ), + 'RedisCluster::xdel' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'arr_ids' => 'array', + ), + 'RedisCluster::xgroup' => + array ( + 0 => 'mixed', + 'str_operation' => 'string', + 'str_key=' => 'string', + 'str_arg1=' => 'mixed', + 'str_arg2=' => 'mixed', + 'str_arg3=' => 'mixed', + ), + 'RedisCluster::xinfo' => + array ( + 0 => 'mixed', + 'str_cmd' => 'string', + 'str_key=' => 'string', + 'str_group=' => 'string', + ), + 'RedisCluster::xlen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'RedisCluster::xpending' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_start=' => 'mixed', + 'str_end=' => 'mixed', + 'i_count=' => 'mixed', + 'str_consumer=' => 'string', + ), + 'RedisCluster::xrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'RedisCluster::xread' => + array ( + 0 => 'mixed', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'RedisCluster::xreadgroup' => + array ( + 0 => 'mixed', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'RedisCluster::xrevrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'RedisCluster::xtrim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'i_maxlen' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'RedisCluster::zAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'RedisCluster::zCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::zCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + ), + 'RedisCluster::zIncrBy' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + 'member' => 'string', + ), + 'RedisCluster::zInterStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'RedisCluster::zLexCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + ), + 'RedisCluster::zRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscores=' => 'bool', + ), + 'RedisCluster::zRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'RedisCluster::zRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'options=' => 'array', + ), + 'RedisCluster::zRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::zRemRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + ), + 'RedisCluster::zRemRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::zRemRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'RedisCluster::zRevRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'RedisCluster::zRevRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'RedisCluster::zRevRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'options=' => 'array', + ), + 'RedisCluster::zRevRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zScan' => + array ( + 0 => 'array|false', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::zScore' => + array ( + 0 => 'float', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zUnionStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Reflection::getModifierNames' => + array ( + 0 => 'list', + 'modifiers' => 'int', + ), + 'ReflectionClass::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionClass::__construct' => + array ( + 0 => 'void', + 'objectOrClass' => 'class-string|object', + ), + 'ReflectionClass::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionClass::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionClass::getConstant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'ReflectionClass::getConstants' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + 'ReflectionClass::getConstructor' => + array ( + 0 => 'ReflectionMethod|null', + ), + 'ReflectionClass::getDefaultProperties' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionClass::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionClass::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getInterfaceNames' => + array ( + 0 => 'list', + ), + 'ReflectionClass::getInterfaces' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getMethod' => + array ( + 0 => 'ReflectionMethod', + 'name' => 'string', + ), + 'ReflectionClass::getMethods' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + 'ReflectionClass::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionClass::getName' => + array ( + 0 => 'class-string', + ), + 'ReflectionClass::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionClass::getParentClass' => + array ( + 0 => 'ReflectionClass|false', + ), + 'ReflectionClass::getProperties' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + 'ReflectionClass::getProperty' => + array ( + 0 => 'ReflectionProperty', + 'name' => 'string', + ), + 'ReflectionClass::getReflectionConstant' => + array ( + 0 => 'ReflectionClassConstant|false', + 'name' => 'string', + ), + 'ReflectionClass::getReflectionConstants' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + 'ReflectionClass::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionClass::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionClass::getStaticProperties' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getStaticPropertyValue' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'ReflectionClass::getTraitAliases' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getTraitNames' => + array ( + 0 => 'list', + ), + 'ReflectionClass::getTraits' => + array ( + 0 => 'array', + ), + 'ReflectionClass::hasConstant' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::hasMethod' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::hasProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::implementsInterface' => + array ( + 0 => 'bool', + 'interface' => 'ReflectionClass|class-string', + ), + 'ReflectionClass::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isAnonymous' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isCloneable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isEnum' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInstance' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'ReflectionClass::isInstantiable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInterface' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isIterable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isIterateable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isSubclassOf' => + array ( + 0 => 'bool', + 'class' => 'ReflectionClass|class-string', + ), + 'ReflectionClass::isTrait' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::newInstance' => + array ( + 0 => 'object', + '...args=' => 'mixed', + ), + 'ReflectionClass::newInstanceArgs' => + array ( + 0 => 'object', + 'args=' => 'array|string, mixed>', + ), + 'ReflectionClass::newInstanceWithoutConstructor' => + array ( + 0 => 'object', + ), + 'ReflectionClass::setStaticPropertyValue' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'ReflectionClassConstant::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'constant' => 'string', + ), + 'ReflectionClassConstant::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionClassConstant::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionClassConstant::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionClassConstant::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionClassConstant::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionClassConstant::getName' => + array ( + 0 => 'string', + ), + 'ReflectionClassConstant::getValue' => + array ( + 0 => 'array|null|scalar', + ), + 'ReflectionClassConstant::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionClassConstant::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionClassConstant::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionEnum::getBackingType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionEnum::getCase' => + array ( + 0 => 'ReflectionEnumUnitCase', + 'name' => 'string', + ), + 'ReflectionEnum::getCases' => + array ( + 0 => 'list', + ), + 'ReflectionEnum::hasCase' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionEnum::isBacked' => + array ( + 0 => 'bool', + ), + 'ReflectionEnumUnitCase::getEnum' => + array ( + 0 => 'ReflectionEnum', + ), + 'ReflectionEnumUnitCase::getValue' => + array ( + 0 => 'UnitEnum', + ), + 'ReflectionEnumBackedCase::getBackingValue' => + array ( + 0 => 'int|string', + ), + 'ReflectionExtension::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionExtension::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'ReflectionExtension::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionExtension::getClasses' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getClassNames' => + array ( + 0 => 'list', + ), + 'ReflectionExtension::getConstants' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getDependencies' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getFunctions' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getINIEntries' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getName' => + array ( + 0 => 'string', + ), + 'ReflectionExtension::getVersion' => + array ( + 0 => 'null|string', + ), + 'ReflectionExtension::info' => + array ( + 0 => 'void', + ), + 'ReflectionExtension::isPersistent' => + array ( + 0 => 'bool', + ), + 'ReflectionExtension::isTemporary' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::__construct' => + array ( + 0 => 'void', + 'function' => 'Closure|callable-string', + ), + 'ReflectionFunction::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::getClosure' => + array ( + 0 => 'Closure', + ), + 'ReflectionFunction::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionFunction::getClosureThis' => + array ( + 0 => 'object', + ), + 'ReflectionFunction::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunction::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionFunction::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getName' => + array ( + 0 => 'callable-string', + ), + 'ReflectionFunction::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunction::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunction::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionFunction::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunction::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunction::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionFunction::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::invoke' => + array ( + 0 => 'mixed', + '...args=' => 'mixed', + ), + 'ReflectionFunction::invokeArgs' => + array ( + 0 => 'mixed', + 'args' => 'array', + ), + 'ReflectionFunction::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isDisabled' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionFunctionAbstract::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionFunctionAbstract::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionFunctionAbstract::getClosureThis' => + array ( + 0 => 'null|object', + ), + 'ReflectionFunctionAbstract::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunctionAbstract::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionFunctionAbstract::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunctionAbstract::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionFunctionAbstract::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunctionAbstract::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunctionAbstract::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionFunctionAbstract::getTentativeReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunctionAbstract::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::hasTentativeReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isStatic' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionGenerator::__construct' => + array ( + 0 => 'void', + 'generator' => 'Generator', + ), + 'ReflectionGenerator::getExecutingFile' => + array ( + 0 => 'string', + ), + 'ReflectionGenerator::getExecutingGenerator' => + array ( + 0 => 'Generator', + ), + 'ReflectionGenerator::getExecutingLine' => + array ( + 0 => 'int', + ), + 'ReflectionGenerator::getFunction' => + array ( + 0 => 'ReflectionFunctionAbstract', + ), + 'ReflectionGenerator::getThis' => + array ( + 0 => 'null|object', + ), + 'ReflectionGenerator::getTrace' => + array ( + 0 => 'array', + 'options=' => 'int', + ), + 'ReflectionMethod::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'name' => 'string', + ), + 'ReflectionMethod::__construct\'1' => + array ( + 0 => 'void', + 'class_method' => 'string', + ), + 'ReflectionMethod::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getClosure' => + array ( + 0 => 'Closure', + 'object=' => 'null|object', + ), + 'ReflectionMethod::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionMethod::getClosureThis' => + array ( + 0 => 'object', + ), + 'ReflectionMethod::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionMethod::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionMethod::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionMethod::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionMethod::getPrototype' => + array ( + 0 => 'ReflectionMethod', + ), + 'ReflectionMethod::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionMethod::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionMethod::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionMethod::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::invoke' => + array ( + 0 => 'mixed', + 'object' => 'null|object', + '...args=' => 'mixed', + ), + 'ReflectionMethod::invokeArgs' => + array ( + 0 => 'mixed', + 'object' => 'null|object', + 'args' => 'array', + ), + 'ReflectionMethod::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isConstructor' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isDestructor' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::setAccessible' => + array ( + 0 => 'void', + 'accessible' => 'bool', + ), + 'ReflectionNamedType::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionNamedType::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionNamedType::getName' => + array ( + 0 => 'string', + ), + 'ReflectionNamedType::isBuiltin' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::__construct' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'ReflectionObject::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getConstant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'ReflectionObject::getConstants' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + 'ReflectionObject::getConstructor' => + array ( + 0 => 'ReflectionMethod|null', + ), + 'ReflectionObject::getDefaultProperties' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionObject::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionObject::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getInterfaceNames' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getInterfaces' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getMethod' => + array ( + 0 => 'ReflectionMethod', + 'name' => 'string', + ), + 'ReflectionObject::getMethods' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + 'ReflectionObject::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionObject::getName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getParentClass' => + array ( + 0 => 'ReflectionClass|false', + ), + 'ReflectionObject::getProperties' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + 'ReflectionObject::getProperty' => + array ( + 0 => 'ReflectionProperty', + 'name' => 'string', + ), + 'ReflectionObject::getReflectionConstant' => + array ( + 0 => 'ReflectionClassConstant', + 'name' => 'string', + ), + 'ReflectionObject::getReflectionConstants' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + 'ReflectionObject::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionObject::getStaticProperties' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getStaticPropertyValue' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'ReflectionObject::getTraitAliases' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getTraitNames' => + array ( + 0 => 'list', + ), + 'ReflectionObject::getTraits' => + array ( + 0 => 'array', + ), + 'ReflectionObject::hasConstant' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::hasMethod' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::hasProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::implementsInterface' => + array ( + 0 => 'bool', + 'interface' => 'ReflectionClass|class-string', + ), + 'ReflectionObject::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isAnonymous' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isCloneable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isEnum' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInstance' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'ReflectionObject::isInstantiable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInterface' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isIterable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isIterateable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isSubclassOf' => + array ( + 0 => 'bool', + 'class' => 'ReflectionClass|string', + ), + 'ReflectionObject::isTrait' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::newInstance' => + array ( + 0 => 'object', + 'args=' => 'mixed', + '...args=' => 'array', + ), + 'ReflectionObject::newInstanceArgs' => + array ( + 0 => 'object', + 'args=' => 'array|string, mixed>', + ), + 'ReflectionObject::newInstanceWithoutConstructor' => + array ( + 0 => 'object', + ), + 'ReflectionObject::setStaticPropertyValue' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'ReflectionParameter::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionParameter::__construct' => + array ( + 0 => 'void', + 'function' => 'array|object|string', + 'param' => 'int|string', + ), + 'ReflectionParameter::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionParameter::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::canBePassedByValue' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionParameter::getClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionParameter::getDeclaringClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionParameter::getDeclaringFunction' => + array ( + 0 => 'ReflectionFunctionAbstract', + ), + 'ReflectionParameter::getDefaultValue' => + array ( + 0 => 'mixed', + ), + 'ReflectionParameter::getDefaultValueConstantName' => + array ( + 0 => 'null|string', + ), + 'ReflectionParameter::getName' => + array ( + 0 => 'non-empty-string', + ), + 'ReflectionParameter::getPosition' => + array ( + 0 => 'int<0, max>', + ), + 'ReflectionParameter::getType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionParameter::hasType' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isArray' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isCallable' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isDefaultValueAvailable' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isDefaultValueConstant' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isOptional' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isPassedByReference' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionProperty::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'property' => 'string', + ), + 'ReflectionProperty::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionProperty::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionProperty::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionProperty::getDefaultValue' => + array ( + 0 => 'mixed', + ), + 'ReflectionProperty::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionProperty::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionProperty::getName' => + array ( + 0 => 'string', + ), + 'ReflectionProperty::getType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionProperty::getValue' => + array ( + 0 => 'mixed', + 'object=' => 'null|object', + ), + 'ReflectionProperty::hasDefaultValue' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::hasType' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isDefault' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isInitialized' => + array ( + 0 => 'bool', + 'object=' => 'null|object', + ), + 'ReflectionProperty::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isPromoted' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isReadonly' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isStatic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::setAccessible' => + array ( + 0 => 'void', + 'accessible' => 'bool', + ), + 'ReflectionProperty::setValue' => + array ( + 0 => 'void', + 'object' => 'null|object', + 'value' => 'mixed', + ), + 'ReflectionProperty::setValue\'1' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ReflectionType::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionType::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionType::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionUnionType::getTypes' => + array ( + 0 => 'list', + ), + 'ReflectionZendExtension::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionZendExtension::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'ReflectionZendExtension::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getAuthor' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getCopyright' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getName' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getURL' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getVersion' => + array ( + 0 => 'string', + ), + 'Reflector::__toString' => + array ( + 0 => 'string', + ), + 'Reflector::export' => + array ( + 0 => 'null|string', + ), + 'RegexIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'pattern' => 'string', + 'mode=' => 'int', + 'flags=' => 'int', + 'pregFlags=' => 'int', + ), + 'RegexIterator::accept' => + array ( + 0 => 'bool', + ), + 'RegexIterator::current' => + array ( + 0 => 'mixed', + ), + 'RegexIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RegexIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RegexIterator::getMode' => + array ( + 0 => 'int', + ), + 'RegexIterator::getPregFlags' => + array ( + 0 => 'int', + ), + 'RegexIterator::getRegex' => + array ( + 0 => 'string', + ), + 'RegexIterator::key' => + array ( + 0 => 'mixed', + ), + 'RegexIterator::next' => + array ( + 0 => 'void', + ), + 'RegexIterator::rewind' => + array ( + 0 => 'void', + ), + 'RegexIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RegexIterator::setMode' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'RegexIterator::setPregFlags' => + array ( + 0 => 'void', + 'pregFlags' => 'int', + ), + 'RegexIterator::valid' => + array ( + 0 => 'bool', + ), + 'register_event_handler' => + array ( + 0 => 'bool', + 'event_handler_func' => 'string', + 'handler_register_name' => 'string', + 'event_type_mask' => 'int', + ), + 'register_shutdown_function' => + array ( + 0 => 'void', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'register_tick_function' => + array ( + 0 => 'bool', + 'callback' => 'callable():void', + '...args=' => 'mixed', + ), + 'rename' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + 'context=' => 'resource', + ), + 'rename_function' => + array ( + 0 => 'bool', + 'original_name' => 'string', + 'new_name' => 'string', + ), + 'reset' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array', + ), + 'ResourceBundle::__construct' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::count' => + array ( + 0 => 'int', + ), + 'ResourceBundle::create' => + array ( + 0 => 'ResourceBundle|null', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::get' => + array ( + 0 => 'mixed', + 'index' => 'int|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::getErrorCode' => + array ( + 0 => 'int', + ), + 'ResourceBundle::getErrorMessage' => + array ( + 0 => 'string', + ), + 'ResourceBundle::getLocales' => + array ( + 0 => 'array|false', + 'bundle' => 'string', + ), + 'resourcebundle_count' => + array ( + 0 => 'int', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_create' => + array ( + 0 => 'ResourceBundle|null', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'resourcebundle_get' => + array ( + 0 => 'mixed|null', + 'bundle' => 'ResourceBundle', + 'index' => 'int|string', + 'fallback=' => 'bool', + ), + 'resourcebundle_get_error_code' => + array ( + 0 => 'int', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_get_error_message' => + array ( + 0 => 'string', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_locales' => + array ( + 0 => 'array', + 'bundle' => 'string', + ), + 'restore_error_handler' => + array ( + 0 => 'true', + ), + 'restore_exception_handler' => + array ( + 0 => 'true', + ), + 'restore_include_path' => + array ( + 0 => 'void', + ), + 'rewind' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'rewinddir' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'rmdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'round' => + array ( + 0 => 'float', + 'num' => 'float|int', + 'precision=' => 'int', + 'mode=' => 'int<0, max>', + ), + 'rpm_close' => + array ( + 0 => 'bool', + 'rpmr' => 'resource', + ), + 'rpm_get_tag' => + array ( + 0 => 'mixed', + 'rpmr' => 'resource', + 'tagnum' => 'int', + ), + 'rpm_is_valid' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'rpm_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'rpm_version' => + array ( + 0 => 'string', + ), + 'rpmaddtag' => + array ( + 0 => 'bool', + 'tag' => 'int', + ), + 'rpmdbinfo' => + array ( + 0 => 'array', + 'nevr' => 'string', + 'full=' => 'bool', + ), + 'rpmdbsearch' => + array ( + 0 => 'array', + 'pattern' => 'string', + 'rpmtag=' => 'int', + 'rpmmire=' => 'int', + 'full=' => 'bool', + ), + 'rpminfo' => + array ( + 0 => 'array', + 'path' => 'string', + 'full=' => 'bool', + 'error=' => 'string', + ), + 'rpmvercmp' => + array ( + 0 => 'int', + 'evr1' => 'string', + 'evr2' => 'string', + ), + 'rrd_create' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_disconnect' => + array ( + 0 => 'void', + ), + 'rrd_error' => + array ( + 0 => 'string', + ), + 'rrd_fetch' => + array ( + 0 => 'array', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_first' => + array ( + 0 => 'false|int', + 'file' => 'string', + 'raaindex=' => 'int', + ), + 'rrd_graph' => + array ( + 0 => 'array|false', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_info' => + array ( + 0 => 'array|false', + 'filename' => 'string', + ), + 'rrd_last' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'rrd_lastupdate' => + array ( + 0 => 'array|false', + 'filename' => 'string', + ), + 'rrd_restore' => + array ( + 0 => 'bool', + 'xml_file' => 'string', + 'rrd_file' => 'string', + 'options=' => 'array', + ), + 'rrd_tune' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_update' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_version' => + array ( + 0 => 'string', + ), + 'rrd_xport' => + array ( + 0 => 'array|false', + 'options' => 'array', + ), + 'rrdc_disconnect' => + array ( + 0 => 'void', + ), + 'RRDCreator::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + 'starttime=' => 'string', + 'step=' => 'int', + ), + 'RRDCreator::addArchive' => + array ( + 0 => 'void', + 'description' => 'string', + ), + 'RRDCreator::addDataSource' => + array ( + 0 => 'void', + 'description' => 'string', + ), + 'RRDCreator::save' => + array ( + 0 => 'bool', + ), + 'RRDGraph::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'RRDGraph::save' => + array ( + 0 => 'array|false', + ), + 'RRDGraph::saveVerbose' => + array ( + 0 => 'array|false', + ), + 'RRDGraph::setOptions' => + array ( + 0 => 'void', + 'options' => 'array', + ), + 'RRDUpdater::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'RRDUpdater::update' => + array ( + 0 => 'bool', + 'values' => 'array', + 'time=' => 'string', + ), + 'rsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'rtrim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'runkit7_constant_add' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'mixed', + 'new_visibility=' => 'int', + ), + 'runkit7_constant_redefine' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'mixed', + 'new_visibility=' => 'int|null', + ), + 'runkit7_constant_remove' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + ), + 'runkit7_function_add' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_doc_comment=' => 'null|string', + 'return_by_reference=' => 'bool|null', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_function_copy' => + array ( + 0 => 'bool', + 'source_name' => 'string', + 'target_name' => 'string', + ), + 'runkit7_function_redefine' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_doc_comment=' => 'null|string', + 'return_by_reference=' => 'bool|null', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_function_remove' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'runkit7_function_rename' => + array ( + 0 => 'bool', + 'source_name' => 'string', + 'target_name' => 'string', + ), + 'runkit7_import' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int|null', + ), + 'runkit7_method_add' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_flags=' => 'int|null|string', + 'flags_or_doc_comment=' => 'int|null|string', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_method_copy' => + array ( + 0 => 'bool', + 'destination_class' => 'string', + 'destination_method' => 'string', + 'source_class' => 'string', + 'source_method=' => 'null|string', + ), + 'runkit7_method_redefine' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_flags=' => 'int|null|string', + 'flags_or_doc_comment=' => 'int|null|string', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_method_remove' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + ), + 'runkit7_method_rename' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'source_method_name' => 'string', + 'source_target_name' => 'string', + ), + 'runkit7_superglobals' => + array ( + 0 => 'array', + ), + 'runkit7_zval_inspect' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'runkit_class_adopt' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'parentname' => 'string', + ), + 'runkit_class_emancipate' => + array ( + 0 => 'bool', + 'classname' => 'string', + ), + 'runkit_constant_add' => + array ( + 0 => 'bool', + 'constname' => 'string', + 'value' => 'mixed', + ), + 'runkit_constant_redefine' => + array ( + 0 => 'bool', + 'constname' => 'string', + 'newvalue' => 'mixed', + ), + 'runkit_constant_remove' => + array ( + 0 => 'bool', + 'constname' => 'string', + ), + 'runkit_function_add' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'arglist' => 'string', + 'code' => 'string', + 'doccomment=' => 'null|string', + ), + 'runkit_function_add\'1' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'closure' => 'Closure', + 'doccomment=' => 'null|string', + ), + 'runkit_function_copy' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'targetname' => 'string', + ), + 'runkit_function_redefine' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'arglist' => 'string', + 'code' => 'string', + 'doccomment=' => 'null|string', + ), + 'runkit_function_redefine\'1' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'closure' => 'Closure', + 'doccomment=' => 'null|string', + ), + 'runkit_function_remove' => + array ( + 0 => 'bool', + 'funcname' => 'string', + ), + 'runkit_function_rename' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'newname' => 'string', + ), + 'runkit_import' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'runkit_lint' => + array ( + 0 => 'bool', + 'code' => 'string', + ), + 'runkit_lint_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'runkit_method_add' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_add\'1' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'closure' => 'Closure', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_copy' => + array ( + 0 => 'bool', + 'dclass' => 'string', + 'dmethod' => 'string', + 'sclass' => 'string', + 'smethod=' => 'string', + ), + 'runkit_method_redefine' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_redefine\'1' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'closure' => 'Closure', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_remove' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + ), + 'runkit_method_rename' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'newname' => 'string', + ), + 'runkit_return_value_used' => + array ( + 0 => 'bool', + ), + 'Runkit_Sandbox::__construct' => + array ( + 0 => 'void', + 'options=' => 'array', + ), + 'runkit_sandbox_output_handler' => + array ( + 0 => 'mixed', + 'sandbox' => 'object', + 'callback=' => 'mixed', + ), + 'Runkit_Sandbox_Parent' => + array ( + 0 => 'mixed', + ), + 'Runkit_Sandbox_Parent::__construct' => + array ( + 0 => 'void', + ), + 'runkit_superglobals' => + array ( + 0 => 'array', + ), + 'runkit_zval_inspect' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'RuntimeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'RuntimeException::__toString' => + array ( + 0 => 'string', + ), + 'RuntimeException::getCode' => + array ( + 0 => 'int', + ), + 'RuntimeException::getFile' => + array ( + 0 => 'string', + ), + 'RuntimeException::getLine' => + array ( + 0 => 'int', + ), + 'RuntimeException::getMessage' => + array ( + 0 => 'string', + ), + 'RuntimeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'RuntimeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RuntimeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SAMConnection::commit' => + array ( + 0 => 'bool', + ), + 'SAMConnection::connect' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::disconnect' => + array ( + 0 => 'bool', + ), + 'SAMConnection::errno' => + array ( + 0 => 'int', + ), + 'SAMConnection::error' => + array ( + 0 => 'string', + ), + 'SAMConnection::isConnected' => + array ( + 0 => 'bool', + ), + 'SAMConnection::peek' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::peekAll' => + array ( + 0 => 'array', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::receive' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::remove' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::rollback' => + array ( + 0 => 'bool', + ), + 'SAMConnection::send' => + array ( + 0 => 'string', + 'target' => 'string', + 'msg' => 'sammessage', + 'properties=' => 'array', + ), + 'SAMConnection::setDebug' => + array ( + 0 => 'mixed', + 'switch' => 'bool', + ), + 'SAMConnection::subscribe' => + array ( + 0 => 'string', + 'targettopic' => 'string', + ), + 'SAMConnection::unsubscribe' => + array ( + 0 => 'bool', + 'subscriptionid' => 'string', + 'targettopic=' => 'string', + ), + 'SAMMessage::body' => + array ( + 0 => 'string', + ), + 'SAMMessage::header' => + array ( + 0 => 'object', + ), + 'sapi_windows_cp_conv' => + array ( + 0 => 'null|string', + 'in_codepage' => 'int|string', + 'out_codepage' => 'int|string', + 'subject' => 'string', + ), + 'sapi_windows_cp_get' => + array ( + 0 => 'int', + 'kind=' => 'string', + ), + 'sapi_windows_cp_is_utf8' => + array ( + 0 => 'bool', + ), + 'sapi_windows_cp_set' => + array ( + 0 => 'bool', + 'codepage' => 'int', + ), + 'sapi_windows_vt100_support' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable=' => 'bool|null', + ), + 'Saxon\\SaxonProcessor::__construct' => + array ( + 0 => 'void', + 'license=' => 'bool', + 'cwd=' => 'string', + ), + 'Saxon\\SaxonProcessor::createAtomicValue' => + array ( + 0 => 'Saxon\\XdmValue', + 'primitive_type_val' => 'scalar', + ), + 'Saxon\\SaxonProcessor::newSchemaValidator' => + array ( + 0 => 'Saxon\\SchemaValidator', + ), + 'Saxon\\SaxonProcessor::newXPathProcessor' => + array ( + 0 => 'Saxon\\XPathProcessor', + ), + 'Saxon\\SaxonProcessor::newXQueryProcessor' => + array ( + 0 => 'Saxon\\XQueryProcessor', + ), + 'Saxon\\SaxonProcessor::newXsltProcessor' => + array ( + 0 => 'Saxon\\XsltProcessor', + ), + 'Saxon\\SaxonProcessor::parseXmlFromFile' => + array ( + 0 => 'Saxon\\XdmNode', + 'fileName' => 'string', + ), + 'Saxon\\SaxonProcessor::parseXmlFromString' => + array ( + 0 => 'Saxon\\XdmNode', + 'value' => 'string', + ), + 'Saxon\\SaxonProcessor::registerPHPFunctions' => + array ( + 0 => 'void', + 'library' => 'string', + ), + 'Saxon\\SaxonProcessor::setConfigurationProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\SaxonProcessor::setcwd' => + array ( + 0 => 'void', + 'cwd' => 'string', + ), + 'Saxon\\SaxonProcessor::setResourceDirectory' => + array ( + 0 => 'void', + 'dir' => 'string', + ), + 'Saxon\\SaxonProcessor::version' => + array ( + 0 => 'string', + ), + 'Saxon\\SchemaValidator::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\SchemaValidator::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\SchemaValidator::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\SchemaValidator::getValidationReport' => + array ( + 0 => 'Saxon\\XdmNode', + ), + 'Saxon\\SchemaValidator::registerSchemaFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\SchemaValidator::registerSchemaFromString' => + array ( + 0 => 'void', + 'schemaStr' => 'string', + ), + 'Saxon\\SchemaValidator::setOutputFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\SchemaValidator::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\SchemaValidator::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\SchemaValidator::setSourceNode' => + array ( + 0 => 'void', + 'node' => 'Saxon\\XdmNode', + ), + 'Saxon\\SchemaValidator::validate' => + array ( + 0 => 'void', + 'filename=' => 'null|string', + ), + 'Saxon\\SchemaValidator::validateToNode' => + array ( + 0 => 'Saxon\\XdmNode', + 'filename=' => 'null|string', + ), + 'Saxon\\XdmAtomicValue::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmAtomicValue::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmAtomicValue::getBooleanValue' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmAtomicValue::getDoubleValue' => + array ( + 0 => 'float', + ), + 'Saxon\\XdmAtomicValue::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmAtomicValue::getLongValue' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmAtomicValue::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmAtomicValue::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmAtomicValue::isAtomic' => + array ( + 0 => 'true', + ), + 'Saxon\\XdmAtomicValue::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmAtomicValue::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmAtomicValue::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmItem::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmItem::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmItem::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmItem::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmItem::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmItem::isAtomic' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmItem::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmItem::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmItem::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmNode::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmNode::getAttributeCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getAttributeNode' => + array ( + 0 => 'Saxon\\XdmNode|null', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getAttributeValue' => + array ( + 0 => 'null|string', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getChildCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getChildNode' => + array ( + 0 => 'Saxon\\XdmNode|null', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmNode::getNodeKind' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getNodeName' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmNode::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmNode::getParent' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmNode::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmNode::isAtomic' => + array ( + 0 => 'false', + ), + 'Saxon\\XdmNode::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmNode::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmNode::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmValue::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmValue::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmValue::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmValue::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XPathProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::declareNamespace' => + array ( + 0 => 'void', + 'prefix' => 'mixed', + 'namespace' => 'mixed', + ), + 'Saxon\\XPathProcessor::effectiveBooleanValue' => + array ( + 0 => 'bool', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::evaluate' => + array ( + 0 => 'Saxon\\XdmValue', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::evaluateSingle' => + array ( + 0 => 'Saxon\\XdmItem', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XPathProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XPathProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XPathProcessor::setBaseURI' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Saxon\\XPathProcessor::setContextFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XPathProcessor::setContextItem' => + array ( + 0 => 'void', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XPathProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XPathProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XQueryProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::declareNamespace' => + array ( + 0 => 'void', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'Saxon\\XQueryProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XQueryProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XQueryProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XQueryProcessor::runQueryToFile' => + array ( + 0 => 'void', + 'outfilename' => 'string', + ), + 'Saxon\\XQueryProcessor::runQueryToString' => + array ( + 0 => 'null|string', + ), + 'Saxon\\XQueryProcessor::runQueryToValue' => + array ( + 0 => 'Saxon\\XdmValue|null', + ), + 'Saxon\\XQueryProcessor::setContextItem' => + array ( + 0 => 'void', + 'object' => 'Saxon\\XdmAtomicValue|Saxon\\XdmItem|Saxon\\XdmNode|Saxon\\XdmValue', + ), + 'Saxon\\XQueryProcessor::setContextItemFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XQueryProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XQueryProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryBaseURI' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryContent' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryItem' => + array ( + 0 => 'void', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XsltProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::compileFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::compileFromString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'Saxon\\XsltProcessor::compileFromValue' => + array ( + 0 => 'void', + 'node' => 'Saxon\\XdmNode', + ), + 'Saxon\\XsltProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XsltProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XsltProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XsltProcessor::setOutputFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XsltProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XsltProcessor::setSourceFromFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'Saxon\\XsltProcessor::setSourceFromXdmValue' => + array ( + 0 => 'void', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XsltProcessor::transformFileToFile' => + array ( + 0 => 'void', + 'sourceFileName' => 'string', + 'stylesheetFileName' => 'string', + 'outputfileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformFileToString' => + array ( + 0 => 'null|string', + 'sourceFileName' => 'string', + 'stylesheetFileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformFileToValue' => + array ( + 0 => 'Saxon\\XdmValue', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformToFile' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::transformToString' => + array ( + 0 => 'string', + ), + 'Saxon\\XsltProcessor::transformToValue' => + array ( + 0 => 'Saxon\\XdmValue|null', + ), + 'SCA::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SCA::getService' => + array ( + 0 => 'mixed', + 'target' => 'string', + 'binding=' => 'string', + 'config=' => 'array', + ), + 'SCA_LocalProxy::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SCA_SoapProxy::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'scalebarObj::convertToString' => + array ( + 0 => 'string', + ), + 'scalebarObj::free' => + array ( + 0 => 'void', + ), + 'scalebarObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'scalebarObj::setImageColor' => + array ( + 0 => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'scalebarObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'scandir' => + array ( + 0 => 'false|list', + 'directory' => 'string', + 'sorting_order=' => 'int', + 'context=' => 'resource', + ), + 'SDO_DAS_ChangeSummary::beginLogging' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_ChangeSummary::endLogging' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_ChangeSummary::getChangedDataObjects' => + array ( + 0 => 'SDO_List', + ), + 'SDO_DAS_ChangeSummary::getChangeType' => + array ( + 0 => 'int', + 'dataobject' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::getOldContainer' => + array ( + 0 => 'SDO_DataObject', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::getOldValues' => + array ( + 0 => 'SDO_List', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::isLogging' => + array ( + 0 => 'bool', + ), + 'SDO_DAS_DataFactory::addPropertyToType' => + array ( + 0 => 'mixed', + 'parent_type_namespace_uri' => 'string', + 'parent_type_name' => 'string', + 'property_name' => 'string', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + 'options=' => 'array', + ), + 'SDO_DAS_DataFactory::addType' => + array ( + 0 => 'mixed', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + 'options=' => 'array', + ), + 'SDO_DAS_DataFactory::getDataFactory' => + array ( + 0 => 'SDO_DAS_DataFactory', + ), + 'SDO_DAS_DataObject::getChangeSummary' => + array ( + 0 => 'SDO_DAS_ChangeSummary', + ), + 'SDO_DAS_Relational::__construct' => + array ( + 0 => 'void', + 'database_metadata' => 'array', + 'application_root_type=' => 'string', + 'sdo_containment_references_metadata=' => 'array', + ), + 'SDO_DAS_Relational::applyChanges' => + array ( + 0 => 'mixed', + 'database_handle' => 'pdo', + 'root_data_object' => 'sdodataobject', + ), + 'SDO_DAS_Relational::createRootDataObject' => + array ( + 0 => 'SDODataObject', + ), + 'SDO_DAS_Relational::executePreparedQuery' => + array ( + 0 => 'SDODataObject', + 'database_handle' => 'pdo', + 'prepared_statement' => 'pdostatement', + 'value_list' => 'array', + 'column_specifier=' => 'array', + ), + 'SDO_DAS_Relational::executeQuery' => + array ( + 0 => 'SDODataObject', + 'database_handle' => 'pdo', + 'sql_statement' => 'string', + 'column_specifier=' => 'array', + ), + 'SDO_DAS_Setting::getListIndex' => + array ( + 0 => 'int', + ), + 'SDO_DAS_Setting::getPropertyIndex' => + array ( + 0 => 'int', + ), + 'SDO_DAS_Setting::getPropertyName' => + array ( + 0 => 'string', + ), + 'SDO_DAS_Setting::getValue' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_Setting::isSet' => + array ( + 0 => 'bool', + ), + 'SDO_DAS_XML::addTypes' => + array ( + 0 => 'mixed', + 'xsd_file' => 'string', + ), + 'SDO_DAS_XML::create' => + array ( + 0 => 'SDO_DAS_XML', + 'xsd_file=' => 'mixed', + 'key=' => 'string', + ), + 'SDO_DAS_XML::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SDO_DAS_XML::createDocument' => + array ( + 0 => 'SDO_DAS_XML_Document', + 'document_element_name' => 'string', + 'document_element_namespace_uri' => 'string', + 'dataobject=' => 'sdo_dataobject', + ), + 'SDO_DAS_XML::loadFile' => + array ( + 0 => 'SDO_XMLDocument', + 'xml_file' => 'string', + ), + 'SDO_DAS_XML::loadString' => + array ( + 0 => 'SDO_DAS_XML_Document', + 'xml_string' => 'string', + ), + 'SDO_DAS_XML::saveFile' => + array ( + 0 => 'mixed', + 'xdoc' => 'sdo_xmldocument', + 'xml_file' => 'string', + 'indent=' => 'int', + ), + 'SDO_DAS_XML::saveString' => + array ( + 0 => 'string', + 'xdoc' => 'sdo_xmldocument', + 'indent=' => 'int', + ), + 'SDO_DAS_XML_Document::getRootDataObject' => + array ( + 0 => 'SDO_DataObject', + ), + 'SDO_DAS_XML_Document::getRootElementName' => + array ( + 0 => 'string', + ), + 'SDO_DAS_XML_Document::getRootElementURI' => + array ( + 0 => 'string', + ), + 'SDO_DAS_XML_Document::setEncoding' => + array ( + 0 => 'mixed', + 'encoding' => 'string', + ), + 'SDO_DAS_XML_Document::setXMLDeclaration' => + array ( + 0 => 'mixed', + 'xmldeclatation' => 'bool', + ), + 'SDO_DAS_XML_Document::setXMLVersion' => + array ( + 0 => 'mixed', + 'xmlversion' => 'string', + ), + 'SDO_DataFactory::create' => + array ( + 0 => 'void', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SDO_DataObject::clear' => + array ( + 0 => 'void', + ), + 'SDO_DataObject::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'identifier' => 'mixed', + ), + 'SDO_DataObject::getContainer' => + array ( + 0 => 'SDO_DataObject', + ), + 'SDO_DataObject::getSequence' => + array ( + 0 => 'SDO_Sequence', + ), + 'SDO_DataObject::getTypeName' => + array ( + 0 => 'string', + ), + 'SDO_DataObject::getTypeNamespaceURI' => + array ( + 0 => 'string', + ), + 'SDO_Exception::getCause' => + array ( + 0 => 'mixed', + ), + 'SDO_List::insert' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'index=' => 'int', + ), + 'SDO_Model_Property::getContainingType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Property::getDefault' => + array ( + 0 => 'mixed', + ), + 'SDO_Model_Property::getName' => + array ( + 0 => 'string', + ), + 'SDO_Model_Property::getType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Property::isContainment' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Property::isMany' => + array ( + 0 => 'bool', + ), + 'SDO_Model_ReflectionDataObject::__construct' => + array ( + 0 => 'void', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_Model_ReflectionDataObject::export' => + array ( + 0 => 'mixed', + 'rdo' => 'sdo_model_reflectiondataobject', + 'return=' => 'bool', + ), + 'SDO_Model_ReflectionDataObject::getContainmentProperty' => + array ( + 0 => 'SDO_Model_Property', + ), + 'SDO_Model_ReflectionDataObject::getInstanceProperties' => + array ( + 0 => 'array', + ), + 'SDO_Model_ReflectionDataObject::getType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Type::getBaseType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Type::getName' => + array ( + 0 => 'string', + ), + 'SDO_Model_Type::getNamespaceURI' => + array ( + 0 => 'string', + ), + 'SDO_Model_Type::getProperties' => + array ( + 0 => 'array', + ), + 'SDO_Model_Type::getProperty' => + array ( + 0 => 'SDO_Model_Property', + 'identifier' => 'mixed', + ), + 'SDO_Model_Type::isAbstractType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isDataType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isInstance' => + array ( + 0 => 'bool', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_Model_Type::isOpenType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isSequencedType' => + array ( + 0 => 'bool', + ), + 'SDO_Sequence::getProperty' => + array ( + 0 => 'SDO_Model_Property', + 'sequence_index' => 'int', + ), + 'SDO_Sequence::insert' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'sequenceindex=' => 'int', + 'propertyidentifier=' => 'mixed', + ), + 'SDO_Sequence::move' => + array ( + 0 => 'void', + 'toindex' => 'int', + 'fromindex' => 'int', + ), + 'SeasLog::__destruct' => + array ( + 0 => 'void', + ), + 'SeasLog::alert' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::analyzerCount' => + array ( + 0 => 'mixed', + 'level' => 'string', + 'log_path=' => 'string', + 'key_word=' => 'string', + ), + 'SeasLog::analyzerDetail' => + array ( + 0 => 'mixed', + 'level' => 'string', + 'log_path=' => 'string', + 'key_word=' => 'string', + 'start=' => 'int', + 'limit=' => 'int', + 'order=' => 'int', + ), + 'SeasLog::closeLoggerStream' => + array ( + 0 => 'bool', + 'model' => 'int', + 'logger' => 'string', + ), + 'SeasLog::critical' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::debug' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::emergency' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::flushBuffer' => + array ( + 0 => 'bool', + ), + 'SeasLog::getBasePath' => + array ( + 0 => 'string', + ), + 'SeasLog::getBuffer' => + array ( + 0 => 'array', + ), + 'SeasLog::getBufferEnabled' => + array ( + 0 => 'bool', + ), + 'SeasLog::getDatetimeFormat' => + array ( + 0 => 'string', + ), + 'SeasLog::getLastLogger' => + array ( + 0 => 'string', + ), + 'SeasLog::getRequestID' => + array ( + 0 => 'string', + ), + 'SeasLog::getRequestVariable' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'SeasLog::info' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::log' => + array ( + 0 => 'bool', + 'level' => 'string', + 'message=' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::notice' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::setBasePath' => + array ( + 0 => 'bool', + 'base_path' => 'string', + ), + 'SeasLog::setDatetimeFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'SeasLog::setLogger' => + array ( + 0 => 'bool', + 'logger' => 'string', + ), + 'SeasLog::setRequestID' => + array ( + 0 => 'bool', + 'request_id' => 'string', + ), + 'SeasLog::setRequestVariable' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'SeasLog::warning' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'seaslog_get_author' => + array ( + 0 => 'string', + ), + 'seaslog_get_version' => + array ( + 0 => 'string', + ), + 'SeekableIterator::__construct' => + array ( + 0 => 'void', + ), + 'SeekableIterator::current' => + array ( + 0 => 'mixed', + ), + 'SeekableIterator::key' => + array ( + 0 => 'int|string', + ), + 'SeekableIterator::next' => + array ( + 0 => 'void', + ), + 'SeekableIterator::rewind' => + array ( + 0 => 'void', + ), + 'SeekableIterator::seek' => + array ( + 0 => 'void', + 'position' => 'int', + ), + 'SeekableIterator::valid' => + array ( + 0 => 'bool', + ), + 'sem_acquire' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + 'non_blocking=' => 'bool', + ), + 'sem_get' => + array ( + 0 => 'SysvSemaphore|false', + 'key' => 'int', + 'max_acquire=' => 'int', + 'permissions=' => 'int', + 'auto_release=' => 'bool', + ), + 'sem_release' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + ), + 'sem_remove' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + ), + 'Serializable::__construct' => + array ( + 0 => 'void', + ), + 'Serializable::serialize' => + array ( + 0 => 'null|string', + ), + 'Serializable::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'serialize' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'ServerRequest::withInput' => + array ( + 0 => 'ServerRequest', + 'input' => 'mixed', + ), + 'ServerRequest::withoutParams' => + array ( + 0 => 'ServerRequest', + 'params' => 'int|string', + ), + 'ServerRequest::withParam' => + array ( + 0 => 'ServerRequest', + 'key' => 'int|string', + 'value' => 'mixed', + ), + 'ServerRequest::withParams' => + array ( + 0 => 'ServerRequest', + 'params' => 'mixed', + ), + 'ServerRequest::withUrl' => + array ( + 0 => 'ServerRequest', + 'url' => 'array', + ), + 'ServerResponse::addHeader' => + array ( + 0 => 'void', + 'label' => 'string', + 'value' => 'string', + ), + 'ServerResponse::date' => + array ( + 0 => 'string', + 'date' => 'DateTimeInterface|string', + ), + 'ServerResponse::getHeader' => + array ( + 0 => 'string', + 'label' => 'string', + ), + 'ServerResponse::getHeaders' => + array ( + 0 => 'array', + ), + 'ServerResponse::getStatus' => + array ( + 0 => 'int', + ), + 'ServerResponse::getVersion' => + array ( + 0 => 'string', + ), + 'ServerResponse::setHeader' => + array ( + 0 => 'void', + 'label' => 'string', + 'value' => 'string', + ), + 'ServerResponse::setStatus' => + array ( + 0 => 'void', + 'status' => 'int', + ), + 'ServerResponse::setVersion' => + array ( + 0 => 'void', + 'version' => 'string', + ), + 'session_abort' => + array ( + 0 => 'bool', + ), + 'session_cache_expire' => + array ( + 0 => 'false|int', + 'value=' => 'int|null', + ), + 'session_cache_limiter' => + array ( + 0 => 'false|string', + 'value=' => 'null|string', + ), + 'session_commit' => + array ( + 0 => 'bool', + ), + 'session_create_id' => + array ( + 0 => 'false|string', + 'prefix=' => 'string', + ), + 'session_decode' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'session_destroy' => + array ( + 0 => 'bool', + ), + 'session_encode' => + array ( + 0 => 'false|string', + ), + 'session_gc' => + array ( + 0 => 'false|int', + ), + 'session_get_cookie_params' => + array ( + 0 => 'array{domain: null|string, httponly: bool|null, lifetime: int|null, path: null|string, samesite: null|string, secure: bool|null}', + ), + 'session_id' => + array ( + 0 => 'false|string', + 'id=' => 'null|string', + ), + 'session_is_registered' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'session_module_name' => + array ( + 0 => 'false|string', + 'module=' => 'null|string', + ), + 'session_name' => + array ( + 0 => 'false|string', + 'name=' => 'null|string', + ), + 'session_pgsql_add_error' => + array ( + 0 => 'bool', + 'error_level' => 'int', + 'error_message=' => 'string', + ), + 'session_pgsql_get_error' => + array ( + 0 => 'array', + 'with_error_message=' => 'bool', + ), + 'session_pgsql_get_field' => + array ( + 0 => 'string', + ), + 'session_pgsql_reset' => + array ( + 0 => 'bool', + ), + 'session_pgsql_set_field' => + array ( + 0 => 'bool', + 'value' => 'string', + ), + 'session_pgsql_status' => + array ( + 0 => 'array', + ), + 'session_regenerate_id' => + array ( + 0 => 'bool', + 'delete_old_session=' => 'bool', + ), + 'session_register' => + array ( + 0 => 'bool', + 'name' => 'mixed', + '...args=' => 'mixed', + ), + 'session_register_shutdown' => + array ( + 0 => 'void', + ), + 'session_reset' => + array ( + 0 => 'bool', + ), + 'session_save_path' => + array ( + 0 => 'false|string', + 'path=' => 'null|string', + ), + 'session_set_cookie_params' => + array ( + 0 => 'bool', + 'lifetime' => 'int', + 'path=' => 'null|string', + 'domain=' => 'null|string', + 'secure=' => 'bool|null', + 'httponly=' => 'bool|null', + ), + 'session_set_cookie_params\'1' => + array ( + 0 => 'bool', + 'options' => 'array{domain?: null|string, httponly?: bool|null, lifetime?: int|null, path?: null|string, samesite?: null|string, secure?: bool|null}', + ), + 'session_set_save_handler' => + array ( + 0 => 'bool', + 'open' => 'callable(string, string):bool', + 'close' => 'callable():bool', + 'read' => 'callable(string):string', + 'write' => 'callable(string, string):bool', + 'destroy' => 'callable(string):bool', + 'gc' => 'callable(string):bool', + 'create_sid=' => 'callable():string', + 'validate_sid=' => 'callable(string):bool', + 'update_timestamp=' => 'callable(string):bool', + ), + 'session_set_save_handler\'1' => + array ( + 0 => 'bool', + 'open' => 'SessionHandlerInterface', + 'close=' => 'bool', + ), + 'session_start' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'session_status' => + array ( + 0 => 'int', + ), + 'session_unregister' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'session_unset' => + array ( + 0 => 'bool', + ), + 'session_write_close' => + array ( + 0 => 'bool', + ), + 'SessionHandler::close' => + array ( + 0 => 'bool', + ), + 'SessionHandler::create_sid' => + array ( + 0 => 'string', + ), + 'SessionHandler::destroy' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'SessionHandler::gc' => + array ( + 0 => 'false|int', + 'max_lifetime' => 'int', + ), + 'SessionHandler::open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'name' => 'string', + ), + 'SessionHandler::read' => + array ( + 0 => 'false|string', + 'id' => 'string', + ), + 'SessionHandler::write' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionHandlerInterface::close' => + array ( + 0 => 'bool', + ), + 'SessionHandlerInterface::destroy' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'SessionHandlerInterface::gc' => + array ( + 0 => 'false|int', + 'max_lifetime' => 'int', + ), + 'SessionHandlerInterface::open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'name' => 'string', + ), + 'SessionHandlerInterface::read' => + array ( + 0 => 'false|string', + 'id' => 'string', + ), + 'SessionHandlerInterface::write' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionIdInterface::create_sid' => + array ( + 0 => 'string', + ), + 'SessionUpdateTimestampHandler::updateTimestamp' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionUpdateTimestampHandler::validateId' => + array ( + 0 => 'char', + 'id' => 'string', + ), + 'SessionUpdateTimestampHandlerInterface::updateTimestamp' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionUpdateTimestampHandlerInterface::validateId' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'set_error_handler' => + array ( + 0 => 'callable(int, string, string=, int=, array=):bool|null', + 'callback' => 'callable(int, string, string=, int=, array=):bool|null', + 'error_levels=' => 'int', + ), + 'set_exception_handler' => + array ( + 0 => 'callable(Throwable):void|null', + 'callback' => 'callable(Throwable):void|null', + ), + 'set_file_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'set_include_path' => + array ( + 0 => 'false|string', + 'include_path' => 'string', + ), + 'set_magic_quotes_runtime' => + array ( + 0 => 'bool', + 'new_setting' => 'bool', + ), + 'set_time_limit' => + array ( + 0 => 'bool', + 'seconds' => 'int', + ), + 'setcookie' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + 'samesite=' => 'string', + 'url_encode=' => 'int', + ), + 'setcookie\'1' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'options=' => 'array', + ), + 'setLeftFill' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'setLine' => + array ( + 0 => 'void', + 'width' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'setlocale' => + array ( + 0 => 'false|string', + 'category' => 'int', + 'locales' => '0|null|string', + '...rest=' => 'string', + ), + 'setlocale\'1' => + array ( + 0 => 'false|string', + 'category' => 'int', + 'locales' => 'array|null', + ), + 'setproctitle' => + array ( + 0 => 'void', + 'title' => 'string', + ), + 'setrawcookie' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + ), + 'setrawcookie\'1' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'options=' => 'array', + ), + 'setRightFill' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'setthreadtitle' => + array ( + 0 => 'bool', + 'title' => 'string', + ), + 'settype' => + array ( + 0 => 'bool', + '&rw_var' => 'mixed', + 'type' => 'string', + ), + 'sha1' => + array ( + 0 => 'string', + 'string' => 'string', + 'binary=' => 'bool', + ), + 'sha1_file' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'sha256' => + array ( + 0 => 'string', + 'string' => 'string', + 'raw_output=' => 'bool', + ), + 'sha256_file' => + array ( + 0 => 'string', + 'filename' => 'string', + 'raw_output=' => 'bool', + ), + 'shapefileObj::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'type' => 'int', + ), + 'shapefileObj::addPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + ), + 'shapefileObj::addShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapefileObj::free' => + array ( + 0 => 'void', + ), + 'shapefileObj::getExtent' => + array ( + 0 => 'rectObj', + 'i' => 'int', + ), + 'shapefileObj::getPoint' => + array ( + 0 => 'shapeObj', + 'i' => 'int', + ), + 'shapefileObj::getShape' => + array ( + 0 => 'shapeObj', + 'i' => 'int', + ), + 'shapefileObj::getTransformed' => + array ( + 0 => 'shapeObj', + 'map' => 'mapObj', + 'i' => 'int', + ), + 'shapefileObj::ms_newShapefileObj' => + array ( + 0 => 'shapefileObj', + 'filename' => 'string', + 'type' => 'int', + ), + 'shapeObj::__construct' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'shapeObj::add' => + array ( + 0 => 'int', + 'line' => 'lineObj', + ), + 'shapeObj::boundary' => + array ( + 0 => 'shapeObj', + ), + 'shapeObj::contains' => + array ( + 0 => 'bool', + 'point' => 'pointObj', + ), + 'shapeObj::containsShape' => + array ( + 0 => 'int', + 'shape2' => 'shapeObj', + ), + 'shapeObj::convexhull' => + array ( + 0 => 'shapeObj', + ), + 'shapeObj::crosses' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::difference' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::disjoint' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + ), + 'shapeObj::equals' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::free' => + array ( + 0 => 'void', + ), + 'shapeObj::getArea' => + array ( + 0 => 'float', + ), + 'shapeObj::getCentroid' => + array ( + 0 => 'pointObj', + ), + 'shapeObj::getLabelPoint' => + array ( + 0 => 'pointObj', + ), + 'shapeObj::getLength' => + array ( + 0 => 'float', + ), + 'shapeObj::getPointUsingMeasure' => + array ( + 0 => 'pointObj', + 'm' => 'float', + ), + 'shapeObj::getValue' => + array ( + 0 => 'string', + 'layer' => 'layerObj', + 'filedname' => 'string', + ), + 'shapeObj::intersection' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::intersects' => + array ( + 0 => 'bool', + 'shape' => 'shapeObj', + ), + 'shapeObj::line' => + array ( + 0 => 'lineObj', + 'i' => 'int', + ), + 'shapeObj::ms_shapeObjFromWkt' => + array ( + 0 => 'shapeObj', + 'wkt' => 'string', + ), + 'shapeObj::overlaps' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'shapeObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'shapeObj::setBounds' => + array ( + 0 => 'int', + ), + 'shapeObj::simplify' => + array ( + 0 => 'null|shapeObj', + 'tolerance' => 'float', + ), + 'shapeObj::symdifference' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::topologyPreservingSimplify' => + array ( + 0 => 'null|shapeObj', + 'tolerance' => 'float', + ), + 'shapeObj::touches' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::toWkt' => + array ( + 0 => 'string', + ), + 'shapeObj::union' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::within' => + array ( + 0 => 'int', + 'shape2' => 'shapeObj', + ), + 'shell_exec' => + array ( + 0 => 'false|null|string', + 'command' => 'string', + ), + 'shm_attach' => + array ( + 0 => 'SysvSharedMemory|false', + 'key' => 'int', + 'size=' => 'int|null', + 'permissions=' => 'int', + ), + 'shm_detach' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + ), + 'shm_get_var' => + array ( + 0 => 'mixed', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + 'shm_has_var' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + 'shm_put_var' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + 'value' => 'mixed', + ), + 'shm_remove' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + ), + 'shm_remove_var' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + 'shmop_close' => + array ( + 0 => 'void', + 'shmop' => 'Shmop', + ), + 'shmop_delete' => + array ( + 0 => 'bool', + 'shmop' => 'Shmop', + ), + 'shmop_open' => + array ( + 0 => 'Shmop|false', + 'key' => 'int', + 'mode' => 'string', + 'permissions' => 'int', + 'size' => 'int', + ), + 'shmop_read' => + array ( + 0 => 'string', + 'shmop' => 'Shmop', + 'offset' => 'int', + 'size' => 'int', + ), + 'shmop_size' => + array ( + 0 => 'int', + 'shmop' => 'Shmop', + ), + 'shmop_write' => + array ( + 0 => 'int', + 'shmop' => 'Shmop', + 'data' => 'string', + 'offset' => 'int', + ), + 'show_source' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + 'return=' => 'bool', + ), + 'shuffle' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + 'signeurlpaiement' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'similar_text' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + '&w_percent=' => 'float', + ), + 'simplexml_import_dom' => + array ( + 0 => 'SimpleXMLElement|null', + 'node' => 'DOMNode', + 'class_name=' => 'null|string', + ), + 'simplexml_load_file' => + array ( + 0 => 'SimpleXMLElement|false', + 'filename' => 'string', + 'class_name=' => 'null|string', + 'options=' => 'int', + 'namespace_or_prefix=' => 'string', + 'is_prefix=' => 'bool', + ), + 'simplexml_load_string' => + array ( + 0 => 'SimpleXMLElement|false', + 'data' => 'string', + 'class_name=' => 'null|string', + 'options=' => 'int', + 'namespace_or_prefix=' => 'string', + 'is_prefix=' => 'bool', + ), + 'SimpleXMLElement::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'options=' => 'int', + 'dataIsURL=' => 'bool', + 'namespaceOrPrefix=' => 'string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::__get' => + array ( + 0 => 'SimpleXMLElement', + 'name' => 'string', + ), + 'SimpleXMLElement::__toString' => + array ( + 0 => 'string', + ), + 'SimpleXMLElement::addAttribute' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'value' => 'string', + 'namespace=' => 'null|string', + ), + 'SimpleXMLElement::addChild' => + array ( + 0 => 'SimpleXMLElement|null', + 'qualifiedName' => 'string', + 'value=' => 'null|string', + 'namespace=' => 'null|string', + ), + 'SimpleXMLElement::asXML' => + array ( + 0 => 'bool|string', + 'filename=' => 'null|string', + ), + 'SimpleXMLElement::asXML\'1' => + array ( + 0 => 'false|string', + ), + 'SimpleXMLElement::attributes' => + array ( + 0 => 'SimpleXMLElement|null', + 'namespaceOrPrefix=' => 'null|string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::children' => + array ( + 0 => 'SimpleXMLElement|null', + 'namespaceOrPrefix=' => 'null|string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::count' => + array ( + 0 => 'int', + ), + 'SimpleXMLElement::getDocNamespaces' => + array ( + 0 => 'array', + 'recursive=' => 'bool', + 'fromRoot=' => 'bool', + ), + 'SimpleXMLElement::getName' => + array ( + 0 => 'string', + ), + 'SimpleXMLElement::getNamespaces' => + array ( + 0 => 'array', + 'recursive=' => 'bool', + ), + 'SimpleXMLElement::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::offsetGet' => + array ( + 0 => 'SimpleXMLElement', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'SimpleXMLElement::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::registerXPathNamespace' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'SimpleXMLElement::saveXML' => + array ( + 0 => 'bool|string', + 'filename=' => 'null|string', + ), + 'SimpleXMLElement::xpath' => + array ( + 0 => 'array|false|null', + 'expression' => 'string', + ), + 'sin' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'sinh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'sizeof' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|array', + 'mode=' => 'int', + ), + 'sleep' => + array ( + 0 => 'int', + 'seconds' => 'int<0, max>', + ), + 'snmp2_get' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_getnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_real_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_set' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_get' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_getnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_real_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_set' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'SNMP::__construct' => + array ( + 0 => 'void', + 'version' => 'int', + 'hostname' => 'string', + 'community' => 'string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'SNMP::close' => + array ( + 0 => 'bool', + ), + 'SNMP::get' => + array ( + 0 => 'array|false|string', + 'objectId' => 'array|string', + 'preserveKeys=' => 'bool', + ), + 'SNMP::getErrno' => + array ( + 0 => 'int', + ), + 'SNMP::getError' => + array ( + 0 => 'string', + ), + 'SNMP::getnext' => + array ( + 0 => 'array|false|string', + 'objectId' => 'array|string', + ), + 'SNMP::set' => + array ( + 0 => 'bool', + 'objectId' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + ), + 'SNMP::setSecurity' => + array ( + 0 => 'bool', + 'securityLevel' => 'string', + 'authProtocol=' => 'string', + 'authPassphrase=' => 'string', + 'privacyProtocol=' => 'string', + 'privacyPassphrase=' => 'string', + 'contextName=' => 'string', + 'contextEngineId=' => 'string', + ), + 'SNMP::walk' => + array ( + 0 => 'array|false', + 'objectId' => 'array|string', + 'suffixAsKey=' => 'bool', + 'maxRepetitions=' => 'int', + 'nonRepeaters=' => 'int', + ), + 'snmp_get_quick_print' => + array ( + 0 => 'bool', + ), + 'snmp_get_valueretrieval' => + array ( + 0 => 'int', + ), + 'snmp_read_mib' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'snmp_set_enum_print' => + array ( + 0 => 'true', + 'enable' => 'bool', + ), + 'snmp_set_oid_numeric_print' => + array ( + 0 => 'true', + 'format' => 'int', + ), + 'snmp_set_oid_output_format' => + array ( + 0 => 'true', + 'format' => 'int', + ), + 'snmp_set_quick_print' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'snmp_set_valueretrieval' => + array ( + 0 => 'true', + 'method' => 'int', + ), + 'snmpget' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpgetnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmprealwalk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpset' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpwalk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpwalkoid' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'SoapClient::__call' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + ), + 'SoapClient::__construct' => + array ( + 0 => 'void', + 'wsdl' => 'mixed', + 'options=' => 'array|null', + ), + 'SoapClient::__doRequest' => + array ( + 0 => 'null|string', + 'request' => 'string', + 'location' => 'string', + 'action' => 'string', + 'version' => 'int', + 'one_way=' => 'bool', + ), + 'SoapClient::__getCookies' => + array ( + 0 => 'array', + ), + 'SoapClient::__getFunctions' => + array ( + 0 => 'array|null', + ), + 'SoapClient::__getLastRequest' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastRequestHeaders' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastResponse' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastResponseHeaders' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getTypes' => + array ( + 0 => 'array|null', + ), + 'SoapClient::__setCookie' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'value=' => 'string', + ), + 'SoapClient::__setLocation' => + array ( + 0 => 'string', + 'new_location=' => 'string', + ), + 'SoapClient::__setSoapHeaders' => + array ( + 0 => 'bool', + 'soapheaders=' => 'mixed', + ), + 'SoapClient::__soapCall' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + 'options=' => 'array', + 'input_headers=' => 'SoapHeader|array', + '&w_output_headers=' => 'array', + ), + 'SoapClient::SoapClient' => + array ( + 0 => 'object', + 'wsdl' => 'mixed', + 'options=' => 'array|null', + ), + 'SoapFault::__clone' => + array ( + 0 => 'void', + ), + 'SoapFault::__construct' => + array ( + 0 => 'void', + 'code' => 'array|null|string', + 'string' => 'string', + 'actor=' => 'null|string', + 'details=' => 'mixed|null', + 'name=' => 'null|string', + 'headerFault=' => 'mixed|null', + ), + 'SoapFault::__toString' => + array ( + 0 => 'string', + ), + 'SoapFault::__wakeup' => + array ( + 0 => 'void', + ), + 'SoapFault::getCode' => + array ( + 0 => 'int', + ), + 'SoapFault::getFile' => + array ( + 0 => 'string', + ), + 'SoapFault::getLine' => + array ( + 0 => 'int', + ), + 'SoapFault::getMessage' => + array ( + 0 => 'string', + ), + 'SoapFault::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'SoapFault::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SoapFault::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SoapFault::SoapFault' => + array ( + 0 => 'object', + 'faultcode' => 'string', + 'faultstring' => 'string', + 'faultactor=' => 'null|string', + 'detail=' => 'mixed|null', + 'faultname=' => 'null|string', + 'headerfault=' => 'mixed|null', + ), + 'SoapHeader::__construct' => + array ( + 0 => 'void', + 'namespace' => 'string', + 'name' => 'string', + 'data=' => 'mixed', + 'mustunderstand=' => 'bool', + 'actor=' => 'string', + ), + 'SoapHeader::SoapHeader' => + array ( + 0 => 'object', + 'namespace' => 'string', + 'name' => 'string', + 'data=' => 'mixed', + 'mustunderstand=' => 'bool', + 'actor=' => 'string', + ), + 'SoapParam::__construct' => + array ( + 0 => 'void', + 'data' => 'mixed', + 'name' => 'string', + ), + 'SoapParam::SoapParam' => + array ( + 0 => 'object', + 'data' => 'mixed', + 'name' => 'string', + ), + 'SoapServer::__construct' => + array ( + 0 => 'void', + 'wsdl' => 'null|string', + 'options=' => 'array', + ), + 'SoapServer::addFunction' => + array ( + 0 => 'void', + 'functions' => 'mixed', + ), + 'SoapServer::addSoapHeader' => + array ( + 0 => 'void', + 'object' => 'SoapHeader', + ), + 'SoapServer::fault' => + array ( + 0 => 'void', + 'code' => 'string', + 'string' => 'string', + 'actor=' => 'string', + 'details=' => 'string', + 'name=' => 'string', + ), + 'SoapServer::getFunctions' => + array ( + 0 => 'array', + ), + 'SoapServer::handle' => + array ( + 0 => 'void', + 'soap_request=' => 'string', + ), + 'SoapServer::setClass' => + array ( + 0 => 'void', + 'class_name' => 'string', + '...args=' => 'mixed', + ), + 'SoapServer::setObject' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SoapServer::setPersistence' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'SoapServer::SoapServer' => + array ( + 0 => 'object', + 'wsdl' => 'null|string', + 'options=' => 'array', + ), + 'SoapVar::__construct' => + array ( + 0 => 'void', + 'data' => 'mixed', + 'encoding' => 'int', + 'type_name=' => 'null|string', + 'type_namespace=' => 'null|string', + 'node_name=' => 'null|string', + 'node_namespace=' => 'null|string', + ), + 'SoapVar::SoapVar' => + array ( + 0 => 'object', + 'data' => 'mixed', + 'encoding' => 'int', + 'type_name=' => 'null|string', + 'type_namespace=' => 'null|string', + 'node_name=' => 'null|string', + 'node_namespace=' => 'null|string', + ), + 'socket_accept' => + array ( + 0 => 'Socket|false', + 'socket' => 'Socket', + ), + 'socket_addrinfo_bind' => + array ( + 0 => 'Socket|false', + 'address' => 'AddressInfo', + ), + 'socket_addrinfo_connect' => + array ( + 0 => 'Socket|false', + 'address' => 'AddressInfo', + ), + 'socket_addrinfo_explain' => + array ( + 0 => 'array', + 'address' => 'AddressInfo', + ), + 'socket_addrinfo_lookup' => + array ( + 0 => 'array|false', + 'host' => 'string', + 'service=' => 'null|string', + 'hints=' => 'array', + ), + 'socket_bind' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'address' => 'string', + 'port=' => 'int', + ), + 'socket_clear_error' => + array ( + 0 => 'void', + 'socket=' => 'Socket|null', + ), + 'socket_close' => + array ( + 0 => 'void', + 'socket' => 'Socket', + ), + 'socket_cmsg_space' => + array ( + 0 => 'int|null', + 'level' => 'int', + 'type' => 'int', + 'num=' => 'int', + ), + 'socket_connect' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'address' => 'string', + 'port=' => 'int|null', + ), + 'socket_create' => + array ( + 0 => 'Socket|false', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + 'socket_create_listen' => + array ( + 0 => 'Socket|false', + 'port' => 'int', + 'backlog=' => 'int', + ), + 'socket_create_pair' => + array ( + 0 => 'bool', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + '&w_pair' => 'array', + ), + 'socket_export_stream' => + array ( + 0 => 'false|resource', + 'socket' => 'Socket', + ), + 'socket_get_option' => + array ( + 0 => 'array|false|int', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + ), + 'socket_get_status' => + array ( + 0 => 'array', + 'stream' => 'Socket', + ), + 'socket_getopt' => + array ( + 0 => 'array|false|int', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + ), + 'socket_getpeername' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_getsockname' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_import_stream' => + array ( + 0 => 'Socket|false', + 'stream' => 'resource', + ), + 'socket_last_error' => + array ( + 0 => 'int', + 'socket=' => 'Socket|null', + ), + 'socket_listen' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'backlog=' => 'int', + ), + 'socket_read' => + array ( + 0 => 'false|string', + 'socket' => 'Socket', + 'length' => 'int', + 'mode=' => 'int', + ), + 'socket_recv' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'socket_recvfrom' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_recvmsg' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_message' => 'array', + 'flags=' => 'int', + ), + 'socket_select' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + 'socket_send' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'socket_sendmsg' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'message' => 'array', + 'flags=' => 'int', + ), + 'socket_sendto' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + 'address' => 'string', + 'port=' => 'int|null', + ), + 'socket_set_block' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + ), + 'socket_set_blocking' => + array ( + 0 => 'bool', + 'stream' => 'Socket', + 'enable' => 'bool', + ), + 'socket_set_nonblock' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + ), + 'socket_set_option' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'socket_set_timeout' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'socket_setopt' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'socket_shutdown' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'mode=' => 'int', + ), + 'socket_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'socket_write' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'socket_wsaprotocol_info_export' => + array ( + 0 => 'false|string', + 'socket' => 'Socket', + 'process_id' => 'int', + ), + 'socket_wsaprotocol_info_import' => + array ( + 0 => 'Socket|false', + 'info_id' => 'string', + ), + 'socket_wsaprotocol_info_release' => + array ( + 0 => 'bool', + 'info_id' => 'string', + ), + 'sodium_add' => + array ( + 0 => 'void', + '&rw_string1' => 'string', + 'string2' => 'string', + ), + 'sodium_base642bin' => + array ( + 0 => 'string', + 'string' => 'string', + 'id' => 'int', + 'ignore=' => 'string', + ), + 'sodium_bin2base64' => + array ( + 0 => 'string', + 'string' => 'string', + 'id' => 'int', + ), + 'sodium_bin2hex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'sodium_compare' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_is_available' => + array ( + 0 => 'bool', + ), + 'sodium_crypto_aead_aes256gcm_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_chacha20poly1305_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_chacha20poly1305_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_auth' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_auth_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_auth_verify' => + array ( + 0 => 'bool', + 'mac' => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_box' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_box_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_box_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_box_seal' => + array ( + 0 => 'string', + 'message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_box_seal_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_generichash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_final' => + array ( + 0 => 'string', + '&state' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_init' => + array ( + 0 => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_generichash_update' => + array ( + 0 => 'true', + '&rw_state' => 'string', + 'message' => 'string', + ), + 'sodium_crypto_kdf_derive_from_key' => + array ( + 0 => 'string', + 'subkey_length' => 'int', + 'subkey_id' => 'int', + 'context' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_kdf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_kx_client_session_keys' => + array ( + 0 => 'array', + 'client_key_pair' => 'string', + 'server_key' => 'string', + ), + 'sodium_crypto_kx_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_kx_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_kx_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_kx_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_kx_server_session_keys' => + array ( + 0 => 'array', + 'server_key_pair' => 'string', + 'client_key' => 'string', + ), + 'sodium_crypto_pwhash' => + array ( + 0 => 'string', + 'length' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + 'algo=' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256' => + array ( + 0 => 'string', + 'length' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256_str' => + array ( + 0 => 'string', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'password' => 'string', + ), + 'sodium_crypto_pwhash_str' => + array ( + 0 => 'string', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_str_needs_rehash' => + array ( + 0 => 'bool', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'password' => 'string', + ), + 'sodium_crypto_scalarmult' => + array ( + 0 => 'string', + 'n' => 'string', + 'p' => 'string', + ), + 'sodium_crypto_scalarmult_base' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_secretbox' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretbox_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_secretbox_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_init_pull' => + array ( + 0 => 'string', + 'header' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_init_push' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_pull' => + array ( + 0 => 'array|false', + '&r_state' => 'string', + 'ciphertext' => 'string', + 'additional_data=' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_push' => + array ( + 0 => 'string', + '&w_state' => 'string', + 'message' => 'string', + 'additional_data=' => 'string', + 'tag=' => 'int', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_rekey' => + array ( + 0 => 'void', + '&w_state' => 'string', + ), + 'sodium_crypto_shorthash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_shorthash_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_sign' => + array ( + 0 => 'string', + 'message' => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_detached' => + array ( + 0 => 'string', + 'message' => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_ed25519_pk_to_curve25519' => + array ( + 0 => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_ed25519_sk_to_curve25519' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_sign_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_open' => + array ( + 0 => 'false|string', + 'signed_message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_sign_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_sign_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_sign_verify_detached' => + array ( + 0 => 'bool', + 'signature' => 'string', + 'message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_stream' => + array ( + 0 => 'string', + 'length' => 'int', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_stream_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_stream_xor' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_stream_xchacha20' => + array ( + 0 => 'non-empty-string', + 'length' => 'int<1, max>', + 'nonce' => 'non-empty-string', + 'key' => 'non-empty-string', + ), + 'sodium_crypto_stream_xchacha20_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_stream_xchacha20_xor' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'non-empty-string', + 'key' => 'non-empty-string', + ), + 'sodium_crypto_stream_xchacha20_xor_ic' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'non-empty-string', + 'counter' => 'int', + 'key' => 'non-empty-string', + ), + 'sodium_hex2bin' => + array ( + 0 => 'string', + 'string' => 'string', + 'ignore=' => 'string', + ), + 'sodium_increment' => + array ( + 0 => 'void', + '&rw_string' => 'string', + ), + 'sodium_memcmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'sodium_memzero' => + array ( + 0 => 'void', + '&w_string' => 'string', + ), + 'sodium_pad' => + array ( + 0 => 'string', + 'string' => 'string', + 'block_size' => 'int', + ), + 'sodium_unpad' => + array ( + 0 => 'string', + 'string' => 'string', + 'block_size' => 'int', + ), + 'solid_fetch_prev' => + array ( + 0 => 'bool', + 'result_id' => 'mixed', + ), + 'solr_get_version' => + array ( + 0 => 'false|string', + ), + 'SolrClient::__construct' => + array ( + 0 => 'void', + 'clientOptions' => 'array', + ), + 'SolrClient::__destruct' => + array ( + 0 => 'void', + ), + 'SolrClient::addDocument' => + array ( + 0 => 'SolrUpdateResponse', + 'doc' => 'SolrInputDocument', + 'allowdups=' => 'bool', + 'commitwithin=' => 'int', + ), + 'SolrClient::addDocuments' => + array ( + 0 => 'SolrUpdateResponse', + 'docs' => 'array', + 'allowdups=' => 'bool', + 'commitwithin=' => 'int', + ), + 'SolrClient::commit' => + array ( + 0 => 'SolrUpdateResponse', + 'maxsegments=' => 'int', + 'waitflush=' => 'bool', + 'waitsearcher=' => 'bool', + ), + 'SolrClient::deleteById' => + array ( + 0 => 'SolrUpdateResponse', + 'id' => 'string', + ), + 'SolrClient::deleteByIds' => + array ( + 0 => 'SolrUpdateResponse', + 'ids' => 'array', + ), + 'SolrClient::deleteByQueries' => + array ( + 0 => 'SolrUpdateResponse', + 'queries' => 'array', + ), + 'SolrClient::deleteByQuery' => + array ( + 0 => 'SolrUpdateResponse', + 'query' => 'string', + ), + 'SolrClient::getById' => + array ( + 0 => 'SolrQueryResponse', + 'id' => 'string', + ), + 'SolrClient::getByIds' => + array ( + 0 => 'SolrQueryResponse', + 'ids' => 'array', + ), + 'SolrClient::getDebug' => + array ( + 0 => 'string', + ), + 'SolrClient::getOptions' => + array ( + 0 => 'array', + ), + 'SolrClient::optimize' => + array ( + 0 => 'SolrUpdateResponse', + 'maxsegments=' => 'int', + 'waitflush=' => 'bool', + 'waitsearcher=' => 'bool', + ), + 'SolrClient::ping' => + array ( + 0 => 'SolrPingResponse', + ), + 'SolrClient::query' => + array ( + 0 => 'SolrQueryResponse', + 'query' => 'SolrParams', + ), + 'SolrClient::request' => + array ( + 0 => 'SolrUpdateResponse', + 'raw_request' => 'string', + ), + 'SolrClient::rollback' => + array ( + 0 => 'SolrUpdateResponse', + ), + 'SolrClient::setResponseWriter' => + array ( + 0 => 'void', + 'responsewriter' => 'string', + ), + 'SolrClient::setServlet' => + array ( + 0 => 'bool', + 'type' => 'int', + 'value' => 'string', + ), + 'SolrClient::system' => + array ( + 0 => 'SolrGenericResponse', + ), + 'SolrClient::threads' => + array ( + 0 => 'SolrGenericResponse', + ), + 'SolrClientException::__clone' => + array ( + 0 => 'void', + ), + 'SolrClientException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrClientException::__toString' => + array ( + 0 => 'string', + ), + 'SolrClientException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrClientException::getCode' => + array ( + 0 => 'int', + ), + 'SolrClientException::getFile' => + array ( + 0 => 'string', + ), + 'SolrClientException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrClientException::getLine' => + array ( + 0 => 'int', + ), + 'SolrClientException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrClientException::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'SolrClientException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrClientException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::__construct' => + array ( + 0 => 'void', + 'field' => 'string', + ), + 'SolrCollapseFunction::__toString' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getField' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getHint' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getMax' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getMin' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getNullPolicy' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getSize' => + array ( + 0 => 'int', + ), + 'SolrCollapseFunction::setField' => + array ( + 0 => 'SolrCollapseFunction', + 'fieldName' => 'string', + ), + 'SolrCollapseFunction::setHint' => + array ( + 0 => 'SolrCollapseFunction', + 'hint' => 'string', + ), + 'SolrCollapseFunction::setMax' => + array ( + 0 => 'SolrCollapseFunction', + 'max' => 'string', + ), + 'SolrCollapseFunction::setMin' => + array ( + 0 => 'SolrCollapseFunction', + 'min' => 'string', + ), + 'SolrCollapseFunction::setNullPolicy' => + array ( + 0 => 'SolrCollapseFunction', + 'nullPolicy' => 'string', + ), + 'SolrCollapseFunction::setSize' => + array ( + 0 => 'SolrCollapseFunction', + 'size' => 'int', + ), + 'SolrDisMaxQuery::__construct' => + array ( + 0 => 'void', + 'q=' => 'string', + ), + 'SolrDisMaxQuery::__destruct' => + array ( + 0 => 'void', + ), + 'SolrDisMaxQuery::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addBigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'value' => 'string', + 'boost=' => 'string', + ), + 'SolrDisMaxQuery::addExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::addExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order' => 'string', + ), + 'SolrDisMaxQuery::addFacetDateField' => + array ( + 0 => 'SolrQuery', + 'dateField' => 'string', + ), + 'SolrDisMaxQuery::addFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::addFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addFacetQuery' => + array ( + 0 => 'SolrQuery', + 'facetQuery' => 'string', + ), + 'SolrDisMaxQuery::addField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::addGroupField' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupFunction' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order' => 'int', + ), + 'SolrDisMaxQuery::addHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addMltQueryField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'boost' => 'float', + ), + 'SolrDisMaxQuery::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addQueryField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost=' => 'string', + ), + 'SolrDisMaxQuery::addSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrDisMaxQuery::addStatsFacet' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addTrigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addUserField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::collapse' => + array ( + 0 => 'SolrQuery', + 'collapseFunction' => 'SolrCollapseFunction', + ), + 'SolrDisMaxQuery::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrDisMaxQuery::getExpand' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getExpandFilterQueries' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getExpandQuery' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getExpandRows' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getExpandSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacet' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getFacetDateEnd' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacetDateGap' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateHardEnd' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateOther' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateStart' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacetLimit' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMethod' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMinCount' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMissing' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetOffset' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetPrefix' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetQueries' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getFacetSort' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFields' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getFilterQueries' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getGroup' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupCachePercent' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getGroupFacet' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupFormat' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getGroupFunctions' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupLimit' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getGroupMain' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupNGroups' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupOffset' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupQueries' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupTruncate' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlight' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightAlternateField' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getHighlightFormatter' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFragmenter' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFragsize' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getHighlightMergeContiguous' => + array ( + 0 => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getHighlightRegexPattern' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getHighlightRegexSlop' => + array ( + 0 => 'float', + ), + 'SolrDisMaxQuery::getHighlightRequireFieldMatch' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightSimplePost' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightSimplePre' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightSnippets' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMlt' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMltBoost' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMltCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getMltMaxNumQueryTerms' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMaxNumTokens' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMaxWordLength' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinDocFrequency' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinTermFrequency' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinWordLength' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltQueryFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getParam' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrDisMaxQuery::getParams' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getQuery' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getRows' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getStart' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getStats' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getStatsFacets' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getStatsFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getTerms' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsField' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsIncludeLowerBound' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsIncludeUpperBound' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsLimit' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsLowerBound' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsMaxCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsMinCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsPrefix' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsReturnRaw' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsSort' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsUpperBound' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTimeAllowed' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::removeBigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::removeExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetDateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::removeFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::removeField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::removeHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeMltQueryField' => + array ( + 0 => 'SolrQuery', + 'queryField' => 'string', + ), + 'SolrDisMaxQuery::removePhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeQueryField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeStatsFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::removeStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeTrigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeUserField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::serialize' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrDisMaxQuery::setBigramPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setBigramPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setBoostFunction' => + array ( + 0 => 'SolrDisMaxQuery', + 'function' => 'string', + ), + 'SolrDisMaxQuery::setBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setEchoHandler' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setEchoParams' => + array ( + 0 => 'SolrQuery', + 'type' => 'string', + ), + 'SolrDisMaxQuery::setExpand' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setExpandQuery' => + array ( + 0 => 'SolrQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setExpandRows' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setExplainOther' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrDisMaxQuery::setFacet' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setFacetDateEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateGap' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateHardEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateStart' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMethod' => + array ( + 0 => 'SolrQuery', + 'method' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMinCount' => + array ( + 0 => 'SolrQuery', + 'mincount' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMissing' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetOffset' => + array ( + 0 => 'SolrQuery', + 'offset' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetSort' => + array ( + 0 => 'SolrQuery', + 'facetSort' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setGroup' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupCachePercent' => + array ( + 0 => 'SolrQuery', + 'percent' => 'int', + ), + 'SolrDisMaxQuery::setGroupFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupFormat' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setGroupLimit' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setGroupMain' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setGroupNGroups' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupOffset' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setGroupTruncate' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setHighlight' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightAlternateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFormatter' => + array ( + 0 => 'SolrQuery', + 'formatter' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFragmenter' => + array ( + 0 => 'SolrQuery', + 'fragmenter' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFragsize' => + array ( + 0 => 'SolrQuery', + 'size' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => + array ( + 0 => 'SolrQuery', + 'fieldLength' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setHighlightMergeContiguous' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'maxAnalyzedChars' => 'int', + ), + 'SolrDisMaxQuery::setHighlightRegexPattern' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setHighlightRegexSlop' => + array ( + 0 => 'SolrQuery', + 'factor' => 'float', + ), + 'SolrDisMaxQuery::setHighlightRequireFieldMatch' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightSimplePost' => + array ( + 0 => 'SolrQuery', + 'simplePost' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightSimplePre' => + array ( + 0 => 'SolrQuery', + 'simplePre' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightSnippets' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMinimumMatch' => + array ( + 0 => 'SolrDisMaxQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setMlt' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMltBoost' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMltCount' => + array ( + 0 => 'SolrQuery', + 'count' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxNumQueryTerms' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxNumTokens' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxWordLength' => + array ( + 0 => 'SolrQuery', + 'maxWordLength' => 'int', + ), + 'SolrDisMaxQuery::setMltMinDocFrequency' => + array ( + 0 => 'SolrQuery', + 'minDocFrequency' => 'int', + ), + 'SolrDisMaxQuery::setMltMinTermFrequency' => + array ( + 0 => 'SolrQuery', + 'minTermFrequency' => 'int', + ), + 'SolrDisMaxQuery::setMltMinWordLength' => + array ( + 0 => 'SolrQuery', + 'minWordLength' => 'int', + ), + 'SolrDisMaxQuery::setOmitHeader' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrDisMaxQuery::setPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setQuery' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrDisMaxQuery::setQueryAlt' => + array ( + 0 => 'SolrDisMaxQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setQueryPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setRows' => + array ( + 0 => 'SolrQuery', + 'rows' => 'int', + ), + 'SolrDisMaxQuery::setShowDebugInfo' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setStart' => + array ( + 0 => 'SolrQuery', + 'start' => 'int', + ), + 'SolrDisMaxQuery::setStats' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTerms' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsField' => + array ( + 0 => 'SolrQuery', + 'fieldname' => 'string', + ), + 'SolrDisMaxQuery::setTermsIncludeLowerBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsIncludeUpperBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + ), + 'SolrDisMaxQuery::setTermsLowerBound' => + array ( + 0 => 'SolrQuery', + 'lowerBound' => 'string', + ), + 'SolrDisMaxQuery::setTermsMaxCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrDisMaxQuery::setTermsMinCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrDisMaxQuery::setTermsPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + ), + 'SolrDisMaxQuery::setTermsReturnRaw' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsSort' => + array ( + 0 => 'SolrQuery', + 'sortType' => 'int', + ), + 'SolrDisMaxQuery::setTermsUpperBound' => + array ( + 0 => 'SolrQuery', + 'upperBound' => 'string', + ), + 'SolrDisMaxQuery::setTieBreaker' => + array ( + 0 => 'SolrDisMaxQuery', + 'tieBreaker' => 'string', + ), + 'SolrDisMaxQuery::setTimeAllowed' => + array ( + 0 => 'SolrQuery', + 'timeAllowed' => 'int', + ), + 'SolrDisMaxQuery::setTrigramPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setTrigramPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setUserFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrDisMaxQuery::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrDisMaxQuery::useDisMaxQueryParser' => + array ( + 0 => 'SolrDisMaxQuery', + ), + 'SolrDisMaxQuery::useEDisMaxQueryParser' => + array ( + 0 => 'SolrDisMaxQuery', + ), + 'SolrDocument::__clone' => + array ( + 0 => 'void', + ), + 'SolrDocument::__construct' => + array ( + 0 => 'void', + ), + 'SolrDocument::__destruct' => + array ( + 0 => 'void', + ), + 'SolrDocument::__get' => + array ( + 0 => 'SolrDocumentField', + 'fieldname' => 'string', + ), + 'SolrDocument::__isset' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::__set' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::__unset' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::addField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::clear' => + array ( + 0 => 'bool', + ), + 'SolrDocument::current' => + array ( + 0 => 'SolrDocumentField', + ), + 'SolrDocument::deleteField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::fieldExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::getChildDocuments' => + array ( + 0 => 'array', + ), + 'SolrDocument::getChildDocumentsCount' => + array ( + 0 => 'int', + ), + 'SolrDocument::getField' => + array ( + 0 => 'SolrDocumentField|false', + 'fieldname' => 'string', + ), + 'SolrDocument::getFieldCount' => + array ( + 0 => 'false|int', + ), + 'SolrDocument::getFieldNames' => + array ( + 0 => 'array|false', + ), + 'SolrDocument::getInputDocument' => + array ( + 0 => 'SolrInputDocument', + ), + 'SolrDocument::hasChildDocuments' => + array ( + 0 => 'bool', + ), + 'SolrDocument::key' => + array ( + 0 => 'string', + ), + 'SolrDocument::merge' => + array ( + 0 => 'bool', + 'sourcedoc' => 'solrdocument', + 'overwrite=' => 'bool', + ), + 'SolrDocument::next' => + array ( + 0 => 'void', + ), + 'SolrDocument::offsetExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::offsetGet' => + array ( + 0 => 'SolrDocumentField', + 'fieldname' => 'string', + ), + 'SolrDocument::offsetSet' => + array ( + 0 => 'void', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::offsetUnset' => + array ( + 0 => 'void', + 'fieldname' => 'string', + ), + 'SolrDocument::reset' => + array ( + 0 => 'bool', + ), + 'SolrDocument::rewind' => + array ( + 0 => 'void', + ), + 'SolrDocument::serialize' => + array ( + 0 => 'string', + ), + 'SolrDocument::sort' => + array ( + 0 => 'bool', + 'sortorderby' => 'int', + 'sortdirection=' => 'int', + ), + 'SolrDocument::toArray' => + array ( + 0 => 'array', + ), + 'SolrDocument::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrDocument::valid' => + array ( + 0 => 'bool', + ), + 'SolrDocumentField::__construct' => + array ( + 0 => 'void', + ), + 'SolrDocumentField::__destruct' => + array ( + 0 => 'void', + ), + 'SolrException::__clone' => + array ( + 0 => 'void', + ), + 'SolrException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrException::__toString' => + array ( + 0 => 'string', + ), + 'SolrException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrException::getCode' => + array ( + 0 => 'int', + ), + 'SolrException::getFile' => + array ( + 0 => 'string', + ), + 'SolrException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrException::getLine' => + array ( + 0 => 'int', + ), + 'SolrException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrGenericResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrGenericResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrGenericResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrGenericResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrGenericResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrIllegalArgumentException::__clone' => + array ( + 0 => 'void', + ), + 'SolrIllegalArgumentException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrIllegalArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrIllegalArgumentException::getCode' => + array ( + 0 => 'int', + ), + 'SolrIllegalArgumentException::getFile' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrIllegalArgumentException::getLine' => + array ( + 0 => 'int', + ), + 'SolrIllegalArgumentException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrIllegalArgumentException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrIllegalArgumentException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::__clone' => + array ( + 0 => 'void', + ), + 'SolrIllegalOperationException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrIllegalOperationException::__toString' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrIllegalOperationException::getCode' => + array ( + 0 => 'int', + ), + 'SolrIllegalOperationException::getFile' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrIllegalOperationException::getLine' => + array ( + 0 => 'int', + ), + 'SolrIllegalOperationException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrIllegalOperationException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrIllegalOperationException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrInputDocument::__clone' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::__construct' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::__destruct' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::addChildDocument' => + array ( + 0 => 'void', + 'child' => 'SolrInputDocument', + ), + 'SolrInputDocument::addChildDocuments' => + array ( + 0 => 'void', + 'docs' => 'array', + ), + 'SolrInputDocument::addField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + 'fieldboostvalue=' => 'float', + ), + 'SolrInputDocument::clear' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::deleteField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrInputDocument::fieldExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getBoost' => + array ( + 0 => 'false|float', + ), + 'SolrInputDocument::getChildDocuments' => + array ( + 0 => 'array', + ), + 'SolrInputDocument::getChildDocumentsCount' => + array ( + 0 => 'int', + ), + 'SolrInputDocument::getField' => + array ( + 0 => 'SolrDocumentField|false', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getFieldBoost' => + array ( + 0 => 'false|float', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getFieldCount' => + array ( + 0 => 'false|int', + ), + 'SolrInputDocument::getFieldNames' => + array ( + 0 => 'array|false', + ), + 'SolrInputDocument::hasChildDocuments' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::merge' => + array ( + 0 => 'bool', + 'sourcedoc' => 'SolrInputDocument', + 'overwrite=' => 'bool', + ), + 'SolrInputDocument::reset' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::setBoost' => + array ( + 0 => 'bool', + 'documentboostvalue' => 'float', + ), + 'SolrInputDocument::setFieldBoost' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldboostvalue' => 'float', + ), + 'SolrInputDocument::sort' => + array ( + 0 => 'bool', + 'sortorderby' => 'int', + 'sortdirection=' => 'int', + ), + 'SolrInputDocument::toArray' => + array ( + 0 => 'array|false', + ), + 'SolrModifiableParams::__construct' => + array ( + 0 => 'void', + ), + 'SolrModifiableParams::__destruct' => + array ( + 0 => 'void', + ), + 'SolrModifiableParams::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrModifiableParams::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrModifiableParams::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrModifiableParams::getParam' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrModifiableParams::getParams' => + array ( + 0 => 'array', + ), + 'SolrModifiableParams::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrModifiableParams::serialize' => + array ( + 0 => 'string', + ), + 'SolrModifiableParams::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrModifiableParams::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrModifiableParams::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrModifiableParams::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrObject::__construct' => + array ( + 0 => 'void', + ), + 'SolrObject::__destruct' => + array ( + 0 => 'void', + ), + 'SolrObject::getPropertyNames' => + array ( + 0 => 'array', + ), + 'SolrObject::offsetExists' => + array ( + 0 => 'bool', + 'property_name' => 'string', + ), + 'SolrObject::offsetGet' => + array ( + 0 => 'SolrDocumentField', + 'property_name' => 'string', + ), + 'SolrObject::offsetSet' => + array ( + 0 => 'void', + 'property_name' => 'string', + 'property_value' => 'string', + ), + 'SolrObject::offsetUnset' => + array ( + 0 => 'void', + 'property_name' => 'string', + ), + 'SolrParams::__construct' => + array ( + 0 => 'void', + ), + 'SolrParams::add' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::addParam' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrParams::getParam' => + array ( + 0 => 'mixed', + 'param_name=' => 'string', + ), + 'SolrParams::getParams' => + array ( + 0 => 'array', + ), + 'SolrParams::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrParams::serialize' => + array ( + 0 => 'string', + ), + 'SolrParams::set' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::setParam' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::toString' => + array ( + 0 => 'false|string', + 'url_encode=' => 'bool', + ), + 'SolrParams::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrPingResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrPingResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrPingResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrPingResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrPingResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrQuery::__construct' => + array ( + 0 => 'void', + 'q=' => 'string', + ), + 'SolrQuery::__destruct' => + array ( + 0 => 'void', + ), + 'SolrQuery::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrQuery::addExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::addExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'string', + ), + 'SolrQuery::addFacetDateField' => + array ( + 0 => 'SolrQuery', + 'datefield' => 'string', + ), + 'SolrQuery::addFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::addFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addFacetQuery' => + array ( + 0 => 'SolrQuery', + 'facetquery' => 'string', + ), + 'SolrQuery::addField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::addGroupField' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupFunction' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrQuery::addHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addMltQueryField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'boost' => 'float', + ), + 'SolrQuery::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrQuery::addSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrQuery::addStatsFacet' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::collapse' => + array ( + 0 => 'SolrQuery', + 'collapseFunction' => 'SolrCollapseFunction', + ), + 'SolrQuery::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrQuery::getExpand' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getExpandFilterQueries' => + array ( + 0 => 'array', + ), + 'SolrQuery::getExpandQuery' => + array ( + 0 => 'array', + ), + 'SolrQuery::getExpandRows' => + array ( + 0 => 'int', + ), + 'SolrQuery::getExpandSortFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacet' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getFacetDateEnd' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacetDateGap' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateHardEnd' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateOther' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateStart' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacetLimit' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMethod' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMinCount' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMissing' => + array ( + 0 => 'bool|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetOffset' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetPrefix' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetQueries' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getFacetSort' => + array ( + 0 => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::getFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getFilterQueries' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getGroup' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupCachePercent' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupFacet' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupFormat' => + array ( + 0 => 'string', + ), + 'SolrQuery::getGroupFunctions' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupLimit' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupMain' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupNGroups' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupOffset' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupQueries' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupSortFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupTruncate' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getHighlight' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getHighlightAlternateField' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getHighlightFormatter' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFragmenter' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFragsize' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightHighlightMultiTerm' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getHighlightMaxAlternateFieldLength' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightMaxAnalyzedChars' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getHighlightMergeContiguous' => + array ( + 0 => 'bool|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getHighlightRegexPattern' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getHighlightRegexSlop' => + array ( + 0 => 'float|null', + ), + 'SolrQuery::getHighlightRequireFieldMatch' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getHighlightSimplePost' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightSimplePre' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightSnippets' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightUsePhraseHighlighter' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMlt' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMltBoost' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMltCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getMltMaxNumQueryTerms' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMaxNumTokens' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMaxWordLength' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinDocFrequency' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinTermFrequency' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinWordLength' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltQueryFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getParam' => + array ( + 0 => 'mixed|null', + 'param_name' => 'string', + ), + 'SolrQuery::getParams' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getPreparedParams' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getQuery' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getRows' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getSortFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getStart' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getStats' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getStatsFacets' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getStatsFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getTerms' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsField' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsIncludeLowerBound' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsIncludeUpperBound' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsLimit' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsLowerBound' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsMaxCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsMinCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsPrefix' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsReturnRaw' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsSort' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsUpperBound' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTimeAllowed' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::removeExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::removeExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetDateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::removeFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::removeField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::removeHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeMltQueryField' => + array ( + 0 => 'SolrQuery', + 'queryfield' => 'string', + ), + 'SolrQuery::removeSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeStatsFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::removeStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::serialize' => + array ( + 0 => 'string', + ), + 'SolrQuery::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrQuery::setEchoHandler' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setEchoParams' => + array ( + 0 => 'SolrQuery', + 'type' => 'string', + ), + 'SolrQuery::setExpand' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setExpandQuery' => + array ( + 0 => 'SolrQuery', + 'q' => 'string', + ), + 'SolrQuery::setExpandRows' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setExplainOther' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrQuery::setFacet' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setFacetDateEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateGap' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateHardEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateStart' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMethod' => + array ( + 0 => 'SolrQuery', + 'method' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMinCount' => + array ( + 0 => 'SolrQuery', + 'mincount' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMissing' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetOffset' => + array ( + 0 => 'SolrQuery', + 'offset' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetSort' => + array ( + 0 => 'SolrQuery', + 'facetsort' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setGroup' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupCachePercent' => + array ( + 0 => 'SolrQuery', + 'percent' => 'int', + ), + 'SolrQuery::setGroupFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupFormat' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setGroupLimit' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setGroupMain' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setGroupNGroups' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupOffset' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setGroupTruncate' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setHighlight' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightAlternateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFormatter' => + array ( + 0 => 'SolrQuery', + 'formatter' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFragmenter' => + array ( + 0 => 'SolrQuery', + 'fragmenter' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFragsize' => + array ( + 0 => 'SolrQuery', + 'size' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightHighlightMultiTerm' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightMaxAlternateFieldLength' => + array ( + 0 => 'SolrQuery', + 'fieldlength' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setHighlightMergeContiguous' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'maxanalyzedchars' => 'int', + ), + 'SolrQuery::setHighlightRegexPattern' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setHighlightRegexSlop' => + array ( + 0 => 'SolrQuery', + 'factor' => 'float', + ), + 'SolrQuery::setHighlightRequireFieldMatch' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightSimplePost' => + array ( + 0 => 'SolrQuery', + 'simplepost' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightSimplePre' => + array ( + 0 => 'SolrQuery', + 'simplepre' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightSnippets' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightUsePhraseHighlighter' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMlt' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMltBoost' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMltCount' => + array ( + 0 => 'SolrQuery', + 'count' => 'int', + ), + 'SolrQuery::setMltMaxNumQueryTerms' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setMltMaxNumTokens' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setMltMaxWordLength' => + array ( + 0 => 'SolrQuery', + 'maxwordlength' => 'int', + ), + 'SolrQuery::setMltMinDocFrequency' => + array ( + 0 => 'SolrQuery', + 'mindocfrequency' => 'int', + ), + 'SolrQuery::setMltMinTermFrequency' => + array ( + 0 => 'SolrQuery', + 'mintermfrequency' => 'int', + ), + 'SolrQuery::setMltMinWordLength' => + array ( + 0 => 'SolrQuery', + 'minwordlength' => 'int', + ), + 'SolrQuery::setOmitHeader' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrQuery::setQuery' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrQuery::setRows' => + array ( + 0 => 'SolrQuery', + 'rows' => 'int', + ), + 'SolrQuery::setShowDebugInfo' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setStart' => + array ( + 0 => 'SolrQuery', + 'start' => 'int', + ), + 'SolrQuery::setStats' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTerms' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsField' => + array ( + 0 => 'SolrQuery', + 'fieldname' => 'string', + ), + 'SolrQuery::setTermsIncludeLowerBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsIncludeUpperBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + ), + 'SolrQuery::setTermsLowerBound' => + array ( + 0 => 'SolrQuery', + 'lowerbound' => 'string', + ), + 'SolrQuery::setTermsMaxCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrQuery::setTermsMinCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrQuery::setTermsPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + ), + 'SolrQuery::setTermsReturnRaw' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsSort' => + array ( + 0 => 'SolrQuery', + 'sorttype' => 'int', + ), + 'SolrQuery::setTermsUpperBound' => + array ( + 0 => 'SolrQuery', + 'upperbound' => 'string', + ), + 'SolrQuery::setTimeAllowed' => + array ( + 0 => 'SolrQuery', + 'timeallowed' => 'int', + ), + 'SolrQuery::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrQuery::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrQueryResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrQueryResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrQueryResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrQueryResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrQueryResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrQueryResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrServerException::__clone' => + array ( + 0 => 'void', + ), + 'SolrServerException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrServerException::__toString' => + array ( + 0 => 'string', + ), + 'SolrServerException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrServerException::getCode' => + array ( + 0 => 'int', + ), + 'SolrServerException::getFile' => + array ( + 0 => 'string', + ), + 'SolrServerException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrServerException::getLine' => + array ( + 0 => 'int', + ), + 'SolrServerException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrServerException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrServerException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrServerException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrUpdateResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrUpdateResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrUpdateResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrUpdateResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrUpdateResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrUtils::digestXmlResponse' => + array ( + 0 => 'SolrObject', + 'xmlresponse' => 'string', + 'parse_mode=' => 'int', + ), + 'SolrUtils::escapeQueryChars' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'SolrUtils::getSolrVersion' => + array ( + 0 => 'string', + ), + 'SolrUtils::queryPhrase' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'sort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'soundex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SphinxClient::__construct' => + array ( + 0 => 'void', + ), + 'SphinxClient::addQuery' => + array ( + 0 => 'int', + 'query' => 'string', + 'index=' => 'string', + 'comment=' => 'string', + ), + 'SphinxClient::buildExcerpts' => + array ( + 0 => 'array', + 'docs' => 'array', + 'index' => 'string', + 'words' => 'string', + 'opts=' => 'array', + ), + 'SphinxClient::buildKeywords' => + array ( + 0 => 'array', + 'query' => 'string', + 'index' => 'string', + 'hits' => 'bool', + ), + 'SphinxClient::close' => + array ( + 0 => 'bool', + ), + 'SphinxClient::escapeString' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SphinxClient::getLastError' => + array ( + 0 => 'string', + ), + 'SphinxClient::getLastWarning' => + array ( + 0 => 'string', + ), + 'SphinxClient::open' => + array ( + 0 => 'bool', + ), + 'SphinxClient::query' => + array ( + 0 => 'array', + 'query' => 'string', + 'index=' => 'string', + 'comment=' => 'string', + ), + 'SphinxClient::resetFilters' => + array ( + 0 => 'void', + ), + 'SphinxClient::resetGroupBy' => + array ( + 0 => 'void', + ), + 'SphinxClient::runQueries' => + array ( + 0 => 'array', + ), + 'SphinxClient::setArrayResult' => + array ( + 0 => 'bool', + 'array_result' => 'bool', + ), + 'SphinxClient::setConnectTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'float', + ), + 'SphinxClient::setFieldWeights' => + array ( + 0 => 'bool', + 'weights' => 'array', + ), + 'SphinxClient::setFilter' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'values' => 'array', + 'exclude=' => 'bool', + ), + 'SphinxClient::setFilterFloatRange' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'min' => 'float', + 'max' => 'float', + 'exclude=' => 'bool', + ), + 'SphinxClient::setFilterRange' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'min' => 'int', + 'max' => 'int', + 'exclude=' => 'bool', + ), + 'SphinxClient::setGeoAnchor' => + array ( + 0 => 'bool', + 'attrlat' => 'string', + 'attrlong' => 'string', + 'latitude' => 'float', + 'longitude' => 'float', + ), + 'SphinxClient::setGroupBy' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'func' => 'int', + 'groupsort=' => 'string', + ), + 'SphinxClient::setGroupDistinct' => + array ( + 0 => 'bool', + 'attribute' => 'string', + ), + 'SphinxClient::setIDRange' => + array ( + 0 => 'bool', + 'min' => 'int', + 'max' => 'int', + ), + 'SphinxClient::setIndexWeights' => + array ( + 0 => 'bool', + 'weights' => 'array', + ), + 'SphinxClient::setLimits' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'limit' => 'int', + 'max_matches=' => 'int', + 'cutoff=' => 'int', + ), + 'SphinxClient::setMatchMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'SphinxClient::setMaxQueryTime' => + array ( + 0 => 'bool', + 'qtime' => 'int', + ), + 'SphinxClient::setOverride' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'type' => 'int', + 'values' => 'array', + ), + 'SphinxClient::setRankingMode' => + array ( + 0 => 'bool', + 'ranker' => 'int', + ), + 'SphinxClient::setRetries' => + array ( + 0 => 'bool', + 'count' => 'int', + 'delay=' => 'int', + ), + 'SphinxClient::setSelect' => + array ( + 0 => 'bool', + 'clause' => 'string', + ), + 'SphinxClient::setServer' => + array ( + 0 => 'bool', + 'server' => 'string', + 'port' => 'int', + ), + 'SphinxClient::setSortMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'sortby=' => 'string', + ), + 'SphinxClient::status' => + array ( + 0 => 'array', + ), + 'SphinxClient::updateAttributes' => + array ( + 0 => 'int', + 'index' => 'string', + 'attributes' => 'array', + 'values' => 'array', + 'mva=' => 'bool', + ), + 'spl_autoload' => + array ( + 0 => 'void', + 'class' => 'string', + 'file_extensions=' => 'null|string', + ), + 'spl_autoload_call' => + array ( + 0 => 'void', + 'class' => 'string', + ), + 'spl_autoload_extensions' => + array ( + 0 => 'string', + 'file_extensions=' => 'null|string', + ), + 'spl_autoload_functions' => + array ( + 0 => 'list', + ), + 'spl_autoload_register' => + array ( + 0 => 'bool', + 'callback=' => 'callable(string):void|null', + 'throw=' => 'bool', + 'prepend=' => 'bool', + ), + 'spl_autoload_unregister' => + array ( + 0 => 'bool', + 'callback' => 'callable(string):void', + ), + 'spl_classes' => + array ( + 0 => 'array', + ), + 'spl_object_hash' => + array ( + 0 => 'string', + 'object' => 'object', + ), + 'spl_object_id' => + array ( + 0 => 'int', + 'object' => 'object', + ), + 'SplDoublyLinkedList::__construct' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::add' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::bottom' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::count' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::current' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplDoublyLinkedList::key' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::next' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'SplDoublyLinkedList::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'SplDoublyLinkedList::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'SplDoublyLinkedList::pop' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::prev' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::rewind' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::serialize' => + array ( + 0 => 'string', + ), + 'SplDoublyLinkedList::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplDoublyLinkedList::shift' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::top' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplDoublyLinkedList::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::valid' => + array ( + 0 => 'bool', + ), + 'SplEnum::__construct' => + array ( + 0 => 'void', + 'initial_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'SplEnum::getConstList' => + array ( + 0 => 'array', + 'include_default=' => 'bool', + ), + 'SplFileInfo::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'SplFileInfo::__toString' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getATime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplFileInfo::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getExtension' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'SplFileInfo::getFilename' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getInode' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplFileInfo::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getPath' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'SplFileInfo::getPathname' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplFileInfo::getSize' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getType' => + array ( + 0 => 'false|string', + ), + 'SplFileInfo::isDir' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isFile' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isLink' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isReadable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isWritable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'SplFileInfo::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileInfo::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'SplFileObject::__toString' => + array ( + 0 => 'string', + ), + 'SplFileObject::current' => + array ( + 0 => 'array|false|string', + ), + 'SplFileObject::eof' => + array ( + 0 => 'bool', + ), + 'SplFileObject::fflush' => + array ( + 0 => 'bool', + ), + 'SplFileObject::fgetc' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplFileObject::fgets' => + array ( + 0 => 'string', + ), + 'SplFileObject::flock' => + array ( + 0 => 'bool', + 'operation' => 'int', + '&w_wouldBlock=' => 'int', + ), + 'SplFileObject::fpassthru' => + array ( + 0 => 'int', + ), + 'SplFileObject::fputcsv' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + 'SplFileObject::fread' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'SplFileObject::fscanf' => + array ( + 0 => 'array|int', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'SplFileObject::fseek' => + array ( + 0 => 'int', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'SplFileObject::fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}', + ), + 'SplFileObject::ftell' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::ftruncate' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplFileObject::fwrite' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + 'SplFileObject::getATime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplFileObject::getChildren' => + array ( + 0 => 'null', + ), + 'SplFileObject::getCsvControl' => + array ( + 0 => 'array', + ), + 'SplFileObject::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getCurrentLine' => + array ( + 0 => 'string', + ), + 'SplFileObject::getExtension' => + array ( + 0 => 'string', + ), + 'SplFileObject::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'SplFileObject::getFilename' => + array ( + 0 => 'string', + ), + 'SplFileObject::getFlags' => + array ( + 0 => 'int', + ), + 'SplFileObject::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getInode' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::getMaxLineLen' => + array ( + 0 => 'int', + ), + 'SplFileObject::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getPath' => + array ( + 0 => 'string', + ), + 'SplFileObject::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'SplFileObject::getPathname' => + array ( + 0 => 'string', + ), + 'SplFileObject::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplFileObject::getSize' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getType' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::hasChildren' => + array ( + 0 => 'false', + ), + 'SplFileObject::isDir' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isFile' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isLink' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isReadable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isWritable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::key' => + array ( + 0 => 'int', + ), + 'SplFileObject::next' => + array ( + 0 => 'void', + ), + 'SplFileObject::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'SplFileObject::rewind' => + array ( + 0 => 'void', + ), + 'SplFileObject::seek' => + array ( + 0 => 'void', + 'line' => 'int', + ), + 'SplFileObject::setCsvControl' => + array ( + 0 => 'void', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplFileObject::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'SplFileObject::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::setMaxLineLen' => + array ( + 0 => 'void', + 'maxLength' => 'int', + ), + 'SplFileObject::valid' => + array ( + 0 => 'bool', + ), + 'SplFixedArray::__construct' => + array ( + 0 => 'void', + 'size=' => 'int', + ), + 'SplFixedArray::__wakeup' => + array ( + 0 => 'void', + ), + 'SplFixedArray::count' => + array ( + 0 => 'int', + ), + 'SplFixedArray::fromArray' => + array ( + 0 => 'SplFixedArray', + 'array' => 'array', + 'preserveKeys=' => 'bool', + ), + 'SplFixedArray::getIterator' => + array ( + 0 => 'Iterator', + ), + 'SplFixedArray::getSize' => + array ( + 0 => 'int', + ), + 'SplFixedArray::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'SplFixedArray::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'SplFixedArray::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplFixedArray::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'SplFixedArray::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplFixedArray::toArray' => + array ( + 0 => 'array', + ), + 'SplHeap::__construct' => + array ( + 0 => 'void', + ), + 'SplHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplHeap::count' => + array ( + 0 => 'int', + ), + 'SplHeap::current' => + array ( + 0 => 'mixed', + ), + 'SplHeap::extract' => + array ( + 0 => 'mixed', + ), + 'SplHeap::insert' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'SplHeap::isCorrupted' => + array ( + 0 => 'bool', + ), + 'SplHeap::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplHeap::key' => + array ( + 0 => 'int', + ), + 'SplHeap::next' => + array ( + 0 => 'void', + ), + 'SplHeap::recoverFromCorruption' => + array ( + 0 => 'true', + ), + 'SplHeap::rewind' => + array ( + 0 => 'void', + ), + 'SplHeap::top' => + array ( + 0 => 'mixed', + ), + 'SplHeap::valid' => + array ( + 0 => 'bool', + ), + 'SplMaxHeap::__construct' => + array ( + 0 => 'void', + ), + 'SplMaxHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplMinHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplMinHeap::count' => + array ( + 0 => 'int', + ), + 'SplMinHeap::current' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::extract' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::insert' => + array ( + 0 => 'true', + 'value' => 'mixed', + ), + 'SplMinHeap::isCorrupted' => + array ( + 0 => 'bool', + ), + 'SplMinHeap::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplMinHeap::key' => + array ( + 0 => 'int', + ), + 'SplMinHeap::next' => + array ( + 0 => 'void', + ), + 'SplMinHeap::recoverFromCorruption' => + array ( + 0 => 'true', + ), + 'SplMinHeap::rewind' => + array ( + 0 => 'void', + ), + 'SplMinHeap::top' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::valid' => + array ( + 0 => 'bool', + ), + 'SplObjectStorage::__construct' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::addAll' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::attach' => + array ( + 0 => 'void', + 'object' => 'object', + 'info=' => 'mixed', + ), + 'SplObjectStorage::contains' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'SplObjectStorage::count' => + array ( + 0 => 'int', + 'mode=' => 'int', + ), + 'SplObjectStorage::current' => + array ( + 0 => 'object', + ), + 'SplObjectStorage::detach' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SplObjectStorage::getHash' => + array ( + 0 => 'string', + 'object' => 'object', + ), + 'SplObjectStorage::getInfo' => + array ( + 0 => 'mixed', + ), + 'SplObjectStorage::key' => + array ( + 0 => 'int', + ), + 'SplObjectStorage::next' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::offsetExists' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'SplObjectStorage::offsetGet' => + array ( + 0 => 'mixed', + 'object' => 'object', + ), + 'SplObjectStorage::offsetSet' => + array ( + 0 => 'void', + 'object' => 'object', + 'info=' => 'mixed', + ), + 'SplObjectStorage::offsetUnset' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SplObjectStorage::removeAll' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::removeAllExcept' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::rewind' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::serialize' => + array ( + 0 => 'string', + ), + 'SplObjectStorage::setInfo' => + array ( + 0 => 'void', + 'info' => 'mixed', + ), + 'SplObjectStorage::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplObjectStorage::valid' => + array ( + 0 => 'bool', + ), + 'SplObserver::update' => + array ( + 0 => 'void', + 'subject' => 'SplSubject', + ), + 'SplPriorityQueue::__construct' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::compare' => + array ( + 0 => 'int', + 'priority1' => 'mixed', + 'priority2' => 'mixed', + ), + 'SplPriorityQueue::count' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::current' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::extract' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::getExtractFlags' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::insert' => + array ( + 0 => 'bool', + 'value' => 'mixed', + 'priority' => 'mixed', + ), + 'SplPriorityQueue::isCorrupted' => + array ( + 0 => 'bool', + ), + 'SplPriorityQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplPriorityQueue::key' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::next' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::recoverFromCorruption' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::rewind' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::setExtractFlags' => + array ( + 0 => 'int', + 'flags' => 'int', + ), + 'SplPriorityQueue::top' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::valid' => + array ( + 0 => 'bool', + ), + 'SplQueue::dequeue' => + array ( + 0 => 'mixed', + ), + 'SplQueue::enqueue' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplQueue::key' => + array ( + 0 => 'int', + ), + 'SplQueue::next' => + array ( + 0 => 'void', + ), + 'SplQueue::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'mixed', + ), + 'SplQueue::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'SplQueue::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplQueue::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'mixed', + ), + 'SplQueue::pop' => + array ( + 0 => 'mixed', + ), + 'SplQueue::prev' => + array ( + 0 => 'void', + ), + 'SplQueue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::rewind' => + array ( + 0 => 'void', + ), + 'SplQueue::serialize' => + array ( + 0 => 'string', + ), + 'SplQueue::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplQueue::shift' => + array ( + 0 => 'mixed', + ), + 'SplQueue::top' => + array ( + 0 => 'mixed', + ), + 'SplQueue::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplQueue::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::valid' => + array ( + 0 => 'bool', + ), + 'SplStack::__construct' => + array ( + 0 => 'void', + ), + 'SplStack::add' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplStack::bottom' => + array ( + 0 => 'mixed', + ), + 'SplStack::count' => + array ( + 0 => 'int', + ), + 'SplStack::current' => + array ( + 0 => 'mixed', + ), + 'SplStack::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplStack::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplStack::key' => + array ( + 0 => 'int', + ), + 'SplStack::next' => + array ( + 0 => 'void', + ), + 'SplStack::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'mixed', + ), + 'SplStack::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'SplStack::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplStack::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'mixed', + ), + 'SplStack::pop' => + array ( + 0 => 'mixed', + ), + 'SplStack::prev' => + array ( + 0 => 'void', + ), + 'SplStack::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplStack::rewind' => + array ( + 0 => 'void', + ), + 'SplStack::serialize' => + array ( + 0 => 'string', + ), + 'SplStack::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplStack::shift' => + array ( + 0 => 'mixed', + ), + 'SplStack::top' => + array ( + 0 => 'mixed', + ), + 'SplStack::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplStack::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplStack::valid' => + array ( + 0 => 'bool', + ), + 'SplSubject::attach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'SplSubject::detach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'SplSubject::notify' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::__construct' => + array ( + 0 => 'void', + 'maxMemory=' => 'int', + ), + 'SplTempFileObject::__toString' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::current' => + array ( + 0 => 'array|false|string', + ), + 'SplTempFileObject::eof' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::fflush' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::fgetc' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplTempFileObject::fgets' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::flock' => + array ( + 0 => 'bool', + 'operation' => 'int', + '&w_wouldBlock=' => 'int', + ), + 'SplTempFileObject::fpassthru' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::fputcsv' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + 'SplTempFileObject::fread' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'SplTempFileObject::fscanf' => + array ( + 0 => 'array|int', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'SplTempFileObject::fseek' => + array ( + 0 => 'int', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'SplTempFileObject::fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}', + ), + 'SplTempFileObject::ftell' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::ftruncate' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplTempFileObject::fwrite' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + 'SplTempFileObject::getATime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplTempFileObject::getChildren' => + array ( + 0 => 'null', + ), + 'SplTempFileObject::getCsvControl' => + array ( + 0 => 'array', + ), + 'SplTempFileObject::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getCurrentLine' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getExtension' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + 'SplTempFileObject::getFilename' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getFlags' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getInode' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::getMaxLineLen' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getPath' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + 'SplTempFileObject::getPathname' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplTempFileObject::getSize' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getType' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::hasChildren' => + array ( + 0 => 'false', + ), + 'SplTempFileObject::isDir' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isFile' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isLink' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isReadable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isWritable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::key' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::next' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::openFile' => + array ( + 0 => 'SplTempFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'SplTempFileObject::rewind' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::seek' => + array ( + 0 => 'void', + 'line' => 'int', + ), + 'SplTempFileObject::setCsvControl' => + array ( + 0 => 'void', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplTempFileObject::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplTempFileObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'SplTempFileObject::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplTempFileObject::setMaxLineLen' => + array ( + 0 => 'void', + 'maxLength' => 'int', + ), + 'SplTempFileObject::valid' => + array ( + 0 => 'bool', + ), + 'SplType::__construct' => + array ( + 0 => 'void', + 'initial_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'Spoofchecker::__construct' => + array ( + 0 => 'void', + ), + 'Spoofchecker::areConfusable' => + array ( + 0 => 'bool', + 'string1' => 'string', + 'string2' => 'string', + '&w_errorCode=' => 'int', + ), + 'Spoofchecker::isSuspicious' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_errorCode=' => 'int', + ), + 'Spoofchecker::setAllowedLocales' => + array ( + 0 => 'void', + 'locales' => 'string', + ), + 'Spoofchecker::setChecks' => + array ( + 0 => 'void', + 'checks' => 'int', + ), + 'Spoofchecker::setRestrictionLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'sprintf' => + array ( + 0 => 'string', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'SQLite3::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'encryptionKey=' => 'string', + ), + 'SQLite3::busyTimeout' => + array ( + 0 => 'bool', + 'milliseconds' => 'int', + ), + 'SQLite3::changes' => + array ( + 0 => 'int', + ), + 'SQLite3::close' => + array ( + 0 => 'bool', + ), + 'SQLite3::createAggregate' => + array ( + 0 => 'bool', + 'name' => 'string', + 'stepCallback' => 'callable', + 'finalCallback' => 'callable', + 'argCount=' => 'int', + ), + 'SQLite3::createCollation' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + ), + 'SQLite3::createFunction' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + 'argCount=' => 'int', + 'flags=' => 'int', + ), + 'SQLite3::enableExceptions' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'SQLite3::escapeString' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SQLite3::exec' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'SQLite3::lastErrorCode' => + array ( + 0 => 'int', + ), + 'SQLite3::lastErrorMsg' => + array ( + 0 => 'string', + ), + 'SQLite3::lastInsertRowID' => + array ( + 0 => 'int', + ), + 'SQLite3::loadExtension' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'SQLite3::open' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'encryptionKey=' => 'string', + ), + 'SQLite3::openBlob' => + array ( + 0 => 'false|resource', + 'table' => 'string', + 'column' => 'string', + 'rowid' => 'int', + 'database=' => 'string', + 'flags=' => 'int', + ), + 'SQLite3::prepare' => + array ( + 0 => 'SQLite3Stmt|false', + 'query' => 'string', + ), + 'SQLite3::query' => + array ( + 0 => 'SQLite3Result|false', + 'query' => 'string', + ), + 'SQLite3::querySingle' => + array ( + 0 => 'array|null|scalar', + 'query' => 'string', + 'entireRow=' => 'bool', + ), + 'SQLite3::version' => + array ( + 0 => 'array', + ), + 'SQLite3Result::__construct' => + array ( + 0 => 'void', + ), + 'SQLite3Result::columnName' => + array ( + 0 => 'string', + 'column' => 'int', + ), + 'SQLite3Result::columnType' => + array ( + 0 => 'int', + 'column' => 'int', + ), + 'SQLite3Result::fetchArray' => + array ( + 0 => 'array|false', + 'mode=' => 'int', + ), + 'SQLite3Result::finalize' => + array ( + 0 => 'bool', + ), + 'SQLite3Result::numColumns' => + array ( + 0 => 'int', + ), + 'SQLite3Result::reset' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::__construct' => + array ( + 0 => 'void', + 'sqlite3' => 'sqlite3', + 'query' => 'string', + ), + 'SQLite3Stmt::bindParam' => + array ( + 0 => 'bool', + 'param' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + ), + 'SQLite3Stmt::bindValue' => + array ( + 0 => 'bool', + 'param' => 'int|string', + 'value' => 'mixed', + 'type=' => 'int', + ), + 'SQLite3Stmt::clear' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::close' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::execute' => + array ( + 0 => 'SQLite3Result|false', + ), + 'SQLite3Stmt::getSQL' => + array ( + 0 => 'string', + 'expand=' => 'bool', + ), + 'SQLite3Stmt::paramCount' => + array ( + 0 => 'int', + ), + 'SQLite3Stmt::readOnly' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::reset' => + array ( + 0 => 'bool', + ), + 'sqlite_array_query' => + array ( + 0 => 'array|false', + 'dbhandle' => 'resource', + 'query' => 'string', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_busy_timeout' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'milliseconds' => 'int', + ), + 'sqlite_changes' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_close' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + ), + 'sqlite_column' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'sqlite_create_aggregate' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'sqlite_create_function' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'sqlite_current' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_error_string' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'sqlite_escape_string' => + array ( + 0 => 'string', + 'item' => 'string', + ), + 'sqlite_exec' => + array ( + 0 => 'bool', + 'dbhandle' => 'resource', + 'query' => 'string', + 'error_msg=' => 'string', + ), + 'sqlite_factory' => + array ( + 0 => 'SQLiteDatabase', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_fetch_all' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_array' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_column_types' => + array ( + 0 => 'array|false', + 'table_name' => 'string', + 'dbhandle' => 'resource', + 'result_type=' => 'int', + ), + 'sqlite_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_single' => + array ( + 0 => 'string', + 'result' => 'resource', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_string' => + array ( + 0 => 'string', + 'result' => 'resource', + 'decode_binary' => 'bool', + ), + 'sqlite_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_index' => 'int', + ), + 'sqlite_has_more' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_has_prev' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_key' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_last_error' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_last_insert_rowid' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_libencoding' => + array ( + 0 => 'string', + ), + 'sqlite_libversion' => + array ( + 0 => 'string', + ), + 'sqlite_next' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_popen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_prev' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_query' => + array ( + 0 => 'false|resource', + 'dbhandle' => 'resource', + 'query' => 'resource|string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'sqlite_rewind' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'rownum' => 'int', + ), + 'sqlite_single_query' => + array ( + 0 => 'array', + 'db' => 'resource', + 'query' => 'string', + 'first_row_only=' => 'bool', + 'decode_binary=' => 'bool', + ), + 'sqlite_udf_decode_binary' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'sqlite_udf_encode_binary' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'sqlite_unbuffered_query' => + array ( + 0 => 'SQLiteUnbuffered|false', + 'dbhandle' => 'resource', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'sqlite_valid' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'SQLiteDatabase::__construct' => + array ( + 0 => 'void', + 'filename' => 'mixed', + 'mode=' => 'int|mixed', + '&error_message' => 'mixed', + ), + 'SQLiteDatabase::arrayQuery' => + array ( + 0 => 'array', + 'query' => 'string', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteDatabase::busyTimeout' => + array ( + 0 => 'int', + 'milliseconds' => 'int', + ), + 'SQLiteDatabase::changes' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::createAggregate' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'SQLiteDatabase::createFunction' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'SQLiteDatabase::exec' => + array ( + 0 => 'bool', + 'query' => 'string', + 'error_msg=' => 'string', + ), + 'SQLiteDatabase::fetchColumnTypes' => + array ( + 0 => 'array', + 'table_name' => 'string', + 'result_type=' => 'int', + ), + 'SQLiteDatabase::lastError' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::lastInsertRowid' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::query' => + array ( + 0 => 'SQLiteResult|false', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'SQLiteDatabase::queryExec' => + array ( + 0 => 'bool', + 'query' => 'string', + '&w_error_msg=' => 'string', + ), + 'SQLiteDatabase::singleQuery' => + array ( + 0 => 'array', + 'query' => 'string', + 'first_row_only=' => 'bool', + 'decode_binary=' => 'bool', + ), + 'SQLiteDatabase::unbufferedQuery' => + array ( + 0 => 'SQLiteUnbuffered|false', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'SQLiteException::__clone' => + array ( + 0 => 'void', + ), + 'SQLiteException::__construct' => + array ( + 0 => 'void', + 'message' => 'mixed', + 'code' => 'mixed', + 'previous' => 'mixed', + ), + 'SQLiteException::__toString' => + array ( + 0 => 'string', + ), + 'SQLiteException::__wakeup' => + array ( + 0 => 'void', + ), + 'SQLiteException::getCode' => + array ( + 0 => 'int', + ), + 'SQLiteException::getFile' => + array ( + 0 => 'string', + ), + 'SQLiteException::getLine' => + array ( + 0 => 'int', + ), + 'SQLiteException::getMessage' => + array ( + 0 => 'string', + ), + 'SQLiteException::getPrevious' => + array ( + 0 => 'RuntimeException|Throwable|null', + ), + 'SQLiteException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SQLiteException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SQLiteResult::__construct' => + array ( + 0 => 'void', + ), + 'SQLiteResult::column' => + array ( + 0 => 'mixed', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::count' => + array ( + 0 => 'int', + ), + 'SQLiteResult::current' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetch' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchAll' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchObject' => + array ( + 0 => 'object', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchSingle' => + array ( + 0 => 'string', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fieldName' => + array ( + 0 => 'string', + 'field_index' => 'int', + ), + 'SQLiteResult::hasPrev' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::key' => + array ( + 0 => 'mixed|null', + ), + 'SQLiteResult::next' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::numFields' => + array ( + 0 => 'int', + ), + 'SQLiteResult::numRows' => + array ( + 0 => 'int', + ), + 'SQLiteResult::prev' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::rewind' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::seek' => + array ( + 0 => 'bool', + 'rownum' => 'int', + ), + 'SQLiteResult::valid' => + array ( + 0 => 'bool', + ), + 'SQLiteUnbuffered::column' => + array ( + 0 => 'void', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::current' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetch' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchAll' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchObject' => + array ( + 0 => 'object', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchSingle' => + array ( + 0 => 'string', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fieldName' => + array ( + 0 => 'string', + 'field_index' => 'int', + ), + 'SQLiteUnbuffered::next' => + array ( + 0 => 'bool', + ), + 'SQLiteUnbuffered::numFields' => + array ( + 0 => 'int', + ), + 'SQLiteUnbuffered::valid' => + array ( + 0 => 'bool', + ), + 'sqlsrv_begin_transaction' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_cancel' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_client_info' => + array ( + 0 => 'array|false', + 'conn' => 'resource', + ), + 'sqlsrv_close' => + array ( + 0 => 'bool', + 'conn' => 'null|resource', + ), + 'sqlsrv_commit' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_configure' => + array ( + 0 => 'bool', + 'setting' => 'string', + 'value' => 'mixed', + ), + 'sqlsrv_connect' => + array ( + 0 => 'false|resource', + 'server_name' => 'string', + 'connection_info=' => 'array', + ), + 'sqlsrv_errors' => + array ( + 0 => 'array|null', + 'errors_and_or_warnings=' => 'int', + ), + 'sqlsrv_execute' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_fetch' => + array ( + 0 => 'bool|null', + 'stmt' => 'resource', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_fetch_array' => + array ( + 0 => 'array|false|null', + 'stmt' => 'resource', + 'fetchType=' => 'int', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_fetch_object' => + array ( + 0 => 'false|null|object', + 'stmt' => 'resource', + 'className=' => 'string', + 'ctorParams=' => 'array', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_field_metadata' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + ), + 'sqlsrv_free_stmt' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_get_config' => + array ( + 0 => 'mixed', + 'setting' => 'string', + ), + 'sqlsrv_get_field' => + array ( + 0 => 'mixed', + 'stmt' => 'resource', + 'fieldIndex' => 'int', + 'getAsType=' => 'int', + ), + 'sqlsrv_has_rows' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_next_result' => + array ( + 0 => 'bool|null', + 'stmt' => 'resource', + ), + 'sqlsrv_num_fields' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_num_rows' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_prepare' => + array ( + 0 => 'false|resource', + 'conn' => 'resource', + 'sql' => 'string', + 'params=' => 'array', + 'options=' => 'array', + ), + 'sqlsrv_query' => + array ( + 0 => 'false|resource', + 'conn' => 'resource', + 'sql' => 'string', + 'params=' => 'array', + 'options=' => 'array', + ), + 'sqlsrv_rollback' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_rows_affected' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_send_stream_data' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_server_info' => + array ( + 0 => 'array', + 'conn' => 'resource', + ), + 'sqrt' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'srand' => + array ( + 0 => 'void', + 'seed=' => 'int|null', + 'mode=' => 'int', + ), + 'sscanf' => + array ( + 0 => 'int|list|null', + 'string' => 'string', + 'format' => 'string', + '&...w_vars=' => 'float|int|null|string', + ), + 'ssdeep_fuzzy_compare' => + array ( + 0 => 'int', + 'signature1' => 'string', + 'signature2' => 'string', + ), + 'ssdeep_fuzzy_hash' => + array ( + 0 => 'string', + 'to_hash' => 'string', + ), + 'ssdeep_fuzzy_hash_filename' => + array ( + 0 => 'string', + 'file_name' => 'string', + ), + 'ssh2_auth_agent' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + ), + 'ssh2_auth_hostbased_file' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'hostname' => 'string', + 'pubkeyfile' => 'string', + 'privkeyfile' => 'string', + 'passphrase=' => 'string', + 'local_username=' => 'string', + ), + 'ssh2_auth_none' => + array ( + 0 => 'array|bool', + 'session' => 'resource', + 'username' => 'string', + ), + 'ssh2_auth_password' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'password' => 'string', + ), + 'ssh2_auth_pubkey_file' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'pubkeyfile' => 'string', + 'privkeyfile' => 'string', + 'passphrase=' => 'string', + ), + 'ssh2_connect' => + array ( + 0 => 'false|resource', + 'host' => 'string', + 'port=' => 'int', + 'methods=' => 'array', + 'callbacks=' => 'array', + ), + 'ssh2_disconnect' => + array ( + 0 => 'bool', + 'session' => 'resource', + ), + 'ssh2_exec' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'command' => 'string', + 'pty=' => 'string', + 'env=' => 'array', + 'width=' => 'int', + 'height=' => 'int', + 'width_height_type=' => 'int', + ), + 'ssh2_fetch_stream' => + array ( + 0 => 'false|resource', + 'channel' => 'resource', + 'streamid' => 'int', + ), + 'ssh2_fingerprint' => + array ( + 0 => 'false|string', + 'session' => 'resource', + 'flags=' => 'int', + ), + 'ssh2_forward_accept' => + array ( + 0 => 'false|resource', + 'listener' => 'resource', + ), + 'ssh2_forward_listen' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'port' => 'int', + 'host=' => 'string', + 'max_connections=' => 'string', + ), + 'ssh2_methods_negotiated' => + array ( + 0 => 'array|false', + 'session' => 'resource', + ), + 'ssh2_poll' => + array ( + 0 => 'int', + '&polldes' => 'array', + 'timeout=' => 'int', + ), + 'ssh2_publickey_add' => + array ( + 0 => 'bool', + 'pkey' => 'resource', + 'algoname' => 'string', + 'blob' => 'string', + 'overwrite=' => 'bool', + 'attributes=' => 'array', + ), + 'ssh2_publickey_init' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + ), + 'ssh2_publickey_list' => + array ( + 0 => 'array|false', + 'pkey' => 'resource', + ), + 'ssh2_publickey_remove' => + array ( + 0 => 'bool', + 'pkey' => 'resource', + 'algoname' => 'string', + 'blob' => 'string', + ), + 'ssh2_scp_recv' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'remote_file' => 'string', + 'local_file' => 'string', + ), + 'ssh2_scp_send' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'local_file' => 'string', + 'remote_file' => 'string', + 'create_mode=' => 'int', + ), + 'ssh2_sftp' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + ), + 'ssh2_sftp_chmod' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'filename' => 'string', + 'mode' => 'int', + ), + 'ssh2_sftp_lstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'sftp' => 'resource', + 'path' => 'string', + ), + 'ssh2_sftp_mkdir' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'dirname' => 'string', + 'mode=' => 'int', + 'recursive=' => 'bool', + ), + 'ssh2_sftp_readlink' => + array ( + 0 => 'false|non-falsy-string', + 'sftp' => 'resource', + 'link' => 'string', + ), + 'ssh2_sftp_realpath' => + array ( + 0 => 'false|non-falsy-string', + 'sftp' => 'resource', + 'filename' => 'string', + ), + 'ssh2_sftp_rename' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'ssh2_sftp_rmdir' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'dirname' => 'string', + ), + 'ssh2_sftp_stat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'sftp' => 'resource', + 'path' => 'string', + ), + 'ssh2_sftp_symlink' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'target' => 'string', + 'link' => 'string', + ), + 'ssh2_sftp_unlink' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'filename' => 'string', + ), + 'ssh2_shell' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'termtype=' => 'string', + 'env=' => 'array', + 'width=' => 'int', + 'height=' => 'int', + 'width_height_type=' => 'int', + ), + 'ssh2_tunnel' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'host' => 'string', + 'port' => 'int', + ), + 'stat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'filename' => 'string', + ), + 'stats_absolute_deviation' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_cdf_beta' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_binomial' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_cauchy' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_chisquare' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_exponential' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_f' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_gamma' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_laplace' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_logistic' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_negative_binomial' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_chisquare' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_f' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'par4' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_normal' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_poisson' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_uniform' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_weibull' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_covariance' => + array ( + 0 => 'float', + 'a' => 'array', + 'b' => 'array', + ), + 'stats_den_uniform' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_beta' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_cauchy' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_chisquare' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr' => 'float', + ), + 'stats_dens_exponential' => + array ( + 0 => 'float', + 'x' => 'float', + 'scale' => 'float', + ), + 'stats_dens_f' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr1' => 'float', + 'dfr2' => 'float', + ), + 'stats_dens_gamma' => + array ( + 0 => 'float', + 'x' => 'float', + 'shape' => 'float', + 'scale' => 'float', + ), + 'stats_dens_laplace' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_logistic' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_negative_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_normal' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_pmf_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_pmf_hypergeometric' => + array ( + 0 => 'float', + 'n1' => 'float', + 'n2' => 'float', + 'N1' => 'float', + 'N2' => 'float', + ), + 'stats_dens_pmf_negative_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_pmf_poisson' => + array ( + 0 => 'float', + 'x' => 'float', + 'lb' => 'float', + ), + 'stats_dens_t' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr' => 'float', + ), + 'stats_dens_uniform' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_weibull' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_harmonic_mean' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_kurtosis' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_rand_gen_beta' => + array ( + 0 => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_rand_gen_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + ), + 'stats_rand_gen_exponential' => + array ( + 0 => 'float', + 'av' => 'float', + ), + 'stats_rand_gen_f' => + array ( + 0 => 'float', + 'dfn' => 'float', + 'dfd' => 'float', + ), + 'stats_rand_gen_funiform' => + array ( + 0 => 'float', + 'low' => 'float', + 'high' => 'float', + ), + 'stats_rand_gen_gamma' => + array ( + 0 => 'float', + 'a' => 'float', + 'r' => 'float', + ), + 'stats_rand_gen_ibinomial' => + array ( + 0 => 'int', + 'n' => 'int', + 'pp' => 'float', + ), + 'stats_rand_gen_ibinomial_negative' => + array ( + 0 => 'int', + 'n' => 'int', + 'p' => 'float', + ), + 'stats_rand_gen_int' => + array ( + 0 => 'int', + ), + 'stats_rand_gen_ipoisson' => + array ( + 0 => 'int', + 'mu' => 'float', + ), + 'stats_rand_gen_iuniform' => + array ( + 0 => 'int', + 'low' => 'int', + 'high' => 'int', + ), + 'stats_rand_gen_noncenral_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_f' => + array ( + 0 => 'float', + 'dfn' => 'float', + 'dfd' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_t' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_normal' => + array ( + 0 => 'float', + 'av' => 'float', + 'sd' => 'float', + ), + 'stats_rand_gen_t' => + array ( + 0 => 'float', + 'df' => 'float', + ), + 'stats_rand_get_seeds' => + array ( + 0 => 'array', + ), + 'stats_rand_phrase_to_seeds' => + array ( + 0 => 'array', + 'phrase' => 'string', + ), + 'stats_rand_ranf' => + array ( + 0 => 'float', + ), + 'stats_rand_setall' => + array ( + 0 => 'void', + 'iseed1' => 'int', + 'iseed2' => 'int', + ), + 'stats_skew' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_standard_deviation' => + array ( + 0 => 'float', + 'a' => 'array', + 'sample=' => 'bool', + ), + 'stats_stat_binomial_coef' => + array ( + 0 => 'float', + 'x' => 'int', + 'n' => 'int', + ), + 'stats_stat_correlation' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_factorial' => + array ( + 0 => 'float', + 'n' => 'int', + ), + 'stats_stat_gennch' => + array ( + 0 => 'float', + 'n' => 'int', + ), + 'stats_stat_independent_t' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_innerproduct' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_noncentral_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_stat_paired_t' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_percentile' => + array ( + 0 => 'float', + 'arr' => 'array', + 'perc' => 'float', + ), + 'stats_stat_powersum' => + array ( + 0 => 'float', + 'arr' => 'array', + 'power' => 'float', + ), + 'stats_variance' => + array ( + 0 => 'float', + 'a' => 'array', + 'sample=' => 'bool', + ), + 'Stomp::__construct' => + array ( + 0 => 'void', + 'broker=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::abort' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::ack' => + array ( + 0 => 'bool', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'Stomp::begin' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::commit' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::error' => + array ( + 0 => 'string', + ), + 'Stomp::getReadTimeout' => + array ( + 0 => 'array', + ), + 'Stomp::getSessionId' => + array ( + 0 => 'string', + ), + 'Stomp::hasFrame' => + array ( + 0 => 'bool', + ), + 'Stomp::readFrame' => + array ( + 0 => 'array', + 'class_name=' => 'string', + ), + 'Stomp::send' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'Stomp::setReadTimeout' => + array ( + 0 => 'void', + 'seconds' => 'int', + 'microseconds=' => 'int|null', + ), + 'Stomp::subscribe' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::unsubscribe' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_abort' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_ack' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'stomp_begin' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_close' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'stomp_commit' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_connect' => + array ( + 0 => 'resource', + 'link' => 'resource', + 'broker=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_connect_error' => + array ( + 0 => 'string', + ), + 'stomp_error' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'stomp_get_read_timeout' => + array ( + 0 => 'array', + 'link' => 'resource', + ), + 'stomp_get_session_id' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'stomp_has_frame' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'stomp_read_frame' => + array ( + 0 => 'array', + 'link' => 'resource', + 'class_name=' => 'string', + ), + 'stomp_send' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'stomp_set_read_timeout' => + array ( + 0 => 'void', + 'link' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int|null', + ), + 'stomp_subscribe' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_unsubscribe' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_version' => + array ( + 0 => 'string', + ), + 'StompException::getDetails' => + array ( + 0 => 'string', + ), + 'StompFrame::__construct' => + array ( + 0 => 'void', + 'command=' => 'string', + 'headers=' => 'array|null', + 'body=' => 'string', + ), + 'str_contains' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'str_ends_with' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'str_getcsv' => + array ( + 0 => 'non-empty-list', + 'string' => 'string', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'str_ireplace' => + array ( + 0 => 'string', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_ireplace\'1' => + array ( + 0 => 'array', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_ireplace\'2' => + array ( + 0 => 'string', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_ireplace\'3' => + array ( + 0 => 'array', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_pad' => + array ( + 0 => 'string', + 'string' => 'string', + 'length' => 'int', + 'pad_string=' => 'string', + 'pad_type=' => 'int', + ), + 'str_repeat' => + array ( + 0 => 'string', + 'string' => 'string', + 'times' => 'int', + ), + 'str_replace' => + array ( + 0 => 'string', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_replace\'1' => + array ( + 0 => 'array', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_replace\'2' => + array ( + 0 => 'string', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_replace\'3' => + array ( + 0 => 'array', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_rot13' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'str_shuffle' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'str_split' => + array ( + 0 => 'list', + 'string' => 'string', + 'length=' => 'int<1, max>', + ), + 'str_starts_with' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'str_word_count' => + array ( + 0 => 'array|int', + 'string' => 'string', + 'format=' => 'int', + 'characters=' => 'null|string', + ), + 'strcasecmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + 'strcmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strcoll' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strcspn' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + 'stream_bucket_append' => + array ( + 0 => 'void', + 'brigade' => 'resource', + 'bucket' => 'object', + ), + 'stream_bucket_make_writeable' => + array ( + 0 => 'null|object', + 'brigade' => 'resource', + ), + 'stream_bucket_new' => + array ( + 0 => 'object', + 'stream' => 'resource', + 'buffer' => 'string', + ), + 'stream_bucket_prepend' => + array ( + 0 => 'void', + 'brigade' => 'resource', + 'bucket' => 'object', + ), + 'stream_context_create' => + array ( + 0 => 'resource', + 'options=' => 'array|null', + 'params=' => 'array|null', + ), + 'stream_context_get_default' => + array ( + 0 => 'resource', + 'options=' => 'array|null', + ), + 'stream_context_get_options' => + array ( + 0 => 'array', + 'stream_or_context' => 'resource', + ), + 'stream_context_get_params' => + array ( + 0 => 'array{notification: string, options: array}', + 'context' => 'resource', + ), + 'stream_context_set_default' => + array ( + 0 => 'resource', + 'options' => 'array', + ), + 'stream_context_set_option' => + array ( + 0 => 'bool', + 'context' => 'mixed', + 'wrapper_or_options' => 'string', + 'option_name' => 'string', + 'value' => 'mixed', + ), + 'stream_context_set_option\'1' => + array ( + 0 => 'bool', + 'context' => 'mixed', + 'wrapper_or_options' => 'array', + ), + 'stream_context_set_params' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'params' => 'array', + ), + 'stream_copy_to_stream' => + array ( + 0 => 'false|int', + 'from' => 'resource', + 'to' => 'resource', + 'length=' => 'int|null', + 'offset=' => 'int', + ), + 'stream_encoding' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'encoding=' => 'string', + ), + 'stream_filter_append' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'filter_name' => 'string', + 'mode=' => 'int', + 'params=' => 'mixed', + ), + 'stream_filter_prepend' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'filter_name' => 'string', + 'mode=' => 'int', + 'params=' => 'mixed', + ), + 'stream_filter_register' => + array ( + 0 => 'bool', + 'filter_name' => 'string', + 'class' => 'string', + ), + 'stream_filter_remove' => + array ( + 0 => 'bool', + 'stream_filter' => 'resource', + ), + 'stream_get_contents' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + 'offset=' => 'int', + ), + 'stream_get_filters' => + array ( + 0 => 'array', + ), + 'stream_get_line' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + 'ending=' => 'string', + ), + 'stream_get_meta_data' => + array ( + 0 => 'array{blocked: bool, crypto?: array{cipher_bits: int, cipher_name: string, cipher_version: string, protocol: string}, eof: bool, mediatype: string, mode: string, seekable: bool, stream_type: string, timed_out: bool, unread_bytes: int, uri: string, wrapper_data: mixed, wrapper_type: string}', + 'stream' => 'resource', + ), + 'stream_get_transports' => + array ( + 0 => 'list', + ), + 'stream_get_wrappers' => + array ( + 0 => 'list', + ), + 'stream_is_local' => + array ( + 0 => 'bool', + 'stream' => 'resource|string', + ), + 'stream_isatty' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'stream_notification_callback' => + array ( + 0 => 'callback', + 'notification_code' => 'int', + 'severity' => 'int', + 'message' => 'string', + 'message_code' => 'int', + 'bytes_transferred' => 'int', + 'bytes_max' => 'int', + ), + 'stream_register_wrapper' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'class' => 'string', + 'flags=' => 'int', + ), + 'stream_resolve_include_path' => + array ( + 0 => 'false|string', + 'filename' => 'string', + ), + 'stream_select' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int|null', + ), + 'stream_set_blocking' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable' => 'bool', + ), + 'stream_set_chunk_size' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_set_read_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_set_timeout' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'stream_set_write_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_socket_accept' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + 'timeout=' => 'float|null', + '&w_peer_name=' => 'string', + ), + 'stream_socket_client' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + 'stream_socket_enable_crypto' => + array ( + 0 => 'bool|int', + 'stream' => 'resource', + 'enable' => 'bool', + 'crypto_method=' => 'int|null', + 'session_stream=' => 'null|resource', + ), + 'stream_socket_get_name' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'remote' => 'bool', + ), + 'stream_socket_pair' => + array ( + 0 => 'array|false', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + 'stream_socket_recvfrom' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'length' => 'int', + 'flags=' => 'int', + '&w_address=' => 'string', + ), + 'stream_socket_sendto' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'flags=' => 'int', + 'address=' => 'string', + ), + 'stream_socket_server' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'stream_socket_shutdown' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'mode' => 'int', + ), + 'stream_supports_lock' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'stream_wrapper_register' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'class' => 'string', + 'flags=' => 'int', + ), + 'stream_wrapper_restore' => + array ( + 0 => 'bool', + 'protocol' => 'string', + ), + 'stream_wrapper_unregister' => + array ( + 0 => 'bool', + 'protocol' => 'string', + ), + 'streamWrapper::__construct' => + array ( + 0 => 'void', + ), + 'streamWrapper::__destruct' => + array ( + 0 => 'void', + ), + 'streamWrapper::dir_closedir' => + array ( + 0 => 'bool', + ), + 'streamWrapper::dir_opendir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'options' => 'int', + ), + 'streamWrapper::dir_readdir' => + array ( + 0 => 'string', + ), + 'streamWrapper::dir_rewinddir' => + array ( + 0 => 'bool', + ), + 'streamWrapper::mkdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'mode' => 'int', + 'options' => 'int', + ), + 'streamWrapper::rename' => + array ( + 0 => 'bool', + 'path_from' => 'string', + 'path_to' => 'string', + ), + 'streamWrapper::rmdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'options' => 'int', + ), + 'streamWrapper::stream_cast' => + array ( + 0 => 'resource', + 'cast_as' => 'int', + ), + 'streamWrapper::stream_close' => + array ( + 0 => 'void', + ), + 'streamWrapper::stream_eof' => + array ( + 0 => 'bool', + ), + 'streamWrapper::stream_flush' => + array ( + 0 => 'bool', + ), + 'streamWrapper::stream_lock' => + array ( + 0 => 'bool', + 'operation' => 'mode', + ), + 'streamWrapper::stream_metadata' => + array ( + 0 => 'bool', + 'path' => 'string', + 'option' => 'int', + 'value' => 'mixed', + ), + 'streamWrapper::stream_open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'mode' => 'string', + 'options' => 'int', + 'opened_path' => 'string', + ), + 'streamWrapper::stream_read' => + array ( + 0 => 'string', + 'count' => 'int', + ), + 'streamWrapper::stream_seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'whence' => 'int', + ), + 'streamWrapper::stream_set_option' => + array ( + 0 => 'bool', + 'option' => 'int', + 'arg1' => 'int', + 'arg2' => 'int', + ), + 'streamWrapper::stream_stat' => + array ( + 0 => 'array', + ), + 'streamWrapper::stream_tell' => + array ( + 0 => 'int', + ), + 'streamWrapper::stream_truncate' => + array ( + 0 => 'bool', + 'new_size' => 'int', + ), + 'streamWrapper::stream_write' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'streamWrapper::unlink' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'streamWrapper::url_stat' => + array ( + 0 => 'array', + 'path' => 'string', + 'flags' => 'int', + ), + 'strftime' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + 'strip_tags' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'list|null|string', + ), + 'stripcslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'stripslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + 'strlen' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + ), + 'strnatcasecmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strnatcmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strncasecmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int<0, max>', + ), + 'strncmp' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int<0, max>', + ), + 'strpbrk' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'characters' => 'string', + ), + 'strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'strptime' => + array ( + 0 => 'array|false', + 'timestamp' => 'string', + 'format' => 'string', + ), + 'strrchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + 'strrev' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'strspn' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + 'strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + 'strtok' => + array ( + 0 => 'false|non-empty-string', + 'string' => 'string', + 'token' => 'string', + ), + 'strtok\'1' => + array ( + 0 => 'false|non-empty-string', + 'string' => 'string', + ), + 'strtolower' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + ), + 'strtotime' => + array ( + 0 => 'false|int', + 'datetime' => 'string', + 'baseTimestamp=' => 'int|null', + ), + 'strtoupper' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'strtr' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'strtr\'1' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'array', + ), + 'strval' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'styleObj::__construct' => + array ( + 0 => 'void', + 'label' => 'labelObj', + 'style' => 'styleObj', + ), + 'styleObj::convertToString' => + array ( + 0 => 'string', + ), + 'styleObj::free' => + array ( + 0 => 'void', + ), + 'styleObj::getBinding' => + array ( + 0 => 'string', + 'stylebinding' => 'mixed', + ), + 'styleObj::getGeomTransform' => + array ( + 0 => 'string', + ), + 'styleObj::ms_newStyleObj' => + array ( + 0 => 'styleObj', + 'class' => 'classObj', + 'style' => 'styleObj', + ), + 'styleObj::removeBinding' => + array ( + 0 => 'int', + 'stylebinding' => 'mixed', + ), + 'styleObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'styleObj::setBinding' => + array ( + 0 => 'int', + 'stylebinding' => 'mixed', + 'value' => 'string', + ), + 'styleObj::setGeomTransform' => + array ( + 0 => 'int', + 'value' => 'string', + ), + 'styleObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'substr' => + array ( + 0 => 'string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + ), + 'substr_compare' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + 'case_insensitive=' => 'bool', + ), + 'substr_count' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + 'substr_replace' => + array ( + 0 => 'string', + 'string' => 'string', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int|null', + ), + 'substr_replace\'1' => + array ( + 0 => 'array', + 'string' => 'array', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int|null', + ), + 'suhosin_encrypt_cookie' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'value' => 'string', + ), + 'suhosin_get_raw_cookies' => + array ( + 0 => 'array', + ), + 'SVM::__construct' => + array ( + 0 => 'void', + ), + 'svm::crossvalidate' => + array ( + 0 => 'float', + 'problem' => 'array', + 'number_of_folds' => 'int', + ), + 'SVM::getOptions' => + array ( + 0 => 'array', + ), + 'SVM::setOptions' => + array ( + 0 => 'bool', + 'params' => 'array', + ), + 'svm::train' => + array ( + 0 => 'SVMModel', + 'problem' => 'array', + 'weights=' => 'array', + ), + 'SVMModel::__construct' => + array ( + 0 => 'void', + 'filename=' => 'string', + ), + 'SVMModel::checkProbabilityModel' => + array ( + 0 => 'bool', + ), + 'SVMModel::getLabels' => + array ( + 0 => 'array', + ), + 'SVMModel::getNrClass' => + array ( + 0 => 'int', + ), + 'SVMModel::getSvmType' => + array ( + 0 => 'int', + ), + 'SVMModel::getSvrProbability' => + array ( + 0 => 'float', + ), + 'SVMModel::load' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'SVMModel::predict' => + array ( + 0 => 'float', + 'data' => 'array', + ), + 'SVMModel::predict_probability' => + array ( + 0 => 'float', + 'data' => 'array', + ), + 'SVMModel::save' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'svn_add' => + array ( + 0 => 'bool', + 'path' => 'string', + 'recursive=' => 'bool', + 'force=' => 'bool', + ), + 'svn_auth_get_parameter' => + array ( + 0 => 'null|string', + 'key' => 'string', + ), + 'svn_auth_set_parameter' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'svn_blame' => + array ( + 0 => 'array', + 'repository_url' => 'string', + 'revision_no=' => 'int', + ), + 'svn_cat' => + array ( + 0 => 'string', + 'repos_url' => 'string', + 'revision_no=' => 'int', + ), + 'svn_checkout' => + array ( + 0 => 'bool', + 'repos' => 'string', + 'targetpath' => 'string', + 'revision=' => 'int', + 'flags=' => 'int', + ), + 'svn_cleanup' => + array ( + 0 => 'bool', + 'workingdir' => 'string', + ), + 'svn_client_version' => + array ( + 0 => 'string', + ), + 'svn_commit' => + array ( + 0 => 'array', + 'log' => 'string', + 'targets' => 'array', + 'dontrecurse=' => 'bool', + ), + 'svn_delete' => + array ( + 0 => 'bool', + 'path' => 'string', + 'force=' => 'bool', + ), + 'svn_diff' => + array ( + 0 => 'array', + 'path1' => 'string', + 'rev1' => 'int', + 'path2' => 'string', + 'rev2' => 'int', + ), + 'svn_export' => + array ( + 0 => 'bool', + 'frompath' => 'string', + 'topath' => 'string', + 'working_copy=' => 'bool', + 'revision_no=' => 'int', + ), + 'svn_fs_abort_txn' => + array ( + 0 => 'bool', + 'txn' => 'resource', + ), + 'svn_fs_apply_text' => + array ( + 0 => 'resource', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_begin_txn2' => + array ( + 0 => 'resource', + 'repos' => 'resource', + 'rev' => 'int', + ), + 'svn_fs_change_node_prop' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'svn_fs_check_path' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_contents_changed' => + array ( + 0 => 'bool', + 'root1' => 'resource', + 'path1' => 'string', + 'root2' => 'resource', + 'path2' => 'string', + ), + 'svn_fs_copy' => + array ( + 0 => 'bool', + 'from_root' => 'resource', + 'from_path' => 'string', + 'to_root' => 'resource', + 'to_path' => 'string', + ), + 'svn_fs_delete' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_dir_entries' => + array ( + 0 => 'array', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_file_contents' => + array ( + 0 => 'resource', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_file_length' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_is_dir' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_is_file' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_make_dir' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_make_file' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_node_created_rev' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_node_prop' => + array ( + 0 => 'string', + 'fsroot' => 'resource', + 'path' => 'string', + 'propname' => 'string', + ), + 'svn_fs_props_changed' => + array ( + 0 => 'bool', + 'root1' => 'resource', + 'path1' => 'string', + 'root2' => 'resource', + 'path2' => 'string', + ), + 'svn_fs_revision_prop' => + array ( + 0 => 'string', + 'fs' => 'resource', + 'revnum' => 'int', + 'propname' => 'string', + ), + 'svn_fs_revision_root' => + array ( + 0 => 'resource', + 'fs' => 'resource', + 'revnum' => 'int', + ), + 'svn_fs_txn_root' => + array ( + 0 => 'resource', + 'txn' => 'resource', + ), + 'svn_fs_youngest_rev' => + array ( + 0 => 'int', + 'fs' => 'resource', + ), + 'svn_import' => + array ( + 0 => 'bool', + 'path' => 'string', + 'url' => 'string', + 'nonrecursive' => 'bool', + ), + 'svn_log' => + array ( + 0 => 'array', + 'repos_url' => 'string', + 'start_revision=' => 'int', + 'end_revision=' => 'int', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'svn_ls' => + array ( + 0 => 'array', + 'repos_url' => 'string', + 'revision_no=' => 'int', + 'recurse=' => 'bool', + 'peg=' => 'bool', + ), + 'svn_mkdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'log_message=' => 'string', + ), + 'svn_move' => + array ( + 0 => 'mixed', + 'src_path' => 'string', + 'dst_path' => 'string', + 'force=' => 'bool', + ), + 'svn_propget' => + array ( + 0 => 'mixed', + 'path' => 'string', + 'property_name' => 'string', + 'recurse=' => 'bool', + 'revision' => 'int', + ), + 'svn_proplist' => + array ( + 0 => 'mixed', + 'path' => 'string', + 'recurse=' => 'bool', + 'revision' => 'int', + ), + 'svn_repos_create' => + array ( + 0 => 'resource', + 'path' => 'string', + 'config=' => 'array', + 'fsconfig=' => 'array', + ), + 'svn_repos_fs' => + array ( + 0 => 'resource', + 'repos' => 'resource', + ), + 'svn_repos_fs_begin_txn_for_commit' => + array ( + 0 => 'resource', + 'repos' => 'resource', + 'rev' => 'int', + 'author' => 'string', + 'log_msg' => 'string', + ), + 'svn_repos_fs_commit_txn' => + array ( + 0 => 'int', + 'txn' => 'resource', + ), + 'svn_repos_hotcopy' => + array ( + 0 => 'bool', + 'repospath' => 'string', + 'destpath' => 'string', + 'cleanlogs' => 'bool', + ), + 'svn_repos_open' => + array ( + 0 => 'resource', + 'path' => 'string', + ), + 'svn_repos_recover' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'svn_revert' => + array ( + 0 => 'bool', + 'path' => 'string', + 'recursive=' => 'bool', + ), + 'svn_status' => + array ( + 0 => 'array', + 'path' => 'string', + 'flags=' => 'int', + ), + 'svn_update' => + array ( + 0 => 'false|int', + 'path' => 'string', + 'revno=' => 'int', + 'recurse=' => 'bool', + ), + 'swf_actiongeturl' => + array ( + 0 => 'mixed', + 'url' => 'string', + 'target' => 'string', + ), + 'swf_actiongotoframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + ), + 'swf_actiongotolabel' => + array ( + 0 => 'mixed', + 'label' => 'string', + ), + 'swf_actionnextframe' => + array ( + 0 => 'mixed', + ), + 'swf_actionplay' => + array ( + 0 => 'mixed', + ), + 'swf_actionprevframe' => + array ( + 0 => 'mixed', + ), + 'swf_actionsettarget' => + array ( + 0 => 'mixed', + 'target' => 'string', + ), + 'swf_actionstop' => + array ( + 0 => 'mixed', + ), + 'swf_actiontogglequality' => + array ( + 0 => 'mixed', + ), + 'swf_actionwaitforframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + 'skipcount' => 'int', + ), + 'swf_addbuttonrecord' => + array ( + 0 => 'mixed', + 'states' => 'int', + 'shapeid' => 'int', + 'depth' => 'int', + ), + 'swf_addcolor' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_closefile' => + array ( + 0 => 'mixed', + 'return_file=' => 'int', + ), + 'swf_definebitmap' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'image_name' => 'string', + ), + 'swf_definefont' => + array ( + 0 => 'mixed', + 'fontid' => 'int', + 'fontname' => 'string', + ), + 'swf_defineline' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'width' => 'float', + ), + 'swf_definepoly' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'coords' => 'array', + 'npoints' => 'int', + 'width' => 'float', + ), + 'swf_definerect' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'width' => 'float', + ), + 'swf_definetext' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'string' => 'string', + 'docenter' => 'int', + ), + 'swf_endbutton' => + array ( + 0 => 'mixed', + ), + 'swf_enddoaction' => + array ( + 0 => 'mixed', + ), + 'swf_endshape' => + array ( + 0 => 'mixed', + ), + 'swf_endsymbol' => + array ( + 0 => 'mixed', + ), + 'swf_fontsize' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'swf_fontslant' => + array ( + 0 => 'mixed', + 'slant' => 'float', + ), + 'swf_fonttracking' => + array ( + 0 => 'mixed', + 'tracking' => 'float', + ), + 'swf_getbitmapinfo' => + array ( + 0 => 'array', + 'bitmapid' => 'int', + ), + 'swf_getfontinfo' => + array ( + 0 => 'array', + ), + 'swf_getframe' => + array ( + 0 => 'int', + ), + 'swf_labelframe' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'swf_lookat' => + array ( + 0 => 'mixed', + 'view_x' => 'float', + 'view_y' => 'float', + 'view_z' => 'float', + 'reference_x' => 'float', + 'reference_y' => 'float', + 'reference_z' => 'float', + 'twist' => 'float', + ), + 'swf_modifyobject' => + array ( + 0 => 'mixed', + 'depth' => 'int', + 'how' => 'int', + ), + 'swf_mulcolor' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_nextid' => + array ( + 0 => 'int', + ), + 'swf_oncondition' => + array ( + 0 => 'mixed', + 'transition' => 'int', + ), + 'swf_openfile' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'width' => 'float', + 'height' => 'float', + 'framerate' => 'float', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'swf_ortho' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + 'zmin' => 'float', + 'zmax' => 'float', + ), + 'swf_ortho2' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + ), + 'swf_perspective' => + array ( + 0 => 'mixed', + 'fovy' => 'float', + 'aspect' => 'float', + 'near' => 'float', + 'far' => 'float', + ), + 'swf_placeobject' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'depth' => 'int', + ), + 'swf_polarview' => + array ( + 0 => 'mixed', + 'dist' => 'float', + 'azimuth' => 'float', + 'incidence' => 'float', + 'twist' => 'float', + ), + 'swf_popmatrix' => + array ( + 0 => 'mixed', + ), + 'swf_posround' => + array ( + 0 => 'mixed', + 'round' => 'int', + ), + 'swf_pushmatrix' => + array ( + 0 => 'mixed', + ), + 'swf_removeobject' => + array ( + 0 => 'mixed', + 'depth' => 'int', + ), + 'swf_rotate' => + array ( + 0 => 'mixed', + 'angle' => 'float', + 'axis' => 'string', + ), + 'swf_scale' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + ), + 'swf_setfont' => + array ( + 0 => 'mixed', + 'fontid' => 'int', + ), + 'swf_setframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + ), + 'swf_shapearc' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'ang1' => 'float', + 'ang2' => 'float', + ), + 'swf_shapecurveto' => + array ( + 0 => 'mixed', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'swf_shapecurveto3' => + array ( + 0 => 'mixed', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'swf_shapefillbitmapclip' => + array ( + 0 => 'mixed', + 'bitmapid' => 'int', + ), + 'swf_shapefillbitmaptile' => + array ( + 0 => 'mixed', + 'bitmapid' => 'int', + ), + 'swf_shapefilloff' => + array ( + 0 => 'mixed', + ), + 'swf_shapefillsolid' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_shapelinesolid' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + 'width' => 'float', + ), + 'swf_shapelineto' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + ), + 'swf_shapemoveto' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + ), + 'swf_showframe' => + array ( + 0 => 'mixed', + ), + 'swf_startbutton' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'type' => 'int', + ), + 'swf_startdoaction' => + array ( + 0 => 'mixed', + ), + 'swf_startshape' => + array ( + 0 => 'mixed', + 'objid' => 'int', + ), + 'swf_startsymbol' => + array ( + 0 => 'mixed', + 'objid' => 'int', + ), + 'swf_textwidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'swf_translate' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + ), + 'swf_viewport' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + ), + 'SWFAction::__construct' => + array ( + 0 => 'void', + 'script' => 'string', + ), + 'SWFBitmap::__construct' => + array ( + 0 => 'void', + 'file' => 'mixed', + 'alphafile=' => 'mixed', + ), + 'SWFBitmap::getHeight' => + array ( + 0 => 'float', + ), + 'SWFBitmap::getWidth' => + array ( + 0 => 'float', + ), + 'SWFButton::__construct' => + array ( + 0 => 'void', + ), + 'SWFButton::addAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + 'flags' => 'int', + ), + 'SWFButton::addASound' => + array ( + 0 => 'SWFSoundInstance', + 'sound' => 'swfsound', + 'flags' => 'int', + ), + 'SWFButton::addShape' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + 'flags' => 'int', + ), + 'SWFButton::setAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + ), + 'SWFButton::setDown' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setHit' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setMenu' => + array ( + 0 => 'void', + 'flag' => 'int', + ), + 'SWFButton::setOver' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setUp' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFDisplayItem::addAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + 'flags' => 'int', + ), + 'SWFDisplayItem::addColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFDisplayItem::endMask' => + array ( + 0 => 'void', + ), + 'SWFDisplayItem::getRot' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getX' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getXScale' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getXSkew' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getY' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getYScale' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getYSkew' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::move' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFDisplayItem::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFDisplayItem::multColor' => + array ( + 0 => 'void', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + 'a=' => 'float', + ), + 'SWFDisplayItem::remove' => + array ( + 0 => 'void', + ), + 'SWFDisplayItem::rotate' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFDisplayItem::rotateTo' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFDisplayItem::scale' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFDisplayItem::scaleTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y=' => 'float', + ), + 'SWFDisplayItem::setDepth' => + array ( + 0 => 'void', + 'depth' => 'int', + ), + 'SWFDisplayItem::setMaskLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'SWFDisplayItem::setMatrix' => + array ( + 0 => 'void', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFDisplayItem::setName' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'SWFDisplayItem::setRatio' => + array ( + 0 => 'void', + 'ratio' => 'float', + ), + 'SWFDisplayItem::skewX' => + array ( + 0 => 'void', + 'ddegrees' => 'float', + ), + 'SWFDisplayItem::skewXTo' => + array ( + 0 => 'void', + 'degrees' => 'float', + ), + 'SWFDisplayItem::skewY' => + array ( + 0 => 'void', + 'ddegrees' => 'float', + ), + 'SWFDisplayItem::skewYTo' => + array ( + 0 => 'void', + 'degrees' => 'float', + ), + 'SWFFill::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFFill::rotateTo' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFFill::scaleTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y=' => 'float', + ), + 'SWFFill::skewXTo' => + array ( + 0 => 'void', + 'x' => 'float', + ), + 'SWFFill::skewYTo' => + array ( + 0 => 'void', + 'y' => 'float', + ), + 'SWFFont::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'SWFFont::getAscent' => + array ( + 0 => 'float', + ), + 'SWFFont::getDescent' => + array ( + 0 => 'float', + ), + 'SWFFont::getLeading' => + array ( + 0 => 'float', + ), + 'SWFFont::getShape' => + array ( + 0 => 'string', + 'code' => 'int', + ), + 'SWFFont::getUTF8Width' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFFont::getWidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFFontChar::addChars' => + array ( + 0 => 'void', + 'char' => 'string', + ), + 'SWFFontChar::addUTF8Chars' => + array ( + 0 => 'void', + 'char' => 'string', + ), + 'SWFGradient::__construct' => + array ( + 0 => 'void', + ), + 'SWFGradient::addEntry' => + array ( + 0 => 'void', + 'ratio' => 'float', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + 'SWFMorph::__construct' => + array ( + 0 => 'void', + ), + 'SWFMorph::getShape1' => + array ( + 0 => 'SWFShape', + ), + 'SWFMorph::getShape2' => + array ( + 0 => 'SWFShape', + ), + 'SWFMovie::__construct' => + array ( + 0 => 'void', + 'version=' => 'int', + ), + 'SWFMovie::add' => + array ( + 0 => 'mixed', + 'instance' => 'object', + ), + 'SWFMovie::addExport' => + array ( + 0 => 'void', + 'char' => 'swfcharacter', + 'name' => 'string', + ), + 'SWFMovie::addFont' => + array ( + 0 => 'mixed', + 'font' => 'swffont', + ), + 'SWFMovie::importChar' => + array ( + 0 => 'SWFSprite', + 'libswf' => 'string', + 'name' => 'string', + ), + 'SWFMovie::importFont' => + array ( + 0 => 'SWFFontChar', + 'libswf' => 'string', + 'name' => 'string', + ), + 'SWFMovie::labelFrame' => + array ( + 0 => 'void', + 'label' => 'string', + ), + 'SWFMovie::namedAnchor' => + array ( + 0 => 'mixed', + ), + 'SWFMovie::nextFrame' => + array ( + 0 => 'void', + ), + 'SWFMovie::output' => + array ( + 0 => 'int', + 'compression=' => 'int', + ), + 'SWFMovie::protect' => + array ( + 0 => 'mixed', + ), + 'SWFMovie::remove' => + array ( + 0 => 'void', + 'instance' => 'object', + ), + 'SWFMovie::save' => + array ( + 0 => 'int', + 'filename' => 'string', + 'compression=' => 'int', + ), + 'SWFMovie::saveToFile' => + array ( + 0 => 'int', + 'x' => 'resource', + 'compression=' => 'int', + ), + 'SWFMovie::setbackground' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'SWFMovie::setDimension' => + array ( + 0 => 'void', + 'width' => 'float', + 'height' => 'float', + ), + 'SWFMovie::setFrames' => + array ( + 0 => 'void', + 'number' => 'int', + ), + 'SWFMovie::setRate' => + array ( + 0 => 'void', + 'rate' => 'float', + ), + 'SWFMovie::startSound' => + array ( + 0 => 'SWFSoundInstance', + 'sound' => 'swfsound', + ), + 'SWFMovie::stopSound' => + array ( + 0 => 'void', + 'sound' => 'swfsound', + ), + 'SWFMovie::streamMP3' => + array ( + 0 => 'int', + 'mp3file' => 'mixed', + 'skip=' => 'float', + ), + 'SWFMovie::writeExports' => + array ( + 0 => 'void', + ), + 'SWFPrebuiltClip::__construct' => + array ( + 0 => 'void', + 'file' => 'mixed', + ), + 'SWFShape::__construct' => + array ( + 0 => 'void', + ), + 'SWFShape::addFill' => + array ( + 0 => 'SWFFill', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + 'bitmap=' => 'swfbitmap', + 'flags=' => 'int', + 'gradient=' => 'swfgradient', + ), + 'SWFShape::addFill\'1' => + array ( + 0 => 'SWFFill', + 'bitmap' => 'SWFBitmap', + 'flags=' => 'int', + ), + 'SWFShape::addFill\'2' => + array ( + 0 => 'SWFFill', + 'gradient' => 'SWFGradient', + 'flags=' => 'int', + ), + 'SWFShape::drawArc' => + array ( + 0 => 'void', + 'r' => 'float', + 'startangle' => 'float', + 'endangle' => 'float', + ), + 'SWFShape::drawCircle' => + array ( + 0 => 'void', + 'r' => 'float', + ), + 'SWFShape::drawCubic' => + array ( + 0 => 'int', + 'bx' => 'float', + 'by' => 'float', + 'cx' => 'float', + 'cy' => 'float', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawCubicTo' => + array ( + 0 => 'int', + 'bx' => 'float', + 'by' => 'float', + 'cx' => 'float', + 'cy' => 'float', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawCurve' => + array ( + 0 => 'int', + 'controldx' => 'float', + 'controldy' => 'float', + 'anchordx' => 'float', + 'anchordy' => 'float', + 'targetdx=' => 'float', + 'targetdy=' => 'float', + ), + 'SWFShape::drawCurveTo' => + array ( + 0 => 'int', + 'controlx' => 'float', + 'controly' => 'float', + 'anchorx' => 'float', + 'anchory' => 'float', + 'targetx=' => 'float', + 'targety=' => 'float', + ), + 'SWFShape::drawGlyph' => + array ( + 0 => 'void', + 'font' => 'swffont', + 'character' => 'string', + 'size=' => 'int', + ), + 'SWFShape::drawLine' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawLineTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFShape::movePen' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::movePenTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFShape::setLeftFill' => + array ( + 0 => 'mixed', + 'fill' => 'swfgradient', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFShape::setLine' => + array ( + 0 => 'mixed', + 'shape' => 'swfshape', + 'width' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFShape::setRightFill' => + array ( + 0 => 'mixed', + 'fill' => 'swfgradient', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFSound' => + array ( + 0 => 'SWFSound', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'SWFSound::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'SWFSoundInstance::loopCount' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::loopInPoint' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::loopOutPoint' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::noMultiple' => + array ( + 0 => 'void', + ), + 'SWFSprite::__construct' => + array ( + 0 => 'void', + ), + 'SWFSprite::add' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SWFSprite::labelFrame' => + array ( + 0 => 'void', + 'label' => 'string', + ), + 'SWFSprite::nextFrame' => + array ( + 0 => 'void', + ), + 'SWFSprite::remove' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SWFSprite::setFrames' => + array ( + 0 => 'void', + 'number' => 'int', + ), + 'SWFSprite::startSound' => + array ( + 0 => 'SWFSoundInstance', + 'sount' => 'swfsound', + ), + 'SWFSprite::stopSound' => + array ( + 0 => 'void', + 'sount' => 'swfsound', + ), + 'SWFText::__construct' => + array ( + 0 => 'void', + ), + 'SWFText::addString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'SWFText::addUTF8String' => + array ( + 0 => 'void', + 'text' => 'string', + ), + 'SWFText::getAscent' => + array ( + 0 => 'float', + ), + 'SWFText::getDescent' => + array ( + 0 => 'float', + ), + 'SWFText::getLeading' => + array ( + 0 => 'float', + ), + 'SWFText::getUTF8Width' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFText::getWidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFText::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFText::setColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFText::setFont' => + array ( + 0 => 'void', + 'font' => 'swffont', + ), + 'SWFText::setHeight' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFText::setSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'SWFTextField::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'SWFTextField::addChars' => + array ( + 0 => 'void', + 'chars' => 'string', + ), + 'SWFTextField::addString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'SWFTextField::align' => + array ( + 0 => 'void', + 'alignement' => 'int', + ), + 'SWFTextField::setBounds' => + array ( + 0 => 'void', + 'width' => 'float', + 'height' => 'float', + ), + 'SWFTextField::setColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFTextField::setFont' => + array ( + 0 => 'void', + 'font' => 'swffont', + ), + 'SWFTextField::setHeight' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFTextField::setIndentation' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFTextField::setLeftMargin' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFTextField::setLineSpacing' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFTextField::setMargins' => + array ( + 0 => 'void', + 'left' => 'float', + 'right' => 'float', + ), + 'SWFTextField::setName' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'SWFTextField::setPadding' => + array ( + 0 => 'void', + 'padding' => 'float', + ), + 'SWFTextField::setRightMargin' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFVideoStream::__construct' => + array ( + 0 => 'void', + 'file=' => 'string', + ), + 'SWFVideoStream::getNumFrames' => + array ( + 0 => 'int', + ), + 'SWFVideoStream::setDimension' => + array ( + 0 => 'void', + 'x' => 'int', + 'y' => 'int', + ), + 'Swish::__construct' => + array ( + 0 => 'void', + 'index_names' => 'string', + ), + 'Swish::getMetaList' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'Swish::getPropertyList' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'Swish::prepare' => + array ( + 0 => 'object', + 'query=' => 'string', + ), + 'Swish::query' => + array ( + 0 => 'object', + 'query' => 'string', + ), + 'SwishResult::getMetaList' => + array ( + 0 => 'array', + ), + 'SwishResult::stem' => + array ( + 0 => 'array', + 'word' => 'string', + ), + 'SwishResults::getParsedWords' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'SwishResults::getRemovedStopwords' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'SwishResults::nextResult' => + array ( + 0 => 'object', + ), + 'SwishResults::seekResult' => + array ( + 0 => 'int', + 'position' => 'int', + ), + 'SwishSearch::execute' => + array ( + 0 => 'object', + 'query=' => 'string', + ), + 'SwishSearch::resetLimit' => + array ( + 0 => 'mixed', + ), + 'SwishSearch::setLimit' => + array ( + 0 => 'mixed', + 'property' => 'string', + 'low' => 'string', + 'high' => 'string', + ), + 'SwishSearch::setPhraseDelimiter' => + array ( + 0 => 'mixed', + 'delimiter' => 'string', + ), + 'SwishSearch::setSort' => + array ( + 0 => 'mixed', + 'sort' => 'string', + ), + 'SwishSearch::setStructure' => + array ( + 0 => 'mixed', + 'structure' => 'int', + ), + 'swoole\\async::dnsLookup' => + array ( + 0 => 'void', + 'hostname' => 'string', + 'callback' => 'callable', + ), + 'swoole\\async::read' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'callable', + 'chunk_size=' => 'int', + 'offset=' => 'int', + ), + 'swoole\\async::readFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'callback' => 'callable', + ), + 'swoole\\async::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\async::write' => + array ( + 0 => 'void', + 'filename' => 'string', + 'content' => 'string', + 'offset=' => 'int', + 'callback=' => 'callable', + ), + 'swoole\\async::writeFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'content' => 'string', + 'callback=' => 'callable', + 'flags=' => 'string', + ), + 'swoole\\atomic::add' => + array ( + 0 => 'int', + 'add_value=' => 'int', + ), + 'swoole\\atomic::cmpset' => + array ( + 0 => 'int', + 'cmp_value' => 'int', + 'new_value' => 'int', + ), + 'swoole\\atomic::get' => + array ( + 0 => 'int', + ), + 'swoole\\atomic::set' => + array ( + 0 => 'int', + 'value' => 'int', + ), + 'swoole\\atomic::sub' => + array ( + 0 => 'int', + 'sub_value=' => 'int', + ), + 'swoole\\buffer::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::__toString' => + array ( + 0 => 'string', + ), + 'swoole\\buffer::append' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'swoole\\buffer::clear' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::expand' => + array ( + 0 => 'int', + 'size' => 'int', + ), + 'swoole\\buffer::read' => + array ( + 0 => 'string', + 'offset' => 'int', + 'length' => 'int', + ), + 'swoole\\buffer::recycle' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::substr' => + array ( + 0 => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'remove=' => 'bool', + ), + 'swoole\\buffer::write' => + array ( + 0 => 'void', + 'offset' => 'int', + 'data' => 'string', + ), + 'swoole\\channel::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\channel::pop' => + array ( + 0 => 'mixed', + ), + 'swoole\\channel::push' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'swoole\\channel::stats' => + array ( + 0 => 'array', + ), + 'swoole\\client::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\client::close' => + array ( + 0 => 'bool', + 'force=' => 'bool', + ), + 'swoole\\client::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'flag=' => 'int', + ), + 'swoole\\client::getpeername' => + array ( + 0 => 'array', + ), + 'swoole\\client::getsockname' => + array ( + 0 => 'array', + ), + 'swoole\\client::isConnected' => + array ( + 0 => 'bool', + ), + 'swoole\\client::on' => + array ( + 0 => 'void', + 'event' => 'string', + 'callback' => 'callable', + ), + 'swoole\\client::pause' => + array ( + 0 => 'void', + ), + 'swoole\\client::pipe' => + array ( + 0 => 'void', + 'socket' => 'string', + ), + 'swoole\\client::recv' => + array ( + 0 => 'void', + 'size=' => 'string', + 'flag=' => 'string', + ), + 'swoole\\client::resume' => + array ( + 0 => 'void', + ), + 'swoole\\client::send' => + array ( + 0 => 'int', + 'data' => 'string', + 'flag=' => 'string', + ), + 'swoole\\client::sendfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\client::sendto' => + array ( + 0 => 'bool', + 'ip' => 'string', + 'port' => 'int', + 'data' => 'string', + ), + 'swoole\\client::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\client::sleep' => + array ( + 0 => 'void', + ), + 'swoole\\client::wakeup' => + array ( + 0 => 'void', + ), + 'swoole\\connection\\iterator::count' => + array ( + 0 => 'int', + ), + 'swoole\\connection\\iterator::current' => + array ( + 0 => 'Connection', + ), + 'swoole\\connection\\iterator::key' => + array ( + 0 => 'int', + ), + 'swoole\\connection\\iterator::next' => + array ( + 0 => 'Connection', + ), + 'swoole\\connection\\iterator::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'swoole\\connection\\iterator::offsetGet' => + array ( + 0 => 'Connection', + 'index' => 'string', + ), + 'swoole\\connection\\iterator::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int', + 'connection' => 'mixed', + ), + 'swoole\\connection\\iterator::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'swoole\\connection\\iterator::rewind' => + array ( + 0 => 'void', + ), + 'swoole\\connection\\iterator::valid' => + array ( + 0 => 'bool', + ), + 'swoole\\coroutine::call_user_func' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'parameter=' => 'mixed', + '...args=' => 'mixed', + ), + 'swoole\\coroutine::call_user_func_array' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'param_array' => 'array', + ), + 'swoole\\coroutine::cli_wait' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::create' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::getuid' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::resume' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::suspend' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::connect' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::getpeername' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::getsockname' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::isConnected' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::send' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::sendfile' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::sendto' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::set' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::addFile' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::execute' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::get' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::getDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::isConnected' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::post' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::set' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setCookies' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setData' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setHeaders' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setMethod' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::connect' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::getDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::query' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::setDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\event::add' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'string', + ), + 'swoole\\event::defer' => + array ( + 0 => 'void', + 'callback' => 'mixed', + ), + 'swoole\\event::del' => + array ( + 0 => 'bool', + 'fd' => 'string', + ), + 'swoole\\event::exit' => + array ( + 0 => 'void', + ), + 'swoole\\event::set' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback=' => 'string', + 'write_callback=' => 'string', + 'events=' => 'string', + ), + 'swoole\\event::wait' => + array ( + 0 => 'void', + ), + 'swoole\\event::write' => + array ( + 0 => 'void', + 'fd' => 'string', + 'data' => 'string', + ), + 'swoole\\http\\client::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\client::addFile' => + array ( + 0 => 'void', + 'path' => 'string', + 'name' => 'string', + 'type=' => 'string', + 'filename=' => 'string', + 'offset=' => 'string', + ), + 'swoole\\http\\client::close' => + array ( + 0 => 'void', + ), + 'swoole\\http\\client::download' => + array ( + 0 => 'void', + 'path' => 'string', + 'file' => 'string', + 'callback' => 'callable', + 'offset=' => 'int', + ), + 'swoole\\http\\client::execute' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'string', + ), + 'swoole\\http\\client::get' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::isConnected' => + array ( + 0 => 'bool', + ), + 'swoole\\http\\client::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::post' => + array ( + 0 => 'void', + 'path' => 'string', + 'data' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::push' => + array ( + 0 => 'void', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + ), + 'swoole\\http\\client::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\http\\client::setCookies' => + array ( + 0 => 'void', + 'cookies' => 'array', + ), + 'swoole\\http\\client::setData' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + ), + 'swoole\\http\\client::setHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + ), + 'swoole\\http\\client::setMethod' => + array ( + 0 => 'void', + 'method' => 'string', + ), + 'swoole\\http\\client::upgrade' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'string', + ), + 'swoole\\http\\request::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\request::rawcontent' => + array ( + 0 => 'string', + ), + 'swoole\\http\\response::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\response::cookie' => + array ( + 0 => 'string', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'string', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'string', + 'httponly=' => 'string', + ), + 'swoole\\http\\response::end' => + array ( + 0 => 'void', + 'content=' => 'string', + ), + 'swoole\\http\\response::gzip' => + array ( + 0 => 'ReturnType', + 'compress_level=' => 'string', + ), + 'swoole\\http\\response::header' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + 'ucwords=' => 'string', + ), + 'swoole\\http\\response::initHeader' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\http\\response::rawcookie' => + array ( + 0 => 'ReturnType', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'string', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'string', + 'httponly=' => 'string', + ), + 'swoole\\http\\response::sendfile' => + array ( + 0 => 'ReturnType', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\http\\response::status' => + array ( + 0 => 'ReturnType', + 'http_code' => 'string', + ), + 'swoole\\http\\response::write' => + array ( + 0 => 'void', + 'content' => 'string', + ), + 'swoole\\http\\server::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\server::start' => + array ( + 0 => 'void', + ), + 'swoole\\lock::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\lock::lock' => + array ( + 0 => 'void', + ), + 'swoole\\lock::lock_read' => + array ( + 0 => 'void', + ), + 'swoole\\lock::trylock' => + array ( + 0 => 'void', + ), + 'swoole\\lock::trylock_read' => + array ( + 0 => 'void', + ), + 'swoole\\lock::unlock' => + array ( + 0 => 'void', + ), + 'swoole\\mmap::open' => + array ( + 0 => 'ReturnType', + 'filename' => 'string', + 'size=' => 'string', + 'offset=' => 'string', + ), + 'swoole\\mysql::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\mysql::close' => + array ( + 0 => 'void', + ), + 'swoole\\mysql::connect' => + array ( + 0 => 'void', + 'server_config' => 'array', + 'callback' => 'callable', + ), + 'swoole\\mysql::getBuffer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\mysql::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\mysql::query' => + array ( + 0 => 'ReturnType', + 'sql' => 'string', + 'callback' => 'callable', + ), + 'swoole\\process::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\process::alarm' => + array ( + 0 => 'void', + 'interval_usec' => 'int', + ), + 'swoole\\process::close' => + array ( + 0 => 'void', + ), + 'swoole\\process::daemon' => + array ( + 0 => 'void', + 'nochdir=' => 'bool', + 'noclose=' => 'bool', + ), + 'swoole\\process::exec' => + array ( + 0 => 'ReturnType', + 'exec_file' => 'string', + 'args' => 'string', + ), + 'swoole\\process::exit' => + array ( + 0 => 'void', + 'exit_code=' => 'string', + ), + 'swoole\\process::freeQueue' => + array ( + 0 => 'void', + ), + 'swoole\\process::kill' => + array ( + 0 => 'void', + 'pid' => 'int', + 'signal_no=' => 'string', + ), + 'swoole\\process::name' => + array ( + 0 => 'void', + 'process_name' => 'string', + ), + 'swoole\\process::pop' => + array ( + 0 => 'mixed', + 'maxsize=' => 'int', + ), + 'swoole\\process::push' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'swoole\\process::read' => + array ( + 0 => 'string', + 'maxsize=' => 'int', + ), + 'swoole\\process::signal' => + array ( + 0 => 'void', + 'signal_no' => 'string', + 'callback' => 'callable', + ), + 'swoole\\process::start' => + array ( + 0 => 'void', + ), + 'swoole\\process::statQueue' => + array ( + 0 => 'array', + ), + 'swoole\\process::useQueue' => + array ( + 0 => 'bool', + 'key' => 'int', + 'mode=' => 'int', + ), + 'swoole\\process::wait' => + array ( + 0 => 'array', + 'blocking=' => 'bool', + ), + 'swoole\\process::write' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'swoole\\redis\\server::format' => + array ( + 0 => 'ReturnType', + 'type' => 'string', + 'value=' => 'string', + ), + 'swoole\\redis\\server::setHandler' => + array ( + 0 => 'ReturnType', + 'command' => 'string', + 'callback' => 'string', + 'number_of_string_param=' => 'string', + 'type_of_array_param=' => 'string', + ), + 'swoole\\redis\\server::start' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\serialize::pack' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + 'is_fast=' => 'int', + ), + 'swoole\\serialize::unpack' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + 'args=' => 'string', + ), + 'swoole\\server::addlistener' => + array ( + 0 => 'void', + 'host' => 'string', + 'port' => 'int', + 'socket_type' => 'string', + ), + 'swoole\\server::addProcess' => + array ( + 0 => 'bool', + 'process' => 'swoole_process', + ), + 'swoole\\server::after' => + array ( + 0 => 'ReturnType', + 'after_time_ms' => 'int', + 'callback' => 'callable', + 'param=' => 'string', + ), + 'swoole\\server::bind' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'uid' => 'int', + ), + 'swoole\\server::close' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'reset=' => 'bool', + ), + 'swoole\\server::confirm' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\server::connection_info' => + array ( + 0 => 'array', + 'fd' => 'int', + 'reactor_id=' => 'int', + ), + 'swoole\\server::connection_list' => + array ( + 0 => 'array', + 'start_fd' => 'int', + 'pagesize=' => 'int', + ), + 'swoole\\server::defer' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'swoole\\server::exist' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\server::finish' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'swoole\\server::getClientInfo' => + array ( + 0 => 'ReturnType', + 'fd' => 'int', + 'reactor_id=' => 'int', + ), + 'swoole\\server::getClientList' => + array ( + 0 => 'array', + 'start_fd' => 'int', + 'pagesize=' => 'int', + ), + 'swoole\\server::getLastError' => + array ( + 0 => 'int', + ), + 'swoole\\server::heartbeat' => + array ( + 0 => 'mixed', + 'if_close_connection' => 'bool', + ), + 'swoole\\server::listen' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'socket_type' => 'string', + ), + 'swoole\\server::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\server::pause' => + array ( + 0 => 'void', + 'fd' => 'int', + ), + 'swoole\\server::protect' => + array ( + 0 => 'void', + 'fd' => 'int', + 'is_protected=' => 'bool', + ), + 'swoole\\server::reload' => + array ( + 0 => 'bool', + ), + 'swoole\\server::resume' => + array ( + 0 => 'void', + 'fd' => 'int', + ), + 'swoole\\server::send' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + 'reactor_id=' => 'int', + ), + 'swoole\\server::sendfile' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\server::sendMessage' => + array ( + 0 => 'bool', + 'worker_id' => 'int', + 'data' => 'string', + ), + 'swoole\\server::sendto' => + array ( + 0 => 'bool', + 'ip' => 'string', + 'port' => 'int', + 'data' => 'string', + 'server_socket=' => 'string', + ), + 'swoole\\server::sendwait' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + ), + 'swoole\\server::set' => + array ( + 0 => 'ReturnType', + 'settings' => 'array', + ), + 'swoole\\server::shutdown' => + array ( + 0 => 'void', + ), + 'swoole\\server::start' => + array ( + 0 => 'void', + ), + 'swoole\\server::stats' => + array ( + 0 => 'array', + ), + 'swoole\\server::stop' => + array ( + 0 => 'bool', + 'worker_id=' => 'int', + ), + 'swoole\\server::task' => + array ( + 0 => 'mixed', + 'data' => 'string', + 'dst_worker_id=' => 'int', + 'callback=' => 'callable', + ), + 'swoole\\server::taskwait' => + array ( + 0 => 'void', + 'data' => 'string', + 'timeout=' => 'float', + 'worker_id=' => 'int', + ), + 'swoole\\server::taskWaitMulti' => + array ( + 0 => 'void', + 'tasks' => 'array', + 'timeout_ms=' => 'float', + ), + 'swoole\\server::tick' => + array ( + 0 => 'void', + 'interval_ms' => 'int', + 'callback' => 'callable', + ), + 'swoole\\server\\port::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\server\\port::on' => + array ( + 0 => 'ReturnType', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\server\\port::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\table::column' => + array ( + 0 => 'ReturnType', + 'name' => 'string', + 'type' => 'string', + 'size=' => 'int', + ), + 'swoole\\table::count' => + array ( + 0 => 'int', + ), + 'swoole\\table::create' => + array ( + 0 => 'void', + ), + 'swoole\\table::current' => + array ( + 0 => 'array', + ), + 'swoole\\table::decr' => + array ( + 0 => 'ReturnType', + 'key' => 'string', + 'column' => 'string', + 'decrby=' => 'int', + ), + 'swoole\\table::del' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'swoole\\table::destroy' => + array ( + 0 => 'void', + ), + 'swoole\\table::exist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'swoole\\table::get' => + array ( + 0 => 'int', + 'row_key' => 'string', + 'column_key' => 'string', + ), + 'swoole\\table::incr' => + array ( + 0 => 'void', + 'key' => 'string', + 'column' => 'string', + 'incrby=' => 'int', + ), + 'swoole\\table::key' => + array ( + 0 => 'string', + ), + 'swoole\\table::next' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\table::rewind' => + array ( + 0 => 'void', + ), + 'swoole\\table::set' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'array', + ), + 'swoole\\table::valid' => + array ( + 0 => 'bool', + ), + 'swoole\\timer::after' => + array ( + 0 => 'void', + 'after_time_ms' => 'int', + 'callback' => 'callable', + ), + 'swoole\\timer::clear' => + array ( + 0 => 'void', + 'timer_id' => 'int', + ), + 'swoole\\timer::exists' => + array ( + 0 => 'bool', + 'timer_id' => 'int', + ), + 'swoole\\timer::tick' => + array ( + 0 => 'void', + 'interval_ms' => 'int', + 'callback' => 'callable', + 'param=' => 'string', + ), + 'swoole\\websocket\\server::exist' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\websocket\\server::on' => + array ( + 0 => 'ReturnType', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\websocket\\server::pack' => + array ( + 0 => 'binary', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + 'mask=' => 'string', + ), + 'swoole\\websocket\\server::push' => + array ( + 0 => 'void', + 'fd' => 'string', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + ), + 'swoole\\websocket\\server::unpack' => + array ( + 0 => 'string', + 'data' => 'binary', + ), + 'swoole_async_dns_lookup' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'callback' => 'callable', + ), + 'swoole_async_read' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'callable', + 'chunk_size=' => 'int', + 'offset=' => 'int', + ), + 'swoole_async_readfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'string', + ), + 'swoole_async_set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole_async_write' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'content' => 'string', + 'offset=' => 'int', + 'callback=' => 'callable', + ), + 'swoole_async_writefile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'content' => 'string', + 'callback=' => 'callable', + 'flags=' => 'int', + ), + 'swoole_client_select' => + array ( + 0 => 'int', + 'read_array' => 'array', + 'write_array' => 'array', + 'error_array' => 'array', + 'timeout=' => 'float', + ), + 'swoole_cpu_num' => + array ( + 0 => 'int', + ), + 'swoole_errno' => + array ( + 0 => 'int', + ), + 'swoole_event_add' => + array ( + 0 => 'int', + 'fd' => 'int', + 'read_callback=' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'int', + ), + 'swoole_event_defer' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'swoole_event_del' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole_event_exit' => + array ( + 0 => 'void', + ), + 'swoole_event_set' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback=' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'int', + ), + 'swoole_event_wait' => + array ( + 0 => 'void', + ), + 'swoole_event_write' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + ), + 'swoole_get_local_ip' => + array ( + 0 => 'array', + ), + 'swoole_last_error' => + array ( + 0 => 'int', + ), + 'swoole_load_module' => + array ( + 0 => 'mixed', + 'filename' => 'string', + ), + 'swoole_select' => + array ( + 0 => 'int', + 'read_array' => 'array', + 'write_array' => 'array', + 'error_array' => 'array', + 'timeout=' => 'float', + ), + 'swoole_set_process_name' => + array ( + 0 => 'void', + 'process_name' => 'string', + 'size=' => 'int', + ), + 'swoole_strerror' => + array ( + 0 => 'string', + 'errno' => 'int', + 'error_type=' => 'int', + ), + 'swoole_timer_after' => + array ( + 0 => 'int', + 'ms' => 'int', + 'callback' => 'callable', + 'param=' => 'mixed', + ), + 'swoole_timer_exists' => + array ( + 0 => 'bool', + 'timer_id' => 'int', + ), + 'swoole_timer_tick' => + array ( + 0 => 'int', + 'ms' => 'int', + 'callback' => 'callable', + 'param=' => 'mixed', + ), + 'swoole_version' => + array ( + 0 => 'string', + ), + 'symbolObj::__construct' => + array ( + 0 => 'void', + 'map' => 'mapObj', + 'symbolname' => 'string', + ), + 'symbolObj::free' => + array ( + 0 => 'void', + ), + 'symbolObj::getPatternArray' => + array ( + 0 => 'array', + ), + 'symbolObj::getPointsArray' => + array ( + 0 => 'array', + ), + 'symbolObj::ms_newSymbolObj' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'symbolname' => 'string', + ), + 'symbolObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'symbolObj::setImagePath' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'symbolObj::setPattern' => + array ( + 0 => 'int', + 'int' => 'array', + ), + 'symbolObj::setPoints' => + array ( + 0 => 'int', + 'double' => 'array', + ), + 'symlink' => + array ( + 0 => 'bool', + 'target' => 'string', + 'link' => 'string', + ), + 'SyncEvent::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'manual=' => 'bool', + ), + 'SyncEvent::fire' => + array ( + 0 => 'bool', + ), + 'SyncEvent::reset' => + array ( + 0 => 'bool', + ), + 'SyncEvent::wait' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncMutex::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'SyncMutex::lock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncMutex::unlock' => + array ( + 0 => 'bool', + 'all=' => 'bool', + ), + 'SyncReaderWriter::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'autounlock=' => 'bool', + ), + 'SyncReaderWriter::readlock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncReaderWriter::readunlock' => + array ( + 0 => 'bool', + ), + 'SyncReaderWriter::writelock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncReaderWriter::writeunlock' => + array ( + 0 => 'bool', + ), + 'SyncSemaphore::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'initialval=' => 'int', + 'autounlock=' => 'bool', + ), + 'SyncSemaphore::lock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncSemaphore::unlock' => + array ( + 0 => 'bool', + '&w_prevcount=' => 'int', + ), + 'SyncSharedMemory::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'size' => 'int', + ), + 'SyncSharedMemory::first' => + array ( + 0 => 'bool', + ), + 'SyncSharedMemory::read' => + array ( + 0 => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'SyncSharedMemory::size' => + array ( + 0 => 'int', + ), + 'SyncSharedMemory::write' => + array ( + 0 => 'int', + 'string=' => 'string', + 'start=' => 'int', + ), + 'sys_get_temp_dir' => + array ( + 0 => 'string', + ), + 'sys_getloadavg' => + array ( + 0 => 'array|false', + ), + 'syslog' => + array ( + 0 => 'true', + 'priority' => 'int', + 'message' => 'string', + ), + 'system' => + array ( + 0 => 'false|string', + 'command' => 'string', + '&w_result_code=' => 'int', + ), + 'taint' => + array ( + 0 => 'bool', + '&rw_string' => 'string', + '&...w_other_strings=' => 'string', + ), + 'tan' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'tanh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'tcpwrap_check' => + array ( + 0 => 'bool', + 'daemon' => 'string', + 'address' => 'string', + 'user=' => 'string', + 'nodns=' => 'bool', + ), + 'tempnam' => + array ( + 0 => 'false|string', + 'directory' => 'string', + 'prefix' => 'string', + ), + 'textdomain' => + array ( + 0 => 'string', + 'domain' => 'null|string', + ), + 'Thread::__construct' => + array ( + 0 => 'void', + ), + 'Thread::addRef' => + array ( + 0 => 'void', + ), + 'Thread::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Thread::count' => + array ( + 0 => 'int', + ), + 'Thread::delRef' => + array ( + 0 => 'void', + ), + 'Thread::detach' => + array ( + 0 => 'void', + ), + 'Thread::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Thread::getCreatorId' => + array ( + 0 => 'int', + ), + 'Thread::getCurrentThread' => + array ( + 0 => 'Thread', + ), + 'Thread::getCurrentThreadId' => + array ( + 0 => 'int', + ), + 'Thread::getRefCount' => + array ( + 0 => 'int', + ), + 'Thread::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Thread::getThreadId' => + array ( + 0 => 'int', + ), + 'Thread::globally' => + array ( + 0 => 'mixed', + ), + 'Thread::isGarbage' => + array ( + 0 => 'bool', + ), + 'Thread::isJoined' => + array ( + 0 => 'bool', + ), + 'Thread::isRunning' => + array ( + 0 => 'bool', + ), + 'Thread::isStarted' => + array ( + 0 => 'bool', + ), + 'Thread::isTerminated' => + array ( + 0 => 'bool', + ), + 'Thread::isWaiting' => + array ( + 0 => 'bool', + ), + 'Thread::join' => + array ( + 0 => 'bool', + ), + 'Thread::kill' => + array ( + 0 => 'void', + ), + 'Thread::lock' => + array ( + 0 => 'bool', + ), + 'Thread::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'mixed', + ), + 'Thread::notify' => + array ( + 0 => 'bool', + ), + 'Thread::notifyOne' => + array ( + 0 => 'bool', + ), + 'Thread::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Thread::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Thread::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Thread::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Thread::pop' => + array ( + 0 => 'bool', + ), + 'Thread::run' => + array ( + 0 => 'void', + ), + 'Thread::setGarbage' => + array ( + 0 => 'void', + ), + 'Thread::shift' => + array ( + 0 => 'bool', + ), + 'Thread::start' => + array ( + 0 => 'bool', + 'options=' => 'int', + ), + 'Thread::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '_=' => 'mixed', + ), + 'Thread::unlock' => + array ( + 0 => 'bool', + ), + 'Thread::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'Threaded::__construct' => + array ( + 0 => 'void', + ), + 'Threaded::addRef' => + array ( + 0 => 'void', + ), + 'Threaded::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Threaded::count' => + array ( + 0 => 'int', + ), + 'Threaded::delRef' => + array ( + 0 => 'void', + ), + 'Threaded::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Threaded::from' => + array ( + 0 => 'Threaded', + 'run' => 'Closure', + 'construct=' => 'Closure', + 'args=' => 'array', + ), + 'Threaded::getRefCount' => + array ( + 0 => 'int', + ), + 'Threaded::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Threaded::isGarbage' => + array ( + 0 => 'bool', + ), + 'Threaded::isRunning' => + array ( + 0 => 'bool', + ), + 'Threaded::isTerminated' => + array ( + 0 => 'bool', + ), + 'Threaded::isWaiting' => + array ( + 0 => 'bool', + ), + 'Threaded::lock' => + array ( + 0 => 'bool', + ), + 'Threaded::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'bool', + ), + 'Threaded::notify' => + array ( + 0 => 'bool', + ), + 'Threaded::notifyOne' => + array ( + 0 => 'bool', + ), + 'Threaded::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Threaded::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Threaded::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Threaded::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Threaded::pop' => + array ( + 0 => 'bool', + ), + 'Threaded::run' => + array ( + 0 => 'void', + ), + 'Threaded::setGarbage' => + array ( + 0 => 'void', + ), + 'Threaded::shift' => + array ( + 0 => 'mixed', + ), + 'Threaded::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '...args=' => 'mixed', + ), + 'Threaded::unlock' => + array ( + 0 => 'bool', + ), + 'Threaded::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'Throwable::__toString' => + array ( + 0 => 'string', + ), + 'Throwable::getCode' => + array ( + 0 => 'int|string', + ), + 'Throwable::getFile' => + array ( + 0 => 'string', + ), + 'Throwable::getLine' => + array ( + 0 => 'int', + ), + 'Throwable::getMessage' => + array ( + 0 => 'string', + ), + 'Throwable::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Throwable::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Throwable::getTraceAsString' => + array ( + 0 => 'string', + ), + 'tidy::__construct' => + array ( + 0 => 'void', + 'filename=' => 'null|string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + 'tidy::body' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::cleanRepair' => + array ( + 0 => 'bool', + ), + 'tidy::diagnose' => + array ( + 0 => 'bool', + ), + 'tidy::getConfig' => + array ( + 0 => 'array', + ), + 'tidy::getHtmlVer' => + array ( + 0 => 'int', + ), + 'tidy::getOpt' => + array ( + 0 => 'bool|int|string', + 'option' => 'string', + ), + 'tidy::getOptDoc' => + array ( + 0 => 'string', + 'option' => 'string', + ), + 'tidy::getRelease' => + array ( + 0 => 'string', + ), + 'tidy::getStatus' => + array ( + 0 => 'int', + ), + 'tidy::head' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::html' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::isXhtml' => + array ( + 0 => 'bool', + ), + 'tidy::isXml' => + array ( + 0 => 'bool', + ), + 'tidy::parseFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + 'tidy::parseString' => + array ( + 0 => 'bool', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + 'tidy::repairFile' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + 'tidy::repairString' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + 'tidy::root' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy_access_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_clean_repair' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_config_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_diagnose' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_error_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_get_body' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_config' => + array ( + 0 => 'array', + 'tidy' => 'tidy', + ), + 'tidy_get_error_buffer' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + ), + 'tidy_get_head' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_html' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_html_ver' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_get_opt_doc' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + 'option' => 'string', + ), + 'tidy_get_output' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + ), + 'tidy_get_release' => + array ( + 0 => 'string', + ), + 'tidy_get_root' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_status' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_getopt' => + array ( + 0 => 'bool|int|string', + 'tidy' => 'tidy', + 'option' => 'string', + ), + 'tidy_is_xhtml' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_is_xml' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_load_config' => + array ( + 0 => 'void', + 'filename' => 'string', + 'encoding' => 'string', + ), + 'tidy_parse_file' => + array ( + 0 => 'tidy', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + 'tidy_parse_string' => + array ( + 0 => 'tidy', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + 'tidy_repair_file' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + 'tidy_repair_string' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + 'tidy_reset_config' => + array ( + 0 => 'bool', + ), + 'tidy_save_config' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'tidy_set_encoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'tidy_setopt' => + array ( + 0 => 'bool', + 'option' => 'string', + 'value' => 'mixed', + ), + 'tidy_warning_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidyNode::__construct' => + array ( + 0 => 'void', + ), + 'tidyNode::getParent' => + array ( + 0 => 'null|tidyNode', + ), + 'tidyNode::hasChildren' => + array ( + 0 => 'bool', + ), + 'tidyNode::hasSiblings' => + array ( + 0 => 'bool', + ), + 'tidyNode::isAsp' => + array ( + 0 => 'bool', + ), + 'tidyNode::isComment' => + array ( + 0 => 'bool', + ), + 'tidyNode::isHtml' => + array ( + 0 => 'bool', + ), + 'tidyNode::isJste' => + array ( + 0 => 'bool', + ), + 'tidyNode::isPhp' => + array ( + 0 => 'bool', + ), + 'tidyNode::isText' => + array ( + 0 => 'bool', + ), + 'time' => + array ( + 0 => 'int<1, max>', + ), + 'time_nanosleep' => + array ( + 0 => 'array{0: int<0, max>, 1: int<0, max>}|bool', + 'seconds' => 'int<1, max>', + 'nanoseconds' => 'int<1, max>', + ), + 'time_sleep_until' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'timezone_abbreviations_list' => + array ( + 0 => 'array>', + ), + 'timezone_identifiers_list' => + array ( + 0 => 'list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + 'timezone_location_get' => + array ( + 0 => 'array|false', + 'object' => 'DateTimeZone', + ), + 'timezone_name_from_abbr' => + array ( + 0 => 'false|string', + 'abbr' => 'string', + 'utcOffset=' => 'int', + 'isDST=' => 'int', + ), + 'timezone_name_get' => + array ( + 0 => 'string', + 'object' => 'DateTimeZone', + ), + 'timezone_offset_get' => + array ( + 0 => 'int', + 'object' => 'DateTimeZone', + 'datetime' => 'DateTimeInterface', + ), + 'timezone_open' => + array ( + 0 => 'DateTimeZone|false', + 'timezone' => 'string', + ), + 'timezone_transitions_get' => + array ( + 0 => 'false|list', + 'object' => 'DateTimeZone', + 'timestampBegin=' => 'int', + 'timestampEnd=' => 'int', + ), + 'timezone_version_get' => + array ( + 0 => 'string', + ), + 'tmpfile' => + array ( + 0 => 'false|resource', + ), + 'token_get_all' => + array ( + 0 => 'list', + 'code' => 'string', + 'flags=' => 'int', + ), + 'token_name' => + array ( + 0 => 'string', + 'id' => 'int', + ), + 'TokyoTyrant::__construct' => + array ( + 0 => 'void', + 'host=' => 'string', + 'port=' => 'int', + 'options=' => 'array', + ), + 'TokyoTyrant::add' => + array ( + 0 => 'float|int', + 'key' => 'string', + 'increment' => 'float', + 'type=' => 'int', + ), + 'TokyoTyrant::connect' => + array ( + 0 => 'TokyoTyrant', + 'host' => 'string', + 'port=' => 'int', + 'options=' => 'array', + ), + 'TokyoTyrant::connectUri' => + array ( + 0 => 'TokyoTyrant', + 'uri' => 'string', + ), + 'TokyoTyrant::copy' => + array ( + 0 => 'TokyoTyrant', + 'path' => 'string', + ), + 'TokyoTyrant::ext' => + array ( + 0 => 'string', + 'name' => 'string', + 'options' => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'TokyoTyrant::fwmKeys' => + array ( + 0 => 'array', + 'prefix' => 'string', + 'max_recs' => 'int', + ), + 'TokyoTyrant::get' => + array ( + 0 => 'array', + 'keys' => 'mixed', + ), + 'TokyoTyrant::getIterator' => + array ( + 0 => 'TokyoTyrantIterator', + ), + 'TokyoTyrant::num' => + array ( + 0 => 'int', + ), + 'TokyoTyrant::out' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'TokyoTyrant::put' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putCat' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putKeep' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putNr' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putShl' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'width' => 'int', + ), + 'TokyoTyrant::restore' => + array ( + 0 => 'mixed', + 'log_dir' => 'string', + 'timestamp' => 'int', + 'check_consistency=' => 'bool', + ), + 'TokyoTyrant::setMaster' => + array ( + 0 => 'mixed', + 'host' => 'string', + 'port' => 'int', + 'timestamp' => 'int', + 'check_consistency=' => 'bool', + ), + 'TokyoTyrant::size' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'TokyoTyrant::stat' => + array ( + 0 => 'array', + ), + 'TokyoTyrant::sync' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrant::tune' => + array ( + 0 => 'TokyoTyrant', + 'timeout' => 'float', + 'options=' => 'int', + ), + 'TokyoTyrant::vanish' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::__construct' => + array ( + 0 => 'void', + 'object' => 'mixed', + ), + 'TokyoTyrantIterator::current' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::key' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::next' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::rewind' => + array ( + 0 => 'void', + ), + 'TokyoTyrantIterator::valid' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantQuery::__construct' => + array ( + 0 => 'void', + 'table' => 'TokyoTyrantTable', + ), + 'TokyoTyrantQuery::addCond' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'op' => 'int', + 'expr' => 'string', + ), + 'TokyoTyrantQuery::count' => + array ( + 0 => 'int', + ), + 'TokyoTyrantQuery::current' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::hint' => + array ( + 0 => 'string', + ), + 'TokyoTyrantQuery::key' => + array ( + 0 => 'string', + ), + 'TokyoTyrantQuery::metaSearch' => + array ( + 0 => 'array', + 'queries' => 'array', + 'type' => 'int', + ), + 'TokyoTyrantQuery::next' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::out' => + array ( + 0 => 'TokyoTyrantQuery', + ), + 'TokyoTyrantQuery::rewind' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantQuery::search' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::setLimit' => + array ( + 0 => 'mixed', + 'max=' => 'int', + 'skip=' => 'int', + ), + 'TokyoTyrantQuery::setOrder' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'type' => 'int', + ), + 'TokyoTyrantQuery::valid' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantTable::add' => + array ( + 0 => 'void', + 'key' => 'string', + 'increment' => 'mixed', + 'type=' => 'string', + ), + 'TokyoTyrantTable::genUid' => + array ( + 0 => 'int', + ), + 'TokyoTyrantTable::get' => + array ( + 0 => 'array', + 'keys' => 'mixed', + ), + 'TokyoTyrantTable::getIterator' => + array ( + 0 => 'TokyoTyrantIterator', + ), + 'TokyoTyrantTable::getQuery' => + array ( + 0 => 'TokyoTyrantQuery', + ), + 'TokyoTyrantTable::out' => + array ( + 0 => 'void', + 'keys' => 'mixed', + ), + 'TokyoTyrantTable::put' => + array ( + 0 => 'int', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putCat' => + array ( + 0 => 'void', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putKeep' => + array ( + 0 => 'void', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putNr' => + array ( + 0 => 'void', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrantTable::putShl' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + 'width' => 'int', + ), + 'TokyoTyrantTable::setIndex' => + array ( + 0 => 'mixed', + 'column' => 'string', + 'type' => 'int', + ), + 'touch' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mtime=' => 'int|null', + 'atime=' => 'int|null', + ), + 'trader_acos' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ad' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + ), + 'trader_add' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_adosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + ), + 'trader_adx' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_adxr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_apo' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_aroon' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_aroonosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_asin' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_atan' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_atr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_avgprice' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_bbands' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDevUp=' => 'float', + 'nbDevDn=' => 'float', + 'mAType=' => 'int', + ), + 'trader_beta' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_bop' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cci' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_cdl2crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3blackcrows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3inside' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3linestrike' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3outside' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3starsinsouth' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3whitesoldiers' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlabandonedbaby' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdladvanceblock' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlbelthold' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlbreakaway' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlclosingmarubozu' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlconcealbabyswall' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlcounterattack' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldarkcloudcover' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdldoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldragonflydoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlengulfing' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdleveningdojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdleveningstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlgapsidesidewhite' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlgravestonedoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhammer' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhangingman' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlharami' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlharamicross' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhighwave' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhikkake' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhikkakemod' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhomingpigeon' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlidentical3crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlinneck' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlinvertedhammer' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlkicking' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlkickingbylength' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlladderbottom' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdllongleggeddoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdllongline' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmarubozu' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmatchinglow' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmathold' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlmorningdojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlmorningstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlonneck' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlpiercing' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlrickshawman' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlrisefall3methods' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlseparatinglines' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlshootingstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlshortline' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlspinningtop' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlstalledpattern' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlsticksandwich' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltakuri' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltasukigap' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlthrusting' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltristar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlunique3river' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlupsidegap2crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlxsidegap3methods' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_ceil' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_cmo' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_correl' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_cos' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_cosh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_dema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_div' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_dx' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_errno' => + array ( + 0 => 'int', + ), + 'trader_exp' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_floor' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_get_compat' => + array ( + 0 => 'int', + ), + 'trader_get_unstable_period' => + array ( + 0 => 'int', + 'functionId' => 'int', + ), + 'trader_ht_dcperiod' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_dcphase' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_phasor' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_sine' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_trendline' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_trendmode' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_kama' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_angle' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_intercept' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_slope' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ln' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_log10' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_macd' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'signalPeriod=' => 'int', + ), + 'trader_macdext' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'fastMAType=' => 'int', + 'slowPeriod=' => 'int', + 'slowMAType=' => 'int', + 'signalPeriod=' => 'int', + 'signalMAType=' => 'int', + ), + 'trader_macdfix' => + array ( + 0 => 'array', + 'real' => 'array', + 'signalPeriod=' => 'int', + ), + 'trader_mama' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastLimit=' => 'float', + 'slowLimit=' => 'float', + ), + 'trader_mavp' => + array ( + 0 => 'array', + 'real' => 'array', + 'periods' => 'array', + 'minPeriod=' => 'int', + 'maxPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_max' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_maxindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_medprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + ), + 'trader_mfi' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_midpoint' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_midprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_min' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minmax' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minmaxindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minus_di' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minus_dm' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_mom' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_mult' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_natr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_obv' => + array ( + 0 => 'array', + 'real' => 'array', + 'volume' => 'array', + ), + 'trader_plus_di' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_plus_dm' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ppo' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_roc' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocp' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocr' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocr100' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rsi' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_sar' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'acceleration=' => 'float', + 'maximum=' => 'float', + ), + 'trader_sarext' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'startValue=' => 'float', + 'offsetOnReverse=' => 'float', + 'accelerationInitLong=' => 'float', + 'accelerationLong=' => 'float', + 'accelerationMaxLong=' => 'float', + 'accelerationInitShort=' => 'float', + 'accelerationShort=' => 'float', + 'accelerationMaxShort=' => 'float', + ), + 'trader_set_compat' => + array ( + 0 => 'void', + 'compatId' => 'int', + ), + 'trader_set_unstable_period' => + array ( + 0 => 'void', + 'functionId' => 'int', + 'timePeriod' => 'int', + ), + 'trader_sin' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_sinh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_sma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_sqrt' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_stddev' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDev=' => 'float', + ), + 'trader_stoch' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'fastK_Period=' => 'int', + 'slowK_Period=' => 'int', + 'slowK_MAType=' => 'int', + 'slowD_Period=' => 'int', + 'slowD_MAType=' => 'int', + ), + 'trader_stochf' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'fastK_Period=' => 'int', + 'fastD_Period=' => 'int', + 'fastD_MAType=' => 'int', + ), + 'trader_stochrsi' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'fastK_Period=' => 'int', + 'fastD_Period=' => 'int', + 'fastD_MAType=' => 'int', + ), + 'trader_sub' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_sum' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_t3' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'vFactor=' => 'float', + ), + 'trader_tan' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_tanh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_tema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_trange' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_trima' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_trix' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_tsf' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_typprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_ultosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod1=' => 'int', + 'timePeriod2=' => 'int', + 'timePeriod3=' => 'int', + ), + 'trader_var' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDev=' => 'float', + ), + 'trader_wclprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_willr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_wma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trait_exists' => + array ( + 0 => 'bool', + 'trait' => 'string', + 'autoload=' => 'bool', + ), + 'Transliterator::create' => + array ( + 0 => 'Transliterator|null', + 'id' => 'string', + 'direction=' => 'int', + ), + 'Transliterator::createFromRules' => + array ( + 0 => 'Transliterator|null', + 'rules' => 'string', + 'direction=' => 'int', + ), + 'Transliterator::createInverse' => + array ( + 0 => 'Transliterator|null', + ), + 'Transliterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'Transliterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'Transliterator::listIDs' => + array ( + 0 => 'array', + ), + 'Transliterator::transliterate' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'transliterator_create' => + array ( + 0 => 'Transliterator|null', + 'id' => 'string', + 'direction=' => 'int', + ), + 'transliterator_create_from_rules' => + array ( + 0 => 'Transliterator|null', + 'rules' => 'string', + 'direction=' => 'int', + ), + 'transliterator_create_inverse' => + array ( + 0 => 'Transliterator|null', + 'transliterator' => 'Transliterator', + ), + 'transliterator_get_error_code' => + array ( + 0 => 'int', + 'transliterator' => 'Transliterator', + ), + 'transliterator_get_error_message' => + array ( + 0 => 'string', + 'transliterator' => 'Transliterator', + ), + 'transliterator_list_ids' => + array ( + 0 => 'array', + ), + 'transliterator_transliterate' => + array ( + 0 => 'false|string', + 'transliterator' => 'Transliterator|string', + 'string' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'trigger_error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'error_level=' => '256|512|1024|16384', + ), + 'trim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'TypeError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'TypeError::__toString' => + array ( + 0 => 'string', + ), + 'TypeError::getCode' => + array ( + 0 => 'int', + ), + 'TypeError::getFile' => + array ( + 0 => 'string', + ), + 'TypeError::getLine' => + array ( + 0 => 'int', + ), + 'TypeError::getMessage' => + array ( + 0 => 'string', + ), + 'TypeError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'TypeError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'TypeError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'uasort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ucfirst' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'UConverter::__construct' => + array ( + 0 => 'void', + 'destination_encoding=' => 'null|string', + 'source_encoding=' => 'null|string', + ), + 'UConverter::convert' => + array ( + 0 => 'string', + 'str' => 'string', + 'reverse=' => 'bool', + ), + 'UConverter::fromUCallback' => + array ( + 0 => 'array|int|null|string', + 'reason' => 'int', + 'source' => 'array', + 'codePoint' => 'int', + '&w_error' => 'int', + ), + 'UConverter::getAliases' => + array ( + 0 => 'array|false|null', + 'name' => 'string', + ), + 'UConverter::getAvailable' => + array ( + 0 => 'array', + ), + 'UConverter::getDestinationEncoding' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::getDestinationType' => + array ( + 0 => 'false|int|null', + ), + 'UConverter::getErrorCode' => + array ( + 0 => 'int', + ), + 'UConverter::getErrorMessage' => + array ( + 0 => 'null|string', + ), + 'UConverter::getSourceEncoding' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::getSourceType' => + array ( + 0 => 'false|int|null', + ), + 'UConverter::getStandards' => + array ( + 0 => 'array|null', + ), + 'UConverter::getSubstChars' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::reasonText' => + array ( + 0 => 'string', + 'reason' => 'int', + ), + 'UConverter::setDestinationEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'UConverter::setSourceEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'UConverter::setSubstChars' => + array ( + 0 => 'bool', + 'chars' => 'string', + ), + 'UConverter::toUCallback' => + array ( + 0 => 'array|int|null|string', + 'reason' => 'int', + 'source' => 'string', + 'codeUnits' => 'string', + '&w_error' => 'int', + ), + 'UConverter::transcode' => + array ( + 0 => 'string', + 'str' => 'string', + 'toEncoding' => 'string', + 'fromEncoding' => 'string', + 'options=' => 'array|null', + ), + 'ucwords' => + array ( + 0 => 'string', + 'string' => 'string', + 'separators=' => 'string', + ), + 'udm_add_search_limit' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'value' => 'string', + ), + 'udm_alloc_agent' => + array ( + 0 => 'resource', + 'dbaddr' => 'string', + 'dbmode=' => 'string', + ), + 'udm_alloc_agent_array' => + array ( + 0 => 'resource', + 'databases' => 'array', + ), + 'udm_api_version' => + array ( + 0 => 'int', + ), + 'udm_cat_list' => + array ( + 0 => 'array', + 'agent' => 'resource', + 'category' => 'string', + ), + 'udm_cat_path' => + array ( + 0 => 'array', + 'agent' => 'resource', + 'category' => 'string', + ), + 'udm_check_charset' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'charset' => 'string', + ), + 'udm_check_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'link' => 'int', + 'doc_id' => 'string', + ), + 'udm_clear_search_limits' => + array ( + 0 => 'bool', + 'agent' => 'resource', + ), + 'udm_close_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'link' => 'int', + ), + 'udm_crc32' => + array ( + 0 => 'int', + 'agent' => 'resource', + 'string' => 'string', + ), + 'udm_errno' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_error' => + array ( + 0 => 'string', + 'agent' => 'resource', + ), + 'udm_find' => + array ( + 0 => 'resource', + 'agent' => 'resource', + 'query' => 'string', + ), + 'udm_free_agent' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_free_ispell_data' => + array ( + 0 => 'bool', + 'agent' => 'int', + ), + 'udm_free_res' => + array ( + 0 => 'bool', + 'res' => 'resource', + ), + 'udm_get_doc_count' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_get_res_field' => + array ( + 0 => 'string', + 'res' => 'resource', + 'row' => 'int', + 'field' => 'int', + ), + 'udm_get_res_param' => + array ( + 0 => 'string', + 'res' => 'resource', + 'param' => 'int', + ), + 'udm_hash32' => + array ( + 0 => 'int', + 'agent' => 'resource', + 'string' => 'string', + ), + 'udm_load_ispell_data' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'val1' => 'string', + 'val2' => 'string', + 'flag' => 'int', + ), + 'udm_open_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'storedaddr' => 'string', + ), + 'udm_set_agent_param' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'val' => 'string', + ), + 'ui\\area::onDraw' => + array ( + 0 => 'mixed', + 'pen' => 'UI\\Draw\\Pen', + 'areaSize' => 'UI\\Size', + 'clipPoint' => 'UI\\Point', + 'clipSize' => 'UI\\Size', + ), + 'ui\\area::onKey' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'ext' => 'int', + 'flags' => 'int', + ), + 'ui\\area::onMouse' => + array ( + 0 => 'mixed', + 'areaPoint' => 'UI\\Point', + 'areaSize' => 'UI\\Size', + 'flags' => 'int', + ), + 'ui\\area::redraw' => + array ( + 0 => 'mixed', + ), + 'ui\\area::scrollTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'size' => 'UI\\Size', + ), + 'ui\\area::setSize' => + array ( + 0 => 'mixed', + 'size' => 'UI\\Size', + ), + 'ui\\control::destroy' => + array ( + 0 => 'mixed', + ), + 'ui\\control::disable' => + array ( + 0 => 'mixed', + ), + 'ui\\control::enable' => + array ( + 0 => 'mixed', + ), + 'ui\\control::getParent' => + array ( + 0 => 'UI\\Control', + ), + 'ui\\control::getTopLevel' => + array ( + 0 => 'int', + ), + 'ui\\control::hide' => + array ( + 0 => 'mixed', + ), + 'ui\\control::isEnabled' => + array ( + 0 => 'bool', + ), + 'ui\\control::isVisible' => + array ( + 0 => 'bool', + ), + 'ui\\control::setParent' => + array ( + 0 => 'mixed', + 'parent' => 'UI\\Control', + ), + 'ui\\control::show' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\box::append' => + array ( + 0 => 'int', + 'control' => 'Control', + 'stretchy=' => 'bool', + ), + 'ui\\controls\\box::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\box::getOrientation' => + array ( + 0 => 'int', + ), + 'ui\\controls\\box::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\box::setPadded' => + array ( + 0 => 'mixed', + 'padded' => 'bool', + ), + 'ui\\controls\\button::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\button::onClick' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\button::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\check::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\check::isChecked' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\check::onToggle' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\check::setChecked' => + array ( + 0 => 'mixed', + 'checked' => 'bool', + ), + 'ui\\controls\\check::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\colorbutton::getColor' => + array ( + 0 => 'UI\\Color', + ), + 'ui\\controls\\colorbutton::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\combo::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\combo::getSelected' => + array ( + 0 => 'int', + ), + 'ui\\controls\\combo::onSelected' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\combo::setSelected' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'ui\\controls\\editablecombo::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\editablecombo::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\editablecombo::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\editablecombo::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\entry::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\entry::isReadOnly' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\entry::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\entry::setReadOnly' => + array ( + 0 => 'mixed', + 'readOnly' => 'bool', + ), + 'ui\\controls\\entry::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\form::append' => + array ( + 0 => 'int', + 'label' => 'string', + 'control' => 'UI\\Control', + 'stretchy=' => 'bool', + ), + 'ui\\controls\\form::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\form::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\form::setPadded' => + array ( + 0 => 'mixed', + 'padded' => 'bool', + ), + 'ui\\controls\\grid::append' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + 'left' => 'int', + 'top' => 'int', + 'xspan' => 'int', + 'yspan' => 'int', + 'hexpand' => 'bool', + 'halign' => 'int', + 'vexpand' => 'bool', + 'valign' => 'int', + ), + 'ui\\controls\\grid::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\grid::setPadded' => + array ( + 0 => 'mixed', + 'padding' => 'bool', + ), + 'ui\\controls\\group::append' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\group::getTitle' => + array ( + 0 => 'string', + ), + 'ui\\controls\\group::hasMargin' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\group::setMargin' => + array ( + 0 => 'mixed', + 'margin' => 'bool', + ), + 'ui\\controls\\group::setTitle' => + array ( + 0 => 'mixed', + 'title' => 'string', + ), + 'ui\\controls\\label::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\label::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\multilineentry::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\multilineentry::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\multilineentry::isReadOnly' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\multilineentry::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\multilineentry::setReadOnly' => + array ( + 0 => 'mixed', + 'readOnly' => 'bool', + ), + 'ui\\controls\\multilineentry::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\progress::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\progress::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\radio::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\radio::getSelected' => + array ( + 0 => 'int', + ), + 'ui\\controls\\radio::onSelected' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\radio::setSelected' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'ui\\controls\\slider::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\slider::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\slider::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\spin::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\spin::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\spin::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\tab::append' => + array ( + 0 => 'int', + 'name' => 'string', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\tab::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\tab::hasMargin' => + array ( + 0 => 'bool', + 'page' => 'int', + ), + 'ui\\controls\\tab::insertAt' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'page' => 'int', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\tab::pages' => + array ( + 0 => 'int', + ), + 'ui\\controls\\tab::setMargin' => + array ( + 0 => 'mixed', + 'page' => 'int', + 'margin' => 'bool', + ), + 'ui\\draw\\brush::getColor' => + array ( + 0 => 'UI\\Draw\\Color', + ), + 'ui\\draw\\brush\\gradient::delStop' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'ui\\draw\\color::getChannel' => + array ( + 0 => 'float', + 'channel' => 'int', + ), + 'ui\\draw\\color::setChannel' => + array ( + 0 => 'void', + 'channel' => 'int', + 'value' => 'float', + ), + 'ui\\draw\\matrix::invert' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\matrix::isInvertible' => + array ( + 0 => 'bool', + ), + 'ui\\draw\\matrix::multiply' => + array ( + 0 => 'UI\\Draw\\Matrix', + 'matrix' => 'UI\\Draw\\Matrix', + ), + 'ui\\draw\\matrix::rotate' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'amount' => 'float', + ), + 'ui\\draw\\matrix::scale' => + array ( + 0 => 'mixed', + 'center' => 'UI\\Point', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\matrix::skew' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'amount' => 'UI\\Point', + ), + 'ui\\draw\\matrix::translate' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\path::addRectangle' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'size' => 'UI\\Size', + ), + 'ui\\draw\\path::arcTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::bezierTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::closeFigure' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\path::end' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\path::lineTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::newFigure' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\path::newFigureWithArc' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\pen::clip' => + array ( + 0 => 'mixed', + 'path' => 'UI\\Draw\\Path', + ), + 'ui\\draw\\pen::restore' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\pen::save' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\pen::transform' => + array ( + 0 => 'mixed', + 'matrix' => 'UI\\Draw\\Matrix', + ), + 'ui\\draw\\pen::write' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'layout' => 'UI\\Draw\\Text\\Layout', + ), + 'ui\\draw\\stroke::getCap' => + array ( + 0 => 'int', + ), + 'ui\\draw\\stroke::getJoin' => + array ( + 0 => 'int', + ), + 'ui\\draw\\stroke::getMiterLimit' => + array ( + 0 => 'float', + ), + 'ui\\draw\\stroke::getThickness' => + array ( + 0 => 'float', + ), + 'ui\\draw\\stroke::setCap' => + array ( + 0 => 'mixed', + 'cap' => 'int', + ), + 'ui\\draw\\stroke::setJoin' => + array ( + 0 => 'mixed', + 'join' => 'int', + ), + 'ui\\draw\\stroke::setMiterLimit' => + array ( + 0 => 'mixed', + 'limit' => 'float', + ), + 'ui\\draw\\stroke::setThickness' => + array ( + 0 => 'mixed', + 'thickness' => 'float', + ), + 'ui\\draw\\text\\font::getAscent' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getDescent' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getLeading' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getUnderlinePosition' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getUnderlineThickness' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font\\descriptor::getFamily' => + array ( + 0 => 'string', + ), + 'ui\\draw\\text\\font\\descriptor::getItalic' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\descriptor::getSize' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font\\descriptor::getStretch' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\descriptor::getWeight' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\fontfamilies' => + array ( + 0 => 'array', + ), + 'ui\\draw\\text\\layout::setWidth' => + array ( + 0 => 'mixed', + 'width' => 'float', + ), + 'ui\\executor::kill' => + array ( + 0 => 'void', + ), + 'ui\\executor::onExecute' => + array ( + 0 => 'void', + ), + 'ui\\menu::append' => + array ( + 0 => 'UI\\MenuItem', + 'name' => 'string', + 'type=' => 'string', + ), + 'ui\\menu::appendAbout' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendCheck' => + array ( + 0 => 'UI\\MenuItem', + 'name' => 'string', + 'type=' => 'string', + ), + 'ui\\menu::appendPreferences' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendQuit' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendSeparator' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::disable' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::enable' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::isChecked' => + array ( + 0 => 'bool', + ), + 'ui\\menuitem::onClick' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::setChecked' => + array ( + 0 => 'mixed', + 'checked' => 'bool', + ), + 'ui\\point::getX' => + array ( + 0 => 'float', + ), + 'ui\\point::getY' => + array ( + 0 => 'float', + ), + 'ui\\point::setX' => + array ( + 0 => 'mixed', + 'point' => 'float', + ), + 'ui\\point::setY' => + array ( + 0 => 'mixed', + 'point' => 'float', + ), + 'ui\\quit' => + array ( + 0 => 'void', + ), + 'ui\\run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'ui\\size::getHeight' => + array ( + 0 => 'float', + ), + 'ui\\size::getWidth' => + array ( + 0 => 'float', + ), + 'ui\\size::setHeight' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'ui\\size::setWidth' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'ui\\window::add' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + ), + 'ui\\window::error' => + array ( + 0 => 'mixed', + 'title' => 'string', + 'msg' => 'string', + ), + 'ui\\window::getSize' => + array ( + 0 => 'UI\\Size', + ), + 'ui\\window::getTitle' => + array ( + 0 => 'string', + ), + 'ui\\window::hasBorders' => + array ( + 0 => 'bool', + ), + 'ui\\window::hasMargin' => + array ( + 0 => 'bool', + ), + 'ui\\window::isFullScreen' => + array ( + 0 => 'bool', + ), + 'ui\\window::msg' => + array ( + 0 => 'mixed', + 'title' => 'string', + 'msg' => 'string', + ), + 'ui\\window::onClosing' => + array ( + 0 => 'int', + ), + 'ui\\window::open' => + array ( + 0 => 'string', + ), + 'ui\\window::save' => + array ( + 0 => 'string', + ), + 'ui\\window::setBorders' => + array ( + 0 => 'mixed', + 'borders' => 'bool', + ), + 'ui\\window::setFullScreen' => + array ( + 0 => 'mixed', + 'full' => 'bool', + ), + 'ui\\window::setMargin' => + array ( + 0 => 'mixed', + 'margin' => 'bool', + ), + 'ui\\window::setSize' => + array ( + 0 => 'mixed', + 'size' => 'UI\\Size', + ), + 'ui\\window::setTitle' => + array ( + 0 => 'mixed', + 'title' => 'string', + ), + 'uksort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'umask' => + array ( + 0 => 'int', + 'mask=' => 'int|null', + ), + 'UnderflowException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'UnderflowException::__toString' => + array ( + 0 => 'string', + ), + 'UnderflowException::getCode' => + array ( + 0 => 'int', + ), + 'UnderflowException::getFile' => + array ( + 0 => 'string', + ), + 'UnderflowException::getLine' => + array ( + 0 => 'int', + ), + 'UnderflowException::getMessage' => + array ( + 0 => 'string', + ), + 'UnderflowException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'UnderflowException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'UnderflowException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'UnexpectedValueException::__toString' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getCode' => + array ( + 0 => 'int', + ), + 'UnexpectedValueException::getFile' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getLine' => + array ( + 0 => 'int', + ), + 'UnexpectedValueException::getMessage' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'UnexpectedValueException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'UnexpectedValueException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'uniqid' => + array ( + 0 => 'non-empty-string', + 'prefix=' => 'string', + 'more_entropy=' => 'bool', + ), + 'unixtojd' => + array ( + 0 => 'false|int', + 'timestamp=' => 'int|null', + ), + 'unlink' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'context=' => 'resource', + ), + 'unpack' => + array ( + 0 => 'array|false', + 'format' => 'string', + 'string' => 'string', + 'offset=' => 'int', + ), + 'unregister_tick_function' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'unserialize' => + array ( + 0 => 'mixed', + 'data' => 'string', + 'options=' => 'array{allowed_classes?: array|bool}', + ), + 'unset' => + array ( + 0 => 'void', + 'var=' => 'mixed', + '...args=' => 'mixed', + ), + 'untaint' => + array ( + 0 => 'bool', + '&rw_string' => 'string', + '&...rw_strings=' => 'string', + ), + 'uopz_allow_exit' => + array ( + 0 => 'void', + 'allow' => 'bool', + ), + 'uopz_backup' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_backup\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_compose' => + array ( + 0 => 'void', + 'name' => 'string', + 'classes' => 'array', + 'methods=' => 'array', + 'properties=' => 'array', + 'flags=' => 'int', + ), + 'uopz_copy' => + array ( + 0 => 'Closure', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_copy\'1' => + array ( + 0 => 'Closure', + 'function' => 'string', + ), + 'uopz_delete' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_delete\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_extend' => + array ( + 0 => 'bool', + 'class' => 'string', + 'parent' => 'string', + ), + 'uopz_flags' => + array ( + 0 => 'int', + 'class' => 'string', + 'function' => 'string', + 'flags' => 'int', + ), + 'uopz_flags\'1' => + array ( + 0 => 'int', + 'function' => 'string', + 'flags' => 'int', + ), + 'uopz_function' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'handler' => 'Closure', + 'modifiers=' => 'int', + ), + 'uopz_function\'1' => + array ( + 0 => 'void', + 'function' => 'string', + 'handler' => 'Closure', + 'modifiers=' => 'int', + ), + 'uopz_get_exit_status' => + array ( + 0 => 'int|null', + ), + 'uopz_get_hook' => + array ( + 0 => 'Closure|null', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_get_hook\'1' => + array ( + 0 => 'Closure|null', + 'function' => 'string', + ), + 'uopz_get_mock' => + array ( + 0 => 'null|object|string', + 'class' => 'string', + ), + 'uopz_get_property' => + array ( + 0 => 'mixed', + 'class' => 'object|string', + 'property' => 'string', + ), + 'uopz_get_return' => + array ( + 0 => 'mixed', + 'class=' => 'class-string', + 'function=' => 'string', + ), + 'uopz_get_static' => + array ( + 0 => 'array|null', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_implement' => + array ( + 0 => 'bool', + 'class' => 'string', + 'interface' => 'string', + ), + 'uopz_overload' => + array ( + 0 => 'void', + 'opcode' => 'int', + 'callable' => 'callable', + ), + 'uopz_redefine' => + array ( + 0 => 'bool', + 'class' => 'string', + 'constant' => 'string', + 'value' => 'mixed', + ), + 'uopz_redefine\'1' => + array ( + 0 => 'bool', + 'constant' => 'string', + 'value' => 'mixed', + ), + 'uopz_rename' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'rename' => 'string', + ), + 'uopz_rename\'1' => + array ( + 0 => 'void', + 'function' => 'string', + 'rename' => 'string', + ), + 'uopz_restore' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_restore\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_set_hook' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + 'hook' => 'Closure', + ), + 'uopz_set_hook\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + 'hook' => 'Closure', + ), + 'uopz_set_mock' => + array ( + 0 => 'void', + 'class' => 'string', + 'mock' => 'object|string', + ), + 'uopz_set_property' => + array ( + 0 => 'void', + 'class' => 'object|string', + 'property' => 'string', + 'value' => 'mixed', + ), + 'uopz_set_return' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + 'value' => 'mixed', + 'execute=' => 'bool', + ), + 'uopz_set_return\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + 'value' => 'mixed', + 'execute=' => 'bool', + ), + 'uopz_set_static' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'static' => 'array', + ), + 'uopz_undefine' => + array ( + 0 => 'bool', + 'class' => 'string', + 'constant' => 'string', + ), + 'uopz_undefine\'1' => + array ( + 0 => 'bool', + 'constant' => 'string', + ), + 'uopz_unset_hook' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_unset_hook\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'uopz_unset_mock' => + array ( + 0 => 'void', + 'class' => 'string', + ), + 'uopz_unset_return' => + array ( + 0 => 'bool', + 'class=' => 'class-string', + 'function=' => 'string', + ), + 'uopz_unset_return\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'urldecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'urlencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'use_soap_error_handler' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'user_error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'error_level=' => 'int', + ), + 'usleep' => + array ( + 0 => 'void', + 'microseconds' => 'int<0, max>', + ), + 'usort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'utf8_decode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'utf8_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'V8Js::__construct' => + array ( + 0 => 'void', + 'object_name=' => 'string', + 'variables=' => 'array', + 'extensions=' => 'array', + 'report_uncaught_exceptions=' => 'bool', + 'snapshot_blob=' => 'string', + ), + 'V8Js::clearPendingException' => + array ( + 0 => 'mixed', + ), + 'V8Js::compileString' => + array ( + 0 => 'resource', + 'script' => 'mixed', + 'identifier=' => 'string', + ), + 'V8Js::createSnapshot' => + array ( + 0 => 'false|string', + 'embed_source' => 'string', + ), + 'V8Js::executeScript' => + array ( + 0 => 'mixed', + 'script' => 'resource', + 'flags=' => 'int', + 'time_limit=' => 'int', + 'memory_limit=' => 'int', + ), + 'V8Js::executeString' => + array ( + 0 => 'mixed', + 'script' => 'string', + 'identifier=' => 'string', + 'flags=' => 'int', + ), + 'V8Js::getExtensions' => + array ( + 0 => 'array', + ), + 'V8Js::getPendingException' => + array ( + 0 => 'V8JsException|null', + ), + 'V8Js::registerExtension' => + array ( + 0 => 'bool', + 'extension_name' => 'string', + 'script' => 'string', + 'dependencies=' => 'array', + 'auto_enable=' => 'bool', + ), + 'V8Js::setAverageObjectSize' => + array ( + 0 => 'mixed', + 'average_object_size' => 'int', + ), + 'V8Js::setMemoryLimit' => + array ( + 0 => 'mixed', + 'limit' => 'int', + ), + 'V8Js::setModuleLoader' => + array ( + 0 => 'mixed', + 'loader' => 'callable', + ), + 'V8Js::setModuleNormaliser' => + array ( + 0 => 'mixed', + 'normaliser' => 'callable', + ), + 'V8Js::setTimeLimit' => + array ( + 0 => 'mixed', + 'limit' => 'int', + ), + 'V8JsException::getJsFileName' => + array ( + 0 => 'string', + ), + 'V8JsException::getJsLineNumber' => + array ( + 0 => 'int', + ), + 'V8JsException::getJsSourceLine' => + array ( + 0 => 'int', + ), + 'V8JsException::getJsTrace' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::__clone' => + array ( + 0 => 'void', + ), + 'V8JsScriptException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'V8JsScriptException::__toString' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::__wakeup' => + array ( + 0 => 'void', + ), + 'V8JsScriptException::getCode' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getFile' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsEndColumn' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsFileName' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsLineNumber' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsSourceLine' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsStartColumn' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsTrace' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getLine' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getMessage' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'V8JsScriptException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'V8JsScriptException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'var_dump' => + array ( + 0 => 'void', + 'value' => 'mixed', + '...values=' => 'mixed', + ), + 'var_export' => + array ( + 0 => 'null|string', + 'value' => 'mixed', + 'return=' => 'bool', + ), + 'VARIANT::__construct' => + array ( + 0 => 'void', + 'value=' => 'mixed', + 'type=' => 'int', + 'codepage=' => 'int', + ), + 'variant_abs' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_add' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_and' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_cast' => + array ( + 0 => 'VARIANT', + 'variant' => 'VARIANT', + 'type' => 'int', + ), + 'variant_cat' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_cmp' => + array ( + 0 => 'int', + 'left' => 'mixed', + 'right' => 'mixed', + 'locale_id=' => 'int', + 'flags=' => 'int', + ), + 'variant_date_from_timestamp' => + array ( + 0 => 'VARIANT', + 'timestamp' => 'int', + ), + 'variant_date_to_timestamp' => + array ( + 0 => 'int', + 'variant' => 'VARIANT', + ), + 'variant_div' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_eqv' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_fix' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_get_type' => + array ( + 0 => 'int', + 'variant' => 'VARIANT', + ), + 'variant_idiv' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_imp' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_int' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_mod' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_mul' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_neg' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_not' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_or' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_pow' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_round' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'decimals' => 'int', + ), + 'variant_set' => + array ( + 0 => 'void', + 'variant' => 'object', + 'value' => 'mixed', + ), + 'variant_set_type' => + array ( + 0 => 'void', + 'variant' => 'object', + 'type' => 'int', + ), + 'variant_sub' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_xor' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'VarnishAdmin::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishAdmin::auth' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::ban' => + array ( + 0 => 'int', + 'vcl_regex' => 'string', + ), + 'VarnishAdmin::banUrl' => + array ( + 0 => 'int', + 'vcl_regex' => 'string', + ), + 'VarnishAdmin::clearPanic' => + array ( + 0 => 'int', + ), + 'VarnishAdmin::connect' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::disconnect' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::getPanic' => + array ( + 0 => 'string', + ), + 'VarnishAdmin::getParams' => + array ( + 0 => 'array', + ), + 'VarnishAdmin::isRunning' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::setCompat' => + array ( + 0 => 'void', + 'compat' => 'int', + ), + 'VarnishAdmin::setHost' => + array ( + 0 => 'void', + 'host' => 'string', + ), + 'VarnishAdmin::setIdent' => + array ( + 0 => 'void', + 'ident' => 'string', + ), + 'VarnishAdmin::setParam' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'int|string', + ), + 'VarnishAdmin::setPort' => + array ( + 0 => 'void', + 'port' => 'int', + ), + 'VarnishAdmin::setSecret' => + array ( + 0 => 'void', + 'secret' => 'string', + ), + 'VarnishAdmin::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'VarnishAdmin::start' => + array ( + 0 => 'int', + ), + 'VarnishAdmin::stop' => + array ( + 0 => 'int', + ), + 'VarnishLog::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishLog::getLine' => + array ( + 0 => 'array', + ), + 'VarnishLog::getTagName' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'VarnishStat::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishStat::getSnapshot' => + array ( + 0 => 'array', + ), + 'version_compare' => + array ( + 0 => 'bool', + 'version1' => 'string', + 'version2' => 'string', + 'operator' => '\'!=\'|\'<\'|\'<=\'|\'<>\'|\'=\'|\'==\'|\'>\'|\'>=\'|\'eq\'|\'ge\'|\'gt\'|\'le\'|\'lt\'|\'ne\'', + ), + 'version_compare\'1' => + array ( + 0 => 'int', + 'version1' => 'string', + 'version2' => 'string', + ), + 'vfprintf' => + array ( + 0 => 'int<0, max>', + 'stream' => 'resource', + 'format' => 'string', + 'values' => 'array', + ), + 'virtual' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'vpopmail_add_alias_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'aliasdomain' => 'string', + ), + 'vpopmail_add_alias_domain_ex' => + array ( + 0 => 'bool', + 'olddomain' => 'string', + 'newdomain' => 'string', + ), + 'vpopmail_add_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'dir' => 'string', + 'uid' => 'int', + 'gid' => 'int', + ), + 'vpopmail_add_domain_ex' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'passwd' => 'string', + 'quota=' => 'string', + 'bounce=' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_add_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'gecos=' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_alias_add' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'alias' => 'string', + ), + 'vpopmail_alias_del' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + ), + 'vpopmail_alias_del_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_alias_get' => + array ( + 0 => 'array', + 'alias' => 'string', + 'domain' => 'string', + ), + 'vpopmail_alias_get_all' => + array ( + 0 => 'array', + 'domain' => 'string', + ), + 'vpopmail_auth_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'apop=' => 'string', + ), + 'vpopmail_del_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_del_domain_ex' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_del_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + ), + 'vpopmail_error' => + array ( + 0 => 'string', + ), + 'vpopmail_passwd' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_set_user_quota' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'quota' => 'string', + ), + 'vprintf' => + array ( + 0 => 'int<0, max>', + 'format' => 'string', + 'values' => 'array', + ), + 'vsprintf' => + array ( + 0 => 'string', + 'format' => 'string', + 'values' => 'array', + ), + 'Vtiful\\Kernel\\Chart::__construct' => + array ( + 0 => 'void', + 'handle' => 'resource', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Chart::axisNameX' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'name' => 'string', + ), + 'Vtiful\\Kernel\\Chart::axisNameY' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'name' => 'string', + ), + 'Vtiful\\Kernel\\Chart::legendSetPosition' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Chart::series' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'value' => 'string', + 'categories=' => 'string', + ), + 'Vtiful\\Kernel\\Chart::seriesName' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'value' => 'string', + ), + 'Vtiful\\Kernel\\Chart::style' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Chart::title' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'title' => 'string', + ), + 'Vtiful\\Kernel\\Chart::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Excel::__construct' => + array ( + 0 => 'void', + 'config' => 'array', + ), + 'Vtiful\\Kernel\\Excel::activateSheet' => + array ( + 0 => 'bool', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::addSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::autoFilter' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + ), + 'Vtiful\\Kernel\\Excel::checkoutSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::close' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::columnIndexFromString' => + array ( + 0 => 'int', + 'index' => 'string', + ), + 'Vtiful\\Kernel\\Excel::constMemory' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'file_name' => 'string', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::data' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'data' => 'array', + ), + 'Vtiful\\Kernel\\Excel::defaultFormat' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'format_handle' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::existSheet' => + array ( + 0 => 'bool', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::fileName' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'file_name' => 'string', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::freezePanes' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + ), + 'Vtiful\\Kernel\\Excel::getHandle' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Excel::getSheetData' => + array ( + 0 => 'array|false', + ), + 'Vtiful\\Kernel\\Excel::gridline' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'option=' => 'int', + ), + 'Vtiful\\Kernel\\Excel::header' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'header' => 'array', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertChart' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'chart_resource' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::insertComment' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'comment' => 'string', + ), + 'Vtiful\\Kernel\\Excel::insertDate' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'timestamp' => 'int', + 'format=' => 'null|string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'formula' => 'string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertImage' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'image' => 'string', + 'width=' => 'float|null', + 'height=' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::insertText' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'data' => 'float|int|string', + 'format=' => 'null|string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertUrl' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'url' => 'string', + 'text=' => 'null|string', + 'tool_tip=' => 'null|string', + 'format=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::mergeCells' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'data' => 'string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::nextCellCallback' => + array ( + 0 => 'void', + 'fci' => 'callable(int, int, mixed)', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::nextRow' => + array ( + 0 => 'array|false', + 'zv_type_t=' => 'array|null', + ), + 'Vtiful\\Kernel\\Excel::openFile' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zs_file_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::openSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zs_sheet_name=' => 'null|string', + 'zl_flag=' => 'int|null', + ), + 'Vtiful\\Kernel\\Excel::output' => + array ( + 0 => 'string', + ), + 'Vtiful\\Kernel\\Excel::protection' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'password=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::putCSV' => + array ( + 0 => 'bool', + 'fp' => 'resource', + 'delimiter_str=' => 'null|string', + 'enclosure_str=' => 'null|string', + 'escape_str=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::putCSVCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable(array):array', + 'fp' => 'resource', + 'delimiter_str=' => 'null|string', + 'enclosure_str=' => 'null|string', + 'escape_str=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::setColumn' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'width' => 'float', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::setCurrentSheetHide' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setCurrentSheetIsFirst' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setGlobalType' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_type_t' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setLandscape' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setMargins' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'left=' => 'float|null', + 'right=' => 'float|null', + 'top=' => 'float|null', + 'bottom=' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::setPaper' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'paper' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setPortrait' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setRow' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'height' => 'float', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::setSkipRows' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_skip_t' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setType' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_type_t' => 'array', + ), + 'Vtiful\\Kernel\\Excel::sheetList' => + array ( + 0 => 'array', + ), + 'Vtiful\\Kernel\\Excel::showComment' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::stringFromColumnIndex' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'Vtiful\\Kernel\\Excel::timestampFromDateDouble' => + array ( + 0 => 'int', + 'index' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::validation' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'validation_resource' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::zoom' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'scale' => 'int', + ), + 'Vtiful\\Kernel\\Format::__construct' => + array ( + 0 => 'void', + 'handle' => 'resource', + ), + 'Vtiful\\Kernel\\Format::align' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + '...style' => 'int', + ), + 'Vtiful\\Kernel\\Format::background' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'color' => 'int', + 'pattern=' => 'int', + ), + 'Vtiful\\Kernel\\Format::bold' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::border' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Format::font' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'font' => 'string', + ), + 'Vtiful\\Kernel\\Format::fontColor' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'color' => 'int', + ), + 'Vtiful\\Kernel\\Format::fontSize' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'size' => 'float', + ), + 'Vtiful\\Kernel\\Format::italic' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::number' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'format' => 'string', + ), + 'Vtiful\\Kernel\\Format::strikeout' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Format::underline' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Format::unlocked' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::wrap' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Validation::__construct' => + array ( + 0 => 'void', + ), + 'Vtiful\\Kernel\\Validation::criteriaType' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Validation::maximumFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'maximum_formula' => 'string', + ), + 'Vtiful\\Kernel\\Validation::maximumNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'maximum_number' => 'float', + ), + 'Vtiful\\Kernel\\Validation::minimumFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'minimum_formula' => 'string', + ), + 'Vtiful\\Kernel\\Validation::minimumNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'minimum_number' => 'float', + ), + 'Vtiful\\Kernel\\Validation::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Validation::validationType' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Validation::valueList' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'value_list' => 'array', + ), + 'Vtiful\\Kernel\\Validation::valueNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'value_number' => 'int', + ), + 'w32api_deftype' => + array ( + 0 => 'bool', + 'typename' => 'string', + 'member1_type' => 'string', + 'member1_name' => 'string', + '...args=' => 'string', + ), + 'w32api_init_dtype' => + array ( + 0 => 'resource', + 'typename' => 'string', + 'value' => 'mixed', + '...args=' => 'mixed', + ), + 'w32api_invoke_function' => + array ( + 0 => 'mixed', + 'funcname' => 'string', + 'argument' => 'mixed', + '...args=' => 'mixed', + ), + 'w32api_register_function' => + array ( + 0 => 'bool', + 'library' => 'string', + 'function_name' => 'string', + 'return_type' => 'string', + ), + 'w32api_set_call_method' => + array ( + 0 => 'mixed', + 'method' => 'int', + ), + 'wddx_add_vars' => + array ( + 0 => 'bool', + 'packet_id' => 'resource', + 'var_names' => 'mixed', + '...vars=' => 'mixed', + ), + 'wddx_deserialize' => + array ( + 0 => 'mixed', + 'packet' => 'string', + ), + 'wddx_packet_end' => + array ( + 0 => 'string', + 'packet_id' => 'resource', + ), + 'wddx_packet_start' => + array ( + 0 => 'false|resource', + 'comment=' => 'string', + ), + 'wddx_serialize_value' => + array ( + 0 => 'false|string', + 'value' => 'mixed', + 'comment=' => 'string', + ), + 'wddx_serialize_vars' => + array ( + 0 => 'false|string', + 'var_name' => 'mixed', + '...vars=' => 'mixed', + ), + 'WeakMap::count' => + array ( + 0 => 'int', + ), + 'WeakMap::getIterator' => + array ( + 0 => 'Iterator', + ), + 'WeakMap::offsetExists' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'WeakMap::offsetGet' => + array ( + 0 => 'mixed', + 'object' => 'object', + ), + 'WeakMap::offsetSet' => + array ( + 0 => 'void', + 'object' => 'object', + 'value' => 'mixed', + ), + 'WeakMap::offsetUnset' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'Weakref::acquire' => + array ( + 0 => 'bool', + ), + 'Weakref::get' => + array ( + 0 => 'object', + ), + 'Weakref::release' => + array ( + 0 => 'bool', + ), + 'Weakref::valid' => + array ( + 0 => 'bool', + ), + 'webObj::convertToString' => + array ( + 0 => 'string', + ), + 'webObj::free' => + array ( + 0 => 'void', + ), + 'webObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'webObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'win32_continue_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_create_service' => + array ( + 0 => 'false|int', + 'details' => 'array', + 'machine=' => 'string', + ), + 'win32_delete_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_get_last_control_message' => + array ( + 0 => 'int', + ), + 'win32_pause_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_ps_list_procs' => + array ( + 0 => 'array', + ), + 'win32_ps_stat_mem' => + array ( + 0 => 'array', + ), + 'win32_ps_stat_proc' => + array ( + 0 => 'array', + 'pid=' => 'int', + ), + 'win32_query_service_status' => + array ( + 0 => 'array|false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_send_custom_control' => + array ( + 0 => 'int', + 'servicename' => 'string', + 'control' => 'int', + 'machine=' => 'string', + ), + 'win32_set_service_exit_code' => + array ( + 0 => 'int', + 'exitCode=' => 'int', + ), + 'win32_set_service_exit_mode' => + array ( + 0 => 'bool', + 'gracefulMode=' => 'bool', + ), + 'win32_set_service_status' => + array ( + 0 => 'bool|int', + 'status' => 'int', + 'checkpoint=' => 'int', + ), + 'win32_start_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_start_service_ctrl_dispatcher' => + array ( + 0 => 'bool|int', + 'name' => 'string', + ), + 'win32_stop_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'wincache_fcache_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_fcache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_lock' => + array ( + 0 => 'bool', + 'key' => 'string', + 'isglobal=' => 'bool', + ), + 'wincache_ocache_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_ocache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_refresh_if_changed' => + array ( + 0 => 'bool', + 'files=' => 'array', + ), + 'wincache_rplist_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_rplist_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_scache_info' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_scache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_ucache_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_add\'1' => + array ( + 0 => 'bool', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old_value' => 'int', + 'new_value' => 'int', + ), + 'wincache_ucache_clear' => + array ( + 0 => 'bool', + ), + 'wincache_ucache_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'dec_by=' => 'int', + 'success=' => 'bool', + ), + 'wincache_ucache_delete' => + array ( + 0 => 'bool', + 'key' => 'mixed', + ), + 'wincache_ucache_exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'wincache_ucache_get' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + '&w_success=' => 'bool', + ), + 'wincache_ucache_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'inc_by=' => 'int', + 'success=' => 'bool', + ), + 'wincache_ucache_info' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + 'key=' => 'string', + ), + 'wincache_ucache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_ucache_set' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_set\'1' => + array ( + 0 => 'bool', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_unlock' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'wkhtmltox\\image\\converter::convert' => + array ( + 0 => 'null|string', + ), + 'wkhtmltox\\image\\converter::getVersion' => + array ( + 0 => 'string', + ), + 'wkhtmltox\\pdf\\converter::add' => + array ( + 0 => 'void', + 'object' => 'wkhtmltox\\PDF\\Object', + ), + 'wkhtmltox\\pdf\\converter::convert' => + array ( + 0 => 'null|string', + ), + 'wkhtmltox\\pdf\\converter::getVersion' => + array ( + 0 => 'string', + ), + 'wordwrap' => + array ( + 0 => 'string', + 'string' => 'string', + 'width=' => 'int', + 'break=' => 'string', + 'cut_long_words=' => 'bool', + ), + 'Worker::__construct' => + array ( + 0 => 'void', + ), + 'Worker::addRef' => + array ( + 0 => 'void', + ), + 'Worker::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Worker::collect' => + array ( + 0 => 'int', + 'collector=' => 'callable', + ), + 'Worker::count' => + array ( + 0 => 'int', + ), + 'Worker::delRef' => + array ( + 0 => 'void', + ), + 'Worker::detach' => + array ( + 0 => 'void', + ), + 'Worker::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Worker::getCreatorId' => + array ( + 0 => 'int', + ), + 'Worker::getCurrentThread' => + array ( + 0 => 'Thread', + ), + 'Worker::getCurrentThreadId' => + array ( + 0 => 'int', + ), + 'Worker::getRefCount' => + array ( + 0 => 'int', + ), + 'Worker::getStacked' => + array ( + 0 => 'int', + ), + 'Worker::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Worker::getThreadId' => + array ( + 0 => 'int', + ), + 'Worker::globally' => + array ( + 0 => 'mixed', + ), + 'Worker::isGarbage' => + array ( + 0 => 'bool', + ), + 'Worker::isJoined' => + array ( + 0 => 'bool', + ), + 'Worker::isRunning' => + array ( + 0 => 'bool', + ), + 'Worker::isShutdown' => + array ( + 0 => 'bool', + ), + 'Worker::isStarted' => + array ( + 0 => 'bool', + ), + 'Worker::isTerminated' => + array ( + 0 => 'bool', + ), + 'Worker::isWaiting' => + array ( + 0 => 'bool', + ), + 'Worker::isWorking' => + array ( + 0 => 'bool', + ), + 'Worker::join' => + array ( + 0 => 'bool', + ), + 'Worker::kill' => + array ( + 0 => 'bool', + ), + 'Worker::lock' => + array ( + 0 => 'bool', + ), + 'Worker::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'mixed', + ), + 'Worker::notify' => + array ( + 0 => 'bool', + ), + 'Worker::notifyOne' => + array ( + 0 => 'bool', + ), + 'Worker::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Worker::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Worker::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Worker::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Worker::pop' => + array ( + 0 => 'bool', + ), + 'Worker::run' => + array ( + 0 => 'void', + ), + 'Worker::setGarbage' => + array ( + 0 => 'void', + ), + 'Worker::shift' => + array ( + 0 => 'bool', + ), + 'Worker::shutdown' => + array ( + 0 => 'bool', + ), + 'Worker::stack' => + array ( + 0 => 'int', + '&rw_work' => 'Threaded', + ), + 'Worker::start' => + array ( + 0 => 'bool', + 'options=' => 'int', + ), + 'Worker::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '_=' => 'mixed', + ), + 'Worker::unlock' => + array ( + 0 => 'bool', + ), + 'Worker::unstack' => + array ( + 0 => 'int', + '&rw_work=' => 'Threaded', + ), + 'Worker::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'xattr_get' => + array ( + 0 => 'string', + 'filename' => 'string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'xattr_list' => + array ( + 0 => 'array', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'xattr_remove' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'xattr_set' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'name' => 'string', + 'value' => 'string', + 'flags=' => 'int', + ), + 'xattr_supported' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'xcache_asm' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_clear_cache' => + array ( + 0 => 'void', + 'type' => 'int', + 'id=' => 'int', + ), + 'xcache_coredump' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_count' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'xcache_coverager_decode' => + array ( + 0 => 'array', + 'data' => 'string', + ), + 'xcache_coverager_get' => + array ( + 0 => 'array', + 'clean=' => 'bool', + ), + 'xcache_coverager_start' => + array ( + 0 => 'void', + 'clean=' => 'bool', + ), + 'xcache_coverager_stop' => + array ( + 0 => 'void', + 'clean=' => 'bool', + ), + 'xcache_dasm_file' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_dasm_string' => + array ( + 0 => 'string', + 'code' => 'string', + ), + 'xcache_dec' => + array ( + 0 => 'int', + 'name' => 'string', + 'value=' => 'int|mixed', + 'ttl=' => 'int', + ), + 'xcache_decode' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'xcache_encode' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'xcache_get_data_type' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'xcache_get_op_spec' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_get_op_type' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_get_opcode' => + array ( + 0 => 'string', + 'opcode' => 'int', + ), + 'xcache_get_opcode_spec' => + array ( + 0 => 'string', + 'opcode' => 'int', + ), + 'xcache_inc' => + array ( + 0 => 'int', + 'name' => 'string', + 'value=' => 'int|mixed', + 'ttl=' => 'int', + ), + 'xcache_info' => + array ( + 0 => 'array', + 'type' => 'int', + 'id' => 'int', + ), + 'xcache_is_autoglobal' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'xcache_isset' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'xcache_list' => + array ( + 0 => 'array', + 'type' => 'int', + 'id' => 'int', + ), + 'xcache_set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'xcache_unset' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'xcache_unset_by_prefix' => + array ( + 0 => 'bool', + 'prefix' => 'string', + ), + 'Xcom::__construct' => + array ( + 0 => 'void', + 'fabric_url=' => 'string', + 'fabric_token=' => 'string', + 'capability_token=' => 'string', + ), + 'Xcom::decode' => + array ( + 0 => 'object', + 'avro_msg' => 'string', + 'json_schema' => 'string', + ), + 'Xcom::encode' => + array ( + 0 => 'string', + 'data' => 'stdClass', + 'avro_schema' => 'string', + ), + 'Xcom::getDebugOutput' => + array ( + 0 => 'string', + ), + 'Xcom::getLastResponse' => + array ( + 0 => 'string', + ), + 'Xcom::getLastResponseInfo' => + array ( + 0 => 'array', + ), + 'Xcom::getOnboardingURL' => + array ( + 0 => 'string', + 'capability_name' => 'string', + 'agreement_url' => 'string', + ), + 'Xcom::send' => + array ( + 0 => 'int', + 'topic' => 'string', + 'data' => 'mixed', + 'json_schema=' => 'string', + 'http_headers=' => 'array', + ), + 'Xcom::sendAsync' => + array ( + 0 => 'int', + 'topic' => 'string', + 'data' => 'mixed', + 'json_schema=' => 'string', + 'http_headers=' => 'array', + ), + 'xdebug_break' => + array ( + 0 => 'bool', + ), + 'xdebug_call_class' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_file' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_function' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_line' => + array ( + 0 => 'int', + 'depth=' => 'int', + ), + 'xdebug_clear_aggr_profiling_data' => + array ( + 0 => 'bool', + ), + 'xdebug_code_coverage_started' => + array ( + 0 => 'bool', + ), + 'xdebug_debug_zval' => + array ( + 0 => 'void', + '...varName' => 'string', + ), + 'xdebug_debug_zval_stdout' => + array ( + 0 => 'void', + '...varName' => 'string', + ), + 'xdebug_disable' => + array ( + 0 => 'void', + ), + 'xdebug_dump_aggr_profiling_data' => + array ( + 0 => 'bool', + ), + 'xdebug_dump_superglobals' => + array ( + 0 => 'void', + ), + 'xdebug_enable' => + array ( + 0 => 'void', + ), + 'xdebug_get_code_coverage' => + array ( + 0 => 'array', + ), + 'xdebug_get_collected_errors' => + array ( + 0 => 'string', + 'clean=' => 'bool', + ), + 'xdebug_get_declared_vars' => + array ( + 0 => 'array', + ), + 'xdebug_get_formatted_function_stack' => + array ( + 0 => 'mixed', + ), + 'xdebug_get_function_count' => + array ( + 0 => 'int', + ), + 'xdebug_get_function_stack' => + array ( + 0 => 'array', + 'message=' => 'string', + 'options=' => 'int', + ), + 'xdebug_get_headers' => + array ( + 0 => 'array', + ), + 'xdebug_get_monitored_functions' => + array ( + 0 => 'array', + ), + 'xdebug_get_profiler_filename' => + array ( + 0 => 'false|string', + ), + 'xdebug_get_stack_depth' => + array ( + 0 => 'int', + ), + 'xdebug_get_tracefile_name' => + array ( + 0 => 'string', + ), + 'xdebug_info' => + array ( + 0 => 'mixed', + 'category=' => 'string', + ), + 'xdebug_is_debugger_active' => + array ( + 0 => 'bool', + ), + 'xdebug_is_enabled' => + array ( + 0 => 'bool', + ), + 'xdebug_memory_usage' => + array ( + 0 => 'int', + ), + 'xdebug_peak_memory_usage' => + array ( + 0 => 'int', + ), + 'xdebug_print_function_stack' => + array ( + 0 => 'array', + 'message=' => 'string', + 'options=' => 'int', + ), + 'xdebug_set_filter' => + array ( + 0 => 'void', + 'group' => 'int', + 'list_type' => 'int', + 'configuration' => 'array', + ), + 'xdebug_start_code_coverage' => + array ( + 0 => 'void', + 'options=' => 'int', + ), + 'xdebug_start_error_collection' => + array ( + 0 => 'void', + ), + 'xdebug_start_function_monitor' => + array ( + 0 => 'void', + 'list_of_functions_to_monitor' => 'array', + ), + 'xdebug_start_trace' => + array ( + 0 => 'void', + 'trace_file' => 'mixed', + 'options=' => 'int|mixed', + ), + 'xdebug_stop_code_coverage' => + array ( + 0 => 'void', + 'cleanup=' => 'bool', + ), + 'xdebug_stop_error_collection' => + array ( + 0 => 'void', + ), + 'xdebug_stop_function_monitor' => + array ( + 0 => 'void', + ), + 'xdebug_stop_trace' => + array ( + 0 => 'void', + ), + 'xdebug_time_index' => + array ( + 0 => 'float', + ), + 'xdebug_var_dump' => + array ( + 0 => 'void', + '...var' => 'mixed', + ), + 'xdiff_file_bdiff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_bdiff_size' => + array ( + 0 => 'int', + 'file' => 'string', + ), + 'xdiff_file_bpatch' => + array ( + 0 => 'bool', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_diff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + 'context=' => 'int', + 'minimal=' => 'bool', + ), + 'xdiff_file_diff_binary' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_merge3' => + array ( + 0 => 'mixed', + 'old_file' => 'string', + 'new_file1' => 'string', + 'new_file2' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_patch' => + array ( + 0 => 'mixed', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + 'flags=' => 'int', + ), + 'xdiff_file_patch_binary' => + array ( + 0 => 'bool', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_rabdiff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_string_bdiff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xdiff_string_bdiff_size' => + array ( + 0 => 'int', + 'patch' => 'string', + ), + 'xdiff_string_bpatch' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + ), + 'xdiff_string_diff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + 'context=' => 'int', + 'minimal=' => 'bool', + ), + 'xdiff_string_diff_binary' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xdiff_string_merge3' => + array ( + 0 => 'mixed', + 'old_data' => 'string', + 'new_data1' => 'string', + 'new_data2' => 'string', + 'error=' => 'string', + ), + 'xdiff_string_patch' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + 'flags=' => 'int', + '&w_error=' => 'string', + ), + 'xdiff_string_patch_binary' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + ), + 'xdiff_string_rabdiff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xhprof_disable' => + array ( + 0 => 'array', + ), + 'xhprof_enable' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'options=' => 'array', + ), + 'xhprof_sample_disable' => + array ( + 0 => 'array', + ), + 'xhprof_sample_enable' => + array ( + 0 => 'void', + ), + 'xlswriter_get_author' => + array ( + 0 => 'string', + ), + 'xlswriter_get_version' => + array ( + 0 => 'string', + ), + 'xml_error_string' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'xml_get_current_byte_index' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + 'xml_get_current_column_number' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + 'xml_get_current_line_number' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + 'xml_get_error_code' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + 'xml_parse' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + 'data' => 'string', + 'is_final=' => 'bool', + ), + 'xml_parse_into_struct' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + 'data' => 'string', + '&w_values' => 'array', + '&w_index=' => 'array', + ), + 'xml_parser_create' => + array ( + 0 => 'XMLParser', + 'encoding=' => 'null|string', + ), + 'xml_parser_create_ns' => + array ( + 0 => 'XMLParser', + 'encoding=' => 'null|string', + 'separator=' => 'string', + ), + 'xml_parser_free' => + array ( + 0 => 'bool', + 'parser' => 'XMLParser', + ), + 'xml_parser_get_option' => + array ( + 0 => 'int|string', + 'parser' => 'XMLParser', + 'option' => 'int', + ), + 'xml_parser_set_option' => + array ( + 0 => 'bool', + 'parser' => 'XMLParser', + 'option' => 'int', + 'value' => 'mixed', + ), + 'xml_set_character_data_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_default_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_element_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'start_handler' => 'callable', + 'end_handler' => 'callable', + ), + 'xml_set_end_namespace_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_external_entity_ref_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_notation_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_object' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'object' => 'object', + ), + 'xml_set_processing_instruction_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_start_namespace_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'xml_set_unparsed_entity_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + 'XMLDiff\\Base::__construct' => + array ( + 0 => 'void', + 'nsname' => 'string', + ), + 'XMLDiff\\Base::diff' => + array ( + 0 => 'mixed', + 'from' => 'mixed', + 'to' => 'mixed', + ), + 'XMLDiff\\Base::merge' => + array ( + 0 => 'mixed', + 'src' => 'mixed', + 'diff' => 'mixed', + ), + 'XMLDiff\\DOM::diff' => + array ( + 0 => 'DOMDocument', + 'from' => 'DOMDocument', + 'to' => 'DOMDocument', + ), + 'XMLDiff\\DOM::merge' => + array ( + 0 => 'DOMDocument', + 'src' => 'DOMDocument', + 'diff' => 'DOMDocument', + ), + 'XMLDiff\\File::diff' => + array ( + 0 => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'XMLDiff\\File::merge' => + array ( + 0 => 'string', + 'src' => 'string', + 'diff' => 'string', + ), + 'XMLDiff\\Memory::diff' => + array ( + 0 => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'XMLDiff\\Memory::merge' => + array ( + 0 => 'string', + 'src' => 'string', + 'diff' => 'string', + ), + 'XMLReader::close' => + array ( + 0 => 'bool', + ), + 'XMLReader::expand' => + array ( + 0 => 'DOMNode|false', + 'baseNode=' => 'DOMNode|null', + ), + 'XMLReader::getAttribute' => + array ( + 0 => 'null|string', + 'name' => 'string', + ), + 'XMLReader::getAttributeNo' => + array ( + 0 => 'null|string', + 'index' => 'int', + ), + 'XMLReader::getAttributeNs' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'namespace' => 'string', + ), + 'XMLReader::getParserProperty' => + array ( + 0 => 'bool', + 'property' => 'int', + ), + 'XMLReader::isValid' => + array ( + 0 => 'bool', + ), + 'XMLReader::lookupNamespace' => + array ( + 0 => 'null|string', + 'prefix' => 'string', + ), + 'XMLReader::moveToAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLReader::moveToAttributeNo' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'XMLReader::moveToAttributeNs' => + array ( + 0 => 'bool', + 'name' => 'string', + 'namespace' => 'string', + ), + 'XMLReader::moveToElement' => + array ( + 0 => 'bool', + ), + 'XMLReader::moveToFirstAttribute' => + array ( + 0 => 'bool', + ), + 'XMLReader::moveToNextAttribute' => + array ( + 0 => 'bool', + ), + 'XMLReader::next' => + array ( + 0 => 'bool', + 'name=' => 'null|string', + ), + 'XMLReader::open' => + array ( + 0 => 'XmlReader|bool', + 'uri' => 'string', + 'encoding=' => 'null|string', + 'flags=' => 'int', + ), + 'XMLReader::read' => + array ( + 0 => 'bool', + ), + 'XMLReader::readInnerXML' => + array ( + 0 => 'string', + ), + 'XMLReader::readOuterXML' => + array ( + 0 => 'string', + ), + 'XMLReader::readString' => + array ( + 0 => 'string', + ), + 'XMLReader::setParserProperty' => + array ( + 0 => 'bool', + 'property' => 'int', + 'value' => 'bool', + ), + 'XMLReader::setRelaxNGSchema' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XMLReader::setRelaxNGSchemaSource' => + array ( + 0 => 'bool', + 'source' => 'null|string', + ), + 'XMLReader::setSchema' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XMLReader::XML' => + array ( + 0 => 'XMLReader|bool', + 'source' => 'string', + 'encoding=' => 'null|string', + 'flags=' => 'int', + ), + 'XMLWriter::endAttribute' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endCdata' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endComment' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDocument' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtd' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdAttlist' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdEntity' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endPi' => + array ( + 0 => 'bool', + ), + 'XMLWriter::flush' => + array ( + 0 => 'int|string', + 'empty=' => 'bool', + ), + 'XMLWriter::fullEndElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::openMemory' => + array ( + 0 => 'bool', + ), + 'XMLWriter::openUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'XMLWriter::outputMemory' => + array ( + 0 => 'string', + 'flush=' => 'bool', + ), + 'XMLWriter::setIndent' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'XMLWriter::setIndentString' => + array ( + 0 => 'bool', + 'indentation' => 'string', + ), + 'XMLWriter::startAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startAttributeNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'XMLWriter::startCdata' => + array ( + 0 => 'bool', + ), + 'XMLWriter::startComment' => + array ( + 0 => 'bool', + ), + 'XMLWriter::startDocument' => + array ( + 0 => 'bool', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + 'XMLWriter::startDtd' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + 'XMLWriter::startDtdAttlist' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startDtdElement' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'XMLWriter::startDtdEntity' => + array ( + 0 => 'bool', + 'name' => 'string', + 'isParam' => 'bool', + ), + 'XMLWriter::startElement' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startElementNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'XMLWriter::startPi' => + array ( + 0 => 'bool', + 'target' => 'string', + ), + 'XMLWriter::text' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'XMLWriter::writeAttributeNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'XMLWriter::writeCdata' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeComment' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeDtd' => + array ( + 0 => 'bool', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + 'XMLWriter::writeDtdAttlist' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeDtdElement' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeDtdEntity' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'isParam=' => 'bool', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'notationData=' => 'null|string', + ), + 'XMLWriter::writeElement' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content=' => 'null|string', + ), + 'XMLWriter::writeElementNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'content=' => 'null|string', + ), + 'XMLWriter::writePi' => + array ( + 0 => 'bool', + 'target' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeRaw' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'xmlwriter_end_attribute' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_cdata' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_comment' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_document' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_dtd' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_end_pi' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_flush' => + array ( + 0 => 'int|string', + 'writer' => 'XMLWriter', + 'empty=' => 'bool', + ), + 'xmlwriter_full_end_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_open_memory' => + array ( + 0 => 'XMLWriter|false', + ), + 'xmlwriter_open_uri' => + array ( + 0 => 'XMLWriter|false', + 'uri' => 'string', + ), + 'xmlwriter_output_memory' => + array ( + 0 => 'string', + 'writer' => 'XMLWriter', + 'flush=' => 'bool', + ), + 'xmlwriter_set_indent' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'enable' => 'bool', + ), + 'xmlwriter_set_indent_string' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'indentation' => 'string', + ), + 'xmlwriter_start_attribute' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + 'xmlwriter_start_attribute_ns' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'xmlwriter_start_cdata' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_start_comment' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + 'xmlwriter_start_document' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + 'xmlwriter_start_dtd' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + 'xmlwriter_start_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + 'xmlwriter_start_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'qualifiedName' => 'string', + ), + 'xmlwriter_start_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'isParam' => 'bool', + ), + 'xmlwriter_start_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + 'xmlwriter_start_element_ns' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'xmlwriter_start_pi' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'target' => 'string', + ), + 'xmlwriter_text' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + 'xmlwriter_write_attribute' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'value' => 'string', + ), + 'xmlwriter_write_attribute_ns' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'xmlwriter_write_cdata' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + 'xmlwriter_write_comment' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + 'xmlwriter_write_dtd' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + 'xmlwriter_write_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + 'isParam=' => 'bool', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'notationData=' => 'null|string', + ), + 'xmlwriter_write_element' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content=' => 'null|string', + ), + 'xmlwriter_write_element_ns' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'content=' => 'null|string', + ), + 'xmlwriter_write_pi' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'target' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_raw' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + 'xpath_new_context' => + array ( + 0 => 'XPathContext', + 'dom_document' => 'DOMDocument', + ), + 'xpath_register_ns' => + array ( + 0 => 'bool', + 'xpath_context' => 'xpathcontext', + 'prefix' => 'string', + 'uri' => 'string', + ), + 'xpath_register_ns_auto' => + array ( + 0 => 'bool', + 'xpath_context' => 'xpathcontext', + 'context_node=' => 'object', + ), + 'xptr_new_context' => + array ( + 0 => 'XPathContext', + ), + 'XSLTProcessor::getParameter' => + array ( + 0 => 'false|string', + 'namespace' => 'string', + 'name' => 'string', + ), + 'XsltProcessor::getSecurityPrefs' => + array ( + 0 => 'int', + ), + 'XSLTProcessor::hasExsltSupport' => + array ( + 0 => 'bool', + ), + 'XSLTProcessor::importStylesheet' => + array ( + 0 => 'bool', + 'stylesheet' => 'object', + ), + 'XSLTProcessor::registerPHPFunctions' => + array ( + 0 => 'void', + 'functions=' => 'array|null|string', + ), + 'XSLTProcessor::removeParameter' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'name' => 'string', + ), + 'XSLTProcessor::setParameter' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'XSLTProcessor::setParameter\'1' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'options' => 'array', + ), + 'XSLTProcessor::setProfiling' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XsltProcessor::setSecurityPrefs' => + array ( + 0 => 'int', + 'preferences' => 'int', + ), + 'XSLTProcessor::transformToDoc' => + array ( + 0 => 'DOMDocument|false', + 'document' => 'DOMNode', + 'returnClass=' => 'null|string', + ), + 'XSLTProcessor::transformToURI' => + array ( + 0 => 'int', + 'document' => 'DOMDocument', + 'uri' => 'string', + ), + 'XSLTProcessor::transformToXML' => + array ( + 0 => 'false|string', + 'document' => 'DOMDocument', + ), + 'yac::__construct' => + array ( + 0 => 'void', + 'prefix=' => 'string', + ), + 'yac::__get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'yac::__set' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'mixed', + ), + 'yac::delete' => + array ( + 0 => 'bool', + 'keys' => 'array|string', + 'ttl=' => 'int', + ), + 'yac::dump' => + array ( + 0 => 'mixed', + 'num' => 'int', + ), + 'yac::flush' => + array ( + 0 => 'bool', + ), + 'yac::get' => + array ( + 0 => 'mixed', + 'key' => 'array|string', + 'cas=' => 'int', + ), + 'yac::info' => + array ( + 0 => 'array', + ), + 'Yaconf::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default_value=' => 'mixed', + ), + 'Yaconf::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Action_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Action_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + 'view' => 'Yaf\\View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf\\Action_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::execute' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Action_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::getController' => + array ( + 0 => 'Yaf\\Controller_Abstract', + ), + 'Yaf\\Action_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf\\Action_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf\\Action_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Action_Abstract::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Action_Abstract::getResponse' => + array ( + 0 => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Action_Abstract::getView' => + array ( + 0 => 'Yaf\\View_Interface', + ), + 'Yaf\\Action_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf\\Action_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Action_Abstract::initView' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf\\Action_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Action_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf\\Application::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::__construct' => + array ( + 0 => 'void', + 'config' => 'array|string', + 'envrion=' => 'string', + ), + 'Yaf\\Application::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::__sleep' => + array ( + 0 => 'array', + ), + 'Yaf\\Application::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::app' => + array ( + 0 => 'Yaf\\Application|null', + ), + 'Yaf\\Application::bootstrap' => + array ( + 0 => 'Yaf\\Application', + 'bootstrap=' => 'Yaf\\Bootstrap_Abstract|null', + ), + 'Yaf\\Application::clearLastError' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::environ' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::execute' => + array ( + 0 => 'void', + 'entry' => 'callable', + '_=' => 'string', + ), + 'Yaf\\Application::getAppDirectory' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::getConfig' => + array ( + 0 => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Application::getDispatcher' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Application::getLastErrorMsg' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::getLastErrorNo' => + array ( + 0 => 'int', + ), + 'Yaf\\Application::getModules' => + array ( + 0 => 'array', + ), + 'Yaf\\Application::run' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::setAppDirectory' => + array ( + 0 => 'Yaf\\Application', + 'directory' => 'string', + ), + 'Yaf\\Config\\Ini::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf\\Config\\Ini::__get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Ini::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Config\\Ini::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Config\\Ini::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Config\\Ini::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Ini::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Config\\Ini::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Ini::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Ini::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Ini::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Config\\Ini::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Simple::__construct' => + array ( + 0 => 'void', + 'array' => 'array', + 'readonly=' => 'string', + ), + 'Yaf\\Config\\Simple::__get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Simple::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Config\\Simple::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Config\\Simple::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Config\\Simple::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Simple::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Config\\Simple::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Simple::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Simple::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Simple::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Config\\Simple::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Config_Abstract::get' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf\\Config_Abstract::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config_Abstract::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config_Abstract::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Controller_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Controller_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + 'view' => 'Yaf\\View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf\\Controller_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf\\Controller_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Controller_Abstract::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Controller_Abstract::getResponse' => + array ( + 0 => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Controller_Abstract::getView' => + array ( + 0 => 'Yaf\\View_Interface', + ), + 'Yaf\\Controller_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf\\Controller_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Controller_Abstract::initView' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Controller_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf\\Dispatcher::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Dispatcher::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::autoRender' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::catchException' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::disableView' => + array ( + 0 => 'bool', + ), + 'Yaf\\Dispatcher::dispatch' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::enableView' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Dispatcher::flushInstantly' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::getApplication' => + array ( + 0 => 'Yaf\\Application', + ), + 'Yaf\\Dispatcher::getInstance' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Dispatcher::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::getRouter' => + array ( + 0 => 'Yaf\\Router', + ), + 'Yaf\\Dispatcher::initView' => + array ( + 0 => 'Yaf\\View_Interface', + 'templates_dir' => 'string', + 'options=' => 'array|null', + ), + 'Yaf\\Dispatcher::registerPlugin' => + array ( + 0 => 'Yaf\\Dispatcher', + 'plugin' => 'Yaf\\Plugin_Abstract', + ), + 'Yaf\\Dispatcher::returnResponse' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag' => 'bool', + ), + 'Yaf\\Dispatcher::setDefaultAction' => + array ( + 0 => 'Yaf\\Dispatcher', + 'action' => 'string', + ), + 'Yaf\\Dispatcher::setDefaultController' => + array ( + 0 => 'Yaf\\Dispatcher', + 'controller' => 'string', + ), + 'Yaf\\Dispatcher::setDefaultModule' => + array ( + 0 => 'Yaf\\Dispatcher', + 'module' => 'string', + ), + 'Yaf\\Dispatcher::setErrorHandler' => + array ( + 0 => 'Yaf\\Dispatcher', + 'callback' => 'callable', + 'error_types' => 'int', + ), + 'Yaf\\Dispatcher::setRequest' => + array ( + 0 => 'Yaf\\Dispatcher', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::setView' => + array ( + 0 => 'Yaf\\Dispatcher', + 'view' => 'Yaf\\View_Interface', + ), + 'Yaf\\Dispatcher::throwException' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Loader::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Loader::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::autoload' => + array ( + 0 => 'bool', + 'class_name' => 'string', + ), + 'Yaf\\Loader::clearLocalNamespace' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Loader::getInstance' => + array ( + 0 => 'Yaf\\Loader', + 'local_library_path=' => 'string', + 'global_library_path=' => 'string', + ), + 'Yaf\\Loader::getLibraryPath' => + array ( + 0 => 'string', + 'is_global=' => 'bool', + ), + 'Yaf\\Loader::getLocalNamespace' => + array ( + 0 => 'string', + ), + 'Yaf\\Loader::import' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'Yaf\\Loader::isLocalName' => + array ( + 0 => 'bool', + 'class_name' => 'string', + ), + 'Yaf\\Loader::registerLocalNamespace' => + array ( + 0 => 'bool', + 'name_prefix' => 'array|string', + ), + 'Yaf\\Loader::setLibraryPath' => + array ( + 0 => 'Yaf\\Loader', + 'directory' => 'string', + 'global=' => 'bool', + ), + 'Yaf\\Plugin_Abstract::dispatchLoopShutdown' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::dispatchLoopStartup' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::postDispatch' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::preDispatch' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::preResponse' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::routerShutdown' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::routerStartup' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Registry::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Registry::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Registry::del' => + array ( + 0 => 'bool|null', + 'name' => 'string', + ), + 'Yaf\\Registry::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Registry::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Registry::set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Request\\Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Request\\Http::__construct' => + array ( + 0 => 'void', + 'request_uri' => 'string', + 'base_uri' => 'string', + ), + 'Yaf\\Request\\Http::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Http::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request\\Http::getFiles' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request\\Http::getPost' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getRequest' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request\\Http::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request\\Http::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request\\Http::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request\\Http::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request\\Http::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request\\Http::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Request\\Simple::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Request\\Simple::__construct' => + array ( + 0 => 'void', + 'method' => 'string', + 'controller' => 'string', + 'action' => 'string', + 'params=' => 'string', + ), + 'Yaf\\Request\\Simple::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request\\Simple::getFiles' => + array ( + 0 => 'array', + 'name=' => 'mixed', + 'default=' => 'null', + ), + 'Yaf\\Request\\Simple::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request\\Simple::getPost' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getRequest' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request\\Simple::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request\\Simple::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request\\Simple::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request\\Simple::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request\\Simple::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request\\Simple::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Request_Abstract::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request_Abstract::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request_Abstract::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request_Abstract::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request_Abstract::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request_Abstract::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request_Abstract::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request_Abstract::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request_Abstract::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Response\\Cli::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__toString' => + array ( + 0 => 'string', + ), + 'Yaf\\Response\\Cli::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response\\Cli::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__toString' => + array ( + 0 => 'string', + ), + 'Yaf\\Response\\Http::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::clearHeaders' => + array ( + 0 => 'Yaf\\Response_Abstract|false', + 'name=' => 'string', + ), + 'Yaf\\Response\\Http::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response\\Http::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf\\Response\\Http::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::response' => + array ( + 0 => 'bool', + ), + 'Yaf\\Response\\Http::setAllHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'Yaf\\Response\\Http::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'Yaf\\Response\\Http::setRedirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Response_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__toString' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response_Abstract::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Route\\Map::__construct' => + array ( + 0 => 'void', + 'controller_prefer=' => 'bool', + 'delimiter=' => 'string', + ), + 'Yaf\\Route\\Map::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Map::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Regex::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'map=' => 'array|null', + 'verify=' => 'array|null', + 'reverse=' => 'string', + ), + 'Yaf\\Route\\Regex::addConfig' => + array ( + 0 => 'Yaf\\Router|bool', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Route\\Regex::addRoute' => + array ( + 0 => 'Yaf\\Router|bool', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route\\Regex::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Regex::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Route\\Regex::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Route\\Regex::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Route\\Regex::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Rewrite::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'verify=' => 'array|null', + 'reverse=' => 'string', + ), + 'Yaf\\Route\\Rewrite::addConfig' => + array ( + 0 => 'Yaf\\Router|bool', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Route\\Rewrite::addRoute' => + array ( + 0 => 'Yaf\\Router|bool', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route\\Rewrite::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Rewrite::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Route\\Rewrite::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Route\\Rewrite::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Route\\Rewrite::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Simple::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'controller_name' => 'string', + 'action_name' => 'string', + ), + 'Yaf\\Route\\Simple::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Simple::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Supervar::__construct' => + array ( + 0 => 'void', + 'supervar_name' => 'string', + ), + 'Yaf\\Route\\Supervar::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Supervar::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route_Interface::__construct' => + array ( + 0 => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route_Interface::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route_Interface::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route_Static::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route_Static::match' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Route_Static::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Router::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Router::addConfig' => + array ( + 0 => 'Yaf\\Router|false', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Router::addRoute' => + array ( + 0 => 'Yaf\\Router|false', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Router::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Router::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Router::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Router::route' => + array ( + 0 => 'Yaf\\Router|false', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Session::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::__get' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__isset' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Session::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Session::__unset' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Session::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Session::del' => + array ( + 0 => 'Yaf\\Session|false', + 'name' => 'string', + ), + 'Yaf\\Session::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Session::getInstance' => + array ( + 0 => 'Yaf\\Session', + ), + 'Yaf\\Session::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Session::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Session::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Session::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Session::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Session::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Session::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::set' => + array ( + 0 => 'Yaf\\Session|false', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Session::start' => + array ( + 0 => 'Yaf\\Session', + ), + 'Yaf\\Session::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\View\\Simple::__construct' => + array ( + 0 => 'void', + 'template_dir' => 'string', + 'options=' => 'array|null', + ), + 'Yaf\\View\\Simple::__get' => + array ( + 0 => 'mixed', + 'name=' => 'null', + ), + 'Yaf\\View\\Simple::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\View\\Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'mixed', + ), + 'Yaf\\View\\Simple::assign' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name' => 'array|string', + 'value=' => 'mixed', + ), + 'Yaf\\View\\Simple::assignRef' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name' => 'string', + '&value' => 'mixed', + ), + 'Yaf\\View\\Simple::clear' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name=' => 'string', + ), + 'Yaf\\View\\Simple::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::eval' => + array ( + 0 => 'bool|null', + 'tpl_str' => 'string', + 'vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf\\View\\Simple::render' => + array ( + 0 => 'null|string', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::setScriptPath' => + array ( + 0 => 'Yaf\\View\\Simple', + 'template_dir' => 'string', + ), + 'Yaf\\View_Interface::assign' => + array ( + 0 => 'bool', + 'name' => 'array|string', + 'value' => 'mixed', + ), + 'Yaf\\View_Interface::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View_Interface::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf\\View_Interface::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View_Interface::setScriptPath' => + array ( + 0 => 'void', + 'template_dir' => 'string', + ), + 'Yaf_Action_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Action_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + 'view' => 'Yaf_View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf_Action_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::execute' => + array ( + 0 => 'mixed', + 'arg=' => 'mixed', + '...args=' => 'mixed', + ), + 'Yaf_Action_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::getController' => + array ( + 0 => 'Yaf_Controller_Abstract', + ), + 'Yaf_Action_Abstract::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf_Action_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf_Action_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Action_Abstract::getResponse' => + array ( + 0 => 'Yaf_Response_Abstract', + ), + 'Yaf_Action_Abstract::getView' => + array ( + 0 => 'Yaf_View_Interface', + ), + 'Yaf_Action_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf_Action_Abstract::initView' => + array ( + 0 => 'Yaf_Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf_Action_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Action_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf_Application::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Application::__construct' => + array ( + 0 => 'void', + 'config' => 'mixed', + 'envrion=' => 'string', + ), + 'Yaf_Application::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Application::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Application::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Application::app' => + array ( + 0 => 'Yaf_Application|null', + ), + 'Yaf_Application::bootstrap' => + array ( + 0 => 'Yaf_Application', + 'bootstrap=' => 'Yaf_Bootstrap_Abstract', + ), + 'Yaf_Application::clearLastError' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Application::environ' => + array ( + 0 => 'string', + ), + 'Yaf_Application::execute' => + array ( + 0 => 'void', + 'entry' => 'callable', + '...args' => 'string', + ), + 'Yaf_Application::getAppDirectory' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Application::getConfig' => + array ( + 0 => 'Yaf_Config_Abstract', + ), + 'Yaf_Application::getDispatcher' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Application::getLastErrorMsg' => + array ( + 0 => 'string', + ), + 'Yaf_Application::getLastErrorNo' => + array ( + 0 => 'int', + ), + 'Yaf_Application::getModules' => + array ( + 0 => 'array', + ), + 'Yaf_Application::run' => + array ( + 0 => 'void', + ), + 'Yaf_Application::setAppDirectory' => + array ( + 0 => 'Yaf_Application', + 'directory' => 'string', + ), + 'Yaf_Config_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Abstract::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Abstract::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf_Config_Abstract::set' => + array ( + 0 => 'Yaf_Config_Abstract', + ), + 'Yaf_Config_Abstract::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Ini::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf_Config_Ini::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_Config_Ini::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Ini::count' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::current' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf_Config_Ini::key' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::next' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Ini::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::readonly' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::set' => + array ( + 0 => 'Yaf_Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Ini::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Ini::valid' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf_Config_Simple::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_Config_Simple::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Simple::count' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::current' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf_Config_Simple::key' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::next' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Simple::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::readonly' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::set' => + array ( + 0 => 'Yaf_Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Simple::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Simple::valid' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward' => + array ( + 0 => 'void', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward\'1' => + array ( + 0 => 'void', + 'controller' => 'string', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward\'2' => + array ( + 0 => 'void', + 'module' => 'string', + 'controller' => 'string', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::getInvokeArg' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Controller_Abstract::getInvokeArgs' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Controller_Abstract::getName' => + array ( + 0 => 'string', + ), + 'Yaf_Controller_Abstract::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Controller_Abstract::getResponse' => + array ( + 0 => 'Yaf_Response_Abstract', + ), + 'Yaf_Controller_Abstract::getView' => + array ( + 0 => 'Yaf_View_Interface', + ), + 'Yaf_Controller_Abstract::getViewpath' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::init' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::initView' => + array ( + 0 => 'void', + 'options=' => 'array', + ), + 'Yaf_Controller_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Controller_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::setViewpath' => + array ( + 0 => 'void', + 'view_directory' => 'string', + ), + 'Yaf_Dispatcher::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Dispatcher::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::autoRender' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::catchException' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::disableView' => + array ( + 0 => 'bool', + ), + 'Yaf_Dispatcher::dispatch' => + array ( + 0 => 'Yaf_Response_Abstract', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::enableView' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Dispatcher::flushInstantly' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::getApplication' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Dispatcher::getDefaultAction' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getDefaultController' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getDefaultModule' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getInstance' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Dispatcher::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::getRouter' => + array ( + 0 => 'Yaf_Router', + ), + 'Yaf_Dispatcher::initView' => + array ( + 0 => 'Yaf_View_Interface', + 'templates_dir' => 'string', + 'options=' => 'array', + ), + 'Yaf_Dispatcher::registerPlugin' => + array ( + 0 => 'Yaf_Dispatcher', + 'plugin' => 'Yaf_Plugin_Abstract', + ), + 'Yaf_Dispatcher::returnResponse' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag' => 'bool', + ), + 'Yaf_Dispatcher::setDefaultAction' => + array ( + 0 => 'Yaf_Dispatcher', + 'action' => 'string', + ), + 'Yaf_Dispatcher::setDefaultController' => + array ( + 0 => 'Yaf_Dispatcher', + 'controller' => 'string', + ), + 'Yaf_Dispatcher::setDefaultModule' => + array ( + 0 => 'Yaf_Dispatcher', + 'module' => 'string', + ), + 'Yaf_Dispatcher::setErrorHandler' => + array ( + 0 => 'Yaf_Dispatcher', + 'callback' => 'callable', + 'error_types' => 'int', + ), + 'Yaf_Dispatcher::setRequest' => + array ( + 0 => 'Yaf_Dispatcher', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::setView' => + array ( + 0 => 'Yaf_Dispatcher', + 'view' => 'Yaf_View_Interface', + ), + 'Yaf_Dispatcher::throwException' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Exception::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Exception::getPrevious' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Loader::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::autoload' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::clearLocalNamespace' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::getInstance' => + array ( + 0 => 'Yaf_Loader', + ), + 'Yaf_Loader::getLibraryPath' => + array ( + 0 => 'Yaf_Loader', + 'is_global=' => 'bool', + ), + 'Yaf_Loader::getLocalNamespace' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::getNamespacePath' => + array ( + 0 => 'string', + 'namespaces' => 'string', + ), + 'Yaf_Loader::import' => + array ( + 0 => 'bool', + ), + 'Yaf_Loader::isLocalName' => + array ( + 0 => 'bool', + ), + 'Yaf_Loader::registerLocalNamespace' => + array ( + 0 => 'void', + 'prefix' => 'mixed', + ), + 'Yaf_Loader::registerNamespace' => + array ( + 0 => 'bool', + 'namespaces' => 'array|string', + 'path=' => 'string', + ), + 'Yaf_Loader::setLibraryPath' => + array ( + 0 => 'Yaf_Loader', + 'directory' => 'string', + 'is_global=' => 'bool', + ), + 'Yaf_Plugin_Abstract::dispatchLoopShutdown' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::dispatchLoopStartup' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::postDispatch' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::preDispatch' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::preResponse' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::routerShutdown' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::routerStartup' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Registry::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Registry::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Registry::del' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Registry::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf_Registry::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf_Registry::set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Request_Abstract::clearParams' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Abstract::getActionName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getBaseUri' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getControllerName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getEnv' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::getException' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getLanguage' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getMethod' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getModuleName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getParam' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::getParams' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getRequestUri' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getServer' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::isCli' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isDispatched' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isGet' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isHead' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isOptions' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isPost' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isPut' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isRouted' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isXmlHttpRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::setActionName' => + array ( + 0 => 'void', + 'action' => 'string', + ), + 'Yaf_Request_Abstract::setBaseUri' => + array ( + 0 => 'bool', + 'uir' => 'string', + ), + 'Yaf_Request_Abstract::setControllerName' => + array ( + 0 => 'void', + 'controller' => 'string', + ), + 'Yaf_Request_Abstract::setDispatched' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::setModuleName' => + array ( + 0 => 'void', + 'module' => 'string', + ), + 'Yaf_Request_Abstract::setParam' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'Yaf_Request_Abstract::setRequestUri' => + array ( + 0 => 'void', + 'uir' => 'string', + ), + 'Yaf_Request_Abstract::setRouted' => + array ( + 0 => 'void', + 'flag=' => 'string', + ), + 'Yaf_Request_Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getCookie' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::getException' => + array ( + 0 => 'Yaf_Exception', + ), + 'Yaf_Request_Http::getFiles' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::getParams' => + array ( + 0 => 'array', + ), + 'Yaf_Request_Http::getPost' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getQuery' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getRaw' => + array ( + 0 => 'mixed', + ), + 'Yaf_Request_Http::getRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::setActionName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf_Request_Http::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf_Request_Http::setControllerName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf_Request_Http::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::setModuleName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf_Request_Http::setParam' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf_Request_Http::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf_Request_Http::setRouted' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + ), + 'Yaf_Request_Simple::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::get' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getCookie' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::getException' => + array ( + 0 => 'Yaf_Exception', + ), + 'Yaf_Request_Simple::getFiles' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::getParams' => + array ( + 0 => 'array', + ), + 'Yaf_Request_Simple::getPost' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getQuery' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isXmlHttpRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::setActionName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf_Request_Simple::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf_Request_Simple::setControllerName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf_Request_Simple::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::setModuleName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf_Request_Simple::setParam' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf_Request_Simple::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf_Request_Simple::setRouted' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + ), + 'Yaf_Response_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Abstract::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::clearHeaders' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::getHeader' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::response' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setAllHeaders' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::setHeader' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setRedirect' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Cli::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf_Response_Cli::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Http::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Http::clearHeaders' => + array ( + 0 => 'Yaf_Response_Abstract|false', + 'name=' => 'string', + ), + 'Yaf_Response_Http::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf_Response_Http::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf_Response_Http::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::response' => + array ( + 0 => 'bool', + ), + 'Yaf_Response_Http::setAllHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'Yaf_Response_Http::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'Yaf_Response_Http::setRedirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Route_Interface::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Route_Interface::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Interface::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Map::__construct' => + array ( + 0 => 'void', + 'controller_prefer=' => 'string', + 'delimiter=' => 'string', + ), + 'Yaf_Route_Map::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Map::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Regex::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'map=' => 'array', + 'verify=' => 'array', + 'reverse=' => 'string', + ), + 'Yaf_Route_Regex::addConfig' => + array ( + 0 => 'Yaf_Router|bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Route_Regex::addRoute' => + array ( + 0 => 'Yaf_Router|bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Route_Regex::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Regex::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Route_Regex::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Route_Regex::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf_Route_Regex::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Rewrite::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'verify=' => 'array', + ), + 'Yaf_Route_Rewrite::addConfig' => + array ( + 0 => 'Yaf_Router|bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Route_Rewrite::addRoute' => + array ( + 0 => 'Yaf_Router|bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Route_Rewrite::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Rewrite::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Route_Rewrite::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Route_Rewrite::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf_Route_Rewrite::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Simple::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'controller_name' => 'string', + 'action_name' => 'string', + ), + 'Yaf_Route_Simple::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Simple::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Static::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Static::match' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Yaf_Route_Static::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Supervar::__construct' => + array ( + 0 => 'void', + 'supervar_name' => 'string', + ), + 'Yaf_Route_Supervar::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Supervar::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Router::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Router::addConfig' => + array ( + 0 => 'bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Router::addRoute' => + array ( + 0 => 'bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Router::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Router::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Router::getRoutes' => + array ( + 0 => 'mixed', + ), + 'Yaf_Router::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Session::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Session::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Session::__get' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Session::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Session::__unset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Session::count' => + array ( + 0 => 'void', + ), + 'Yaf_Session::current' => + array ( + 0 => 'void', + ), + 'Yaf_Session::del' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf_Session::getInstance' => + array ( + 0 => 'void', + ), + 'Yaf_Session::has' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::key' => + array ( + 0 => 'void', + ), + 'Yaf_Session::next' => + array ( + 0 => 'void', + ), + 'Yaf_Session::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Session::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Session::set' => + array ( + 0 => 'Yaf_Session|bool', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Session::start' => + array ( + 0 => 'void', + ), + 'Yaf_Session::valid' => + array ( + 0 => 'void', + ), + 'Yaf_View_Interface::assign' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + ), + 'Yaf_View_Interface::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Interface::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf_View_Interface::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Interface::setScriptPath' => + array ( + 0 => 'void', + 'template_dir' => 'string', + ), + 'Yaf_View_Simple::__construct' => + array ( + 0 => 'void', + 'tempalte_dir' => 'string', + 'options=' => 'array', + ), + 'Yaf_View_Simple::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_View_Simple::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_View_Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_View_Simple::assign' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'mixed', + ), + 'Yaf_View_Simple::assignRef' => + array ( + 0 => 'bool', + 'name' => 'string', + '&rw_value' => 'mixed', + ), + 'Yaf_View_Simple::clear' => + array ( + 0 => 'bool', + 'name=' => 'string', + ), + 'Yaf_View_Simple::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::eval' => + array ( + 0 => 'string', + 'tpl_content' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf_View_Simple::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::setScriptPath' => + array ( + 0 => 'bool', + 'template_dir' => 'string', + ), + 'yaml_emit' => + array ( + 0 => 'string', + 'data' => 'mixed', + 'encoding=' => 'int', + 'linebreak=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_emit_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'data' => 'mixed', + 'encoding=' => 'int', + 'linebreak=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse' => + array ( + 0 => 'false|mixed', + 'input' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse_file' => + array ( + 0 => 'false|mixed', + 'filename' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse_url' => + array ( + 0 => 'false|mixed', + 'url' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'Yar_Client::__call' => + array ( + 0 => 'void', + 'method' => 'string', + 'parameters' => 'array', + ), + 'Yar_Client::__construct' => + array ( + 0 => 'void', + 'url' => 'string', + ), + 'Yar_Client::setOpt' => + array ( + 0 => 'Yar_Client|false', + 'name' => 'int', + 'value' => 'mixed', + ), + 'Yar_Client_Exception::__clone' => + array ( + 0 => 'void', + ), + 'Yar_Client_Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'Yar_Client_Exception::__toString' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::__wakeup' => + array ( + 0 => 'void', + ), + 'Yar_Client_Exception::getCode' => + array ( + 0 => 'int', + ), + 'Yar_Client_Exception::getFile' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getLine' => + array ( + 0 => 'int', + ), + 'Yar_Client_Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'Yar_Client_Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Yar_Client_Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getType' => + array ( + 0 => 'string', + ), + 'Yar_Concurrent_Client::call' => + array ( + 0 => 'int', + 'uri' => 'string', + 'method' => 'string', + 'parameters' => 'array', + 'callback=' => 'callable', + ), + 'Yar_Concurrent_Client::loop' => + array ( + 0 => 'bool', + 'callback=' => 'callable', + 'error_callback=' => 'callable', + ), + 'Yar_Concurrent_Client::reset' => + array ( + 0 => 'bool', + ), + 'Yar_Server::__construct' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'Yar_Server::handle' => + array ( + 0 => 'bool', + ), + 'Yar_Server_Exception::__clone' => + array ( + 0 => 'void', + ), + 'Yar_Server_Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'Yar_Server_Exception::__toString' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::__wakeup' => + array ( + 0 => 'void', + ), + 'Yar_Server_Exception::getCode' => + array ( + 0 => 'int', + ), + 'Yar_Server_Exception::getFile' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getLine' => + array ( + 0 => 'int', + ), + 'Yar_Server_Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'Yar_Server_Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Yar_Server_Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getType' => + array ( + 0 => 'string', + ), + 'yaz_addinfo' => + array ( + 0 => 'string', + 'id' => 'resource', + ), + 'yaz_ccl_conf' => + array ( + 0 => 'void', + 'id' => 'resource', + 'config' => 'array', + ), + 'yaz_ccl_parse' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'query' => 'string', + '&w_result' => 'array', + ), + 'yaz_close' => + array ( + 0 => 'bool', + 'id' => 'resource', + ), + 'yaz_connect' => + array ( + 0 => 'mixed', + 'zurl' => 'string', + 'options=' => 'mixed', + ), + 'yaz_database' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'databases' => 'string', + ), + 'yaz_element' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'elementset' => 'string', + ), + 'yaz_errno' => + array ( + 0 => 'int', + 'id' => 'resource', + ), + 'yaz_error' => + array ( + 0 => 'string', + 'id' => 'resource', + ), + 'yaz_es' => + array ( + 0 => 'void', + 'id' => 'resource', + 'type' => 'string', + 'args' => 'array', + ), + 'yaz_es_result' => + array ( + 0 => 'array', + 'id' => 'resource', + ), + 'yaz_get_option' => + array ( + 0 => 'string', + 'id' => 'resource', + 'name' => 'string', + ), + 'yaz_hits' => + array ( + 0 => 'int', + 'id' => 'resource', + 'searchresult=' => 'array', + ), + 'yaz_itemorder' => + array ( + 0 => 'void', + 'id' => 'resource', + 'args' => 'array', + ), + 'yaz_present' => + array ( + 0 => 'bool', + 'id' => 'resource', + ), + 'yaz_range' => + array ( + 0 => 'void', + 'id' => 'resource', + 'start' => 'int', + 'number' => 'int', + ), + 'yaz_record' => + array ( + 0 => 'string', + 'id' => 'resource', + 'pos' => 'int', + 'type' => 'string', + ), + 'yaz_scan' => + array ( + 0 => 'void', + 'id' => 'resource', + 'type' => 'string', + 'startterm' => 'string', + 'flags=' => 'array', + ), + 'yaz_scan_result' => + array ( + 0 => 'array', + 'id' => 'resource', + 'result=' => 'array', + ), + 'yaz_schema' => + array ( + 0 => 'void', + 'id' => 'resource', + 'schema' => 'string', + ), + 'yaz_search' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'type' => 'string', + 'query' => 'string', + ), + 'yaz_set_option' => + array ( + 0 => 'mixed', + 'id' => 'mixed', + 'name' => 'string', + 'value' => 'string', + 'options' => 'array', + ), + 'yaz_sort' => + array ( + 0 => 'void', + 'id' => 'resource', + 'criteria' => 'string', + ), + 'yaz_syntax' => + array ( + 0 => 'void', + 'id' => 'resource', + 'syntax' => 'string', + ), + 'yaz_wait' => + array ( + 0 => 'mixed', + '&rw_options=' => 'array', + ), + 'yp_all' => + array ( + 0 => 'void', + 'domain' => 'string', + 'map' => 'string', + 'callback' => 'string', + ), + 'yp_cat' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_err_string' => + array ( + 0 => 'string', + 'errorcode' => 'int', + ), + 'yp_errno' => + array ( + 0 => 'int', + ), + 'yp_first' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_get_default_domain' => + array ( + 0 => 'string', + ), + 'yp_master' => + array ( + 0 => 'string', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_match' => + array ( + 0 => 'string', + 'domain' => 'string', + 'map' => 'string', + 'key' => 'string', + ), + 'yp_next' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + 'key' => 'string', + ), + 'yp_order' => + array ( + 0 => 'int', + 'domain' => 'string', + 'map' => 'string', + ), + 'zem_get_extension_info_by_id' => + array ( + 0 => 'mixed', + ), + 'zem_get_extension_info_by_name' => + array ( + 0 => 'mixed', + ), + 'zem_get_extensions_info' => + array ( + 0 => 'mixed', + ), + 'zem_get_license_info' => + array ( + 0 => 'mixed', + ), + 'zend_current_obfuscation_level' => + array ( + 0 => 'int', + ), + 'zend_disk_cache_clear' => + array ( + 0 => 'bool', + 'namespace=' => 'mixed|string', + ), + 'zend_disk_cache_delete' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_disk_cache_fetch' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_disk_cache_store' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int|mixed', + ), + 'zend_get_id' => + array ( + 0 => 'array', + 'all_ids=' => 'all_ids|false', + ), + 'zend_is_configuration_changed' => + array ( + 0 => 'mixed', + ), + 'zend_loader_current_file' => + array ( + 0 => 'string', + ), + 'zend_loader_enabled' => + array ( + 0 => 'bool', + ), + 'zend_loader_file_encoded' => + array ( + 0 => 'bool', + ), + 'zend_loader_file_licensed' => + array ( + 0 => 'array', + ), + 'zend_loader_install_license' => + array ( + 0 => 'bool', + 'license_file' => 'string', + 'override' => 'bool', + ), + 'zend_logo_guid' => + array ( + 0 => 'string', + ), + 'zend_obfuscate_class_name' => + array ( + 0 => 'string', + 'class_name' => 'string', + ), + 'zend_obfuscate_function_name' => + array ( + 0 => 'string', + 'function_name' => 'string', + ), + 'zend_optimizer_version' => + array ( + 0 => 'string', + ), + 'zend_runtime_obfuscate' => + array ( + 0 => 'void', + ), + 'zend_send_buffer' => + array ( + 0 => 'false|null', + 'buffer' => 'string', + 'mime_type=' => 'string', + 'custom_headers=' => 'string', + ), + 'zend_send_file' => + array ( + 0 => 'false|null', + 'filename' => 'string', + 'mime_type=' => 'string', + 'custom_headers=' => 'string', + ), + 'zend_set_configuration_changed' => + array ( + 0 => 'mixed', + ), + 'zend_shm_cache_clear' => + array ( + 0 => 'bool', + 'namespace=' => 'mixed|string', + ), + 'zend_shm_cache_delete' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_shm_cache_fetch' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_shm_cache_store' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int|mixed', + ), + 'zend_thread_id' => + array ( + 0 => 'int', + ), + 'zend_version' => + array ( + 0 => 'string', + ), + 'ZendAPI_Job::addJobToQueue' => + array ( + 0 => 'int', + 'jobqueue_url' => 'string', + 'password' => 'string', + ), + 'ZendAPI_Job::getApplicationID' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getEndTime' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getGlobalVariables' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getHost' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getID' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getInterval' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobDependency' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobName' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobPriority' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobStatus' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getLastPerformedStatus' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getOutput' => + array ( + 0 => 'An', + ), + 'ZendAPI_Job::getPreserved' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getProperties' => + array ( + 0 => 'array', + ), + 'ZendAPI_Job::getScheduledTime' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getScript' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getTimeToNextRepeat' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getUserVariables' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::setApplicationID' => + array ( + 0 => 'mixed', + 'app_id' => 'mixed', + ), + 'ZendAPI_Job::setGlobalVariables' => + array ( + 0 => 'mixed', + 'vars' => 'mixed', + ), + 'ZendAPI_Job::setJobDependency' => + array ( + 0 => 'mixed', + 'job_id' => 'mixed', + ), + 'ZendAPI_Job::setJobName' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + ), + 'ZendAPI_Job::setJobPriority' => + array ( + 0 => 'mixed', + 'priority' => 'int', + ), + 'ZendAPI_Job::setPreserved' => + array ( + 0 => 'mixed', + 'preserved' => 'mixed', + ), + 'ZendAPI_Job::setRecurrenceData' => + array ( + 0 => 'mixed', + 'interval' => 'mixed', + 'end_time=' => 'mixed', + ), + 'ZendAPI_Job::setScheduledTime' => + array ( + 0 => 'mixed', + 'timestamp' => 'mixed', + ), + 'ZendAPI_Job::setScript' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + ), + 'ZendAPI_Job::setUserVariables' => + array ( + 0 => 'mixed', + 'vars' => 'mixed', + ), + 'ZendAPI_Job::ZendAPI_Job' => + array ( + 0 => 'Job', + 'script' => 'script', + ), + 'ZendAPI_Queue::addJob' => + array ( + 0 => 'int', + '&job' => 'Job', + ), + 'ZendAPI_Queue::getAllApplicationIDs' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::getAllhosts' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::getHistoricJobs' => + array ( + 0 => 'array', + 'status' => 'int', + 'start_time' => 'mixed', + 'end_time' => 'mixed', + 'index' => 'int', + 'count' => 'int', + '&total' => 'int', + ), + 'ZendAPI_Queue::getJob' => + array ( + 0 => 'Job', + 'job_id' => 'int', + ), + 'ZendAPI_Queue::getJobsInQueue' => + array ( + 0 => 'array', + 'filter_options=' => 'array', + 'max_jobs=' => 'int', + 'with_globals_and_output=' => 'bool', + ), + 'ZendAPI_Queue::getLastError' => + array ( + 0 => 'string', + ), + 'ZendAPI_Queue::getNumOfJobsInQueue' => + array ( + 0 => 'int', + 'filter_options=' => 'array', + ), + 'ZendAPI_Queue::getStatistics' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::isScriptExists' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'ZendAPI_Queue::isSuspend' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::login' => + array ( + 0 => 'bool', + 'password' => 'string', + 'application_id=' => 'int', + ), + 'ZendAPI_Queue::removeJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::requeueJob' => + array ( + 0 => 'bool', + 'job' => 'Job', + ), + 'ZendAPI_Queue::resumeJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::resumeQueue' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::setMaxHistoryTime' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::suspendJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::suspendQueue' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::updateJob' => + array ( + 0 => 'int', + '&job' => 'Job', + ), + 'ZendAPI_Queue::zendapi_queue' => + array ( + 0 => 'ZendAPI_Queue', + 'queue_url' => 'string', + ), + 'zip_close' => + array ( + 0 => 'void', + 'zip' => 'resource', + ), + 'zip_entry_close' => + array ( + 0 => 'bool', + 'zip_entry' => 'resource', + ), + 'zip_entry_compressedsize' => + array ( + 0 => 'int', + 'zip_entry' => 'resource', + ), + 'zip_entry_compressionmethod' => + array ( + 0 => 'string', + 'zip_entry' => 'resource', + ), + 'zip_entry_filesize' => + array ( + 0 => 'int', + 'zip_entry' => 'resource', + ), + 'zip_entry_name' => + array ( + 0 => 'false|string', + 'zip_entry' => 'resource', + ), + 'zip_entry_open' => + array ( + 0 => 'bool', + 'zip_dp' => 'resource', + 'zip_entry' => 'resource', + 'mode=' => 'string', + ), + 'zip_entry_read' => + array ( + 0 => 'false|string', + 'zip_entry' => 'resource', + 'len=' => 'int', + ), + 'zip_open' => + array ( + 0 => 'false|int|resource', + 'filename' => 'string', + ), + 'zip_read' => + array ( + 0 => 'resource', + 'zip' => 'resource', + ), + 'ZipArchive::addEmptyDir' => + array ( + 0 => 'bool', + 'dirname' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::addFile' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'entryname=' => 'string', + 'start=' => 'int', + 'length=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::addFromString' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::addGlob' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'flags=' => 'int', + 'options=' => 'array', + ), + 'ZipArchive::addPattern' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'path=' => 'string', + 'options=' => 'array', + ), + 'ZipArchive::clearError' => + array ( + 0 => 'void', + ), + 'ZipArchive::close' => + array ( + 0 => 'bool', + ), + 'ZipArchive::count' => + array ( + 0 => 'int', + ), + 'ZipArchive::deleteIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ZipArchive::deleteName' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ZipArchive::extractTo' => + array ( + 0 => 'bool', + 'pathto' => 'string', + 'files=' => 'array|null|string', + ), + 'ZipArchive::getArchiveComment' => + array ( + 0 => 'false|string', + 'flags=' => 'int', + ), + 'ZipArchive::getCommentIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getCommentName' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::getExternalAttributesIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + '&w_opsys' => 'int', + '&w_attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getExternalAttributesName' => + array ( + 0 => 'bool', + 'name' => 'string', + '&w_opsys' => 'int', + '&w_attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getFromIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'len=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getFromName' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'len=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getNameIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getStatusString' => + array ( + 0 => 'string', + ), + 'ZipArchive::getStream' => + array ( + 0 => 'false|resource', + 'name' => 'string', + ), + 'ZipArchive::getStreamIndex' => + array ( + 0 => 'false|resource', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getStreamName' => + array ( + 0 => 'false|resource', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::isCompressionMethodSupported' => + array ( + 0 => 'bool', + 'method' => 'int', + 'enc=' => 'bool', + ), + 'ZipArchive::isEncryptionMethodSupported' => + array ( + 0 => 'bool', + 'method' => 'int', + 'enc=' => 'bool', + ), + 'ZipArchive::locateName' => + array ( + 0 => 'false|int', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::open' => + array ( + 0 => 'bool|int', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::registerCancelCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'ZipArchive::registerProgressCallback' => + array ( + 0 => 'bool', + 'rate' => 'float', + 'callback' => 'callable', + ), + 'ZipArchive::renameIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'new_name' => 'string', + ), + 'ZipArchive::renameName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'new_name' => 'string', + ), + 'ZipArchive::replaceFile' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'index' => 'int', + 'start=' => 'int', + 'length=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setArchiveComment' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'ZipArchive::setCommentIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'comment' => 'string', + ), + 'ZipArchive::setCommentName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'comment' => 'string', + ), + 'ZipArchive::setCompressionIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'compflags=' => 'int', + ), + 'ZipArchive::setCompressionName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'compflags=' => 'int', + ), + 'ZipArchive::setEncryptionIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'password=' => 'null|string', + ), + 'ZipArchive::setEncryptionName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'password=' => 'null|string', + ), + 'ZipArchive::setExternalAttributesIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'opsys' => 'int', + 'attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setExternalAttributesName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'opsys' => 'int', + 'attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setMtimeIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'timestamp' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setMtimeName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'timestamp' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setPassword' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'ZipArchive::statIndex' => + array ( + 0 => 'array|false', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::statName' => + array ( + 0 => 'array|false', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::unchangeAll' => + array ( + 0 => 'bool', + ), + 'ZipArchive::unchangeArchive' => + array ( + 0 => 'bool', + ), + 'ZipArchive::unchangeIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ZipArchive::unchangeName' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'zlib_decode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'zlib_encode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'encoding' => 'int', + 'level=' => 'int', + ), + 'zlib_get_coding_type' => + array ( + 0 => 'false|string', + ), + 'ZMQ::__construct' => + array ( + 0 => 'void', + ), + 'ZMQContext::__construct' => + array ( + 0 => 'void', + 'io_threads=' => 'int', + 'is_persistent=' => 'bool', + ), + 'ZMQContext::getOpt' => + array ( + 0 => 'int|string', + 'key' => 'string', + ), + 'ZMQContext::getSocket' => + array ( + 0 => 'ZMQSocket', + 'type' => 'int', + 'persistent_id=' => 'string', + 'on_new_socket=' => 'callable', + ), + 'ZMQContext::isPersistent' => + array ( + 0 => 'bool', + ), + 'ZMQContext::setOpt' => + array ( + 0 => 'ZMQContext', + 'key' => 'int', + 'value' => 'mixed', + ), + 'ZMQDevice::__construct' => + array ( + 0 => 'void', + 'frontend' => 'ZMQSocket', + 'backend' => 'ZMQSocket', + 'listener=' => 'ZMQSocket', + ), + 'ZMQDevice::getIdleTimeout' => + array ( + 0 => 'ZMQDevice', + ), + 'ZMQDevice::getTimerTimeout' => + array ( + 0 => 'ZMQDevice', + ), + 'ZMQDevice::run' => + array ( + 0 => 'void', + ), + 'ZMQDevice::setIdleCallback' => + array ( + 0 => 'ZMQDevice', + 'cb_func' => 'callable', + 'timeout' => 'int', + 'user_data=' => 'mixed', + ), + 'ZMQDevice::setIdleTimeout' => + array ( + 0 => 'ZMQDevice', + 'timeout' => 'int', + ), + 'ZMQDevice::setTimerCallback' => + array ( + 0 => 'ZMQDevice', + 'cb_func' => 'callable', + 'timeout' => 'int', + 'user_data=' => 'mixed', + ), + 'ZMQDevice::setTimerTimeout' => + array ( + 0 => 'ZMQDevice', + 'timeout' => 'int', + ), + 'ZMQPoll::add' => + array ( + 0 => 'string', + 'entry' => 'mixed', + 'type' => 'int', + ), + 'ZMQPoll::clear' => + array ( + 0 => 'ZMQPoll', + ), + 'ZMQPoll::count' => + array ( + 0 => 'int', + ), + 'ZMQPoll::getLastErrors' => + array ( + 0 => 'array', + ), + 'ZMQPoll::poll' => + array ( + 0 => 'int', + '&w_readable' => 'array', + '&w_writable' => 'array', + 'timeout=' => 'int', + ), + 'ZMQPoll::remove' => + array ( + 0 => 'bool', + 'item' => 'mixed', + ), + 'ZMQSocket::__construct' => + array ( + 0 => 'void', + 'context' => 'ZMQContext', + 'type' => 'int', + 'persistent_id=' => 'string', + 'on_new_socket=' => 'callable', + ), + 'ZMQSocket::bind' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + 'force=' => 'bool', + ), + 'ZMQSocket::connect' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + 'force=' => 'bool', + ), + 'ZMQSocket::disconnect' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + ), + 'ZMQSocket::getEndpoints' => + array ( + 0 => 'array', + ), + 'ZMQSocket::getPersistentId' => + array ( + 0 => 'null|string', + ), + 'ZMQSocket::getSocketType' => + array ( + 0 => 'int', + ), + 'ZMQSocket::getSockOpt' => + array ( + 0 => 'int|string', + 'key' => 'string', + ), + 'ZMQSocket::isPersistent' => + array ( + 0 => 'bool', + ), + 'ZMQSocket::recv' => + array ( + 0 => 'string', + 'mode=' => 'int', + ), + 'ZMQSocket::recvMulti' => + array ( + 0 => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::send' => + array ( + 0 => 'ZMQSocket', + 'message' => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::send\'1' => + array ( + 0 => 'ZMQSocket', + 'message' => 'string', + 'mode=' => 'int', + ), + 'ZMQSocket::sendmulti' => + array ( + 0 => 'ZMQSocket', + 'message' => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::setSockOpt' => + array ( + 0 => 'ZMQSocket', + 'key' => 'int', + 'value' => 'mixed', + ), + 'ZMQSocket::unbind' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + ), + 'Zookeeper::addAuth' => + array ( + 0 => 'bool', + 'scheme' => 'string', + 'cert' => 'string', + 'completion_cb=' => 'callable', + ), + 'Zookeeper::close' => + array ( + 0 => 'void', + ), + 'Zookeeper::connect' => + array ( + 0 => 'void', + 'host' => 'string', + 'watcher_cb=' => 'callable', + 'recv_timeout=' => 'int', + ), + 'Zookeeper::create' => + array ( + 0 => 'string', + 'path' => 'string', + 'value' => 'string', + 'acls' => 'array', + 'flags=' => 'int', + ), + 'Zookeeper::delete' => + array ( + 0 => 'bool', + 'path' => 'string', + 'version=' => 'int', + ), + 'Zookeeper::exists' => + array ( + 0 => 'bool', + 'path' => 'string', + 'watcher_cb=' => 'callable', + ), + 'Zookeeper::get' => + array ( + 0 => 'string', + 'path' => 'string', + 'watcher_cb=' => 'callable', + 'stat=' => 'array', + 'max_size=' => 'int', + ), + 'Zookeeper::getAcl' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'Zookeeper::getChildren' => + array ( + 0 => 'array|false', + 'path' => 'string', + 'watcher_cb=' => 'callable', + ), + 'Zookeeper::getClientId' => + array ( + 0 => 'int', + ), + 'Zookeeper::getConfig' => + array ( + 0 => 'ZookeeperConfig', + ), + 'Zookeeper::getRecvTimeout' => + array ( + 0 => 'int', + ), + 'Zookeeper::getState' => + array ( + 0 => 'int', + ), + 'Zookeeper::isRecoverable' => + array ( + 0 => 'bool', + ), + 'Zookeeper::set' => + array ( + 0 => 'bool', + 'path' => 'string', + 'value' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'Zookeeper::setAcl' => + array ( + 0 => 'bool', + 'path' => 'string', + 'version' => 'int', + 'acl' => 'array', + ), + 'Zookeeper::setDebugLevel' => + array ( + 0 => 'bool', + 'logLevel' => 'int', + ), + 'Zookeeper::setDeterministicConnOrder' => + array ( + 0 => 'bool', + 'yesOrNo' => 'bool', + ), + 'Zookeeper::setLogStream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'Zookeeper::setWatcher' => + array ( + 0 => 'bool', + 'watcher_cb' => 'callable', + ), + 'zookeeper_dispatch' => + array ( + 0 => 'void', + ), + 'ZookeeperConfig::add' => + array ( + 0 => 'void', + 'members' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'ZookeeperConfig::get' => + array ( + 0 => 'string', + 'watcher_cb=' => 'callable', + 'stat=' => 'array', + ), + 'ZookeeperConfig::remove' => + array ( + 0 => 'void', + 'id_list' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'ZookeeperConfig::set' => + array ( + 0 => 'void', + 'members' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_71_delta.php b/dictionaries/CallMap_71_delta.php index 8f11f5996c2..0e55325f1cc 100644 --- a/dictionaries/CallMap_71_delta.php +++ b/dictionaries/CallMap_71_delta.php @@ -1,80 +1,251 @@ [ - 'Closure::fromCallable' => ['Closure', 'callback'=>'callable'], - 'curl_multi_errno' => ['int|false', 'mh'=>'resource'], - 'curl_share_errno' => ['int|false', 'sh'=>'resource'], - 'curl_share_strerror' => ['?string', 'error_code'=>'int'], - 'getenv\'1' => ['array'], - 'hash_hkdf' => ['non-empty-string|false', 'algo'=>'string', 'key'=>'string', 'length='=>'int', 'info='=>'string', 'salt='=>'string'], - 'is_iterable' => ['bool', 'value'=>'mixed'], - 'openssl_get_curve_names' => ['list'], - 'pcntl_async_signals' => ['bool', 'enable='=>'bool'], - 'pcntl_signal_get_handler' => ['int|string', 'signal'=>'int'], - 'sapi_windows_cp_conv' => ['?string', 'in_codepage'=>'int|string', 'out_codepage'=>'int|string', 'subject'=>'string'], - 'sapi_windows_cp_get' => ['int', 'kind='=>'string'], - 'sapi_windows_cp_is_utf8' => ['bool'], - 'sapi_windows_cp_set' => ['bool', 'codepage'=>'int'], - 'session_create_id' => ['string|false', 'prefix='=>'string'], - 'session_gc' => ['int|false'], - ], - 'changed' => [ - 'DateTimeZone::listIdentifiers' => [ - 'old' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'], - 'new' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'], - ], - 'IntlDateFormatter::format' => [ - 'old' => ['string|false', 'value'=>'IntlCalendar|DateTime|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], - 'new' => ['string|false', 'value'=>'IntlCalendar|DateTimeInterface|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], - ], - 'SessionHandler::gc' => [ - 'old' => ['bool', 'max_lifetime'=>'int'], - 'new' => ['int|false', 'max_lifetime'=>'int'], - ], - 'SQLite3::createFunction' => [ - 'old' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int'], - 'new' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int', 'flags='=>'int'], - ], - 'get_headers' => [ - 'old' => ['array|false', 'url'=>'string', 'associative='=>'int'], - 'new' => ['array|false', 'url'=>'string', 'associative='=>'int', 'context='=>'?resource'], - ], - 'getopt' => [ - 'old' => ['array>|false', 'short_options'=>'string', 'long_options='=>'array'], - 'new' => ['array>|false', 'short_options'=>'string', 'long_options='=>'array', '&w_rest_index='=>'int'], - ], - 'pg_fetch_all' => [ - 'old' => ['array', 'result'=>'resource'], - 'new' => ['array', 'result'=>'resource', 'mode='=>'int'], - ], - 'pg_select' => [ - 'old' => ['string|array|false', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int'], - 'new' => ['string|array|false', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int', 'mode='=>'int'], - ], - 'timezone_identifiers_list' => [ - 'old' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'], - 'new' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'?string'], - ], - 'unpack' => [ - 'old' => ['array', 'format'=>'string', 'string'=>'string'], - 'new' => ['array|false', 'format'=>'string', 'string'=>'string', 'offset='=>'int'], - ], - ], - 'removed' => [ - ], -]; +return array ( + 'added' => + array ( + 'Closure::fromCallable' => + array ( + 0 => 'Closure', + 'callback' => 'callable', + ), + 'curl_multi_errno' => + array ( + 0 => 'false|int', + 'mh' => 'resource', + ), + 'curl_share_errno' => + array ( + 0 => 'false|int', + 'sh' => 'resource', + ), + 'curl_share_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'getenv\'1' => + array ( + 0 => 'array', + ), + 'hash_hkdf' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'key' => 'string', + 'length=' => 'int', + 'info=' => 'string', + 'salt=' => 'string', + ), + 'is_iterable' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'openssl_get_curve_names' => + array ( + 0 => 'list', + ), + 'pcntl_async_signals' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'pcntl_signal_get_handler' => + array ( + 0 => 'int|string', + 'signal' => 'int', + ), + 'sapi_windows_cp_conv' => + array ( + 0 => 'null|string', + 'in_codepage' => 'int|string', + 'out_codepage' => 'int|string', + 'subject' => 'string', + ), + 'sapi_windows_cp_get' => + array ( + 0 => 'int', + 'kind=' => 'string', + ), + 'sapi_windows_cp_is_utf8' => + array ( + 0 => 'bool', + ), + 'sapi_windows_cp_set' => + array ( + 0 => 'bool', + 'codepage' => 'int', + ), + 'session_create_id' => + array ( + 0 => 'false|string', + 'prefix=' => 'string', + ), + 'session_gc' => + array ( + 0 => 'false|int', + ), + ), + 'changed' => + array ( + 'DateTimeZone::listIdentifiers' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'string', + ), + 'new' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + ), + 'IntlDateFormatter::format' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'value' => 'DateTime|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + 'new' => + array ( + 0 => 'false|string', + 'value' => 'DateTimeInterface|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + ), + 'SessionHandler::gc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'max_lifetime' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'max_lifetime' => 'int', + ), + ), + 'SQLite3::createFunction' => + array ( + 'old' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + 'argCount=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + 'argCount=' => 'int', + 'flags=' => 'int', + ), + ), + 'get_headers' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'int', + 'context=' => 'null|resource', + ), + ), + 'getopt' => + array ( + 'old' => + array ( + 0 => 'array|string>|false', + 'short_options' => 'string', + 'long_options=' => 'array', + ), + 'new' => + array ( + 0 => 'array|string>|false', + 'short_options' => 'string', + 'long_options=' => 'array', + '&w_rest_index=' => 'int', + ), + ), + 'pg_fetch_all' => + array ( + 'old' => + array ( + 0 => 'array>', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'array>', + 'result' => 'resource', + 'mode=' => 'int', + ), + ), + 'pg_select' => + array ( + 'old' => + array ( + 0 => 'array|false|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + 'mode=' => 'int', + ), + ), + 'timezone_identifiers_list' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'string', + ), + 'new' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + ), + 'unpack' => + array ( + 'old' => + array ( + 0 => 'array', + 'format' => 'string', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'format' => 'string', + 'string' => 'string', + 'offset=' => 'int', + ), + ), + ), + 'removed' => + array ( + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_72_delta.php b/dictionaries/CallMap_72_delta.php index aedc76cd60b..dd338d01530 100644 --- a/dictionaries/CallMap_72_delta.php +++ b/dictionaries/CallMap_72_delta.php @@ -1,255 +1,1272 @@ [ - 'DOMNodeList::count' => ['int'], - 'ReflectionClass::isIterable' => ['bool'], - 'ZipArchive::count' => ['int'], - 'ZipArchive::setEncryptionIndex' => ['bool', 'index'=>'int', 'method'=>'int', 'password='=>'string'], - 'ZipArchive::setEncryptionName' => ['bool', 'name'=>'string', 'method'=>'int', 'password='=>'string'], - 'ftp_append' => ['bool', 'ftp'=>'resource', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int'], - 'hash_hmac_algos' => ['list'], - 'imagebmp' => ['bool', 'image'=>'resource', 'file='=>'resource|string|null', 'compressed='=>'int'], - 'imagecreatefrombmp' => ['resource|false', 'filename'=>'string'], - 'imageopenpolygon' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points'=>'int', 'color'=>'int'], - 'imageresolution' => ['array|bool', 'image'=>'resource', 'resolution_x='=>'int', 'resolution_y='=>'int'], - 'imagesetclip' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int'], - 'ldap_exop' => ['resource|bool', 'ldap'=>'resource', 'request_oid'=>'string', 'request_data='=>'?string', 'controls='=>'array|null', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - 'ldap_exop_passwd' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string'], - 'ldap_exop_refresh' => ['int|false', 'ldap'=>'resource', 'dn'=>'string', 'ttl'=>'int'], - 'ldap_exop_whoami' => ['string|false', 'ldap'=>'resource'], - 'ldap_parse_exop' => ['bool', 'ldap'=>'resource', 'result'=>'resource', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - 'mb_chr' => ['non-empty-string|false', 'codepoint'=>'int', 'encoding='=>'string'], - 'mb_convert_encoding\'1' => ['array', 'string'=>'array', 'to_encoding'=>'string', 'from_encoding='=>'mixed'], - 'mb_ord' => ['int|false', 'string'=>'string', 'encoding='=>'string'], - 'mb_scrub' => ['string', 'string'=>'string', 'encoding='=>'string'], - 'oci_register_taf_callback' => ['bool', 'connection'=>'resource', 'callback='=>'callable'], - 'oci_unregister_taf_callback' => ['bool', 'connection'=>'resource'], - 'sapi_windows_vt100_support' => ['bool', 'stream'=>'resource', 'enable='=>'bool'], - 'socket_addrinfo_bind' => ['?resource', 'addrinfo'=>'resource'], - 'socket_addrinfo_connect' => ['resource', 'addrinfo'=>'resource'], - 'socket_addrinfo_explain' => ['array', 'addrinfo'=>'resource'], - 'socket_addrinfo_lookup' => ['resource[]', 'host'=>'string', 'service='=>'string', 'hints='=>'array'], - 'sodium_add' => ['void', '&rw_string1'=>'string', 'string2'=>'string'], - 'sodium_base642bin' => ['string', 'string'=>'string', 'id'=>'int', 'ignore='=>'string'], - 'sodium_bin2base64' => ['string', 'string'=>'string', 'id'=>'int'], - 'sodium_bin2hex' => ['string', 'string'=>'string'], - 'sodium_compare' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'sodium_crypto_aead_aes256gcm_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_aes256gcm_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_aes256gcm_is_available' => ['bool'], - 'sodium_crypto_aead_aes256gcm_keygen' => ['non-empty-string'], - 'sodium_crypto_aead_chacha20poly1305_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_chacha20poly1305_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_chacha20poly1305_ietf_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_chacha20poly1305_ietf_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_chacha20poly1305_ietf_keygen' => ['non-empty-string'], - 'sodium_crypto_aead_chacha20poly1305_keygen' => ['non-empty-string'], - 'sodium_crypto_aead_xchacha20poly1305_ietf_decrypt' => ['string|false', 'ciphertext'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_xchacha20poly1305_ietf_encrypt' => ['string', 'message'=>'string', 'additional_data'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_aead_xchacha20poly1305_ietf_keygen' => ['non-empty-string'], - 'sodium_crypto_auth' => ['string', 'message'=>'string', 'key'=>'string'], - 'sodium_crypto_auth_keygen' => ['non-empty-string'], - 'sodium_crypto_auth_verify' => ['bool', 'mac'=>'string', 'message'=>'string', 'key'=>'string'], - 'sodium_crypto_box' => ['string', 'message'=>'string', 'nonce'=>'string', 'key_pair'=>'string'], - 'sodium_crypto_box_keypair' => ['string'], - 'sodium_crypto_box_keypair_from_secretkey_and_publickey' => ['string', 'secret_key'=>'string', 'public_key'=>'string'], - 'sodium_crypto_box_open' => ['string|false', 'ciphertext'=>'string', 'nonce'=>'string', 'key_pair'=>'string'], - 'sodium_crypto_box_publickey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_box_publickey_from_secretkey' => ['string', 'secret_key'=>'string'], - 'sodium_crypto_box_seal' => ['string', 'message'=>'string', 'public_key'=>'string'], - 'sodium_crypto_box_seal_open' => ['string|false', 'ciphertext'=>'string', 'key_pair'=>'string'], - 'sodium_crypto_box_secretkey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_box_seed_keypair' => ['string', 'seed'=>'string'], - 'sodium_crypto_generichash' => ['string', 'message'=>'string', 'key='=>'string', 'length='=>'int'], - 'sodium_crypto_generichash_final' => ['string', '&state'=>'string', 'length='=>'int'], - 'sodium_crypto_generichash_init' => ['string', 'key='=>'string', 'length='=>'int'], - 'sodium_crypto_generichash_keygen' => ['non-empty-string'], - 'sodium_crypto_generichash_update' => ['true', '&rw_state'=>'string', 'message'=>'string'], - 'sodium_crypto_kdf_derive_from_key' => ['string', 'subkey_length'=>'int', 'subkey_id'=>'int', 'context'=>'string', 'key'=>'string'], - 'sodium_crypto_kdf_keygen' => ['non-empty-string'], - 'sodium_crypto_kx_client_session_keys' => ['array', 'client_key_pair'=>'string', 'server_key'=>'string'], - 'sodium_crypto_kx_keypair' => ['string'], - 'sodium_crypto_kx_publickey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_kx_secretkey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_kx_seed_keypair' => ['string', 'seed'=>'string'], - 'sodium_crypto_kx_server_session_keys' => ['array', 'server_key_pair'=>'string', 'client_key'=>'string'], - 'sodium_crypto_pwhash' => ['string', 'length'=>'int', 'password'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int', 'algo='=>'int'], - 'sodium_crypto_pwhash_scryptsalsa208sha256' => ['string', 'length'=>'int', 'password'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'sodium_crypto_pwhash_scryptsalsa208sha256_str' => ['string', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'sodium_crypto_pwhash_scryptsalsa208sha256_str_verify' => ['bool', 'hash'=>'string', 'password'=>'string'], - 'sodium_crypto_pwhash_str' => ['string', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'sodium_crypto_pwhash_str_needs_rehash' => ['bool', 'password'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'sodium_crypto_pwhash_str_verify' => ['bool', 'hash'=>'string', 'password'=>'string'], - 'sodium_crypto_scalarmult' => ['string', 'n'=>'string', 'p'=>'string'], - 'sodium_crypto_scalarmult_base' => ['string', 'secret_key'=>'string'], - 'sodium_crypto_secretbox' => ['string', 'message'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_secretbox_keygen' => ['non-empty-string'], - 'sodium_crypto_secretbox_open' => ['string|false', 'ciphertext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_secretstream_xchacha20poly1305_init_pull' => ['string', 'header'=>'string', 'key'=>'string'], - 'sodium_crypto_secretstream_xchacha20poly1305_init_push' => ['array', 'key'=>'string'], - 'sodium_crypto_secretstream_xchacha20poly1305_keygen' => ['non-empty-string'], - 'sodium_crypto_secretstream_xchacha20poly1305_pull' => ['array|false', '&r_state'=>'string', 'ciphertext'=>'string', 'additional_data='=>'string'], - 'sodium_crypto_secretstream_xchacha20poly1305_push' => ['string', '&w_state'=>'string', 'message'=>'string', 'additional_data='=>'string', 'tag='=>'int'], - 'sodium_crypto_secretstream_xchacha20poly1305_rekey' => ['void', '&w_state'=>'string'], - 'sodium_crypto_shorthash' => ['string', 'message'=>'string', 'key'=>'string'], - 'sodium_crypto_shorthash_keygen' => ['non-empty-string'], - 'sodium_crypto_sign' => ['string', 'message'=>'string', 'secret_key'=>'string'], - 'sodium_crypto_sign_detached' => ['string', 'message'=>'string', 'secret_key'=>'string'], - 'sodium_crypto_sign_ed25519_pk_to_curve25519' => ['string', 'public_key'=>'string'], - 'sodium_crypto_sign_ed25519_sk_to_curve25519' => ['string', 'secret_key'=>'string'], - 'sodium_crypto_sign_keypair' => ['string'], - 'sodium_crypto_sign_keypair_from_secretkey_and_publickey' => ['string', 'secret_key'=>'string', 'public_key'=>'string'], - 'sodium_crypto_sign_open' => ['string|false', 'signed_message'=>'string', 'public_key'=>'string'], - 'sodium_crypto_sign_publickey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_sign_publickey_from_secretkey' => ['string', 'secret_key'=>'string'], - 'sodium_crypto_sign_secretkey' => ['string', 'key_pair'=>'string'], - 'sodium_crypto_sign_seed_keypair' => ['string', 'seed'=>'string'], - 'sodium_crypto_sign_verify_detached' => ['bool', 'signature'=>'string', 'message'=>'string', 'public_key'=>'string'], - 'sodium_crypto_stream' => ['string', 'length'=>'int', 'nonce'=>'string', 'key'=>'string'], - 'sodium_crypto_stream_keygen' => ['non-empty-string'], - 'sodium_crypto_stream_xor' => ['string', 'message'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'sodium_hex2bin' => ['string', 'string'=>'string', 'ignore='=>'string'], - 'sodium_increment' => ['void', '&rw_string'=>'string'], - 'sodium_memcmp' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'sodium_memzero' => ['void', '&w_string'=>'string'], - 'sodium_pad' => ['string', 'string'=>'string', 'block_size'=>'int'], - 'sodium_unpad' => ['string', 'string'=>'string', 'block_size'=>'int'], - 'stream_isatty' => ['bool', 'stream'=>'resource'], - 'xdebug_info' => ['mixed', 'category='=>'string'], - ], - 'changed' => [ - 'ReflectionClass::getMethods' => [ - 'old' => ['list', 'filter='=>'int'], - 'new' => ['list', 'filter='=>'?int'], - ], - 'ReflectionClass::getProperties' => [ - 'old' => ['list', 'filter='=>'int'], - 'new' => ['list', 'filter='=>'?int'], - ], - 'ReflectionObject::getMethods' => [ - 'old' => ['ReflectionMethod[]', 'filter='=>'int'], - 'new' => ['ReflectionMethod[]', 'filter='=>'?int'], - ], - 'ReflectionObject::getProperties' => [ - 'old' => ['ReflectionProperty[]', 'filter='=>'int'], - 'new' => ['ReflectionProperty[]', 'filter='=>'?int'], - ], - 'SQLite3::openBlob' => [ - 'old' => ['resource|false', 'table'=>'string', 'column'=>'string', 'rowid'=>'int', 'dbname='=>'string'], - 'new' => ['resource|false', 'table'=>'string', 'column'=>'string', 'rowid'=>'int', 'database='=>'string', 'flags='=>'int'], - ], - 'hash_copy' => [ - 'old' => ['resource', 'context'=>'resource'], - 'new' => ['HashContext', 'context'=>'HashContext'], - ], - 'hash_final' => [ - 'old' => ['non-empty-string', 'context'=>'resource', 'raw_output='=>'bool'], - 'new' => ['non-empty-string', 'context'=>'HashContext', 'binary='=>'bool'], - ], - 'hash_init' => [ - 'old' => ['resource', 'algo'=>'string', 'options='=>'int', 'key='=>'string'], - 'new' => ['HashContext|false', 'algo'=>'string', 'flags='=>'int', 'key='=>'string'], - ], - 'hash_update' => [ - 'old' => ['bool', 'context'=>'resource', 'data'=>'string'], - 'new' => ['bool', 'context'=>'HashContext', 'data'=>'string'], - ], - 'hash_update_file' => [ - 'old' => ['bool', 'hcontext'=>'resource', 'filename'=>'string', 'scontext='=>'resource'], - 'new' => ['bool', 'context'=>'HashContext', 'filename'=>'string', 'stream_context='=>'resource'], - ], - 'hash_update_stream' => [ - 'old' => ['int', 'context'=>'resource', 'handle'=>'resource', 'length='=>'int'], - 'new' => ['int', 'context'=>'HashContext', 'stream'=>'resource', 'length='=>'int'], - ], - 'json_decode' => [ - 'old' => ['mixed', 'json'=>'string', 'associative='=>'bool', 'depth='=>'int', 'flags='=>'int'], - 'new' => ['mixed', 'json'=>'string', 'associative='=>'?bool', 'depth='=>'int', 'flags='=>'int'], - ], - 'mb_check_encoding' => [ - 'old' => ['bool', 'value='=>'string', 'encoding='=>'string'], - 'new' => ['bool', 'value='=>'array|string', 'encoding='=>'string'], - ], - 'preg_quote' => [ - 'old' => ['string', 'str'=>'string', 'delimiter='=>'string'], - 'new' => ['string', 'str'=>'string', 'delimiter='=>'?string'], - ], - ], - 'removed' => [ - 'Sodium\add' => ['void', '&left'=>'string', 'right'=>'string'], - 'Sodium\bin2hex' => ['string', 'binary'=>'string'], - 'Sodium\compare' => ['int', 'left'=>'string', 'right'=>'string'], - 'Sodium\crypto_aead_aes256gcm_decrypt' => ['string|false', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_aes256gcm_encrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_aes256gcm_is_available' => ['bool'], - 'Sodium\crypto_aead_chacha20poly1305_decrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_chacha20poly1305_encrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_auth' => ['string', 'msg'=>'string', 'key'=>'string'], - 'Sodium\crypto_auth_verify' => ['bool', 'mac'=>'string', 'msg'=>'string', 'key'=>'string'], - 'Sodium\crypto_box' => ['string', 'msg'=>'string', 'nonce'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_keypair' => ['string'], - 'Sodium\crypto_box_keypair_from_secretkey_and_publickey' => ['string', 'secretkey'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_box_open' => ['string', 'msg'=>'string', 'nonce'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_publickey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_box_publickey_from_secretkey' => ['string', 'secretkey'=>'string'], - 'Sodium\crypto_box_seal' => ['string', 'message'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_box_seal_open' => ['string', 'encrypted'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_secretkey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_box_seed_keypair' => ['string', 'seed'=>'string'], - 'Sodium\crypto_generichash' => ['string', 'input'=>'string', 'key='=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_final' => ['string', 'state'=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_init' => ['string', 'key='=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_update' => ['bool', '&hashState'=>'string', 'append'=>'string'], - 'Sodium\crypto_kx' => ['string', 'secretkey'=>'string', 'publickey'=>'string', 'client_publickey'=>'string', 'server_publickey'=>'string'], - 'Sodium\crypto_pwhash' => ['string', 'out_len'=>'int', 'passwd'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256' => ['string', 'out_len'=>'int', 'passwd'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256_str' => ['string', 'passwd'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256_str_verify' => ['bool', 'hash'=>'string', 'passwd'=>'string'], - 'Sodium\crypto_pwhash_str' => ['string', 'passwd'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_str_verify' => ['bool', 'hash'=>'string', 'passwd'=>'string'], - 'Sodium\crypto_scalarmult' => ['string', 'ecdhA'=>'string', 'ecdhB'=>'string'], - 'Sodium\crypto_scalarmult_base' => ['string', 'sk'=>'string'], - 'Sodium\crypto_secretbox' => ['string', 'plaintext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_secretbox_open' => ['string', 'ciphertext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_shorthash' => ['string', 'message'=>'string', 'key'=>'string'], - 'Sodium\crypto_sign' => ['string', 'message'=>'string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_detached' => ['string', 'message'=>'string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_ed25519_pk_to_curve25519' => ['string', 'sign_pk'=>'string'], - 'Sodium\crypto_sign_ed25519_sk_to_curve25519' => ['string', 'sign_sk'=>'string'], - 'Sodium\crypto_sign_keypair' => ['string'], - 'Sodium\crypto_sign_keypair_from_secretkey_and_publickey' => ['string', 'secretkey'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_sign_open' => ['string|false', 'signed_message'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_sign_publickey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_sign_publickey_from_secretkey' => ['string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_secretkey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_sign_seed_keypair' => ['string', 'seed'=>'string'], - 'Sodium\crypto_sign_verify_detached' => ['bool', 'signature'=>'string', 'msg'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_stream' => ['string', 'length'=>'int', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_stream_xor' => ['string', 'plaintext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\hex2bin' => ['string', 'hex'=>'string'], - 'Sodium\increment' => ['string', '&nonce'=>'string'], - 'Sodium\library_version_major' => ['int'], - 'Sodium\library_version_minor' => ['int'], - 'Sodium\memcmp' => ['int', 'left'=>'string', 'right'=>'string'], - 'Sodium\memzero' => ['void', '&target'=>'string'], - 'Sodium\randombytes_buf' => ['string', 'length'=>'int'], - 'Sodium\randombytes_random16' => ['int|string'], - 'Sodium\randombytes_uniform' => ['int', 'upperBoundNonInclusive'=>'int'], - 'Sodium\version_string' => ['string'], - ], -]; +return array ( + 'added' => + array ( + 'DOMNodeList::count' => + array ( + 0 => 'int', + ), + 'ReflectionClass::isIterable' => + array ( + 0 => 'bool', + ), + 'ZipArchive::count' => + array ( + 0 => 'int', + ), + 'ZipArchive::setEncryptionIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'password=' => 'string', + ), + 'ZipArchive::setEncryptionName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'password=' => 'string', + ), + 'ftp_append' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + ), + 'hash_hmac_algos' => + array ( + 0 => 'list', + ), + 'imagebmp' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'compressed=' => 'int', + ), + 'imagecreatefrombmp' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imageopenpolygon' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points' => 'int', + 'color' => 'int', + ), + 'imageresolution' => + array ( + 0 => 'array|bool', + 'image' => 'resource', + 'resolution_x=' => 'int', + 'resolution_y=' => 'int', + ), + 'imagesetclip' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + ), + 'ldap_exop' => + array ( + 0 => 'bool|resource', + 'ldap' => 'resource', + 'request_oid' => 'string', + 'request_data=' => 'null|string', + 'controls=' => 'array|null', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'ldap_exop_passwd' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + ), + 'ldap_exop_refresh' => + array ( + 0 => 'false|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'ttl' => 'int', + ), + 'ldap_exop_whoami' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + ), + 'ldap_parse_exop' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'result' => 'resource', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'mb_chr' => + array ( + 0 => 'false|non-empty-string', + 'codepoint' => 'int', + 'encoding=' => 'string', + ), + 'mb_convert_encoding\'1' => + array ( + 0 => 'array', + 'string' => 'array', + 'to_encoding' => 'string', + 'from_encoding=' => 'mixed', + ), + 'mb_ord' => + array ( + 0 => 'false|int', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'mb_scrub' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'oci_register_taf_callback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'callback=' => 'callable', + ), + 'oci_unregister_taf_callback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'sapi_windows_vt100_support' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable=' => 'bool', + ), + 'socket_addrinfo_bind' => + array ( + 0 => 'null|resource', + 'addrinfo' => 'resource', + ), + 'socket_addrinfo_connect' => + array ( + 0 => 'resource', + 'addrinfo' => 'resource', + ), + 'socket_addrinfo_explain' => + array ( + 0 => 'array', + 'addrinfo' => 'resource', + ), + 'socket_addrinfo_lookup' => + array ( + 0 => 'array', + 'host' => 'string', + 'service=' => 'string', + 'hints=' => 'array', + ), + 'sodium_add' => + array ( + 0 => 'void', + '&rw_string1' => 'string', + 'string2' => 'string', + ), + 'sodium_base642bin' => + array ( + 0 => 'string', + 'string' => 'string', + 'id' => 'int', + 'ignore=' => 'string', + ), + 'sodium_bin2base64' => + array ( + 0 => 'string', + 'string' => 'string', + 'id' => 'int', + ), + 'sodium_bin2hex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'sodium_compare' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_aes256gcm_is_available' => + array ( + 0 => 'bool', + ), + 'sodium_crypto_aead_aes256gcm_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_chacha20poly1305_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_chacha20poly1305_ietf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_chacha20poly1305_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_decrypt' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_encrypt' => + array ( + 0 => 'string', + 'message' => 'string', + 'additional_data' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_aead_xchacha20poly1305_ietf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_auth' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_auth_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_auth_verify' => + array ( + 0 => 'bool', + 'mac' => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_box' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_box_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_box_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_box_seal' => + array ( + 0 => 'string', + 'message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_box_seal_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_box_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_generichash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_final' => + array ( + 0 => 'string', + '&state' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_init' => + array ( + 0 => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'sodium_crypto_generichash_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_generichash_update' => + array ( + 0 => 'true', + '&rw_state' => 'string', + 'message' => 'string', + ), + 'sodium_crypto_kdf_derive_from_key' => + array ( + 0 => 'string', + 'subkey_length' => 'int', + 'subkey_id' => 'int', + 'context' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_kdf_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_kx_client_session_keys' => + array ( + 0 => 'array', + 'client_key_pair' => 'string', + 'server_key' => 'string', + ), + 'sodium_crypto_kx_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_kx_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_kx_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_kx_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_kx_server_session_keys' => + array ( + 0 => 'array', + 'server_key_pair' => 'string', + 'client_key' => 'string', + ), + 'sodium_crypto_pwhash' => + array ( + 0 => 'string', + 'length' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + 'algo=' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256' => + array ( + 0 => 'string', + 'length' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256_str' => + array ( + 0 => 'string', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_scryptsalsa208sha256_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'password' => 'string', + ), + 'sodium_crypto_pwhash_str' => + array ( + 0 => 'string', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_str_needs_rehash' => + array ( + 0 => 'bool', + 'password' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'sodium_crypto_pwhash_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'password' => 'string', + ), + 'sodium_crypto_scalarmult' => + array ( + 0 => 'string', + 'n' => 'string', + 'p' => 'string', + ), + 'sodium_crypto_scalarmult_base' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_secretbox' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretbox_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_secretbox_open' => + array ( + 0 => 'false|string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_init_pull' => + array ( + 0 => 'string', + 'header' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_init_push' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_pull' => + array ( + 0 => 'array|false', + '&r_state' => 'string', + 'ciphertext' => 'string', + 'additional_data=' => 'string', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_push' => + array ( + 0 => 'string', + '&w_state' => 'string', + 'message' => 'string', + 'additional_data=' => 'string', + 'tag=' => 'int', + ), + 'sodium_crypto_secretstream_xchacha20poly1305_rekey' => + array ( + 0 => 'void', + '&w_state' => 'string', + ), + 'sodium_crypto_shorthash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_shorthash_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_sign' => + array ( + 0 => 'string', + 'message' => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_detached' => + array ( + 0 => 'string', + 'message' => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_ed25519_pk_to_curve25519' => + array ( + 0 => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_ed25519_sk_to_curve25519' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_keypair' => + array ( + 0 => 'string', + ), + 'sodium_crypto_sign_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_open' => + array ( + 0 => 'false|string', + 'signed_message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_sign_publickey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_sign_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secret_key' => 'string', + ), + 'sodium_crypto_sign_secretkey' => + array ( + 0 => 'string', + 'key_pair' => 'string', + ), + 'sodium_crypto_sign_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'sodium_crypto_sign_verify_detached' => + array ( + 0 => 'bool', + 'signature' => 'string', + 'message' => 'string', + 'public_key' => 'string', + ), + 'sodium_crypto_stream' => + array ( + 0 => 'string', + 'length' => 'int', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_crypto_stream_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_stream_xor' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'sodium_hex2bin' => + array ( + 0 => 'string', + 'string' => 'string', + 'ignore=' => 'string', + ), + 'sodium_increment' => + array ( + 0 => 'void', + '&rw_string' => 'string', + ), + 'sodium_memcmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'sodium_memzero' => + array ( + 0 => 'void', + '&w_string' => 'string', + ), + 'sodium_pad' => + array ( + 0 => 'string', + 'string' => 'string', + 'block_size' => 'int', + ), + 'sodium_unpad' => + array ( + 0 => 'string', + 'string' => 'string', + 'block_size' => 'int', + ), + 'stream_isatty' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'xdebug_info' => + array ( + 0 => 'mixed', + 'category=' => 'string', + ), + ), + 'changed' => + array ( + 'ReflectionClass::getMethods' => + array ( + 'old' => + array ( + 0 => 'list', + 'filter=' => 'int', + ), + 'new' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + ), + 'ReflectionClass::getProperties' => + array ( + 'old' => + array ( + 0 => 'list', + 'filter=' => 'int', + ), + 'new' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + ), + 'ReflectionObject::getMethods' => + array ( + 'old' => + array ( + 0 => 'array', + 'filter=' => 'int', + ), + 'new' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + ), + 'ReflectionObject::getProperties' => + array ( + 'old' => + array ( + 0 => 'array', + 'filter=' => 'int', + ), + 'new' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + ), + 'SQLite3::openBlob' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'table' => 'string', + 'column' => 'string', + 'rowid' => 'int', + 'dbname=' => 'string', + ), + 'new' => + array ( + 0 => 'false|resource', + 'table' => 'string', + 'column' => 'string', + 'rowid' => 'int', + 'database=' => 'string', + 'flags=' => 'int', + ), + ), + 'hash_copy' => + array ( + 'old' => + array ( + 0 => 'resource', + 'context' => 'resource', + ), + 'new' => + array ( + 0 => 'HashContext', + 'context' => 'HashContext', + ), + ), + 'hash_final' => + array ( + 'old' => + array ( + 0 => 'non-empty-string', + 'context' => 'resource', + 'raw_output=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'context' => 'HashContext', + 'binary=' => 'bool', + ), + ), + 'hash_init' => + array ( + 'old' => + array ( + 0 => 'resource', + 'algo' => 'string', + 'options=' => 'int', + 'key=' => 'string', + ), + 'new' => + array ( + 0 => 'HashContext|false', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + ), + ), + 'hash_update' => + array ( + 'old' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'data' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'data' => 'string', + ), + ), + 'hash_update_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'hcontext' => 'resource', + 'filename' => 'string', + 'scontext=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'filename' => 'string', + 'stream_context=' => 'resource', + ), + ), + 'hash_update_stream' => + array ( + 'old' => + array ( + 0 => 'int', + 'context' => 'resource', + 'handle' => 'resource', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'context' => 'HashContext', + 'stream' => 'resource', + 'length=' => 'int', + ), + ), + 'json_decode' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'json' => 'string', + 'associative=' => 'bool', + 'depth=' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'mixed', + 'json' => 'string', + 'associative=' => 'bool|null', + 'depth=' => 'int', + 'flags=' => 'int', + ), + ), + 'mb_check_encoding' => + array ( + 'old' => + array ( + 0 => 'bool', + 'value=' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'value=' => 'array|string', + 'encoding=' => 'string', + ), + ), + 'preg_quote' => + array ( + 'old' => + array ( + 0 => 'string', + 'str' => 'string', + 'delimiter=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'str' => 'string', + 'delimiter=' => 'null|string', + ), + ), + ), + 'removed' => + array ( + 'Sodium\\add' => + array ( + 0 => 'void', + '&left' => 'string', + 'right' => 'string', + ), + 'Sodium\\bin2hex' => + array ( + 0 => 'string', + 'binary' => 'string', + ), + 'Sodium\\compare' => + array ( + 0 => 'int', + 'left' => 'string', + 'right' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_decrypt' => + array ( + 0 => 'false|string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_encrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_is_available' => + array ( + 0 => 'bool', + ), + 'Sodium\\crypto_aead_chacha20poly1305_decrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_chacha20poly1305_encrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_auth' => + array ( + 0 => 'string', + 'msg' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_auth_verify' => + array ( + 0 => 'bool', + 'mac' => 'string', + 'msg' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_box' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_keypair' => + array ( + 0 => 'string', + ), + 'Sodium\\crypto_box_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_box_open' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_publickey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_box_seal' => + array ( + 0 => 'string', + 'message' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_box_seal_open' => + array ( + 0 => 'string', + 'encrypted' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_secretkey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'Sodium\\crypto_generichash' => + array ( + 0 => 'string', + 'input' => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_final' => + array ( + 0 => 'string', + 'state' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_init' => + array ( + 0 => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_update' => + array ( + 0 => 'bool', + '&hashState' => 'string', + 'append' => 'string', + ), + 'Sodium\\crypto_kx' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + 'client_publickey' => 'string', + 'server_publickey' => 'string', + ), + 'Sodium\\crypto_pwhash' => + array ( + 0 => 'string', + 'out_len' => 'int', + 'passwd' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256' => + array ( + 0 => 'string', + 'out_len' => 'int', + 'passwd' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str' => + array ( + 0 => 'string', + 'passwd' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'passwd' => 'string', + ), + 'Sodium\\crypto_pwhash_str' => + array ( + 0 => 'string', + 'passwd' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'passwd' => 'string', + ), + 'Sodium\\crypto_scalarmult' => + array ( + 0 => 'string', + 'ecdhA' => 'string', + 'ecdhB' => 'string', + ), + 'Sodium\\crypto_scalarmult_base' => + array ( + 0 => 'string', + 'sk' => 'string', + ), + 'Sodium\\crypto_secretbox' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_secretbox_open' => + array ( + 0 => 'string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_shorthash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_sign' => + array ( + 0 => 'string', + 'message' => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_detached' => + array ( + 0 => 'string', + 'message' => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_ed25519_pk_to_curve25519' => + array ( + 0 => 'string', + 'sign_pk' => 'string', + ), + 'Sodium\\crypto_sign_ed25519_sk_to_curve25519' => + array ( + 0 => 'string', + 'sign_sk' => 'string', + ), + 'Sodium\\crypto_sign_keypair' => + array ( + 0 => 'string', + ), + 'Sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_sign_open' => + array ( + 0 => 'false|string', + 'signed_message' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_sign_publickey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_sign_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_secretkey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_sign_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'Sodium\\crypto_sign_verify_detached' => + array ( + 0 => 'bool', + 'signature' => 'string', + 'msg' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_stream' => + array ( + 0 => 'string', + 'length' => 'int', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_stream_xor' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\hex2bin' => + array ( + 0 => 'string', + 'hex' => 'string', + ), + 'Sodium\\increment' => + array ( + 0 => 'string', + '&nonce' => 'string', + ), + 'Sodium\\library_version_major' => + array ( + 0 => 'int', + ), + 'Sodium\\library_version_minor' => + array ( + 0 => 'int', + ), + 'Sodium\\memcmp' => + array ( + 0 => 'int', + 'left' => 'string', + 'right' => 'string', + ), + 'Sodium\\memzero' => + array ( + 0 => 'void', + '&target' => 'string', + ), + 'Sodium\\randombytes_buf' => + array ( + 0 => 'string', + 'length' => 'int', + ), + 'Sodium\\randombytes_random16' => + array ( + 0 => 'int|string', + ), + 'Sodium\\randombytes_uniform' => + array ( + 0 => 'int', + 'upperBoundNonInclusive' => 'int', + ), + 'Sodium\\version_string' => + array ( + 0 => 'string', + ), + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_73_delta.php b/dictionaries/CallMap_73_delta.php index c1b89d04b42..1e949a9359b 100644 --- a/dictionaries/CallMap_73_delta.php +++ b/dictionaries/CallMap_73_delta.php @@ -1,130 +1,525 @@ [ - 'DateTime::createFromImmutable' => ['static', 'object'=>'DateTimeImmutable'], - 'JsonException::__clone' => ['void'], - 'JsonException::__construct' => ['void', "message="=>"string", 'code='=>'int', 'previous='=>'?Throwable'], - 'JsonException::__toString' => ['string'], - 'JsonException::__wakeup' => ['void'], - 'JsonException::getCode' => ['int'], - 'JsonException::getFile' => ['string'], - 'JsonException::getLine' => ['int'], - 'JsonException::getMessage' => ['string'], - 'JsonException::getPrevious' => ['?Throwable'], - 'JsonException::getTrace' => ['list\',args?:array}>'], - 'JsonException::getTraceAsString' => ['string'], - 'Normalizer::getRawDecomposition' => ['?string', 'string'=>'string', 'form='=>'int'], - 'SplPriorityQueue::isCorrupted' => ['bool'], - 'array_key_first' => ['int|string|null', 'array'=>'array'], - 'array_key_last' => ['int|string|null', 'array'=>'array'], - 'fpm_get_status' => ['array|false'], - 'gc_status' => ['array{runs:int,collected:int,threshold:int,roots:int}'], - 'gmp_binomial' => ['GMP|false', 'n'=>'GMP|string|int', 'k'=>'int'], - 'gmp_kronecker' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_lcm' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_perfect_power' => ['bool', 'num'=>'GMP|string|int'], - 'hrtime' => ['array{0:int,1:int}|false', 'as_number='=>'false'], - 'hrtime\'1' => ['int|float|false', 'as_number='=>'true'], - 'is_countable' => ['bool', 'value'=>'mixed'], - 'normalizer_get_raw_decomposition' => ['string|null', 'string'=>'string', 'form='=>'int'], - 'net_get_interfaces' => ['array>|false'], - 'openssl_pkey_derive' => ['string|false', 'public_key'=>'mixed', 'private_key'=>'mixed', 'key_length='=>'?int'], - 'session_set_cookie_params\'1' => ['bool', 'options'=>'array{lifetime?:?int,path?:?string,domain?:?string,secure?:?bool,httponly?:?bool,samesite?:?string}'], - 'setcookie\'1' => ['bool', 'name'=>'string', 'value='=>'string', 'options='=>'array'], - 'setrawcookie\'1' => ['bool', 'name'=>'string', 'value='=>'string', 'options='=>'array'], - 'socket_wsaprotocol_info_export' => ['string|false', 'socket'=>'resource', 'process_id'=>'int'], - 'socket_wsaprotocol_info_import' => ['resource|false', 'info_id'=>'string'], - 'socket_wsaprotocol_info_release' => ['bool', 'info_id'=>'string'], - ], - 'changed' => [ - 'array_push' => [ - 'old' => ['int', '&rw_array'=>'array', '...values'=>'mixed'], - 'new' => ['int', '&rw_array'=>'array', '...values='=>'mixed'], - ], - 'array_unshift' => [ - 'old' => ['int', '&rw_array'=>'array', '...values'=>'mixed'], - 'new' => ['int', '&rw_array'=>'array', '...values='=>'mixed'], - ], - 'bcscale' => [ - 'old' => ['int', 'scale'=>'int'], - 'new' => ['int', 'scale='=>'int'], - ], - 'define' => [ - 'old' => ['bool', 'constant_name'=>'string', 'value'=>'array|scalar|null', 'case_insensitive='=>'bool'], - 'new' => ['bool', 'constant_name'=>'string', 'value'=>'array|scalar|null', 'case_insensitive='=>'false'], - ], - 'ldap_compare' => [ - 'old' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string'], - 'new' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'array'], - ], - 'ldap_delete' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'array'], - ], - 'ldap_exop_passwd' => [ - 'old' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string'], - 'new' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array'], - ], - 'ldap_list' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'new' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - ], - 'ldap_mod_add' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - ], - 'ldap_mod_del' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - ], - 'ldap_mod_replace' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - ], - 'ldap_modify' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - ], - 'ldap_modify_batch' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'array'], - ], - 'ldap_read' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'new' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - ], - 'ldap_rename' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'array'], - ], - 'ldap_search' => [ - 'old' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'new' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - ], - 'mkdir' => [ - 'old' => ['bool', 'directory'=>'string', 'permissions='=>'int', 'recursive='=>'bool', 'context='=>'resource'], - 'new' => ['bool', 'directory'=>'string', 'permissions='=>'int', 'recursive='=>'bool', 'context='=>'null|resource'], - ], - 'session_get_cookie_params' => [ - 'old' => ['array{lifetime:?int,path:?string,domain:?string,secure:?bool,httponly:?bool}'], - 'new' => ['array{lifetime:?int,path:?string,domain:?string,secure:?bool,httponly:?bool,samesite:?string}'], - ] - ], - 'removed' => [ - ], -]; +return array ( + 'added' => + array ( + 'DateTime::createFromImmutable' => + array ( + 0 => 'static', + 'object' => 'DateTimeImmutable', + ), + 'JsonException::__clone' => + array ( + 0 => 'void', + ), + 'JsonException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'JsonException::__toString' => + array ( + 0 => 'string', + ), + 'JsonException::__wakeup' => + array ( + 0 => 'void', + ), + 'JsonException::getCode' => + array ( + 0 => 'int', + ), + 'JsonException::getFile' => + array ( + 0 => 'string', + ), + 'JsonException::getLine' => + array ( + 0 => 'int', + ), + 'JsonException::getMessage' => + array ( + 0 => 'string', + ), + 'JsonException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'JsonException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'JsonException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Normalizer::getRawDecomposition' => + array ( + 0 => 'null|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'SplPriorityQueue::isCorrupted' => + array ( + 0 => 'bool', + ), + 'array_key_first' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + 'array_key_last' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + 'fpm_get_status' => + array ( + 0 => 'array|false', + ), + 'gc_status' => + array ( + 0 => 'array{collected: int, roots: int, runs: int, threshold: int}', + ), + 'gmp_binomial' => + array ( + 0 => 'GMP|false', + 'n' => 'GMP|int|string', + 'k' => 'int', + ), + 'gmp_kronecker' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_lcm' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_perfect_power' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + ), + 'hrtime' => + array ( + 0 => 'array{0: int, 1: int}|false', + 'as_number=' => 'false', + ), + 'hrtime\'1' => + array ( + 0 => 'false|float|int', + 'as_number=' => 'true', + ), + 'is_countable' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'normalizer_get_raw_decomposition' => + array ( + 0 => 'null|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'net_get_interfaces' => + array ( + 0 => 'array>|false', + ), + 'openssl_pkey_derive' => + array ( + 0 => 'false|string', + 'public_key' => 'mixed', + 'private_key' => 'mixed', + 'key_length=' => 'int|null', + ), + 'session_set_cookie_params\'1' => + array ( + 0 => 'bool', + 'options' => 'array{domain?: null|string, httponly?: bool|null, lifetime?: int|null, path?: null|string, samesite?: null|string, secure?: bool|null}', + ), + 'setcookie\'1' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'options=' => 'array', + ), + 'setrawcookie\'1' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'options=' => 'array', + ), + 'socket_wsaprotocol_info_export' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'process_id' => 'int', + ), + 'socket_wsaprotocol_info_import' => + array ( + 0 => 'false|resource', + 'info_id' => 'string', + ), + 'socket_wsaprotocol_info_release' => + array ( + 0 => 'bool', + 'info_id' => 'string', + ), + ), + 'changed' => + array ( + 'array_push' => + array ( + 'old' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values' => 'mixed', + ), + 'new' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values=' => 'mixed', + ), + ), + 'array_unshift' => + array ( + 'old' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values' => 'mixed', + ), + 'new' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values=' => 'mixed', + ), + ), + 'bcscale' => + array ( + 'old' => + array ( + 0 => 'int', + 'scale' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'scale=' => 'int', + ), + ), + 'define' => + array ( + 'old' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'array|null|scalar', + 'case_insensitive=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'array|null|scalar', + 'case_insensitive=' => 'false', + ), + ), + 'ldap_compare' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array', + ), + ), + 'ldap_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array', + ), + ), + 'ldap_exop_passwd' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array', + ), + ), + 'ldap_list' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + ), + 'ldap_mod_add' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + ), + 'ldap_mod_del' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + ), + 'ldap_mod_replace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + ), + 'ldap_modify' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + ), + 'ldap_modify_batch' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array', + ), + ), + 'ldap_read' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + ), + 'ldap_rename' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array', + ), + ), + 'ldap_search' => + array ( + 'old' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + ), + 'mkdir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'permissions=' => 'int', + 'recursive=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'permissions=' => 'int', + 'recursive=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'session_get_cookie_params' => + array ( + 'old' => + array ( + 0 => 'array{domain: null|string, httponly: bool|null, lifetime: int|null, path: null|string, secure: bool|null}', + ), + 'new' => + array ( + 0 => 'array{domain: null|string, httponly: bool|null, lifetime: int|null, path: null|string, samesite: null|string, secure: bool|null}', + ), + ), + ), + 'removed' => + array ( + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_74_delta.php b/dictionaries/CallMap_74_delta.php index 9fdb508aebb..4cfd529c5a5 100644 --- a/dictionaries/CallMap_74_delta.php +++ b/dictionaries/CallMap_74_delta.php @@ -1,92 +1,315 @@ [ - 'ReflectionProperty::getType' => ['?ReflectionType'], - 'ReflectionProperty::isInitialized' => ['bool', 'object'=>'object'], - 'mb_str_split' => ['list|false', 'string'=>'string', 'length='=>'positive-int', 'encoding='=>'string'], - 'openssl_x509_verify' => ['int', 'certificate'=>'string|resource', 'public_key'=>'string|array|resource'], - ], - 'changed' => [ - 'Locale::lookup' => [ - 'old' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'string'], - 'new' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'?string'], - ], - 'SplFileObject::fwrite' => [ - 'old' => ['int', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'data'=>'string', 'length='=>'int'], - ], - 'SplTempFileObject::fwrite' => [ - 'old' => ['int', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'data'=>'string', 'length='=>'int'], - ], - 'array_merge' => [ - 'old' => ['array', '...arrays'=>'array'], - 'new' => ['array', '...arrays='=>'array'], - ], - 'array_merge_recursive' => [ - 'old' => ['array', '...arrays'=>'array'], - 'new' => ['array', '...arrays='=>'array'], - ], - 'gzread' => [ - 'old' => ['string|0', 'stream'=>'resource', 'length'=>'int'], - 'new' => ['string|false', 'stream'=>'resource', 'length'=>'int'], - ], - 'locale_lookup' => [ - 'old' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'string'], - 'new' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'?string'], - ], - 'openssl_random_pseudo_bytes' => [ - 'old' => ['string|false', 'length'=>'int', '&w_strong_result='=>'bool'], - 'new' => ['string', 'length'=>'int', '&w_strong_result='=>'bool'], - ], - 'password_hash' => [ - 'old' => ['string|false', 'password'=>'string', 'algo'=>'int', 'options='=>'array'], - 'new' => ['string|false', 'password'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], - ], - 'password_needs_rehash' => [ - 'old' => ['bool', 'hash'=>'string', 'algo'=>'int', 'options='=>'array'], - 'new' => ['bool', 'hash'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], - ], - 'preg_replace_callback' => [ - 'old' => ['string|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int'], - 'new' => ['string|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], - ], - 'preg_replace_callback\'1' => [ - 'old' => ['string[]|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int'], - 'new' => ['string[]|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], - ], - 'preg_replace_callback_array' => [ - 'old' => ['string|null', 'pattern'=>'array', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int'], - 'new' => ['string|null', 'pattern'=>'array', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], - ], - 'preg_replace_callback_array\'1' => [ - 'old' => ['string[]|null', 'pattern'=>'array', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int'], - 'new' => ['string[]|null', 'pattern'=>'array', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int', 'flags='=>'int'], - ], - 'proc_open' => [ - 'old' => ['resource|false', 'command'=>'string', 'descriptor_spec'=>'array', '&pipes'=>'resource[]', 'cwd='=>'?string', 'env_vars='=>'?array', 'options='=>'?array'], - 'new' => ['resource|false', 'command'=>'string|array', 'descriptor_spec'=>'array', '&pipes'=>'resource[]', 'cwd='=>'?string', 'env_vars='=>'?array', 'options='=>'?array'], - ], - 'strip_tags' => [ - 'old' => ['string', 'string'=>'string', 'allowed_tags='=>'string'], - 'new' => ['string', 'string'=>'string', 'allowed_tags='=>'string|list'], - ], - ], - 'removed' => [ - ], -]; +return array ( + 'added' => + array ( + 'ReflectionProperty::getType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionProperty::isInitialized' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'mb_str_split' => + array ( + 0 => 'false|list', + 'string' => 'string', + 'length=' => 'int<1, max>', + 'encoding=' => 'string', + ), + 'openssl_x509_verify' => + array ( + 0 => 'int', + 'certificate' => 'resource|string', + 'public_key' => 'array|resource|string', + ), + ), + 'changed' => + array ( + 'Locale::lookup' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'null|string', + ), + ), + 'SplFileObject::fwrite' => + array ( + 'old' => + array ( + 0 => 'int', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + ), + 'SplTempFileObject::fwrite' => + array ( + 'old' => + array ( + 0 => 'int', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + ), + 'array_merge' => + array ( + 'old' => + array ( + 0 => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + '...arrays=' => 'array', + ), + ), + 'array_merge_recursive' => + array ( + 'old' => + array ( + 0 => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + '...arrays=' => 'array', + ), + ), + 'gzread' => + array ( + 'old' => + array ( + 0 => '0|string', + 'stream' => 'resource', + 'length' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + ), + ), + 'locale_lookup' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'null|string', + ), + ), + 'openssl_random_pseudo_bytes' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'length' => 'int', + '&w_strong_result=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'length' => 'int', + '&w_strong_result=' => 'bool', + ), + ), + 'password_hash' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'algo' => 'int', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + ), + 'password_needs_rehash' => + array ( + 'old' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'algo' => 'int', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + ), + 'preg_replace_callback' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'new' => + array ( + 0 => 'null|string', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + ), + 'preg_replace_callback\'1' => + array ( + 'old' => + array ( + 0 => 'array|null', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'new' => + array ( + 0 => 'array|null', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + ), + 'preg_replace_callback_array' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'pattern' => 'array):string>', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'new' => + array ( + 0 => 'null|string', + 'pattern' => 'array):string>', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + ), + 'preg_replace_callback_array\'1' => + array ( + 'old' => + array ( + 0 => 'array|null', + 'pattern' => 'array):string>', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'new' => + array ( + 0 => 'array|null', + 'pattern' => 'array):string>', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + 'flags=' => 'int', + ), + ), + 'proc_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'command' => 'string', + 'descriptor_spec' => 'array', + '&pipes' => 'array', + 'cwd=' => 'null|string', + 'env_vars=' => 'array|null', + 'options=' => 'array|null', + ), + 'new' => + array ( + 0 => 'false|resource', + 'command' => 'array|string', + 'descriptor_spec' => 'array', + '&pipes' => 'array', + 'cwd=' => 'null|string', + 'env_vars=' => 'array|null', + 'options=' => 'array|null', + ), + ), + 'strip_tags' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'list|string', + ), + ), + ), + 'removed' => + array ( + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_80_delta.php b/dictionaries/CallMap_80_delta.php index 1f8ec529d84..17a2267968c 100644 --- a/dictionaries/CallMap_80_delta.php +++ b/dictionaries/CallMap_80_delta.php @@ -1,2965 +1,12066 @@ [ - 'DateTime::createFromInterface' => ['static', 'object'=>'DateTimeInterface'], - 'DateTimeImmutable::createFromInterface' => ['static', 'object'=>'DateTimeInterface'], - 'PhpToken::getTokenName' => ['?string'], - 'PhpToken::is' => ['bool', 'kind'=>'string|int|string[]|int[]'], - 'PhpToken::isIgnorable' => ['bool'], - 'PhpToken::tokenize' => ['list', 'code'=>'string', 'flags='=>'int'], - 'ReflectionClass::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], - 'ReflectionClassConstant::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], - 'ReflectionFunctionAbstract::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], - 'ReflectionParameter::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], - 'ReflectionProperty::getAttributes' => ['list', 'name='=>'?string', 'flags='=>'int'], - 'ReflectionProperty::getDefaultValue' => ['mixed'], - 'ReflectionProperty::hasDefaultValue' => ['bool'], - 'ReflectionProperty::isPromoted' => ['bool'], - 'ReflectionUnionType::getTypes' => ['list'], - 'SplFixedArray::getIterator' => ['Iterator'], - 'WeakMap::count' => ['int'], - 'WeakMap::getIterator' => ['Iterator'], - 'WeakMap::offsetExists' => ['bool', 'object'=>'object'], - 'WeakMap::offsetGet' => ['mixed', 'object'=>'object'], - 'WeakMap::offsetSet' => ['void', 'object'=>'object', 'value'=>'mixed'], - 'WeakMap::offsetUnset' => ['void', 'object'=>'object'], - 'fdiv' => ['float', 'num1'=>'float', 'num2'=>'float'], - 'get_debug_type' => ['string', 'value'=>'mixed'], - 'get_resource_id' => ['int', 'resource'=>'resource'], - 'imagegetinterpolation' => ['int', 'image'=>'GdImage'], - 'str_contains' => ['bool', 'haystack'=>'string', 'needle'=>'string'], - 'str_ends_with' => ['bool', 'haystack'=>'string', 'needle'=>'string'], - 'str_starts_with' => ['bool', 'haystack'=>'string', 'needle'=>'string'], - ], - 'changed' => [ - 'Collator::getStrength' => [ - 'old' => ['int|false'], - 'new' => ['int'], - ], - 'CURLFile::__construct' => [ - 'old' => ['void', 'filename'=>'string', 'mime_type='=>'string', 'posted_filename='=>'string'], - 'new' => ['void', 'filename'=>'string', 'mime_type='=>'?string', 'posted_filename='=>'?string'], - ], - 'DateTime::format' => [ - 'old' => ['string|false', 'format'=>'string'], - 'new' => ['string', 'format'=>'string'], - ], - 'DateTime::getTimestamp' => [ - 'old' => ['int|false'], - 'new' => ['int'], - ], - 'DateTimeInterface::getTimestamp' => [ - 'old' => ['int|false'], - 'new' => ['int'], - ], - 'DateTimeZone::getOffset' => [ - 'old' => ['int|false', 'datetime'=>'DateTimeInterface'], - 'new' => ['int', 'datetime'=>'DateTimeInterface'], - ], - 'DateTimeZone::listIdentifiers' => [ - 'old' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'], - 'new' => ['list', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'], - ], - 'Directory::close' => [ - 'old' => ['void', 'dir_handle='=>'resource'], - 'new' => ['void'], - ], - 'Directory::read' => [ - 'old' => ['string|false', 'dir_handle='=>'resource'], - 'new' => ['string|false'], - ], - 'Directory::rewind' => [ - 'old' => ['void', 'dir_handle='=>'resource'], - 'new' => ['void'], - ], - 'DirectoryIterator::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'DirectoryIterator::getPathInfo' => [ - 'old' => ['?SplFileInfo', 'class='=>'class-string'], - 'new' => ['?SplFileInfo', 'class='=>'?class-string'], - ], - 'DirectoryIterator::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'DOMDocument::getElementsByTagNameNS' => [ - 'old' => ['DOMNodeList', 'namespace'=>'string', 'localName'=>'string'], - 'new' => ['DOMNodeList', 'namespace'=>'?string', 'localName'=>'string'], - ], - 'DOMDocument::load' => [ - 'old' => ['DOMDocument|bool', 'filename'=>'string', 'options='=>'int'], - 'new' => ['bool', 'filename'=>'string', 'options='=>'int'], - ], - 'DOMDocument::loadXML' => [ - 'old' => ['DOMDocument|bool', 'source'=>'non-empty-string', 'options='=>'int'], - 'new' => ['bool', 'source'=>'non-empty-string', 'options='=>'int'], - ], - 'DOMDocument::loadHTML' => [ - 'old' => ['DOMDocument|bool', 'source'=>'non-empty-string', 'options='=>'int'], - 'new' => ['bool', 'source'=>'non-empty-string', 'options='=>'int'], - ], - 'DOMDocument::loadHTMLFile' => [ - 'old' => ['DOMDocument|bool', 'filename'=>'string', 'options='=>'int'], - 'new' => ['bool', 'filename'=>'string', 'options='=>'int'], - ], - 'DOMImplementation::createDocument' => [ - 'old' => ['DOMDocument|false', 'namespace='=>'string', 'qualifiedName='=>'string', 'doctype='=>'DOMDocumentType'], - 'new' => ['DOMDocument|false', 'namespace='=>'?string', 'qualifiedName='=>'string', 'doctype='=>'?DOMDocumentType'], - ], - 'ErrorException::__construct' => [ - 'old' => ['void', 'message='=>'string', 'code='=>'int', 'severity='=>'int', 'filename='=>'string', 'line='=>'int', 'previous='=>'?Throwable'], - 'new' => ['void', 'message='=>'string', 'code='=>'int', 'severity='=>'int', 'filename='=>'?string', 'line='=>'?int', 'previous='=>'?Throwable'], - ], - 'FilesystemIterator::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'FilesystemIterator::getPathInfo' => [ - 'old' => ['?SplFileInfo', 'class='=>'class-string'], - 'new' => ['?SplFileInfo', 'class='=>'?class-string'], - ], - 'FilesystemIterator::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'finfo::__construct' => [ - 'old' => ['void', 'flags='=>'int', 'magic_database='=>'string'], - 'new' => ['void', 'flags='=>'int', 'magic_database='=>'?string'], - ], - 'GlobIterator::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'GlobIterator::getPathInfo' => [ - 'old' => ['?SplFileInfo', 'class='=>'class-string'], - 'new' => ['?SplFileInfo', 'class='=>'?class-string'], - ], - 'GlobIterator::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'IntlDateFormatter::__construct' => [ - 'old' => ['void', 'locale'=>'?string', 'datetype'=>'null|int', 'timetype'=>'null|int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'new' => ['void', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - ], - 'IntlDateFormatter::create' => [ - 'old' => ['?IntlDateFormatter', 'locale'=>'?string', 'datetype'=>'null|int', 'timetype'=>'null|int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'new' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - ], - 'IntlDateFormatter::format' => [ - 'old' => ['string|false', 'value'=>'IntlCalendar|DateTimeInterface|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], - 'new' => ['string|false', 'datetime'=>'IntlCalendar|DateTimeInterface|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], - ], - 'IntlDateFormatter::formatObject' => [ - 'old' => ['string|false', 'object'=>'IntlCalendar|DateTime', 'format='=>'array{0: int, 1: int}|int|string|null', 'locale='=>'?string'], - 'new' => ['string|false', 'datetime'=>'IntlCalendar|DateTimeInterface', 'format='=>'array{0: int, 1: int}|int|string|null', 'locale='=>'?string'], - ], - 'IntlDateFormatter::getCalendar' => [ - 'old' => ['int'], - 'new' => ['int|false'], - ], - 'IntlDateFormatter::getCalendarObject' => [ - 'old' => ['IntlCalendar'], - 'new' => ['IntlCalendar|false|null'], - ], - 'IntlDateFormatter::getDateType' => [ - 'old' => ['int'], - 'new' => ['int|false'], - ], - 'IntlDateFormatter::getLocale' => [ - 'old' => ['string', 'which='=>'int'], - 'new' => ['string|false', 'type='=>'int'], - ], - 'IntlDateFormatter::getPattern' => [ - 'old' => ['string'], - 'new' => ['string|false'], - ], - 'IntlDateFormatter::getTimeType' => [ - 'old' => ['int'], - 'new' => ['int|false'], - ], - 'IntlDateFormatter::getTimeZoneId' => [ - 'old' => ['string'], - 'new' => ['string|false'], - ], - 'IntlDateFormatter::localtime' => [ - 'old' => ['array', 'value'=>'string', '&rw_position='=>'int'], - 'new' => ['array|false', 'string'=>'string', '&rw_offset='=>'int'], - ], - 'IntlDateFormatter::parse' => [ - 'old' => ['int|float', 'value'=>'string', '&rw_position='=>'int'], - 'new' => ['int|float|false', 'string'=>'string', '&rw_offset='=>'int'], - ], - 'IntlDateFormatter::setCalendar' => [ - 'old' => ['bool', 'which'=>'IntlCalendar|int|null'], - 'new' => ['bool', 'calendar'=>'IntlCalendar|int|null'], - ], - 'IntlDateFormatter::setLenient' => [ - 'old' => ['bool', 'lenient'=>'bool'], - 'new' => ['void', 'lenient'=>'bool'], - ], - 'IntlDateFormatter::setTimeZone' => [ - 'old' => ['null|false', 'zone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'new' => ['null|false', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - ], - 'IntlTimeZone::getIDForWindowsID' => [ - 'old' => ['string|false', 'timezoneId'=>'string', 'region='=>'string'], - 'new' => ['string|false', 'timezoneId'=>'string', 'region='=>'?string'], - ], - 'Locale::getDisplayLanguage' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'Locale::getDisplayName' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'Locale::getDisplayRegion' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'Locale::getDisplayScript' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'Locale::getDisplayVariant' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'mysqli_field_seek' => [ - 'old' => ['bool', 'result'=>'mysqli_result', 'index'=>'int'], - 'new' => ['true', 'result'=>'mysqli_result', 'index'=>'int'], - ], - 'mysqli_result::field_seek' => [ - 'old' => ['bool', 'index'=>'int'], - 'new' => ['true', 'index'=>'int'], - ], - 'mysqli_stmt::__construct' => [ - 'old' => ['void', 'mysql'=>'mysqli', 'query='=>'string'], - 'new' => ['void', 'mysql'=>'mysqli', 'query='=>'?string'], - ], - 'NumberFormatter::__construct' => [ - 'old' => ['void', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'new' => ['void', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], - ], - 'NumberFormatter::create' => [ - 'old' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'new' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], - ], - 'PDOStatement::debugDumpParams' => [ - 'old' => ['void'], - 'new' => ['bool|null'], - ], - 'PDOStatement::errorCode' => [ - 'old' => ['string'], - 'new' => ['string|null'], - ], - 'PDOStatement::execute' => [ - 'old' => ['bool', 'bound_input_params='=>'?array'], - 'new' => ['bool', 'params='=>'?array'], - ], - 'PDOStatement::fetch' => [ - 'old' => ['mixed', 'how='=>'int', 'orientation='=>'int', 'offset='=>'int'], - 'new' => ['mixed', 'mode='=>'int', 'cursorOrientation='=>'int', 'cursorOffset='=>'int'], - ], - 'PDOStatement::fetchAll' => [ - 'old' => ['array|false', 'how='=>'int', 'fetch_argument='=>'int|string|callable', 'ctor_args='=>'?array'], - 'new' => ['array', 'mode='=>'int', '...args='=>'mixed'], - ], - 'PDOStatement::fetchColumn' => [ - 'old' => ['string|int|float|bool|null', 'column_number='=>'int'], - 'new' => ['mixed', 'column='=>'int'], - ], - 'PDOStatement::setFetchMode' => [ - 'old' => ['bool', 'mode'=>'int'], - 'new' => ['bool', 'mode'=>'int', '...args='=>'mixed'], - ], - 'Phar::addFile' => [ - 'old' => ['void', 'filename'=>'string', 'localName='=>'string'], - 'new' => ['void', 'filename'=>'string', 'localName='=>'?string'], - ], - 'Phar::buildFromIterator' => [ - 'old' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'string'], - 'new' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - ], - 'Phar::createDefaultStub' => [ - 'old' => ['string', 'index='=>'string', 'webIndex='=>'string'], - 'new' => ['string', 'index='=>'?string', 'webIndex='=>'?string'], - ], - 'Phar::compress' => [ - 'old' => ['?Phar', 'compression'=>'int', 'extension='=>'string'], - 'new' => ['?Phar', 'compression'=>'int', 'extension='=>'?string'], - ], - 'Phar::convertToData' => [ - 'old' => ['?PharData', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'new' => ['?PharData', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], - ], - 'Phar::convertToExecutable' => [ - 'old' => ['?Phar', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'new' => ['?Phar', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], - ], - 'Phar::decompress' => [ - 'old' => ['?Phar', 'extension='=>'string'], - 'new' => ['?Phar', 'extension='=>'?string'], - ], - 'Phar::getMetadata' => [ - 'old' => ['mixed'], - 'new' => ['mixed', 'unserializeOptions='=>'array'], - ], - 'Phar::setDefaultStub' => [ - 'old' => ['bool', 'index='=>'?string', 'webIndex='=>'string'], - 'new' => ['bool', 'index='=>'?string', 'webIndex='=>'?string'], - ], - 'Phar::setSignatureAlgorithm' => [ - 'old' => ['void', 'algo'=>'int', 'privateKey='=>'string'], - 'new' => ['void', 'algo'=>'int', 'privateKey='=>'?string'], - ], - 'Phar::webPhar' => [ - 'old' => ['void', 'alias='=>'?string', 'index='=>'?string', 'fileNotFoundScript='=>'string', 'mimeTypes='=>'array', 'rewrite='=>'callable'], - 'new' => ['void', 'alias='=>'?string', 'index='=>'?string', 'fileNotFoundScript='=>'?string', 'mimeTypes='=>'array', 'rewrite='=>'?callable'], - ], - 'PharData::addFile' => [ - 'old' => ['void', 'filename'=>'string', 'localName='=>'string'], - 'new' => ['void', 'filename'=>'string', 'localName='=>'?string'], - ], - 'PharData::buildFromIterator' => [ - 'old' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'string'], - 'new' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - ], - 'PharData::compress' => [ - 'old' => ['?PharData', 'compression'=>'int', 'extension='=>'string'], - 'new' => ['?PharData', 'compression'=>'int', 'extension='=>'?string'], - ], - 'PharData::convertToData' => [ - 'old' => ['?PharData', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'new' => ['?PharData', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], - ], - 'PharData::convertToExecutable' => [ - 'old' => ['?Phar', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'new' => ['?Phar', 'format='=>'?int', 'compression='=>'?int', 'extension='=>'?string'], - ], - 'PharData::decompress' => [ - 'old' => ['?PharData', 'extension='=>'string'], - 'new' => ['?PharData', 'extension='=>'?string'], - ], - 'PharData::setDefaultStub' => [ - 'old' => ['bool', 'index='=>'?string', 'webIndex='=>'string'], - 'new' => ['bool', 'index='=>'?string', 'webIndex='=>'?string'], - ], - 'PharData::setSignatureAlgorithm' => [ - 'old' => ['void', 'algo'=>'int', 'privateKey='=>'string'], - 'new' => ['void', 'algo'=>'int', 'privateKey='=>'?string'], - ], - 'PharFileInfo::getMetadata' => [ - 'old' => ['mixed'], - 'new' => ['mixed', 'unserializeOptions='=>'array'], - ], - 'PharFileInfo::isCompressed' => [ - 'old' => ['bool', 'compression='=>'int'], - 'new' => ['bool', 'compression='=>'?int'], - ], - 'RecursiveDirectoryIterator::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'RecursiveDirectoryIterator::getPathInfo' => [ - 'old' => ['?SplFileInfo', 'class='=>'class-string'], - 'new' => ['?SplFileInfo', 'class='=>'?class-string'], - ], - 'RecursiveDirectoryIterator::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'RecursiveIteratorIterator::getSubIterator' => [ - 'old' => ['?RecursiveIterator', 'level='=>'int'], - 'new' => ['?RecursiveIterator', 'level='=>'?int'], - ], - 'RecursiveTreeIterator::getSubIterator' => [ - 'old' => ['?RecursiveIterator', 'level='=>'int'], - 'new' => ['?RecursiveIterator', 'level='=>'?int'], - ], - 'ReflectionClass::getConstants' => [ - 'old' => ['array'], - 'new' => ['array', 'filter='=>'?int'], - ], - 'ReflectionClass::getReflectionConstants' => [ - 'old' => ['list'], - 'new' => ['list', 'filter='=>'?int'], - ], - 'ReflectionClass::newInstanceArgs' => [ - 'old' => ['object', 'args='=>'list'], - 'new' => ['object', 'args='=>'list|array'], - ], - 'ReflectionMethod::getClosure' => [ - 'old' => ['?Closure', 'object='=>'object'], - 'new' => ['Closure', 'object='=>'?object'], - ], - 'ReflectionObject::getConstants' => [ - 'old' => ['array'], - 'new' => ['array', 'filter='=>'?int'], - ], - 'ReflectionObject::getReflectionConstants' => [ - 'old' => ['list<\ReflectionClassConstant>'], - 'new' => ['list<\ReflectionClassConstant>', 'filter='=>'?int'], - ], - 'ReflectionObject::newInstanceArgs' => [ - 'old' => ['object', 'args='=>'list'], - 'new' => ['object', 'args='=>'list|array'], - ], - 'ReflectionProperty::getValue' => [ - 'old' => ['mixed', 'object='=>'object'], - 'new' => ['mixed', 'object='=>'null|object'], - ], - 'ReflectionProperty::isInitialized' => [ - 'old' => ['bool', 'object'=>'object'], - 'new' => ['bool', 'object='=>'null|object'], - ], - 'SplFileInfo::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'SplFileInfo::getPathInfo' => [ - 'old' => ['SplFileInfo|null', 'class='=>'class-string'], - 'new' => ['SplFileInfo|null', 'class='=>'?class-string'], - ], - 'SplFileInfo::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'SplFileObject::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'SplFileObject::getPathInfo' => [ - 'old' => ['SplFileInfo|null', 'class='=>'class-string'], - 'new' => ['SplFileInfo|null', 'class='=>'?class-string'], - ], - 'SplFileObject::openFile' => [ - 'old' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'SplTempFileObject::getFileInfo' => [ - 'old' => ['SplFileInfo', 'class='=>'class-string'], - 'new' => ['SplFileInfo', 'class='=>'?class-string'], - ], - 'SplTempFileObject::getPathInfo' => [ - 'old' => ['SplFileInfo|null', 'class='=>'class-string'], - 'new' => ['SplFileInfo|null', 'class='=>'?class-string'], - ], - 'SplTempFileObject::openFile' => [ - 'old' => ['SplTempFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'new' => ['SplTempFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - ], - 'tidy::__construct' => [ - 'old' => ['void', 'filename='=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'new' => ['void', 'filename='=>'?string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], - ], - 'tidy::parseFile' => [ - 'old' => ['bool', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'new' => ['bool', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], - ], - 'tidy::parseString' => [ - 'old' => ['bool', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'new' => ['bool', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], - ], - 'tidy::repairFile' => [ - 'old' => ['string', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'new' => ['string', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], - ], - 'tidy::repairString' => [ - 'old' => ['string', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], - ], - 'XMLWriter::flush' => [ - 'old' => ['string|int|false', 'empty='=>'bool'], - 'new' => ['string|int', 'empty='=>'bool'], - ], - 'SimpleXMLElement::asXML' => [ - 'old' => ['string|bool', 'filename'=>'string'], - 'new' => ['string|bool', 'filename='=>'?string'], - ], - 'SimpleXMLElement::saveXML' => [ - 'old' => ['string|bool', 'filename='=>'string'], - 'new' => ['string|bool', 'filename='=>'?string'], - ], - 'SoapClient::__doRequest' => [ - 'old' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'], - 'new' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'], - ], - 'SplFileObject::fgets' => [ - 'old' => ['string|false'], - 'new' => ['string'], - ], - 'SplFileObject::getCurrentLine' => [ - 'old' => ['string|false'], - 'new' => ['string'], - ], - 'XMLReader::next' => [ - 'old' => ['bool', 'name='=>'string'], - 'new' => ['bool', 'name='=>'?string'], - ], - 'XMLWriter::startAttributeNs' => [ - 'old' => ['bool', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string'], - 'new' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - ], - 'XMLWriter::writeAttributeNs' => [ - 'old' => ['bool', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - 'new' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - ], - 'XMLWriter::writeDtdEntity' => [ - 'old' => ['bool', 'name'=>'string', 'content'=>'string', 'isParam'=>'bool', 'publicId'=>'string', 'systemId'=>'string', 'notationData'=>'string'], - 'new' => ['bool', 'name'=>'string', 'content'=>'string', 'isParam='=>'bool', 'publicId='=>'?string', 'systemId='=>'?string', 'notationData='=>'?string'], - ], - 'ZipArchive::getStatusString' => [ - 'old' => ['string|false'], - 'new' => ['string'], - ], - 'ZipArchive::setEncryptionIndex' => [ - 'old' => ['bool', 'index'=>'int', 'method'=>'int', 'password='=>'string'], - 'new' => ['bool', 'index'=>'int', 'method'=>'int', 'password='=>'?string'], - ], - 'ZipArchive::setEncryptionName' => [ - 'old' => ['bool', 'name'=>'string', 'method'=>'int', 'password='=>'string'], - 'new' => ['bool', 'name'=>'string', 'method'=>'int', 'password='=>'?string'], - ], - 'array_column' => [ - 'old' => ['array', 'array'=>'array', 'column_key'=>'mixed', 'index_key='=>'mixed'], - 'new' => ['array', 'array'=>'array', 'column_key'=>'int|string|null', 'index_key='=>'int|string|null'], - ], - 'array_combine' => [ - 'old' => ['array|false', 'keys'=>'string[]|int[]', 'values'=>'array'], - 'new' => ['array', 'keys'=>'string[]|int[]', 'values'=>'array'], - ], - 'array_diff' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_diff_assoc' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_diff_key' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_filter' => [ - 'old' => ['array', 'array'=>'array', 'callback='=>'callable(mixed,array-key=):mixed', 'mode='=>'int'], - 'new' => ['array', 'array'=>'array', 'callback='=>'callable(mixed,array-key=):mixed|null', 'mode='=>'int'], - ], - 'array_key_exists' => [ - 'old' => ['bool', 'key'=>'string|int', 'array'=>'array|object'], - 'new' => ['bool', 'key'=>'string|int', 'array'=>'array'], - ], - 'array_intersect' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_intersect_assoc' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_intersect_key' => [ - 'old' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'new' => ['array', 'array'=>'array', '...arrays='=>'array'], - ], - 'array_splice' => [ - 'old' => ['array', '&rw_array'=>'array', 'offset'=>'int', 'length='=>'int', 'replacement='=>'array|string'], - 'new' => ['array', '&rw_array'=>'array', 'offset'=>'int', 'length='=>'?int', 'replacement='=>'array|string'], - ], - 'bcadd' => [ - 'old' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bccomp' => [ - 'old' => ['int', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['int', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcdiv' => [ - 'old' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcmod' => [ - 'old' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcmul' => [ - 'old' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcpow' => [ - 'old' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcpowmod' => [ - 'old' => ['numeric-string|false', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'modulus'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'modulus'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcscale' => [ - 'old' => ['int', 'scale='=>'int'], - 'new' => ['int', 'scale='=>'int|null'], - ], - 'bcsqrt' => [ - 'old' => ['numeric-string', 'num'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bcsub' => [ - 'old' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'new' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int|null'], - ], - 'bind_textdomain_codeset' => [ - 'old' => ['string', 'domain'=>'string', 'codeset'=>'string'], - 'new' => ['string', 'domain'=>'string', 'codeset'=>'?string'], - ], - 'bindtextdomain' => [ - 'old' => ['string', 'domain'=>'string', 'directory'=>'string'], - 'new' => ['string', 'domain'=>'string', 'directory'=>'?string'], - ], - 'bzdecompress' => [ - 'old' => ['string|int|false', 'data'=>'string', 'use_less_memory='=>'int'], - 'new' => ['string|int|false', 'data'=>'string', 'use_less_memory='=>'bool'], - ], - 'bzwrite' => [ - 'old' => ['int|false', 'bz'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'bz'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'collator_get_strength' => [ - 'old' => ['int|false', 'object'=>'collator'], - 'new' => ['int', 'object'=>'collator'], - ], - 'com_load_typelib' => [ - 'old' => ['bool', 'typelib_name'=>'string', 'case_insensitive='=>'bool'], - 'new' => ['bool', 'typelib_name'=>'string', 'case_insensitive='=>'true'], - ], - 'count' => [ - 'old' => ['int<0, max>', 'value'=>'Countable|array|SimpleXMLElement', 'mode='=>'int'], - 'new' => ['int<0, max>', 'value'=>'Countable|array', 'mode='=>'int'], - ], - 'sizeof' => [ - 'old' => ['int<0, max>', 'value'=>'Countable|array|SimpleXMLElement', 'mode='=>'int'], - 'new' => ['int<0, max>', 'value'=>'Countable|array', 'mode='=>'int'], - ], - 'count_chars' => [ - 'old' => ['array|false', 'input'=>'string', 'mode='=>'0|1|2'], - 'new' => ['array', 'input'=>'string', 'mode='=>'0|1|2'], - ], - 'count_chars\'1' => [ - 'old' => ['string|false', 'input'=>'string', 'mode='=>'3|4'], - 'new' => ['string', 'input'=>'string', 'mode='=>'3|4'], - ], - 'crypt' => [ - 'old' => ['string', 'string'=>'string', 'salt='=>'string'], - 'new' => ['string', 'string'=>'string', 'salt'=>'string'], - ], - 'curl_close' => [ - 'old' => ['void', 'ch'=>'resource'], - 'new' => ['void', 'handle'=>'CurlHandle'], - ], - 'curl_copy_handle' => [ - 'old' => ['resource|false', 'ch'=>'resource'], - 'new' => ['CurlHandle|false', 'handle'=>'CurlHandle'], - ], - 'curl_errno' => [ - 'old' => ['int', 'ch'=>'resource'], - 'new' => ['int', 'handle'=>'CurlHandle'], - ], - 'curl_error' => [ - 'old' => ['string', 'ch'=>'resource'], - 'new' => ['string', 'handle'=>'CurlHandle'], - ], - 'curl_escape' => [ - 'old' => ['string|false', 'ch'=>'resource', 'string'=>'string'], - 'new' => ['string|false', 'handle'=>'CurlHandle', 'string'=>'string'], - ], - 'curl_exec' => [ - 'old' => ['bool|string', 'ch'=>'resource'], - 'new' => ['bool|string', 'handle'=>'CurlHandle'], - ], - 'curl_file_create' => [ - 'old' => ['CURLFile', 'filename'=>'string', 'mimetype='=>'string', 'postfilename='=>'string'], - 'new' => ['CURLFile', 'filename'=>'string', 'mime_type='=>'string|null', 'posted_filename='=>'string|null'], - ], - 'curl_getinfo' => [ - 'old' => ['mixed', 'ch'=>'resource', 'option='=>'int'], - 'new' => ['mixed', 'handle'=>'CurlHandle', 'option='=>'?int'], - ], - 'curl_init' => [ - 'old' => ['resource|false', 'url='=>'string'], - 'new' => ['CurlHandle|false', 'url='=>'?string'], - ], - 'curl_multi_add_handle' => [ - 'old' => ['int', 'mh'=>'resource', 'ch'=>'resource'], - 'new' => ['int', 'multi_handle'=>'CurlMultiHandle', 'handle'=>'CurlHandle'], - ], - 'curl_multi_close' => [ - 'old' => ['void', 'mh'=>'resource'], - 'new' => ['void', 'multi_handle'=>'CurlMultiHandle'], - ], - 'curl_multi_errno' => [ - 'old' => ['int|false', 'mh'=>'resource'], - 'new' => ['int', 'multi_handle'=>'CurlMultiHandle'], - ], - 'curl_multi_exec' => [ - 'old' => ['int', 'mh'=>'resource', '&w_still_running'=>'int'], - 'new' => ['int', 'multi_handle'=>'CurlMultiHandle', '&w_still_running'=>'int'], - ], - 'curl_multi_getcontent' => [ - 'old' => ['string', 'ch'=>'resource'], - 'new' => ['string', 'handle'=>'CurlHandle'], - ], - 'curl_multi_info_read' => [ - 'old' => ['array|false', 'mh'=>'resource', '&w_msgs_in_queue='=>'int'], - 'new' => ['array|false', 'multi_handle'=>'CurlMultiHandle', '&w_queued_messages='=>'int'], - ], - 'curl_multi_init' => [ - 'old' => ['resource'], - 'new' => ['CurlMultiHandle'], - ], - 'curl_multi_remove_handle' => [ - 'old' => ['int', 'mh'=>'resource', 'ch'=>'resource'], - 'new' => ['int', 'multi_handle'=>'CurlMultiHandle', 'handle'=>'CurlHandle'], - ], - 'curl_multi_select' => [ - 'old' => ['int', 'mh'=>'resource', 'timeout='=>'float'], - 'new' => ['int', 'multi_handle'=>'CurlMultiHandle', 'timeout='=>'float'], - ], - 'curl_multi_setopt' => [ - 'old' => ['bool', 'mh'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'new' => ['bool', 'multi_handle'=>'CurlMultiHandle', 'option'=>'int', 'value'=>'mixed'], - ], - 'curl_pause' => [ - 'old' => ['int', 'ch'=>'resource', 'bitmask'=>'int'], - 'new' => ['int', 'handle'=>'CurlHandle', 'flags'=>'int'], - ], - 'curl_reset' => [ - 'old' => ['void', 'ch'=>'resource'], - 'new' => ['void', 'handle'=>'CurlHandle'], - ], - 'curl_setopt' => [ - 'old' => ['bool', 'ch'=>'resource', 'option'=>'int', 'value'=>'callable|mixed'], - 'new' => ['bool', 'handle'=>'CurlHandle', 'option'=>'int', 'value'=>'callable|mixed'], - ], - 'curl_setopt_array' => [ - 'old' => ['bool', 'ch'=>'resource', 'options'=>'array'], - 'new' => ['bool', 'handle'=>'CurlHandle', 'options'=>'array'], - ], - 'curl_share_close' => [ - 'old' => ['void', 'sh'=>'resource'], - 'new' => ['void', 'share_handle'=>'CurlShareHandle'], - ], - 'curl_share_errno' => [ - 'old' => ['int|false', 'sh'=>'resource'], - 'new' => ['int', 'share_handle'=>'CurlShareHandle'], - ], - 'curl_share_init' => [ - 'old' => ['resource'], - 'new' => ['CurlShareHandle'], - ], - 'curl_share_setopt' => [ - 'old' => ['bool', 'sh'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'new' => ['bool', 'share_handle'=>'CurlShareHandle', 'option'=>'int', 'value'=>'mixed'], - ], - 'curl_unescape' => [ - 'old' => ['string|false', 'ch'=>'resource', 'string'=>'string'], - 'new' => ['string|false', 'handle'=>'CurlHandle', 'string'=>'string'], - ], - 'date' => [ - 'old' => ['string', 'format'=>'string', 'timestamp='=>'int'], - 'new' => ['string', 'format'=>'string', 'timestamp='=>'?int'], - ], - 'date_add' => [ - 'old' => ['DateTime|false', 'object'=>'DateTime', 'interval'=>'DateInterval'], - 'new' => ['DateTime', 'object'=>'DateTime', 'interval'=>'DateInterval'], - ], - 'date_date_set' => [ - 'old' => ['DateTime|false', 'object'=>'DateTime', 'year'=>'int', 'month'=>'int', 'day'=>'int'], - 'new' => ['DateTime', 'object'=>'DateTime', 'year'=>'int', 'month'=>'int', 'day'=>'int'], - ], - 'date_diff' => [ - 'old' => ['DateInterval|false', 'baseObject'=>'DateTimeInterface', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], - 'new' => ['DateInterval', 'baseObject'=>'DateTimeInterface', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], - ], - 'date_format' => [ - 'old' => ['string|false', 'object'=>'DateTimeInterface', 'format'=>'string'], - 'new' => ['string', 'object'=>'DateTimeInterface', 'format'=>'string'], - ], - 'date_offset_get' => [ - 'old' => ['int|false', 'object'=>'DateTimeInterface'], - 'new' => ['int', 'object'=>'DateTimeInterface'], - ], - 'date_parse' => [ - 'old' => ['array|false', 'datetime'=>'string'], - 'new' => ['array', 'datetime'=>'string'], - ], - 'date_sub' => [ - 'old' => ['DateTime|false', 'object'=>'DateTime', 'interval'=>'DateInterval'], - 'new' => ['DateTime', 'object'=>'DateTime', 'interval'=>'DateInterval'], - ], - 'date_sun_info' => [ - 'old' => ['array|false', 'timestamp'=>'int', 'latitude'=>'float', 'longitude'=>'float'], - 'new' => ['array', 'timestamp'=>'int', 'latitude'=>'float', 'longitude'=>'float'], - ], - 'date_sunrise' => [ - 'old' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'float', 'longitude='=>'float', 'zenith='=>'float', 'utcOffset='=>'float'], - 'new' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'?float', 'longitude='=>'?float', 'zenith='=>'?float', 'utcOffset='=>'?float'], - ], - 'date_sunset' => [ - 'old' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'float', 'longitude='=>'float', 'zenith='=>'float', 'utcOffset='=>'float'], - 'new' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'?float', 'longitude='=>'?float', 'zenith='=>'?float', 'utcOffset='=>'?float'], - ], - 'date_time_set' => [ - 'old' => ['DateTime|false', 'object'=>'', 'hour'=>'', 'minute'=>'', 'second='=>'', 'microsecond='=>''], - 'new' => ['DateTime', 'object'=>'', 'hour'=>'', 'minute'=>'', 'second='=>'', 'microsecond='=>''], - ], - 'date_timestamp_set' => [ - 'old' => ['DateTime|false', 'object'=>'DateTime', 'timestamp'=>'int'], - 'new' => ['DateTime', 'object'=>'DateTime', 'timestamp'=>'int'], - ], - 'date_timezone_set' => [ - 'old' => ['DateTime|false', 'object'=>'DateTime', 'timezone'=>'DateTimeZone'], - 'new' => ['DateTime', 'object'=>'DateTime', 'timezone'=>'DateTimeZone'], - ], - 'datefmt_create' => [ - 'old' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'DateTimeZone|IntlTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'string'], - 'new' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'DateTimeZone|IntlTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - ], - 'deflate_add' => [ - 'old' => ['string|false', 'context'=>'resource', 'data'=>'string', 'flush_mode='=>'int'], - 'new' => ['string|false', 'context'=>'DeflateContext', 'data'=>'string', 'flush_mode='=>'int'], - ], - 'deflate_init' => [ - 'old' => ['resource|false', 'encoding'=>'int', 'options='=>'array'], - 'new' => ['DeflateContext|false', 'encoding'=>'int', 'options='=>'array'], - ], - 'dom_import_simplexml' => [ - 'old' => ['DOMElement|null', 'node'=>'SimpleXMLElement'], - 'new' => ['DOMElement', 'node'=>'SimpleXMLElement'], - ], - 'easter_date' => [ - 'old' => ['int', 'year='=>'int', 'mode='=>'int'], - 'new' => ['int', 'year='=>'?int', 'mode='=>'int'], - ], - 'easter_days' => [ - 'old' => ['int', 'year='=>'int', 'mode='=>'int'], - 'new' => ['int', 'year='=>'?int', 'mode='=>'int'], - ], - 'enchant_broker_describe' => [ - 'old' => ['array|false', 'broker'=>'resource'], - 'new' => ['array', 'broker'=>'EnchantBroker'], - ], - 'enchant_broker_dict_exists' => [ - 'old' => ['bool', 'broker'=>'resource', 'tag'=>'string'], - 'new' => ['bool', 'broker'=>'EnchantBroker', 'tag'=>'string'], - ], - 'enchant_broker_free' => [ - 'old' => ['bool', 'broker'=>'resource'], - 'new' => ['bool', 'broker'=>'EnchantBroker'], - ], - 'enchant_broker_free_dict' => [ - 'old' => ['bool', 'dictionary'=>'resource'], - 'new' => ['bool', 'dictionary'=>'EnchantBroker'], - ], - 'enchant_broker_get_dict_path' => [ - 'old' => ['string', 'broker'=>'resource', 'type'=>'int'], - 'new' => ['string', 'broker'=>'EnchantBroker', 'type'=>'int'], - ], - 'enchant_broker_get_error' => [ - 'old' => ['string|false', 'broker'=>'resource'], - 'new' => ['string|false', 'broker'=>'EnchantBroker'], - ], - 'enchant_broker_init' => [ - 'old' => ['resource|false'], - 'new' => ['EnchantBroker|false'], - ], - 'enchant_broker_list_dicts' => [ - 'old' => ['array|false', 'broker'=>'resource'], - 'new' => ['array', 'broker'=>'EnchantBroker'], - ], - 'enchant_broker_request_dict' => [ - 'old' => ['resource|false', 'broker'=>'resource', 'tag'=>'string'], - 'new' => ['EnchantDictionary|false', 'broker'=>'EnchantBroker', 'tag'=>'string'], - ], - 'enchant_broker_request_pwl_dict' => [ - 'old' => ['resource|false', 'broker'=>'resource', 'filename'=>'string'], - 'new' => ['EnchantDictionary|false', 'broker'=>'EnchantBroker', 'filename'=>'string'], - ], - 'enchant_broker_set_dict_path' => [ - 'old' => ['bool', 'broker'=>'resource', 'type'=>'int', 'path'=>'string'], - 'new' => ['bool', 'broker'=>'EnchantBroker', 'type'=>'int', 'path'=>'string'], - ], - 'enchant_broker_set_ordering' => [ - 'old' => ['bool', 'broker'=>'resource', 'tag'=>'string', 'ordering'=>'string'], - 'new' => ['bool', 'broker'=>'EnchantBroker', 'tag'=>'string', 'ordering'=>'string'], - ], - 'enchant_dict_add_to_personal' => [ - 'old' => ['void', 'dictionary'=>'resource', 'word'=>'string'], - 'new' => ['void', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], - ], - 'enchant_dict_add_to_session' => [ - 'old' => ['void', 'dictionary'=>'resource', 'word'=>'string'], - 'new' => ['void', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], - ], - 'enchant_dict_check' => [ - 'old' => ['bool', 'dictionary'=>'resource', 'word'=>'string'], - 'new' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], - ], - 'enchant_dict_describe' => [ - 'old' => ['array', 'dictionary'=>'resource'], - 'new' => ['array', 'dictionary'=>'EnchantDictionary'], - ], - 'enchant_dict_get_error' => [ - 'old' => ['string', 'dictionary'=>'resource'], - 'new' => ['string', 'dictionary'=>'EnchantDictionary'], - ], - 'enchant_dict_is_in_session' => [ - 'old' => ['bool', 'dictionary'=>'resource', 'word'=>'string'], - 'new' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], - ], - 'enchant_dict_quick_check' => [ - 'old' => ['bool', 'dictionary'=>'resource', 'word'=>'string', '&w_suggestions='=>'array'], - 'new' => ['bool', 'dictionary'=>'EnchantDictionary', 'word'=>'string', '&w_suggestions='=>'array'], - ], - 'enchant_dict_store_replacement' => [ - 'old' => ['void', 'dictionary'=>'resource', 'misspelled'=>'string', 'correct'=>'string'], - 'new' => ['void', 'dictionary'=>'EnchantDictionary', 'misspelled'=>'string', 'correct'=>'string'], - ], - 'enchant_dict_suggest' => [ - 'old' => ['array', 'dictionary'=>'resource', 'word'=>'string'], - 'new' => ['array', 'dictionary'=>'EnchantDictionary', 'word'=>'string'], - ], - 'error_log' => [ - 'old' => ['bool', 'message'=>'string', 'message_type='=>'int', 'destination='=>'string', 'additional_headers='=>'string'], - 'new' => ['bool', 'message'=>'string', 'message_type='=>'int', 'destination='=>'?string', 'additional_headers='=>'?string'], - ], - 'error_reporting' => [ - 'old' => ['int', 'error_level='=>'int'], - 'new' => ['int', 'error_level='=>'?int'], - ], - 'exif_read_data' => [ - 'old' => ['array|false', 'file'=>'string|resource', 'required_sections='=>'string', 'as_arrays='=>'bool', 'read_thumbnail='=>'bool'], - 'new' => ['array|false', 'file'=>'string|resource', 'required_sections='=>'?string', 'as_arrays='=>'bool', 'read_thumbnail='=>'bool'], - ], - 'explode' => [ - 'old' => ['list|false', 'separator'=>'string', 'string'=>'string', 'limit='=>'int'], - 'new' => ['list', 'separator'=>'string', 'string'=>'string', 'limit='=>'int'], - ], - 'fgetcsv' => [ - 'old' => ['list|array{0: null}|false', 'stream'=>'resource', 'length='=>'int', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'new' => ['list|array{0: null}|false', 'stream'=>'resource', 'length='=>'?int', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - ], - 'fgets' => [ - 'old' => ['string|false', 'stream'=>'resource', 'length='=>'int'], - 'new' => ['string|false', 'stream'=>'resource', 'length='=>'?int'], - ], - 'file_get_contents' => [ - 'old' => ['string|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'?resource', 'offset='=>'int', 'length='=>'int'], - 'new' => ['string|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'?resource', 'offset='=>'int', 'length='=>'?int'], - ], - 'finfo_open' => [ - 'old' => ['resource|false', 'flags='=>'int', 'magic_database='=>'string'], - 'new' => ['resource|false', 'flags='=>'int', 'magic_database='=>'?string'], - ], - 'fputs' => [ - 'old' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'fsockopen' => [ - 'old' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float'], - 'new' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float'], - ], - 'fwrite' => [ - 'old' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'get_class_methods' => [ - 'old' => ['list|null', 'object_or_class'=>'mixed'], - 'new' => ['list', 'object_or_class'=>'object|class-string'], - ], - 'get_headers' => [ - 'old' => ['array|false', 'url'=>'string', 'associative='=>'int', 'context='=>'?resource'], - 'new' => ['array|false', 'url'=>'string', 'associative='=>'bool', 'context='=>'?resource'], - ], - 'get_parent_class' => [ - 'old' => ['class-string|false', 'object_or_class='=>'mixed'], - 'new' => ['class-string|false', 'object_or_class='=>'object|class-string'], - ], - 'get_resources' => [ - 'old' => ['array', 'type='=>'string'], - 'new' => ['array', 'type='=>'?string'], - ], - 'getdate' => [ - 'old' => ['array{seconds: int<0, 59>, minutes: int<0, 59>, hours: int<0, 23>, mday: int<1, 31>, wday: int<0, 6>, mon: int<1, 12>, year: int, yday: int<0, 365>, weekday: "Monday"|"Tuesday"|"Wednesday"|"Thursday"|"Friday"|"Saturday"|"Sunday", month: "January"|"February"|"March"|"April"|"May"|"June"|"July"|"August"|"September"|"October"|"November"|"December", 0: int}', 'timestamp='=>'int'], - 'new' => ['array{seconds: int<0, 59>, minutes: int<0, 59>, hours: int<0, 23>, mday: int<1, 31>, wday: int<0, 6>, mon: int<1, 12>, year: int, yday: int<0, 365>, weekday: "Monday"|"Tuesday"|"Wednesday"|"Thursday"|"Friday"|"Saturday"|"Sunday", month: "January"|"February"|"March"|"April"|"May"|"June"|"July"|"August"|"September"|"October"|"November"|"December", 0: int}', 'timestamp='=>'?int'], - ], - 'gmdate' => [ - 'old' => ['string', 'format'=>'string', 'timestamp='=>'int'], - 'new' => ['string', 'format'=>'string', 'timestamp='=>'int|null'], - ], - 'gmmktime' => [ - 'old' => ['int|false', 'hour='=>'int', 'minute='=>'int', 'second='=>'int', 'month='=>'int', 'day='=>'int', 'year='=>'int'], - 'new' => ['int|false', 'hour'=>'int', 'minute='=>'int|null', 'second='=>'int|null', 'month='=>'int|null', 'day='=>'int|null', 'year='=>'int|null'], - ], - 'gmp_binomial' => [ - 'old' => ['GMP|false', 'n'=>'GMP|string|int', 'k'=>'int'], - 'new' => ['GMP', 'n'=>'GMP|string|int', 'k'=>'int'], - ], - 'gmp_export' => [ - 'old' => ['string|false', 'num'=>'GMP|string|int', 'word_size='=>'int', 'flags='=>'int'], - 'new' => ['string', 'num'=>'GMP|string|int', 'word_size='=>'int', 'flags='=>'int'], - ], - 'gmp_import' => [ - 'old' => ['GMP|false', 'data'=>'string', 'word_size='=>'int', 'flags='=>'int'], - 'new' => ['GMP', 'data'=>'string', 'word_size='=>'int', 'flags='=>'int'], - ], - 'gmstrftime' => [ - 'old' => ['string|false', 'format'=>'string', 'timestamp='=>'int'], - 'new' => ['string|false', 'format'=>'string', 'timestamp='=>'?int'], - ], - 'gzgets' => [ - 'old' => ['string|false', 'stream'=>'resource', 'length='=>'int'], - 'new' => ['string|false', 'stream'=>'resource', 'length='=>'?int'], - ], - 'gzputs' => [ - 'old' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'gzwrite' => [ - 'old' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'hash' => [ - 'old' => ['string|false', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool'], - 'new' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool'], - ], - 'hash_hmac' => [ - 'old' => ['non-empty-string|false', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], - 'new' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], - ], - 'hash_hmac_file' => [ - 'old' => ['non-empty-string|false', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], - 'new' => ['non-empty-string', 'algo'=>'string', 'filename'=>'string', 'key'=>'string', 'binary='=>'bool'], - ], - 'hash_init' => [ - 'old' => ['HashContext|false', 'algo'=>'string', 'flags='=>'int', 'key='=>'string'], - 'new' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string'], - ], - 'hash_hkdf' => [ - 'old' => ['non-empty-string|false', 'algo'=>'string', 'key'=>'string', 'length='=>'int', 'info='=>'string', 'salt='=>'string'], - 'new' => ['non-empty-string', 'algo'=>'string', 'key'=>'string', 'length='=>'int', 'info='=>'string', 'salt='=>'string'], - ], - 'hash_update_file' => [ - 'old' => ['bool', 'context'=>'HashContext', 'filename'=>'string', 'stream_context='=>'resource'], - 'new' => ['bool', 'context'=>'HashContext', 'filename'=>'string', 'stream_context='=>'?resource'], - ], - 'header_remove' => [ - 'old' => ['void', 'name='=>'string'], - 'new' => ['void', 'name='=>'?string'], - ], - 'html_entity_decode' => [ - 'old' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'?string'], - ], - 'htmlentities' => [ - 'old' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string', 'double_encode='=>'bool'], - 'new' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'?string', 'double_encode='=>'bool'], - ], - 'iconv_mime_decode' => [ - 'old' => ['string|false', 'string'=>'string', 'mode='=>'int', 'encoding='=>'string'], - 'new' => ['string|false', 'string'=>'string', 'mode='=>'int', 'encoding='=>'?string'], - ], - 'iconv_mime_decode_headers' => [ - 'old' => ['array|false', 'headers'=>'string', 'mode='=>'int', 'encoding='=>'string'], - 'new' => ['array|false', 'headers'=>'string', 'mode='=>'int', 'encoding='=>'?string'], - ], - 'iconv_strlen' => [ - 'old' => ['0|positive-int|false', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['0|positive-int|false', 'string'=>'string', 'encoding='=>'?string'], - ], - 'iconv_strpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'?string'], - ], - 'iconv_strrpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'?string'], - ], - 'iconv_substr' => [ - 'old' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'int', 'encoding='=>'string'], - 'new' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'?int', 'encoding='=>'?string'], - ], - 'idate' => [ - 'old' => ['int', 'format'=>'string', 'timestamp='=>'int'], - 'new' => ['int', 'format'=>'string', 'timestamp='=>'?int'], - ], - 'ignore_user_abort' => [ - 'old' => ['int', 'enable='=>'bool'], - 'new' => ['int', 'enable='=>'?bool'], - ], - 'imageaffine' => [ - 'old' => ['resource|false', 'src'=>'resource', 'affine'=>'array', 'clip='=>'array'], - 'new' => ['false|GdImage', 'image'=>'GdImage', 'affine'=>'array', 'clip='=>'?array'], - ], - 'imagealphablending' => [ - 'old' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'new' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], - ], - 'imageantialias' => [ - 'old' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'new' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], - ], - 'imagearc' => [ - 'old' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int'], - ], - 'imagebmp' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'resource|string|null', 'compressed='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'resource|string|null', 'compressed='=>'bool'], - ], - 'imagechar' => [ - 'old' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - ], - 'imagecharup' => [ - 'old' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - ], - 'imagecolorallocate' => [ - 'old' => ['int|false', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'new' => ['int|false', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - ], - 'imagecolorallocatealpha' => [ - 'old' => ['int|false', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'new' => ['int|false', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - ], - 'imagecolorat' => [ - 'old' => ['int|false', 'image'=>'resource', 'x'=>'int', 'y'=>'int'], - 'new' => ['int|false', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int'], - ], - 'imagecolorclosest' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - ], - 'imagecolorclosestalpha' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - ], - 'imagecolorclosesthwb' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - ], - 'imagecolordeallocate' => [ - 'old' => ['bool', 'image'=>'resource', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'color'=>'int'], - ], - 'imagecolorexact' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - ], - 'imagecolorexactalpha' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - ], - 'imagecolormatch' => [ - 'old' => ['bool', 'image1'=>'resource', 'image2'=>'resource'], - 'new' => ['bool', 'image1'=>'GdImage', 'image2'=>'GdImage'], - ], - 'imagecolorresolve' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - ], - 'imagecolorresolvealpha' => [ - 'old' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - ], - 'imagecolorset' => [ - 'old' => ['false|null', 'image'=>'resource', 'color'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], - 'new' => ['false|null', 'image'=>'GdImage', 'color'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], - ], - 'imagecolorsforindex' => [ - 'old' => ['array', 'image'=>'resource', 'color'=>'int'], - 'new' => ['array', 'image'=>'GdImage', 'color'=>'int'], - ], - 'imagecolorstotal' => [ - 'old' => ['int', 'image'=>'resource'], - 'new' => ['int', 'image'=>'GdImage'], - ], - 'imagecolortransparent' => [ - 'old' => ['int', 'image'=>'resource', 'color='=>'int'], - 'new' => ['int', 'image'=>'GdImage', 'color='=>'?int'], - ], - 'imageconvolution' => [ - 'old' => ['bool', 'image'=>'resource', 'matrix'=>'array', 'divisor'=>'float', 'offset'=>'float'], - 'new' => ['bool', 'image'=>'GdImage', 'matrix'=>'array', 'divisor'=>'float', 'offset'=>'float'], - ], - 'imagecopy' => [ - 'old' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'new' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - ], - 'imagecopymerge' => [ - 'old' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - 'new' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - ], - 'imagecopymergegray' => [ - 'old' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - 'new' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - ], - 'imagecopyresampled' => [ - 'old' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'new' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - ], - 'imagecopyresized' => [ - 'old' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'new' => ['bool', 'dst_image'=>'GdImage', 'src_image'=>'GdImage', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - ], - 'imagecreate' => [ - 'old' => ['resource|false', 'x_size'=>'int', 'y_size'=>'int'], - 'new' => ['false|GdImage', 'width'=>'int', 'height'=>'int'], - ], - 'imagecreatefrombmp' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromgd' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromgd2' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromgd2part' => [ - 'old' => ['resource|false', 'filename'=>'string', 'srcx'=>'int', 'srcy'=>'int', 'width'=>'int', 'height'=>'int'], - 'new' => ['false|GdImage', 'filename'=>'string', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int'], - ], - 'imagecreatefromgif' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromjpeg' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefrompng' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromstring' => [ - 'old' => ['resource|false', 'image'=>'string'], - 'new' => ['false|GdImage', 'data'=>'string'], - ], - 'imagecreatefromwbmp' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromwebp' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromxbm' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatefromxpm' => [ - 'old' => ['resource|false', 'filename'=>'string'], - 'new' => ['false|GdImage', 'filename'=>'string'], - ], - 'imagecreatetruecolor' => [ - 'old' => ['resource|false', 'x_size'=>'int', 'y_size'=>'int'], - 'new' => ['false|GdImage', 'width'=>'int', 'height'=>'int'], - ], - 'imagecrop' => [ - 'old' => ['resource|false', 'im'=>'resource', 'rect'=>'array'], - 'new' => ['false|GdImage', 'image'=>'GdImage', 'rectangle'=>'array'], - ], - 'imagecropauto' => [ - 'old' => ['resource|false', 'im'=>'resource', 'mode='=>'int', 'threshold='=>'float', 'color='=>'int'], - 'new' => ['false|GdImage', 'image'=>'GdImage', 'mode='=>'int', 'threshold='=>'float', 'color='=>'int'], - ], - 'imagedashedline' => [ - 'old' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - ], - 'imagedestroy' => [ - 'old' => ['bool', 'image'=>'resource'], - 'new' => ['bool', 'image'=>'GdImage'], - ], - 'imageellipse' => [ - 'old' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - ], - 'imagefill' => [ - 'old' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - ], - 'imagefilledarc' => [ - 'old' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int', 'style'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int', 'style'=>'int'], - ], - 'imagefilledellipse' => [ - 'old' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - ], - 'imagefilledpolygon' => [ - 'old' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - ], - 'imagefilledrectangle' => [ - 'old' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - ], - 'imagefilltoborder' => [ - 'old' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'border_color'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'border_color'=>'int', 'color'=>'int'], - ], - 'imagefilter' => [ - 'old' => ['bool', 'image'=>'resource', 'filter'=>'int', '...args='=>'array|int|float|bool'], - 'new' => ['bool', 'image'=>'GdImage', 'filter'=>'int', '...args='=>'array|int|float|bool'], - ], - 'imageflip' => [ - 'old' => ['bool', 'image'=>'resource', 'mode'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'mode'=>'int'], - ], - 'imagefttext' => [ - 'old' => ['array|false', 'image'=>'resource', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], - 'new' => ['array|false', 'image'=>'GdImage', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], - ], - 'imagegammacorrect' => [ - 'old' => ['bool', 'image'=>'resource', 'input_gamma'=>'float', 'output_gamma'=>'float'], - 'new' => ['bool', 'image'=>'GdImage', 'input_gamma'=>'float', 'output_gamma'=>'float'], - ], - 'imagegd' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null'], - ], - 'imagegd2' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'chunk_size='=>'int', 'mode='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'chunk_size='=>'int', 'mode='=>'int'], - ], - 'imagegetclip' => [ - 'old' => ['array|false', 'im'=>'resource'], - 'new' => ['array', 'image'=>'GdImage'], - ], - 'imagegif' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null'], - ], - 'imagegrabscreen' => [ - 'old' => ['false|resource'], - 'new' => ['false|GdImage'], - ], - 'imagegrabwindow' => [ - 'old' => ['false|resource', 'window_handle'=>'int', 'client_area='=>'int'], - 'new' => ['false|GdImage', 'handle'=>'int', 'client_area='=>'int'], - ], - 'imageinterlace' => [ - 'old' => ['int|false', 'image'=>'resource', 'enable='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'enable='=>'bool|null'], - ], - 'imageistruecolor' => [ - 'old' => ['bool', 'image'=>'resource'], - 'new' => ['bool', 'image'=>'GdImage'], - ], - 'imagejpeg' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int'], - ], - 'imagelayereffect' => [ - 'old' => ['bool', 'image'=>'resource', 'effect'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'effect'=>'int'], - ], - 'imageline' => [ - 'old' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - ], - 'imageopenpolygon' => [ - 'old' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points'=>'int', 'color'=>'int'], - ], - 'imagepalettecopy' => [ - 'old' => ['void', 'dst'=>'resource', 'src'=>'resource'], - 'new' => ['void', 'dst'=>'GdImage', 'src'=>'GdImage'], - ], - 'imagepalettetotruecolor' => [ - 'old' => ['bool', 'image'=>'resource'], - 'new' => ['bool', 'image'=>'GdImage'], - ], - 'imagepng' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int', 'filters='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int', 'filters='=>'int'], - ], - 'imagepolygon' => [ - 'old' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - ], - 'imagerectangle' => [ - 'old' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - ], - 'imageresolution' => [ - 'old' => ['array|bool', 'image'=>'resource', 'resolution_x='=>'int', 'resolution_y='=>'int'], - 'new' => ['array|bool', 'image'=>'GdImage', 'resolution_x='=>'?int', 'resolution_y='=>'?int'], - ], - 'imagerotate' => [ - 'old' => ['resource|false', 'src_im'=>'resource', 'angle'=>'float', 'bgdcolor'=>'int', 'ignoretransparent='=>'int'], - 'new' => ['false|GdImage', 'image'=>'GdImage', 'angle'=>'float', 'background_color'=>'int', 'ignore_transparent='=>'bool'], - ], - 'imagesavealpha' => [ - 'old' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'new' => ['bool', 'image'=>'GdImage', 'enable'=>'bool'], - ], - 'imagescale' => [ - 'old' => ['resource|false', 'im'=>'resource', 'new_width'=>'int', 'new_height='=>'int', 'method='=>'int'], - 'new' => ['false|GdImage', 'image'=>'GdImage', 'width'=>'int', 'height='=>'int', 'mode='=>'int'], - ], - 'imagesetbrush' => [ - 'old' => ['bool', 'image'=>'resource', 'brush'=>'resource'], - 'new' => ['bool', 'image'=>'GdImage', 'brush'=>'GdImage'], - ], - 'imagesetclip' => [ - 'old' => ['bool', 'image'=>'resource', 'x1'=>'int', 'x2'=>'int', 'y1'=>'int', 'y2'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x1'=>'int', 'x2'=>'int', 'y1'=>'int', 'y2'=>'int'], - ], - 'imagesetinterpolation' => [ - 'old' => ['bool', 'image'=>'resource', 'method='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'method='=>'int'], - ], - 'imagesetpixel' => [ - 'old' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - ], - 'imagesetstyle' => [ - 'old' => ['bool', 'image'=>'resource', 'style'=>'non-empty-array'], - 'new' => ['bool', 'image'=>'GdImage', 'style'=>'non-empty-array'], - ], - 'imagesetthickness' => [ - 'old' => ['bool', 'image'=>'resource', 'thickness'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'thickness'=>'int'], - ], - 'imagesettile' => [ - 'old' => ['bool', 'image'=>'resource', 'tile'=>'resource'], - 'new' => ['bool', 'image'=>'GdImage', 'tile'=>'GdImage'], - ], - 'imagestring' => [ - 'old' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - ], - 'imagestringup' => [ - 'old' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - ], - 'imagesx' => [ - 'old' => ['int', 'image'=>'resource'], - 'new' => ['int', 'image'=>'GdImage'], - ], - 'imagesy' => [ - 'old' => ['int', 'image'=>'resource'], - 'new' => ['int', 'image'=>'GdImage'], - ], - 'imagetruecolortopalette' => [ - 'old' => ['bool', 'image'=>'resource', 'dither'=>'bool', 'num_colors'=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'dither'=>'bool', 'num_colors'=>'int'], - ], - 'imagettfbbox' => [ - 'old' => ['false|array', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string'], - 'new' => ['false|array', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string', 'options='=>'array'], - ], - 'imagettftext' => [ - 'old' => ['false|array', 'image'=>'resource', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string'], - 'new' => ['false|array', 'image'=>'GdImage', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], - ], - 'imagewbmp' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'foreground_color='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'foreground_color='=>'?int'], - ], - 'imagewebp' => [ - 'old' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int'], - ], - 'imagexbm' => [ - 'old' => ['bool', 'image'=>'resource', 'filename'=>'?string', 'foreground_color='=>'int'], - 'new' => ['bool', 'image'=>'GdImage', 'filename'=>'?string', 'foreground_color='=>'?int'], - ], - 'imap_append' => [ - 'old' => ['bool', 'imap'=>'resource', 'folder'=>'string', 'message'=>'string', 'options='=>'string', 'internal_date='=>'string'], - 'new' => ['bool', 'imap'=>'resource', 'folder'=>'string', 'message'=>'string', 'options='=>'?string', 'internal_date='=>'?string'], - ], - 'imap_headerinfo' => [ - 'old' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int', 'default_host='=>'string|null'], - 'new' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int'], - ], - 'imap_mail' => [ - 'old' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string', 'cc='=>'string', 'bcc='=>'string', 'return_path='=>'string'], - 'new' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'?string', 'cc='=>'?string', 'bcc='=>'?string', 'return_path='=>'?string'], - ], - 'imap_sort' => [ - 'old' => ['array|false', 'imap'=>'resource', 'criteria'=>'int', 'reverse'=>'int', 'flags='=>'int', 'search_criteria='=>'string', 'charset='=>'string'], - 'new' => ['array|false', 'imap'=>'resource', 'criteria'=>'int', 'reverse'=>'bool', 'flags='=>'int', 'search_criteria='=>'?string', 'charset='=>'?string'], - ], - 'inflate_add' => [ - 'old' => ['string|false', 'context'=>'resource', 'data'=>'string', 'flush_mode='=>'int'], - 'new' => ['string|false', 'context'=>'InflateContext', 'data'=>'string', 'flush_mode='=>'int'], - ], - 'inflate_get_read_len' => [ - 'old' => ['int', 'context'=>'resource'], - 'new' => ['int', 'context'=>'InflateContext'], - ], - 'inflate_get_status' => [ - 'old' => ['int', 'context'=>'resource'], - 'new' => ['int', 'context'=>'InflateContext'], - ], - 'inflate_init' => [ - 'old' => ['resource|false', 'encoding'=>'int', 'options='=>'array'], - 'new' => ['InflateContext|false', 'encoding'=>'int', 'options='=>'array'], - ], - 'jdtounix' => [ - 'old' => ['int|false', 'julian_day'=>'int'], - 'new' => ['int', 'julian_day'=>'int'], - ], - 'ldap_add' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_add_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_bind_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'?array'], - ], - 'ldap_compare' => [ - 'old' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'array'], - 'new' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'?array'], - ], - 'ldap_delete' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'?array'], - ], - 'ldap_delete_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'?array'], - ], - 'ldap_exop_passwd' => [ - 'old' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array'], - 'new' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array|null'], - ], - 'ldap_list' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_rename_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - ], - 'ldap_mod_add' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_add_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_del' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_del_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_replace' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_replace_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_modify' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_modify_batch' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'?array'], - ], - 'ldap_read' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - 'new' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_rename' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'array'], - 'new' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - ], - 'ldap_search' => [ - 'old' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'array'], - 'new' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_set_rebind_proc' => [ - 'old' => ['bool', 'ldap'=>'resource', 'callback'=>'callable'], - 'new' => ['bool', 'ldap'=>'resource', 'callback'=>'?callable'], - ], - 'ldap_sasl_bind' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn='=>'string', 'password='=>'string', 'mech='=>'string', 'realm='=>'string', 'authc_id='=>'string', 'authz_id='=>'string', 'props='=>'string'], - 'new' => ['bool', 'ldap'=>'resource', 'dn='=>'?string', 'password='=>'?string', 'mech='=>'?string', 'realm='=>'?string', 'authc_id='=>'?string', 'authz_id='=>'?string', 'props='=>'?string'], - ], - 'libxml_use_internal_errors' => [ - 'old' => ['bool', 'use_errors='=>'bool'], - 'new' => ['bool', 'use_errors='=>'?bool'], - ], - 'locale_get_display_language' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'locale_get_display_name' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'locale_get_display_region' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'locale_get_display_script' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'locale_get_display_variant' => [ - 'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'], - ], - 'localtime' => [ - 'old' => ['array', 'timestamp='=>'int', 'associative='=>'bool'], - 'new' => ['array', 'timestamp='=>'?int', 'associative='=>'bool'], - ], - 'mb_check_encoding' => [ - 'old' => ['bool', 'value='=>'array|string', 'encoding='=>'string'], - 'new' => ['bool', 'value='=>'array|string|null', 'encoding='=>'string|null'], - ], - 'mb_chr' => [ - 'old' => ['non-empty-string|false', 'codepoint'=>'int', 'encoding='=>'string'], - 'new' => ['non-empty-string|false', 'codepoint'=>'int', 'encoding='=>'string|null'], - ], - 'mb_convert_case' => [ - 'old' => ['string', 'string'=>'string', 'mode'=>'int', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'mode'=>'int', 'encoding='=>'string|null'], - ], - 'mb_convert_encoding' => [ - 'old' => ['string|false', 'string'=>'string', 'to_encoding'=>'string', 'from_encoding='=>'mixed'], - 'new' => ['string|false', 'string'=>'string', 'to_encoding'=>'string', 'from_encoding='=>'array|string|null'], - ], - 'mb_convert_encoding\'1' => [ - 'old' => ['array', 'string'=>'array', 'to_encoding'=>'string', 'from_encoding='=>'mixed'], - 'new' => ['array', 'string'=>'array', 'to_encoding'=>'string', 'from_encoding='=>'array|string|null'], - ], - 'mb_convert_kana' => [ - 'old' => ['string', 'string'=>'string', 'mode='=>'string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'mode='=>'string', 'encoding='=>'string|null'], - ], - 'mb_decode_numericentity' => [ - 'old' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string|null'], - ], - 'mb_detect_encoding' => [ - 'old' => ['string|false', 'string'=>'string', 'encodings='=>'mixed', 'strict='=>'bool'], - 'new' => ['string|false', 'string'=>'string', 'encodings='=>'array|string|null', 'strict='=>'bool'], - ], - 'mb_detect_order' => [ - 'old' => ['bool|list', 'encoding='=>'mixed'], - 'new' => ['bool|list', 'encoding='=>'array|string|null'], - ], - 'mb_encode_mimeheader' => [ - 'old' => ['string', 'string'=>'string', 'charset='=>'string', 'transfer_encoding='=>'string', 'newline='=>'string', 'indent='=>'int'], - 'new' => ['string', 'string'=>'string', 'charset='=>'string|null', 'transfer_encoding='=>'string|null', 'newline='=>'string', 'indent='=>'int'], - ], - 'mb_encode_numericentity' => [ - 'old' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string', 'hex='=>'bool'], - 'new' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string|null', 'hex='=>'bool'], - ], - 'mb_encoding_aliases' => [ - 'old' => ['list|false', 'encoding'=>'string'], - 'new' => ['list', 'encoding'=>'string'], - ], - 'mb_ereg' => [ - 'old' => ['int|false', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], - 'new' => ['bool', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], - ], - 'mb_ereg_match' => [ - 'old' => ['bool', 'pattern'=>'string', 'string'=>'string', 'options='=>'string'], - 'new' => ['bool', 'pattern'=>'string', 'string'=>'string', 'options='=>'string|null'], - ], - 'mb_ereg_replace' => [ - 'old' => ['string|false', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string'], - 'new' => ['string|false|null', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string|null'], - ], - 'mb_ereg_replace_callback' => [ - 'old' => ['string|false|null', 'pattern'=>'string', 'callback'=>'callable', 'string'=>'string', 'options='=>'string'], - 'new' => ['string|false|null', 'pattern'=>'string', 'callback'=>'callable', 'string'=>'string', 'options='=>'string|null'], - ], - 'mb_ereg_search' => [ - 'old' => ['bool', 'pattern='=>'string', 'options='=>'string'], - 'new' => ['bool', 'pattern='=>'string|null', 'options='=>'string|null'], - ], - 'mb_ereg_search_init' => [ - 'old' => ['bool', 'string'=>'string', 'pattern='=>'string', 'options='=>'string'], - 'new' => ['bool', 'string'=>'string', 'pattern='=>'string|null', 'options='=>'string|null'], - ], - 'mb_ereg_search_pos' => [ - 'old' => ['int[]|false', 'pattern='=>'string', 'options='=>'string'], - 'new' => ['int[]|false', 'pattern='=>'string|null', 'options='=>'string|null'], - ], - 'mb_ereg_search_regs' => [ - 'old' => ['string[]|false', 'pattern='=>'string', 'options='=>'string'], - 'new' => ['string[]|false', 'pattern='=>'string|null', 'options='=>'string|null'], - ], - 'mb_eregi' => [ - 'old' => ['int|false', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array'], - 'new' => ['bool', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], - ], - 'mb_eregi_replace' => [ - 'old' => ['string|false', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string'], - 'new' => ['string|false|null', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string|null'], - ], - 'mb_http_input' => [ - 'old' => ['string|false', 'type='=>'string'], - 'new' => ['array|string|false', 'type='=>'string|null'], - ], - 'mb_http_output' => [ - 'old' => ['string|bool', 'encoding='=>'string'], - 'new' => ['string|bool', 'encoding='=>'string|null'], - ], - 'mb_internal_encoding' => [ - 'old' => ['string|bool', 'encoding='=>'string'], - 'new' => ['string|bool', 'encoding='=>'string|null'], - ], - 'mb_language' => [ - 'old' => ['string|bool', 'language='=>'string'], - 'new' => ['string|bool', 'language='=>'string|null'], - ], - 'mb_ord' => [ - 'old' => ['int|false', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['int|false', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_parse_str' => [ - 'old' => ['bool', 'string'=>'string', '&w_result='=>'array'], - 'new' => ['bool', 'string'=>'string', '&w_result'=>'array'], - ], - 'mb_regex_encoding' => [ - 'old' => ['string|bool', 'encoding='=>'string'], - 'new' => ['string|bool', 'encoding='=>'string|null'], - ], - 'mb_regex_set_options' => [ - 'old' => ['string', 'options='=>'string'], - 'new' => ['string', 'options='=>'string|null'], - ], - 'mb_scrub' => [ - 'old' => ['string', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_send_mail' => [ - 'old' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string'], - 'new' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string|null'], - ], - 'mb_str_split' => [ - 'old' => ['list|false', 'string'=>'string', 'length='=>'positive-int', 'encoding='=>'string'], - 'new' => ['list', 'string'=>'string', 'length='=>'positive-int', 'encoding='=>'string|null'], - ], - 'mb_strcut' => [ - 'old' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string|null'], - ], - 'mb_strimwidth' => [ - 'old' => ['string', 'string'=>'string', 'start'=>'int', 'width'=>'int', 'trim_marker='=>'string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'start'=>'int', 'width'=>'int', 'trim_marker='=>'string', 'encoding='=>'string|null'], - ], - 'mb_stripos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], - ], - 'mb_stristr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], - ], - 'mb_strlen' => [ - 'old' => ['0|positive-int', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['0|positive-int', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_strpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], - ], - 'mb_strrchr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], - ], - 'mb_strrichr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], - ], - 'mb_strripos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], - ], - 'mb_strrpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string|null'], - ], - 'mb_strstr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string|null'], - ], - 'mb_strtolower' => [ - 'old' => ['lowercase-string', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['lowercase-string', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_strtoupper' => [ - 'old' => ['string', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_strwidth' => [ - 'old' => ['int', 'string'=>'string', 'encoding='=>'string'], - 'new' => ['int', 'string'=>'string', 'encoding='=>'string|null'], - ], - 'mb_substitute_character' => [ - 'old' => ['bool|int|string', 'substitute_character='=>'mixed'], - 'new' => ['bool|int|string', 'substitute_character='=>'int|string|null'], - ], - 'mb_substr' => [ - 'old' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string|null'], - ], - 'mb_substr_count' => [ - 'old' => ['int', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string'], - 'new' => ['int', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string|null'], - ], - 'metaphone' => [ - 'old' => ['string|false', 'string'=>'string', 'max_phonemes='=>'int'], - 'new' => ['string', 'string'=>'string', 'max_phonemes='=>'int'], - ], - 'mhash' => [ - 'old' => ['string', 'algo'=>'int', 'data'=>'string', 'key='=>'string'], - 'new' => ['string', 'algo'=>'int', 'data'=>'string', 'key='=>'?string'], - ], - 'mktime' => [ - 'old' => ['int|false', 'hour='=>'int', 'minute='=>'int', 'second='=>'int', 'month='=>'int', 'day='=>'int', 'year='=>'int'], - 'new' => ['int|false', 'hour'=>'int', 'minute='=>'int|null', 'second='=>'int|null', 'month='=>'int|null', 'day='=>'int|null', 'year='=>'int|null'], - ], - 'msg_get_queue' => [ - 'old' => ['resource|false', 'key'=>'int', 'permissions='=>'int'], - 'new' => ['SysvMessageQueue|false', 'key'=>'int', 'permissions='=>'int'], - ], - 'msg_receive' => [ - 'old' => ['bool', 'queue'=>'resource', 'desired_message_type'=>'int', '&w_received_message_type'=>'int', 'max_message_size'=>'int', '&w_message'=>'mixed', 'unserialize='=>'bool', 'flags='=>'int', '&w_error_code='=>'int'], - 'new' => ['bool', 'queue'=>'SysvMessageQueue', 'desired_message_type'=>'int', '&w_received_message_type'=>'int', 'max_message_size'=>'int', '&w_message'=>'mixed', 'unserialize='=>'bool', 'flags='=>'int', '&w_error_code='=>'int'], - ], - 'msg_remove_queue' => [ - 'old' => ['bool', 'queue'=>'resource'], - 'new' => ['bool', 'queue'=>'SysvMessageQueue'], - ], - 'msg_send' => [ - 'old' => ['bool', 'queue'=>'resource', 'message_type'=>'int', 'message'=>'mixed', 'serialize='=>'bool', 'blocking='=>'bool', '&w_error_code='=>'int'], - 'new' => ['bool', 'queue'=>'SysvMessageQueue', 'message_type'=>'int', 'message'=>'mixed', 'serialize='=>'bool', 'blocking='=>'bool', '&w_error_code='=>'int'], - ], - 'msg_set_queue' => [ - 'old' => ['bool', 'queue'=>'resource', 'data'=>'array'], - 'new' => ['bool', 'queue'=>'SysvMessageQueue', 'data'=>'array'], - ], - 'msg_stat_queue' => [ - 'old' => ['array', 'queue'=>'resource'], - 'new' => ['array', 'queue'=>'SysvMessageQueue'], - ], - 'mysqli::__construct' => [ - 'old' => ['void', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'new' => ['void', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], - ], - 'mysqli::begin_transaction' => [ - 'old' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'flags='=>'int', 'name='=>'?string'], - ], - 'mysqli::commit' => [ - 'old' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'flags='=>'int', 'name='=>'?string'], - ], - 'mysqli::connect' => [ - 'old' => ['null|false', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'new' => ['null|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], - ], - 'mysqli::rollback' => [ - 'old' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'flags='=>'int', 'name='=>'?string'], - ], - 'mysqli_begin_transaction' => [ - 'old' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], - ], - 'mysqli_commit' => [ - 'old' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], - ], - 'mysqli_connect' => [ - 'old' => ['mysqli|false', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'new' => ['mysqli|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], - ], - 'mysqli_rollback' => [ - 'old' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'new' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'], - ], - 'number_format' => [ - 'old' => ['string', 'num'=>'float', 'decimals='=>'int'], - 'new' => ['string', 'num'=>'float', 'decimals='=>'int', 'decimal_separator='=>'?string', 'thousands_separator='=>'?string'], - ], - 'numfmt_create' => [ - 'old' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'new' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'?string'], - ], - 'ob_implicit_flush' => [ - 'old' => ['void', 'enable='=>'int'], - 'new' => ['void', 'enable='=>'bool'], - ], - 'odbc_exec' => [ - 'old' => ['resource', 'odbc'=>'resource', 'query'=>'string', 'flags='=>'int'], - 'new' => ['resource', 'odbc'=>'resource', 'query'=>'string'], - ], - 'odbc_fetch_row' => [ - 'old' => ['bool', 'statement'=>'resource', 'row='=>'int'], - 'new' => ['bool', 'statement'=>'resource', 'row='=>'?int'], - ], - 'odbc_do' => [ - 'old' => ['resource', 'odbc'=>'resource', 'query'=>'string', 'flags='=>'int'], - 'new' => ['resource', 'odbc'=>'resource', 'query'=>'string'], - ], - 'odbc_tables' => [ - 'old' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'string', 'table='=>'string', 'types='=>'string'], - 'new' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'table='=>'?string', 'types='=>'?string'], - ], - 'openssl_csr_export' => [ - 'old' => ['bool', 'csr'=>'string|resource', '&w_output'=>'string', 'no_text='=>'bool'], - 'new' => ['bool', 'csr'=>'OpenSSLCertificateSigningRequest|string', '&w_output'=>'string', 'no_text='=>'bool'], - ], - 'openssl_csr_export_to_file' => [ - 'old' => ['bool', 'csr'=>'string|resource', 'output_filename'=>'string', 'no_text='=>'bool'], - 'new' => ['bool', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'output_filename'=>'string', 'no_text='=>'bool'], - ], - 'openssl_csr_get_public_key' => [ - 'old' => ['resource|false', 'csr'=>'string|resource', 'short_names='=>'bool'], - 'new' => ['OpenSSLAsymmetricKey|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'short_names='=>'bool'], - ], - 'openssl_csr_get_subject' => [ - 'old' => ['array|false', 'csr'=>'string|resource', 'short_names='=>'bool'], - 'new' => ['array|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'short_names='=>'bool'], - ], - 'openssl_csr_new' => [ - 'old' => ['resource|false', 'distinguished_names'=>'array', '&w_private_key'=>'resource', 'options='=>'array', 'extra_attributes='=>'array'], - 'new' => ['OpenSSLCertificateSigningRequest|false', 'distinguished_names'=>'array', '&w_private_key'=>'OpenSSLAsymmetricKey', 'options='=>'array|null', 'extra_attributes='=>'array|null'], - ], - 'openssl_csr_sign' => [ - 'old' => ['resource|false', 'csr'=>'string|resource', 'ca_certificate'=>'string|resource|null', 'private_key'=>'string|resource|array', 'days'=>'int', 'options='=>'array', 'serial='=>'int'], - 'new' => ['OpenSSLCertificate|false', 'csr'=>'OpenSSLCertificateSigningRequest|string', 'ca_certificate'=>'OpenSSLCertificate|string|null', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'days'=>'int', 'options='=>'array|null', 'serial='=>'int'], - ], - 'openssl_dh_compute_key' => [ - 'old' => ['string|false', 'public_key'=>'string', 'private_key'=>'resource'], - 'new' => ['string|false', 'public_key'=>'string', 'private_key'=>'OpenSSLAsymmetricKey'], - ], - 'openssl_free_key' => [ - 'old' => ['void', 'key'=>'resource'], - 'new' => ['void', 'key'=>'OpenSSLAsymmetricKey'], - ], - 'openssl_get_privatekey' => [ - 'old' => ['resource|false', 'private_key'=>'string', 'passphrase='=>'string'], - 'new' => ['OpenSSLAsymmetricKey|false', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase='=>'?string'], - ], - 'openssl_get_publickey' => [ - 'old' => ['resource|false', 'public_key'=>'resource|string'], - 'new' => ['OpenSSLAsymmetricKey|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], - ], - 'openssl_open' => [ - 'old' => ['bool', 'data'=>'string', '&w_output'=>'string', 'encrypted_key'=>'string', 'private_key'=>'string|array|resource', 'cipher_algo='=>'string', 'iv='=>'string'], - 'new' => ['bool', 'data'=>'string', '&w_output'=>'string', 'encrypted_key'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'cipher_algo'=>'string', 'iv='=>'string|null'], - ], - 'openssl_pkcs12_export' => [ - 'old' => ['bool', 'certificate'=>'string|resource', '&w_output'=>'string', 'private_key'=>'string|array|resource', 'passphrase'=>'string', 'options='=>'array'], - 'new' => ['bool', 'certificate'=>'OpenSSLCertificate|string', '&w_output'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase'=>'string', 'options='=>'array'], - ], - 'openssl_pkcs12_export_to_file' => [ - 'old' => ['bool', 'certificate'=>'string|resource', 'output_filename'=>'string', 'private_key'=>'string|array|resource', 'passphrase'=>'string', 'options='=>'array'], - 'new' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'output_filename'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'passphrase'=>'string', 'options='=>'array'], - ], - 'openssl_pkcs7_decrypt' => [ - 'old' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource', 'private_key='=>'string|resource|array'], - 'new' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|string', 'private_key='=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string|null'], - ], - 'openssl_pkcs7_encrypt' => [ - 'old' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource|array', 'headers'=>'array', 'flags='=>'int', 'cipher_algo='=>'int'], - 'new' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|list|string', 'headers'=>'array|null', 'flags='=>'int', 'cipher_algo='=>'int'], - ], - 'openssl_pkcs7_sign' => [ - 'old' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource', 'private_key'=>'string|resource|array', 'headers'=>'array', 'flags='=>'int', 'untrusted_certificates_filename='=>'string'], - 'new' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'OpenSSLCertificate|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'headers'=>'array|null', 'flags='=>'int', 'untrusted_certificates_filename='=>'string|null'], - ], - 'openssl_pkcs7_verify' => [ - 'old' => ['bool|int', 'input_filename'=>'string', 'flags'=>'int', 'signers_certificates_filename='=>'string', 'ca_info='=>'array', 'untrusted_certificates_filename='=>'string', 'content='=>'string', 'output_filename='=>'string'], - 'new' => ['bool|int', 'input_filename'=>'string', 'flags'=>'int', 'signers_certificates_filename='=>'?string', 'ca_info='=>'array', 'untrusted_certificates_filename='=>'?string', 'content='=>'?string', 'output_filename='=>'?string'], - ], - 'openssl_pkey_derive' => [ - 'old' => ['string|false', 'public_key'=>'mixed', 'private_key'=>'mixed', 'key_length='=>'?int'], - 'new' => ['string|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'key_length='=>'int'], - ], - 'openssl_pkey_export' => [ - 'old' => ['bool', 'key'=>'resource', '&w_output'=>'string', 'passphrase='=>'string|null', 'options='=>'array'], - 'new' => ['bool', 'key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', '&w_output'=>'string', 'passphrase='=>'string|null', 'options='=>'array|null'], - ], - 'openssl_pkey_export_to_file' => [ - 'old' => ['bool', 'key'=>'resource|string|array', 'output_filename'=>'string', 'passphrase='=>'string|null', 'options='=>'array'], - 'new' => ['bool', 'key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'output_filename'=>'string', 'passphrase='=>'string|null', 'options='=>'array|null'], - ], - 'openssl_pkey_free' => [ - 'old' => ['void', 'key'=>'resource'], - 'new' => ['void', 'key'=>'OpenSSLAsymmetricKey'], - ], - 'openssl_pkey_get_details' => [ - 'old' => ['array|false', 'key'=>'resource'], - 'new' => ['array|false', 'key'=>'OpenSSLAsymmetricKey'], - ], - 'openssl_pkey_get_private' => [ - 'old' => ['resource|false', 'private_key'=>'string', 'passphrase='=>'string'], - 'new' => ['OpenSSLAsymmetricKey|false', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', 'passphrase='=>'?string'], - ], - 'openssl_pkey_get_public' => [ - 'old' => ['resource|false', 'public_key'=>'resource|string'], - 'new' => ['OpenSSLAsymmetricKey|false', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], - ], - 'openssl_pkey_new' => [ - 'old' => ['resource|false', 'options='=>'array'], - 'new' => ['OpenSSLAsymmetricKey|false', 'options='=>'array|null'], - ], - 'openssl_private_decrypt' => [ - 'old' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'private_key'=>'string|resource|array', 'padding='=>'int'], - 'new' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], - ], - 'openssl_private_encrypt' => [ - 'old' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'private_key'=>'string|resource|array', 'padding='=>'int'], - 'new' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], - ], - 'openssl_public_decrypt' => [ - 'old' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'public_key'=>'string|resource', 'padding='=>'int'], - 'new' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], - ], - 'openssl_public_encrypt' => [ - 'old' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'public_key'=>'string|resource', 'padding='=>'int'], - 'new' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'padding='=>'int'], - ], - 'openssl_seal' => [ - 'old' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_encrypted_keys'=>'array', 'public_key'=>'array', 'cipher_algo='=>'string', '&rw_iv='=>'string'], - 'new' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_encrypted_keys'=>'array', 'public_key'=>'list', 'cipher_algo'=>'string', '&rw_iv='=>'string'], - ], - 'openssl_sign' => [ - 'old' => ['bool', 'data'=>'string', '&w_signature'=>'string', 'private_key'=>'resource|string', 'algorithm='=>'int|string'], - 'new' => ['bool', 'data'=>'string', '&w_signature'=>'string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'algorithm='=>'int|string'], - ], - 'openssl_spki_new' => [ - 'old' => ['?string', 'private_key'=>'resource', 'challenge'=>'string', 'digest_algo='=>'int'], - 'new' => ['string|false', 'private_key'=>'OpenSSLAsymmetricKey', 'challenge'=>'string', 'digest_algo='=>'int'], - ], - 'openssl_verify' => [ - 'old' => ['-1|0|1', 'data'=>'string', 'signature'=>'string', 'public_key'=>'resource|string', 'algorithm='=>'int|string'], - 'new' => ['-1|0|1|false', 'data'=>'string', 'signature'=>'string', 'public_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', 'algorithm='=>'int|string'], - ], - 'openssl_x509_check_private_key' => [ - 'old' => ['bool', 'certificate'=>'string|resource', 'private_key'=>'string|resource|array'], - 'new' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'private_key'=>'OpenSSLAsymmetricKey|OpenSSLCertificate|array{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string'], - ], - 'openssl_x509_checkpurpose' => [ - 'old' => ['bool|int', 'certificate'=>'string|resource', 'purpose'=>'int', 'ca_info='=>'array', 'untrusted_certificates_file='=>'string'], - 'new' => ['bool|int', 'certificate'=>'OpenSSLCertificate|string', 'purpose'=>'int', 'ca_info='=>'array', 'untrusted_certificates_file='=>'string|null'], - ], - 'openssl_x509_export' => [ - 'old' => ['bool', 'certificate'=>'string|resource', '&w_output'=>'string', 'no_text='=>'bool'], - 'new' => ['bool', 'certificate'=>'OpenSSLCertificate|string', '&w_output'=>'string', 'no_text='=>'bool'], - ], - 'openssl_x509_export_to_file' => [ - 'old' => ['bool', 'certificate'=>'string|resource', 'output_filename'=>'string', 'no_text='=>'bool'], - 'new' => ['bool', 'certificate'=>'OpenSSLCertificate|string', 'output_filename'=>'string', 'no_text='=>'bool'], - ], - 'openssl_x509_fingerprint' => [ - 'old' => ['string|false', 'certificate'=>'string|resource', 'digest_algo='=>'string', 'binary='=>'bool'], - 'new' => ['string|false', 'certificate'=>'OpenSSLCertificate|string', 'digest_algo='=>'string', 'binary='=>'bool'], - ], - 'openssl_x509_free' => [ - 'old' => ['void', 'certificate'=>'resource'], - 'new' => ['void', 'certificate'=>'OpenSSLCertificate'], - ], - 'openssl_x509_parse' => [ - 'old' => ['array|false', 'certificate'=>'string|resource', 'short_names='=>'bool'], - 'new' => ['array|false', 'certificate'=>'OpenSSLCertificate|string', 'short_names='=>'bool'], - ], - 'openssl_x509_read' => [ - 'old' => ['resource|false', 'certificate'=>'string|resource'], - 'new' => ['OpenSSLCertificate|false', 'certificate'=>'OpenSSLCertificate|string'], - ], - 'openssl_x509_verify' => [ - 'old' => ['int', 'certificate'=>'string|resource', 'public_key'=>'string|array|resource'], - 'new' => ['int', 'certificate'=>'string|OpenSSLCertificate', 'public_key'=>'string|OpenSSLCertificate|OpenSSLAsymmetricKey|array'], - ], - 'pack' => [ - 'old' => ['string|false', 'format'=>'string', '...values='=>'mixed'], - 'new' => ['string', 'format'=>'string', '...values='=>'mixed'], - ], - 'parse_str' => [ - 'old' => ['void', 'string'=>'string', '&w_result='=>'array'], - 'new' => ['void', 'string'=>'string', '&w_result'=>'array'], - ], - 'password_hash' => [ - 'old' => ['string|false', 'password'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], - 'new' => ['string', 'password'=>'string', 'algo'=>'int|string|null', 'options='=>'array'], - ], - 'pcntl_async_signals' => [ - 'old' => ['bool', 'enable='=>'bool'], - 'new' => ['bool', 'enable='=>'?bool'], - ], - 'pcntl_exec' => [ - 'old' => ['null|false', 'path'=>'string', 'args='=>'array', 'env_vars='=>'array'], - 'new' => ['false', 'path'=>'string', 'args='=>'array', 'env_vars='=>'array'], - ], - 'pcntl_getpriority' => [ - 'old' => ['int', 'process_id='=>'int', 'mode='=>'int'], - 'new' => ['int', 'process_id='=>'?int', 'mode='=>'int'], - ], - 'pcntl_setpriority' => [ - 'old' => ['bool', 'priority'=>'int', 'process_id='=>'int', 'mode='=>'int'], - 'new' => ['bool', 'priority'=>'int', 'process_id='=>'?int', 'mode='=>'int'], - ], - 'pfsockopen' => [ - 'old' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float'], - 'new' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float'], - ], - 'pg_client_encoding' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_close' => [ - 'old' => ['bool', 'connection='=>'resource'], - 'new' => ['bool', 'connection='=>'?resource'], - ], - 'pg_dbname' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_end_copy' => [ - 'old' => ['bool', 'connection='=>'resource'], - 'new' => ['bool', 'connection='=>'?resource'], - ], - 'pg_last_error' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_lo_write' => [ - 'old' => ['int|false', 'lob'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'lob'=>'resource', 'data'=>'string', 'length='=>'?int'], - ], - 'pg_options' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_ping' => [ - 'old' => ['bool', 'connection='=>'resource'], - 'new' => ['bool', 'connection='=>'?resource'], - ], - 'pg_port' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_trace' => [ - 'old' => ['bool', 'filename'=>'string', 'mode='=>'string', 'connection='=>'resource'], - 'new' => ['bool', 'filename'=>'string', 'mode='=>'string', 'connection='=>'?resource'], - ], - 'pg_tty' => [ - 'old' => ['string', 'connection='=>'resource'], - 'new' => ['string', 'connection='=>'?resource'], - ], - 'pg_untrace' => [ - 'old' => ['bool', 'connection='=>'resource'], - 'new' => ['bool', 'connection='=>'?resource'], - ], - 'pg_version' => [ - 'old' => ['array', 'connection='=>'resource'], - 'new' => ['array', 'connection='=>'?resource'], - ], - 'phpversion' => [ - 'old' => ['string|false', 'extension='=>'string'], - 'new' => ['string|false', 'extension='=>'?string'], - ], - 'proc_get_status' => [ - 'old' => ['array{command: string, pid: int, running: bool, signaled: bool, stopped: bool, exitcode: int, termsig: int, stopsig: int}|false', 'process'=>'resource'], - 'new' => ['array{command: string, pid: int, running: bool, signaled: bool, stopped: bool, exitcode: int, termsig: int, stopsig: int}', 'process'=>'resource'], - ], - 'readline_info' => [ - 'old' => ['mixed', 'var_name='=>'string', 'value='=>'string|int|bool'], - 'new' => ['mixed', 'var_name='=>'?string', 'value='=>'string|int|bool|null'], - ], - 'readline_read_history' => [ - 'old'=> ['bool', 'filename='=>'string'], - 'new'=> ['bool', 'filename='=>'?string'], - ], - 'readline_write_history' => [ - 'old' => ['bool', 'filename='=>'string'], - 'new' => ['bool', 'filename='=>'?string'], - ], - 'sapi_windows_vt100_support' => [ - 'old' => ['bool', 'stream'=>'resource', 'enable='=>'bool'], - 'new' => ['bool', 'stream'=>'resource', 'enable='=>'?bool'], - ], - 'sem_acquire' => [ - 'old' => ['bool', 'semaphore'=>'resource', 'non_blocking='=>'bool'], - 'new' => ['bool', 'semaphore'=>'SysvSemaphore', 'non_blocking='=>'bool'], - ], - 'sem_get' => [ - 'old' => ['resource|false', 'key'=>'int', 'max_acquire='=>'int', 'permissions='=>'int', 'auto_release='=>'bool'], - 'new' => ['SysvSemaphore|false', 'key'=>'int', 'max_acquire='=>'int', 'permissions='=>'int', 'auto_release='=>'bool'], - ], - 'sem_release' => [ - 'old' => ['bool', 'semaphore'=>'resource'], - 'new' => ['bool', 'semaphore'=>'SysvSemaphore'], - ], - 'sem_remove' => [ - 'old' => ['bool', 'semaphore'=>'resource'], - 'new' => ['bool', 'semaphore'=>'SysvSemaphore'], - ], - 'session_cache_expire' => [ - 'old' => ['int|false', 'value='=>'int'], - 'new' => ['int|false', 'value='=>'?int'], - ], - 'session_cache_limiter' => [ - 'old' => ['string|false', 'value='=>'string'], - 'new' => ['string|false', 'value='=>'?string'], - ], - 'session_id' => [ - 'old' => ['string|false', 'id='=>'string'], - 'new' => ['string|false', 'id='=>'?string'], - ], - 'session_module_name' => [ - 'old' => ['string|false', 'module='=>'string'], - 'new' => ['string|false', 'module='=>'?string'], - ], - 'session_name' => [ - 'old' => ['string|false', 'name='=>'string'], - 'new' => ['string|false', 'name='=>'?string'], - ], - 'session_save_path' => [ - 'old' => ['string|false', 'path='=>'string'], - 'new' => ['string|false', 'path='=>'?string'], - ], - 'session_set_cookie_params' => [ - 'old' => ['bool', 'lifetime'=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool'], - 'new' => ['bool', 'lifetime'=>'int', 'path='=>'?string', 'domain='=>'?string', 'secure='=>'?bool', 'httponly='=>'?bool'], - ], - 'shm_attach' => [ - 'old' => ['resource|false', 'key'=>'int', 'size='=>'int', 'permissions='=>'int'], - 'new' => ['SysvSharedMemory|false', 'key'=>'int', 'size='=>'?int', 'permissions='=>'int'], - ], - 'shm_detach' => [ - 'old' => ['bool', 'shm'=>'resource'], - 'new' => ['bool', 'shm'=>'SysvSharedMemory'], - ], - 'shm_get_var' => [ - 'old' => ['mixed', 'shm'=>'resource', 'key'=>'int'], - 'new' => ['mixed', 'shm'=>'SysvSharedMemory', 'key'=>'int'], - ], - 'shm_has_var' => [ - 'old' => ['bool', 'shm'=>'resource', 'key'=>'int'], - 'new' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int'], - ], - 'shm_put_var' => [ - 'old' => ['bool', 'shm'=>'resource', 'key'=>'int', 'value'=>'mixed'], - 'new' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int', 'value'=>'mixed'], - ], - 'shm_remove' => [ - 'old' => ['bool', 'shm'=>'resource'], - 'new' => ['bool', 'shm'=>'SysvSharedMemory'], - ], - 'shm_remove_var' => [ - 'old' => ['bool', 'shm'=>'resource', 'key'=>'int'], - 'new' => ['bool', 'shm'=>'SysvSharedMemory', 'key'=>'int'], - ], - 'shmop_close' => [ - 'old' => ['void', 'shmop'=>'resource'], - 'new' => ['void', 'shmop'=>'Shmop'], - ], - 'shmop_delete' => [ - 'old' => ['bool', 'shmop'=>'resource'], - 'new' => ['bool', 'shmop'=>'Shmop'], - ], - 'shmop_open' => [ - 'old' => ['resource|false', 'key'=>'int', 'mode'=>'string', 'permissions'=>'int', 'size'=>'int'], - 'new' => ['Shmop|false', 'key'=>'int', 'mode'=>'string', 'permissions'=>'int', 'size'=>'int'], - ], - 'shmop_read' => [ - 'old' => ['string|false', 'shmop'=>'resource', 'offset'=>'int', 'size'=>'int'], - 'new' => ['string', 'shmop'=>'Shmop', 'offset'=>'int', 'size'=>'int'], - ], - 'shmop_size' => [ - 'old' => ['int', 'shmop'=>'resource'], - 'new' => ['int', 'shmop'=>'Shmop'], - ], - 'shmop_write' => [ - 'old' => ['int|false', 'shmop'=>'resource', 'data'=>'string', 'offset'=>'int'], - 'new' => ['int', 'shmop'=>'Shmop', 'data'=>'string', 'offset'=>'int'], - ], - 'sleep' => [ - 'old' => ['int|false', 'seconds'=>'0|positive-int'], - 'new' => ['int', 'seconds'=>'0|positive-int'], - ], - 'socket_accept' => [ - 'old' => ['resource|false', 'socket'=>'resource'], - 'new' => ['Socket|false', 'socket'=>'Socket'], - ], - 'socket_addrinfo_bind' => [ - 'old' => ['?resource', 'addrinfo'=>'resource'], - 'new' => ['Socket|false', 'address'=>'AddressInfo'], - ], - 'socket_addrinfo_connect' => [ - 'old' => ['resource', 'addrinfo'=>'resource'], - 'new' => ['Socket|false', 'address'=>'AddressInfo'], - ], - 'socket_addrinfo_explain' => [ - 'old' => ['array', 'addrinfo'=>'resource'], - 'new' => ['array', 'address'=>'AddressInfo'], - ], - 'socket_addrinfo_lookup' => [ - 'old' => ['resource[]', 'host'=>'string', 'service='=>'string', 'hints='=>'array'], - 'new' => ['false|AddressInfo[]', 'host'=>'string', 'service='=>'?string', 'hints='=>'array'], - ], - 'socket_bind' => [ - 'old' => ['bool', 'socket'=>'resource', 'address'=>'string', 'port='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', 'address'=>'string', 'port='=>'int'], - ], - 'socket_clear_error' => [ - 'old' => ['void', 'socket='=>'resource'], - 'new' => ['void', 'socket='=>'?Socket'], - ], - 'socket_close' => [ - 'old' => ['void', 'socket'=>'resource'], - 'new' => ['void', 'socket'=>'Socket'], - ], - 'socket_connect' => [ - 'old' => ['bool', 'socket'=>'resource', 'address'=>'string', 'port='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', 'address'=>'string', 'port='=>'?int'], - ], - 'socket_create' => [ - 'old' => ['resource|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], - 'new' => ['Socket|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], - ], - 'socket_create_listen' => [ - 'old' => ['resource|false', 'port'=>'int', 'backlog='=>'int'], - 'new' => ['Socket|false', 'port'=>'int', 'backlog='=>'int'], - ], - 'socket_create_pair' => [ - 'old' => ['bool', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int', '&w_pair'=>'resource[]'], - 'new' => ['bool', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int', '&w_pair'=>'Socket[]'], - ], - 'socket_export_stream' => [ - 'old' => ['resource|false', 'socket'=>'resource'], - 'new' => ['resource|false', 'socket'=>'Socket'], - ], - 'socket_get_option' => [ - 'old' => ['array|int|false', 'socket'=>'resource', 'level'=>'int', 'option'=>'int'], - 'new' => ['array|int|false', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int'], - ], - 'socket_get_status' => [ - 'old' => ['array', 'stream'=>'resource'], - 'new' => ['array', 'stream'=>'Socket'], - ], - 'socket_getopt' => [ - 'old' => ['array|int|false', 'socket'=>'resource', 'level'=>'int', 'option'=>'int'], - 'new' => ['array|int|false', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int'], - ], - 'socket_getpeername' => [ - 'old' => ['bool', 'socket'=>'resource', '&w_address'=>'string', '&w_port='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', '&w_address'=>'string', '&w_port='=>'int'], - ], - 'socket_getsockname' => [ - 'old' => ['bool', 'socket'=>'resource', '&w_address'=>'string', '&w_port='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', '&w_address'=>'string', '&w_port='=>'int'], - ], - 'socket_import_stream' => [ - 'old' => ['resource|false', 'stream'=>'resource'], - 'new' => ['Socket|false', 'stream'=>'resource'], - ], - 'socket_last_error' => [ - 'old' => ['int', 'socket='=>'resource'], - 'new' => ['int', 'socket='=>'?Socket'], - ], - 'socket_listen' => [ - 'old' => ['bool', 'socket'=>'resource', 'backlog='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', 'backlog='=>'int'], - ], - 'socket_read' => [ - 'old' => ['string|false', 'socket'=>'resource', 'length'=>'int', 'mode='=>'int'], - 'new' => ['string|false', 'socket'=>'Socket', 'length'=>'int', 'mode='=>'int'], - ], - 'socket_recv' => [ - 'old' => ['int|false', 'socket'=>'resource', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int'], - ], - 'socket_recvfrom' => [ - 'old' => ['int|false', 'socket'=>'resource', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int', '&w_address'=>'string', '&w_port='=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int', '&w_address'=>'string', '&w_port='=>'int'], - ], - 'socket_recvmsg' => [ - 'old' => ['int|false', 'socket'=>'resource', '&w_message'=>'array', 'flags='=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', '&w_message'=>'array', 'flags='=>'int'], - ], - 'socket_select' => [ - 'old' => ['int|false', '&rw_read'=>'resource[]|null', '&rw_write'=>'resource[]|null', '&rw_except'=>'resource[]|null', 'seconds'=>'int|null', 'microseconds='=>'int'], - 'new' => ['int|false', '&rw_read'=>'Socket[]|null', '&rw_write'=>'Socket[]|null', '&rw_except'=>'Socket[]|null', 'seconds'=>'int|null', 'microseconds='=>'int'], - ], - 'socket_send' => [ - 'old' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length'=>'int', 'flags'=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length'=>'int', 'flags'=>'int'], - ], - 'socket_sendmsg' => [ - 'old' => ['int|false', 'socket'=>'resource', 'message'=>'array', 'flags='=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', 'message'=>'array', 'flags='=>'int'], - ], - 'socket_sendto' => [ - 'old' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length'=>'int', 'flags'=>'int', 'address'=>'string', 'port='=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length'=>'int', 'flags'=>'int', 'address'=>'string', 'port='=>'?int'], - ], - 'socket_set_block' => [ - 'old' => ['bool', 'socket'=>'resource'], - 'new' => ['bool', 'socket'=>'Socket'], - ], - 'socket_set_blocking' => [ - 'old' => ['bool', 'stream'=>'resource', 'enable'=>'bool'], - 'new' => ['bool', 'stream'=>'Socket', 'enable'=>'bool'], - ], - 'socket_set_nonblock' => [ - 'old' => ['bool', 'socket'=>'resource'], - 'new' => ['bool', 'socket'=>'Socket'], - ], - 'socket_set_option' => [ - 'old' => ['bool', 'socket'=>'resource', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - 'new' => ['bool', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - ], - 'socket_set_timeout' => [ - 'old' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], - 'new' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], - ], - 'socket_setopt' => [ - 'old' => ['bool', 'socket'=>'resource', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - 'new' => ['bool', 'socket'=>'Socket', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - ], - 'socket_shutdown' => [ - 'old' => ['bool', 'socket'=>'resource', 'mode='=>'int'], - 'new' => ['bool', 'socket'=>'Socket', 'mode='=>'int'], - ], - 'socket_write' => [ - 'old' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length='=>'int'], - 'new' => ['int|false', 'socket'=>'Socket', 'data'=>'string', 'length='=>'int|null'], - ], - 'socket_wsaprotocol_info_export' => [ - 'old' => ['string|false', 'socket'=>'resource', 'process_id'=>'int'], - 'new' => ['string|false', 'socket'=>'Socket', 'process_id'=>'int'], - ], - 'socket_wsaprotocol_info_import' => [ - 'old' => ['resource|false', 'info_id'=>'string'], - 'new' => ['Socket|false', 'info_id'=>'string'], - ], - 'spl_autoload' => [ - 'old' => ['void', 'class'=>'string', 'file_extensions='=>'string'], - 'new' => ['void', 'class'=>'string', 'file_extensions='=>'?string'], - ], - 'spl_autoload_extensions' => [ - 'old' => ['string', 'file_extensions='=>'string'], - 'new' => ['string', 'file_extensions='=>'?string'], - ], - 'spl_autoload_functions' => [ - 'old' => ['false|list'], - 'new' => ['list'], - ], - 'spl_autoload_register' => [ - 'old' => ['bool', 'callback='=>'callable(string):void', 'throw='=>'bool', 'prepend='=>'bool'], - 'new' => ['bool', 'callback='=>'callable(string):void|null', 'throw='=>'bool', 'prepend='=>'bool'], - ], - 'str_word_count' => [ - 'old' => ['array|int', 'string'=>'string', 'format='=>'int', 'characters='=>'string'], - 'new' => ['array|int', 'string'=>'string', 'format='=>'int', 'characters='=>'?string'], - ], - 'strchr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], - ], - 'strcspn' => [ - 'old' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'int'], - 'new' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'?int'], - ], - 'stream_context_create' => [ - 'old' => ['resource', 'options='=>'array', 'params='=>'array'], - 'new' => ['resource', 'options='=>'?array', 'params='=>'?array'], - ], - 'stream_context_get_default' => [ - 'old' => ['resource', 'options='=>'array'], - 'new' => ['resource', 'options='=>'?array'], - ], - 'stream_copy_to_stream' => [ - 'old' => ['int|false', 'from'=>'resource', 'to'=>'resource', 'length='=>'int', 'offset='=>'int'], - 'new' => ['int|false', 'from'=>'resource', 'to'=>'resource', 'length='=>'?int', 'offset='=>'int'], - ], - 'stream_get_contents' => [ - 'old' => ['string|false', 'stream'=>'resource', 'length='=>'int', 'offset='=>'int'], - 'new' => ['string|false', 'stream'=>'resource', 'length='=>'?int', 'offset='=>'int'], - ], - 'stream_set_chunk_size' => [ - 'old' => ['int|false', 'stream'=>'resource', 'size'=>'int'], - 'new' => ['int', 'stream'=>'resource', 'size'=>'int'], - ], - 'stream_socket_accept' => [ - 'old' => ['resource|false', 'socket'=>'resource', 'timeout='=>'float', '&w_peer_name='=>'string'], - 'new' => ['resource|false', 'socket'=>'resource', 'timeout='=>'?float', '&w_peer_name='=>'string'], - ], - 'stream_socket_client' => [ - 'old' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float', 'flags='=>'int', 'context='=>'resource'], - 'new' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'?float', 'flags='=>'int', 'context='=>'?resource'], - ], - 'stream_socket_enable_crypto' => [ - 'old' => ['int|bool', 'stream'=>'resource', 'enable'=>'bool', 'crypto_method='=>'?int', 'session_stream='=>'resource'], - 'new' => ['int|bool', 'stream'=>'resource', 'enable'=>'bool', 'crypto_method='=>'?int', 'session_stream='=>'?resource'], - ], - 'strftime' => [ - 'old' => ['string|false', 'format'=>'string', 'timestamp='=>'int'], - 'new' => ['string|false', 'format'=>'string', 'timestamp='=>'?int'], - ], - 'strip_tags' => [ - 'old' => ['string', 'string'=>'string', 'allowed_tags='=>'string|list'], - 'new' => ['string', 'string'=>'string', 'allowed_tags='=>'string|list|null'], - ], - 'stripos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - ], - 'stristr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], - ], - 'strpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - ], - 'strrchr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string'], - ], - 'strripos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - ], - 'strrpos' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'new' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - ], - 'strspn' => [ - 'old' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'int'], - 'new' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'?int'], - ], - 'strstr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], - ], - 'strtotime' => [ - 'old' => ['int|false', 'datetime'=>'string', 'baseTimestamp='=>'int'], - 'new' => ['int|false', 'datetime'=>'string', 'baseTimestamp='=>'?int'], - ], - 'substr_compare' => [ - 'old' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset'=>'int', 'length='=>'int', 'case_insensitive='=>'bool'], - 'new' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset'=>'int', 'length='=>'?int', 'case_insensitive='=>'bool'], - ], - 'substr_count' => [ - 'old' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'length='=>'int'], - 'new' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'length='=>'?int'], - ], - 'substr' => [ - 'old' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'int'], - 'new' => ['string', 'string'=>'string', 'offset'=>'int', 'length='=>'?int'], - ], - 'substr_replace' => [ - 'old' => ['string', 'string'=>'string', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]'], - 'new' => ['string', 'string'=>'string', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]|null'], - ], - 'substr_replace\'1' => [ - 'old' => ['string[]', 'string'=>'string[]', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]'], - 'new' => ['string[]', 'string'=>'string[]', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]|null'], - ], - 'tidy_parse_file' => [ - 'old' => ['tidy', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'new' => ['tidy', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], - ], - 'tidy_parse_string' => [ - 'old' => ['tidy', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'new' => ['tidy', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], - ], - 'tidy_repair_file' => [ - 'old' => ['string', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'new' => ['string', 'filename'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string', 'useIncludePath='=>'bool'], - ], - 'tidy_repair_string' => [ - 'old' => ['string', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'new' => ['string', 'string'=>'string', 'config='=>'array|string|null', 'encoding='=>'?string'], - ], - 'timezone_identifiers_list' => [ - 'old' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'?string'], - 'new' => ['list', 'timezoneGroup='=>'int', 'countryCode='=>'?string'], - ], - 'timezone_offset_get' => [ - 'old' => ['int|false', 'object'=>'DateTimeZone', 'datetime'=>'DateTimeInterface'], - 'new' => ['int', 'object'=>'DateTimeZone', 'datetime'=>'DateTimeInterface'], - ], - 'touch' => [ - 'old' => ['bool', 'filename'=>'string', 'mtime='=>'int', 'atime='=>'int'], - 'new' => ['bool', 'filename'=>'string', 'mtime='=>'?int', 'atime='=>'?int'], - ], - 'umask' => [ - 'old' => ['int', 'mask='=>'int'], - 'new' => ['int', 'mask='=>'?int'], - ], - 'unixtojd' => [ - 'old' => ['int|false', 'timestamp='=>'int'], - 'new' => ['int|false', 'timestamp='=>'?int'], - ], - 'xml_get_current_byte_index' => [ - 'old' => ['int|false', 'parser'=>'resource'], - 'new' => ['int', 'parser'=>'XMLParser'], - ], - 'xml_get_current_column_number' => [ - 'old' => ['int|false', 'parser'=>'resource'], - 'new' => ['int', 'parser'=>'XMLParser'], - ], - 'xml_get_current_line_number' => [ - 'old' => ['int|false', 'parser'=>'resource'], - 'new' => ['int', 'parser'=>'XMLParser'], - ], - 'xml_get_error_code' => [ - 'old' => ['int|false', 'parser'=>'resource'], - 'new' => ['int', 'parser'=>'XMLParser'], - ], - 'xml_parse' => [ - 'old' => ['int', 'parser'=>'resource', 'data'=>'string', 'is_final='=>'bool'], - 'new' => ['int', 'parser'=>'XMLParser', 'data'=>'string', 'is_final='=>'bool'], - ], - 'xml_parse_into_struct' => [ - 'old' => ['int', 'parser'=>'resource', 'data'=>'string', '&w_values'=>'array', '&w_index='=>'array'], - 'new' => ['int', 'parser'=>'XMLParser', 'data'=>'string', '&w_values'=>'array', '&w_index='=>'array'], - ], - 'xml_parser_create' => [ - 'old' => ['resource', 'encoding='=>'string'], - 'new' => ['XMLParser', 'encoding='=>'?string'], - ], - 'xml_parser_create_ns' => [ - 'old' => ['resource', 'encoding='=>'string', 'separator='=>'string'], - 'new' => ['XMLParser', 'encoding='=>'?string', 'separator='=>'string'], - ], - 'xml_parser_free' => [ - 'old' => ['bool', 'parser'=>'resource'], - 'new' => ['bool', 'parser'=>'XMLParser'], - ], - 'xml_parser_get_option' => [ - 'old' => ['string|int', 'parser'=>'resource', 'option'=>'int'], - 'new' => ['string|int', 'parser'=>'XMLParser', 'option'=>'int'], - ], - 'xml_parser_set_option' => [ - 'old' => ['bool', 'parser'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'new' => ['bool', 'parser'=>'XMLParser', 'option'=>'int', 'value'=>'mixed'], - ], - 'xml_set_character_data_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_default_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_element_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'start_handler'=>'callable', 'end_handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'start_handler'=>'callable', 'end_handler'=>'callable'], - ], - 'xml_set_end_namespace_decl_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_external_entity_ref_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_notation_decl_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_object' => [ - 'old' => ['true', 'parser'=>'resource', 'object'=>'object'], - 'new' => ['true', 'parser'=>'XMLParser', 'object'=>'object'], - ], - 'xml_set_processing_instruction_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_start_namespace_decl_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xml_set_unparsed_entity_decl_handler' => [ - 'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'], - ], - 'xmlwriter_end_attribute' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_cdata' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_comment' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_document' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_dtd' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_dtd_attlist' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_dtd_element' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_dtd_entity' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_element' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_end_pi' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_flush' => [ - 'old' => ['string|int|false', 'writer'=>'resource', 'empty='=>'bool'], - 'new' => ['string|int', 'writer'=>'XMLWriter', 'empty='=>'bool'], - ], - 'xmlwriter_full_end_element' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_open_memory' => [ - 'old' => ['resource|false'], - 'new' => ['XMLWriter|false'], - ], - 'xmlwriter_open_uri' => [ - 'old' => ['resource|false', 'uri'=>'string'], - 'new' => ['XMLWriter|false', 'uri'=>'string'], - ], - 'xmlwriter_output_memory' => [ - 'old' => ['string', 'writer'=>'resource', 'flush='=>'bool'], - 'new' => ['string', 'writer'=>'XMLWriter', 'flush='=>'bool'], - ], - 'xmlwriter_set_indent' => [ - 'old' => ['bool', 'writer'=>'resource', 'enable'=>'bool'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'enable'=>'bool'], - ], - 'xmlwriter_set_indent_string' => [ - 'old' => ['bool', 'writer'=>'resource', 'indentation'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'indentation'=>'string'], - ], - 'xmlwriter_start_attribute' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], - ], - 'xmlwriter_start_attribute_ns' => [ - 'old' => ['bool', 'writer'=>'resource', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - ], - 'xmlwriter_start_cdata' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_start_comment' => [ - 'old' => ['bool', 'writer'=>'resource'], - 'new' => ['bool', 'writer'=>'XMLWriter'], - ], - 'xmlwriter_start_document' => [ - 'old' => ['bool', 'writer'=>'resource', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], - ], - 'xmlwriter_start_dtd' => [ - 'old' => ['bool', 'writer'=>'resource', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], - ], - 'xmlwriter_start_dtd_attlist' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], - ], - 'xmlwriter_start_dtd_element' => [ - 'old' => ['bool', 'writer'=>'resource', 'qualifiedName'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'qualifiedName'=>'string'], - ], - 'xmlwriter_start_dtd_entity' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'isParam'=>'bool'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'isParam'=>'bool'], - ], - 'xmlwriter_start_element' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string'], - ], - 'xmlwriter_start_element_ns' => [ - 'old' => ['bool', 'writer'=>'resource', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - ], - 'xmlwriter_start_pi' => [ - 'old' => ['bool', 'writer'=>'resource', 'target'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'target'=>'string'], - ], - 'xmlwriter_text' => [ - 'old' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], - ], - 'xmlwriter_write_attribute' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'value'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'value'=>'string'], - ], - 'xmlwriter_write_attribute_ns' => [ - 'old' => ['bool', 'writer'=>'resource', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - ], - 'xmlwriter_write_cdata' => [ - 'old' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], - ], - 'xmlwriter_write_comment' => [ - 'old' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], - ], - 'xmlwriter_write_dtd' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], - ], - 'xmlwriter_write_dtd_attlist' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string'], - ], - 'xmlwriter_write_dtd_element' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string'], - ], - 'xmlwriter_write_dtd_entity' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string', 'isParam'=>'bool', 'publicId'=>'string', 'systemId'=>'string', 'notationData'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content'=>'string', 'isParam='=>'bool', 'publicId='=>'?string', 'systemId='=>'?string', 'notationData='=>'?string'], - ], - 'xmlwriter_write_element' => [ - 'old' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'name'=>'string', 'content='=>'?string'], - ], - 'xmlwriter_write_element_ns' => [ - 'old' => ['bool', 'writer'=>'resource', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'string', 'content'=>'?string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'content='=>'?string'], - ], - 'xmlwriter_write_pi' => [ - 'old' => ['bool', 'writer'=>'resource', 'target'=>'string', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'target'=>'string', 'content'=>'string'], - ], - 'xmlwriter_write_raw' => [ - 'old' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'new' => ['bool', 'writer'=>'XMLWriter', 'content'=>'string'], - ], - 'ZipArchive::addEmptyDir' => [ - 'old' => ['bool', 'dirname'=>'string'], - 'new' => ['bool', 'dirname'=>'string', 'flags='=>'int'], - ], - 'ZipArchive::addFile' => [ - 'old' => ['bool', 'filepath'=>'string', 'entryname='=>'string', 'start='=>'int', 'length='=>'int'], - 'new' => ['bool', 'filepath'=>'string', 'entryname='=>'string', 'start='=>'int', 'length='=>'int', 'flags='=>'int'], - ], - 'ZipArchive::addFromString' => [ - 'old' => ['bool', 'name'=>'string', 'content'=>'string'], - 'new' => ['bool', 'name'=>'string', 'content'=>'string', 'flags='=>'int'], - ], - ], - 'removed' => [ - 'PDOStatement::setFetchMode\'1' => ['bool', 'fetch_column'=>'int', 'colno'=>'int'], - 'PDOStatement::setFetchMode\'2' => ['bool', 'fetch_class'=>'int', 'classname'=>'string', 'ctorargs'=>'array'], - 'PDOStatement::setFetchMode\'3' => ['bool', 'fetch_into'=>'int', 'object'=>'object'], - 'ReflectionType::isBuiltin' => ['bool'], - 'SplFileObject::fgetss' => ['string|false', 'allowable_tags='=>'string'], - 'create_function' => ['string', 'args'=>'string', 'code'=>'string'], - 'each' => ['array{0:int|string,key:int|string,1:mixed,value:mixed}', '&r_arr'=>'array'], - 'fgetss' => ['string|false', 'fp'=>'resource', 'length='=>'int', 'allowable_tags='=>'string'], - 'gmp_random' => ['GMP', 'limiter='=>'int'], - 'gzgetss' => ['string|false', 'zp'=>'resource', 'length'=>'int', 'allowable_tags='=>'string'], - 'image2wbmp' => ['bool', 'im'=>'resource', 'filename='=>'?string', 'threshold='=>'int'], - 'jpeg2wbmp' => ['bool', 'jpegname'=>'string', 'wbmpname'=>'string', 'dest_height'=>'int', 'dest_width'=>'int', 'threshold'=>'int'], - 'ldap_control_paged_result' => ['bool', 'link_identifier'=>'resource', 'pagesize'=>'int', 'iscritical='=>'bool', 'cookie='=>'string'], - 'ldap_control_paged_result_response' => ['bool', 'link_identifier'=>'resource', 'result_identifier'=>'resource', '&w_cookie'=>'string', '&w_estimated'=>'int'], - 'ldap_sort' => ['bool', 'link_identifier'=>'resource', 'result_identifier'=>'resource', 'sortfilter'=>'string'], - 'number_format\'1' => ['string', 'num'=>'float', 'decimals'=>'int', 'decimal_separator'=>'?string', 'thousands_separator'=>'?string'], - 'png2wbmp' => ['bool', 'pngname'=>'string', 'wbmpname'=>'string', 'dest_height'=>'int', 'dest_width'=>'int', 'threshold'=>'int'], - 'read_exif_data' => ['array', 'filename'=>'string', 'sections_needed='=>'string', 'sub_arrays='=>'bool', 'read_thumbnail='=>'bool'], - 'Reflection::export' => ['?string', 'r'=>'reflector', 'return='=>'bool'], - 'ReflectionClass::export' => ['?string', 'argument'=>'string|object', 'return='=>'bool'], - 'ReflectionClassConstant::export' => ['string', 'class'=>'mixed', 'name'=>'string', 'return='=>'bool'], - 'ReflectionExtension::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionFunction::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionFunctionAbstract::export' => ['?string'], - 'ReflectionMethod::export' => ['?string', 'class'=>'string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionObject::export' => ['?string', 'argument'=>'object', 'return='=>'bool'], - 'ReflectionParameter::export' => ['?string', 'function'=>'string', 'parameter'=>'string', 'return='=>'bool'], - 'ReflectionProperty::export' => ['?string', 'class'=>'mixed', 'name'=>'string', 'return='=>'bool'], - 'ReflectionZendExtension::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'SimpleXMLIterator::rewind' => ['void'], - 'SimpleXMLIterator::valid' => ['bool'], - 'SimpleXMLIterator::current' => ['?SimpleXMLIterator'], - 'SimpleXMLIterator::key' => ['string|false'], - 'SimpleXMLIterator::next' => ['void'], - 'SimpleXMLIterator::hasChildren' => ['bool'], - 'SimpleXMLIterator::getChildren' => ['?SimpleXMLIterator'], - 'SplFixedArray::current' => ['mixed'], - 'SplFixedArray::key' => ['int'], - 'SplFixedArray::next' => ['void'], - 'SplFixedArray::rewind' => ['void'], - 'SplFixedArray::valid' => ['bool'], - 'SplTempFileObject::fgetss' => ['string', 'allowable_tags='=>'string'], - 'xmlrpc_decode' => ['mixed', 'xml'=>'string', 'encoding='=>'string'], - 'xmlrpc_decode_request' => ['?array', 'xml'=>'string', '&w_method'=>'string', 'encoding='=>'string'], - 'xmlrpc_encode' => ['string', 'value'=>'mixed'], - 'xmlrpc_encode_request' => ['string', 'method'=>'string', 'params'=>'mixed', 'output_options='=>'array'], - 'xmlrpc_get_type' => ['string', 'value'=>'mixed'], - 'xmlrpc_is_fault' => ['bool', 'arg'=>'array'], - 'xmlrpc_parse_method_descriptions' => ['array', 'xml'=>'string'], - 'xmlrpc_server_add_introspection_data' => ['int', 'server'=>'resource', 'desc'=>'array'], - 'xmlrpc_server_call_method' => ['string', 'server'=>'resource', 'xml'=>'string', 'user_data'=>'mixed', 'output_options='=>'array'], - 'xmlrpc_server_create' => ['resource'], - 'xmlrpc_server_destroy' => ['int', 'server'=>'resource'], - 'xmlrpc_server_register_introspection_callback' => ['bool', 'server'=>'resource', 'function'=>'string'], - 'xmlrpc_server_register_method' => ['bool', 'server'=>'resource', 'method_name'=>'string', 'function'=>'string'], - 'xmlrpc_set_type' => ['bool', '&rw_value'=>'string|DateTime', 'type'=>'string'], - ], -]; +return array ( + 'added' => + array ( + 'DateTime::createFromInterface' => + array ( + 0 => 'static', + 'object' => 'DateTimeInterface', + ), + 'DateTimeImmutable::createFromInterface' => + array ( + 0 => 'static', + 'object' => 'DateTimeInterface', + ), + 'PhpToken::getTokenName' => + array ( + 0 => 'null|string', + ), + 'PhpToken::is' => + array ( + 0 => 'bool', + 'kind' => 'array|int|string', + ), + 'PhpToken::isIgnorable' => + array ( + 0 => 'bool', + ), + 'PhpToken::tokenize' => + array ( + 0 => 'list', + 'code' => 'string', + 'flags=' => 'int', + ), + 'ReflectionClass::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionClassConstant::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionFunctionAbstract::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionParameter::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionProperty::getAttributes' => + array ( + 0 => 'list', + 'name=' => 'null|string', + 'flags=' => 'int', + ), + 'ReflectionProperty::getDefaultValue' => + array ( + 0 => 'mixed', + ), + 'ReflectionProperty::hasDefaultValue' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isPromoted' => + array ( + 0 => 'bool', + ), + 'ReflectionUnionType::getTypes' => + array ( + 0 => 'list', + ), + 'SplFixedArray::getIterator' => + array ( + 0 => 'Iterator', + ), + 'WeakMap::count' => + array ( + 0 => 'int', + ), + 'WeakMap::getIterator' => + array ( + 0 => 'Iterator', + ), + 'WeakMap::offsetExists' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'WeakMap::offsetGet' => + array ( + 0 => 'mixed', + 'object' => 'object', + ), + 'WeakMap::offsetSet' => + array ( + 0 => 'void', + 'object' => 'object', + 'value' => 'mixed', + ), + 'WeakMap::offsetUnset' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'fdiv' => + array ( + 0 => 'float', + 'num1' => 'float', + 'num2' => 'float', + ), + 'get_debug_type' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'get_resource_id' => + array ( + 0 => 'int', + 'resource' => 'resource', + ), + 'imagegetinterpolation' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + 'str_contains' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'str_ends_with' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'str_starts_with' => + array ( + 0 => 'bool', + 'haystack' => 'string', + 'needle' => 'string', + ), + ), + 'changed' => + array ( + 'Collator::getStrength' => + array ( + 'old' => + array ( + 0 => 'false|int', + ), + 'new' => + array ( + 0 => 'int', + ), + ), + 'CURLFile::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mime_type=' => 'string', + 'posted_filename=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mime_type=' => 'null|string', + 'posted_filename=' => 'null|string', + ), + ), + 'DateTime::format' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'format' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'format' => 'string', + ), + ), + 'DateTime::getTimestamp' => + array ( + 'old' => + array ( + 0 => 'false|int', + ), + 'new' => + array ( + 0 => 'int', + ), + ), + 'DateTimeInterface::getTimestamp' => + array ( + 'old' => + array ( + 0 => 'false|int', + ), + 'new' => + array ( + 0 => 'int', + ), + ), + 'DateTimeZone::getOffset' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'datetime' => 'DateTimeInterface', + ), + 'new' => + array ( + 0 => 'int', + 'datetime' => 'DateTimeInterface', + ), + ), + 'DateTimeZone::listIdentifiers' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + 'new' => + array ( + 0 => 'list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + ), + 'Directory::close' => + array ( + 'old' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + ), + ), + 'Directory::read' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'dir_handle=' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + ), + ), + 'Directory::rewind' => + array ( + 'old' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + ), + ), + 'DirectoryIterator::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'DirectoryIterator::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'DirectoryIterator::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'DOMDocument::getElementsByTagNameNS' => + array ( + 'old' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'string', + 'localName' => 'string', + ), + 'new' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + ), + 'DOMDocument::load' => + array ( + 'old' => + array ( + 0 => 'DOMDocument|bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options=' => 'int', + ), + ), + 'DOMDocument::loadXML' => + array ( + 'old' => + array ( + 0 => 'DOMDocument|bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + ), + 'DOMDocument::loadHTML' => + array ( + 'old' => + array ( + 0 => 'DOMDocument|bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + ), + 'DOMDocument::loadHTMLFile' => + array ( + 'old' => + array ( + 0 => 'DOMDocument|bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options=' => 'int', + ), + ), + 'DOMImplementation::createDocument' => + array ( + 'old' => + array ( + 0 => 'DOMDocument|false', + 'namespace=' => 'string', + 'qualifiedName=' => 'string', + 'doctype=' => 'DOMDocumentType', + ), + 'new' => + array ( + 0 => 'DOMDocument|false', + 'namespace=' => 'null|string', + 'qualifiedName=' => 'string', + 'doctype=' => 'DOMDocumentType|null', + ), + ), + 'ErrorException::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'severity=' => 'int', + 'filename=' => 'string', + 'line=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'new' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'severity=' => 'int', + 'filename=' => 'null|string', + 'line=' => 'int|null', + 'previous=' => 'Throwable|null', + ), + ), + 'FilesystemIterator::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'FilesystemIterator::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'FilesystemIterator::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'finfo::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'magic_database=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + ), + 'GlobIterator::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'GlobIterator::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'GlobIterator::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'IntlDateFormatter::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'datetype' => 'int|null', + 'timetype' => 'int|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'new' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + ), + 'IntlDateFormatter::create' => + array ( + 'old' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'datetype' => 'int|null', + 'timetype' => 'int|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'new' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + ), + 'IntlDateFormatter::format' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'value' => 'DateTimeInterface|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + 'new' => + array ( + 0 => 'false|string', + 'datetime' => 'DateTimeInterface|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + ), + 'IntlDateFormatter::formatObject' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'object' => 'DateTime|IntlCalendar', + 'format=' => 'array{0: int, 1: int}|int|null|string', + 'locale=' => 'null|string', + ), + 'new' => + array ( + 0 => 'false|string', + 'datetime' => 'DateTimeInterface|IntlCalendar', + 'format=' => 'array{0: int, 1: int}|int|null|string', + 'locale=' => 'null|string', + ), + ), + 'IntlDateFormatter::getCalendar' => + array ( + 'old' => + array ( + 0 => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + ), + ), + 'IntlDateFormatter::getCalendarObject' => + array ( + 'old' => + array ( + 0 => 'IntlCalendar', + ), + 'new' => + array ( + 0 => 'IntlCalendar|false|null', + ), + ), + 'IntlDateFormatter::getDateType' => + array ( + 'old' => + array ( + 0 => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + ), + ), + 'IntlDateFormatter::getLocale' => + array ( + 'old' => + array ( + 0 => 'string', + 'which=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'type=' => 'int', + ), + ), + 'IntlDateFormatter::getPattern' => + array ( + 'old' => + array ( + 0 => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + ), + ), + 'IntlDateFormatter::getTimeType' => + array ( + 'old' => + array ( + 0 => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + ), + ), + 'IntlDateFormatter::getTimeZoneId' => + array ( + 'old' => + array ( + 0 => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + ), + ), + 'IntlDateFormatter::localtime' => + array ( + 'old' => + array ( + 0 => 'array', + 'value' => 'string', + '&rw_position=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + ), + 'IntlDateFormatter::parse' => + array ( + 'old' => + array ( + 0 => 'float|int', + 'value' => 'string', + '&rw_position=' => 'int', + ), + 'new' => + array ( + 0 => 'false|float|int', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + ), + 'IntlDateFormatter::setCalendar' => + array ( + 'old' => + array ( + 0 => 'bool', + 'which' => 'IntlCalendar|int|null', + ), + 'new' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar|int|null', + ), + ), + 'IntlDateFormatter::setLenient' => + array ( + 'old' => + array ( + 0 => 'bool', + 'lenient' => 'bool', + ), + 'new' => + array ( + 0 => 'void', + 'lenient' => 'bool', + ), + ), + 'IntlDateFormatter::setTimeZone' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'zone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'new' => + array ( + 0 => 'false|null', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + ), + 'IntlTimeZone::getIDForWindowsID' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'region=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'region=' => 'null|string', + ), + ), + 'Locale::getDisplayLanguage' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'Locale::getDisplayName' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'Locale::getDisplayRegion' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'Locale::getDisplayScript' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'Locale::getDisplayVariant' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'mysqli_field_seek' => + array ( + 'old' => + array ( + 0 => 'bool', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + ), + 'mysqli_result::field_seek' => + array ( + 'old' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'index' => 'int', + ), + ), + 'mysqli_stmt::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'query=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'query=' => 'null|string', + ), + ), + 'NumberFormatter::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + ), + 'NumberFormatter::create' => + array ( + 'old' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + ), + 'PDOStatement::debugDumpParams' => + array ( + 'old' => + array ( + 0 => 'void', + ), + 'new' => + array ( + 0 => 'bool|null', + ), + ), + 'PDOStatement::errorCode' => + array ( + 'old' => + array ( + 0 => 'string', + ), + 'new' => + array ( + 0 => 'null|string', + ), + ), + 'PDOStatement::execute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'bound_input_params=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'params=' => 'array|null', + ), + ), + 'PDOStatement::fetch' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'how=' => 'int', + 'orientation=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'mixed', + 'mode=' => 'int', + 'cursorOrientation=' => 'int', + 'cursorOffset=' => 'int', + ), + ), + 'PDOStatement::fetchAll' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'how=' => 'int', + 'fetch_argument=' => 'callable|int|string', + 'ctor_args=' => 'array|null', + ), + 'new' => + array ( + 0 => 'array', + 'mode=' => 'int', + '...args=' => 'mixed', + ), + ), + 'PDOStatement::fetchColumn' => + array ( + 'old' => + array ( + 0 => 'null|scalar', + 'column_number=' => 'int', + ), + 'new' => + array ( + 0 => 'mixed', + 'column=' => 'int', + ), + ), + 'PDOStatement::setFetchMode' => + array ( + 'old' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'mode' => 'int', + '...args=' => 'mixed', + ), + ), + 'Phar::addFile' => + array ( + 'old' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'null|string', + ), + ), + 'Phar::buildFromIterator' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + ), + 'Phar::createDefaultStub' => + array ( + 'old' => + array ( + 0 => 'string', + 'index=' => 'string', + 'webIndex=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + ), + 'Phar::compress' => + array ( + 'old' => + array ( + 0 => 'Phar|null', + 'compression' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'Phar|null', + 'compression' => 'int', + 'extension=' => 'null|string', + ), + ), + 'Phar::convertToData' => + array ( + 'old' => + array ( + 0 => 'PharData|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'PharData|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + ), + 'Phar::convertToExecutable' => + array ( + 'old' => + array ( + 0 => 'Phar|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'Phar|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + ), + 'Phar::decompress' => + array ( + 'old' => + array ( + 0 => 'Phar|null', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'Phar|null', + 'extension=' => 'null|string', + ), + ), + 'Phar::getMetadata' => + array ( + 'old' => + array ( + 0 => 'mixed', + ), + 'new' => + array ( + 0 => 'mixed', + 'unserializeOptions=' => 'array', + ), + ), + 'Phar::setDefaultStub' => + array ( + 'old' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + ), + 'Phar::setSignatureAlgorithm' => + array ( + 'old' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'null|string', + ), + ), + 'Phar::webPhar' => + array ( + 'old' => + array ( + 0 => 'void', + 'alias=' => 'null|string', + 'index=' => 'null|string', + 'fileNotFoundScript=' => 'string', + 'mimeTypes=' => 'array', + 'rewrite=' => 'callable', + ), + 'new' => + array ( + 0 => 'void', + 'alias=' => 'null|string', + 'index=' => 'null|string', + 'fileNotFoundScript=' => 'null|string', + 'mimeTypes=' => 'array', + 'rewrite=' => 'callable|null', + ), + ), + 'PharData::addFile' => + array ( + 'old' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'null|string', + ), + ), + 'PharData::buildFromIterator' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + ), + 'PharData::compress' => + array ( + 'old' => + array ( + 0 => 'PharData|null', + 'compression' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'PharData|null', + 'compression' => 'int', + 'extension=' => 'null|string', + ), + ), + 'PharData::convertToData' => + array ( + 'old' => + array ( + 0 => 'PharData|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'PharData|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + ), + 'PharData::convertToExecutable' => + array ( + 'old' => + array ( + 0 => 'Phar|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'Phar|null', + 'format=' => 'int|null', + 'compression=' => 'int|null', + 'extension=' => 'null|string', + ), + ), + 'PharData::decompress' => + array ( + 'old' => + array ( + 0 => 'PharData|null', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'PharData|null', + 'extension=' => 'null|string', + ), + ), + 'PharData::setDefaultStub' => + array ( + 'old' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'null|string', + ), + ), + 'PharData::setSignatureAlgorithm' => + array ( + 'old' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'null|string', + ), + ), + 'PharFileInfo::getMetadata' => + array ( + 'old' => + array ( + 0 => 'mixed', + ), + 'new' => + array ( + 0 => 'mixed', + 'unserializeOptions=' => 'array', + ), + ), + 'PharFileInfo::isCompressed' => + array ( + 'old' => + array ( + 0 => 'bool', + 'compression=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'compression=' => 'int|null', + ), + ), + 'RecursiveDirectoryIterator::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'RecursiveDirectoryIterator::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'RecursiveDirectoryIterator::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'RecursiveIteratorIterator::getSubIterator' => + array ( + 'old' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int', + ), + 'new' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int|null', + ), + ), + 'RecursiveTreeIterator::getSubIterator' => + array ( + 'old' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int', + ), + 'new' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int|null', + ), + ), + 'ReflectionClass::getConstants' => + array ( + 'old' => + array ( + 0 => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + ), + 'ReflectionClass::getReflectionConstants' => + array ( + 'old' => + array ( + 0 => 'list', + ), + 'new' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + ), + 'ReflectionClass::newInstanceArgs' => + array ( + 'old' => + array ( + 0 => 'object', + 'args=' => 'list', + ), + 'new' => + array ( + 0 => 'object', + 'args=' => 'array|string, mixed>', + ), + ), + 'ReflectionMethod::getClosure' => + array ( + 'old' => + array ( + 0 => 'Closure|null', + 'object=' => 'object', + ), + 'new' => + array ( + 0 => 'Closure', + 'object=' => 'null|object', + ), + ), + 'ReflectionObject::getConstants' => + array ( + 'old' => + array ( + 0 => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'filter=' => 'int|null', + ), + ), + 'ReflectionObject::getReflectionConstants' => + array ( + 'old' => + array ( + 0 => 'list', + ), + 'new' => + array ( + 0 => 'list', + 'filter=' => 'int|null', + ), + ), + 'ReflectionObject::newInstanceArgs' => + array ( + 'old' => + array ( + 0 => 'object', + 'args=' => 'list', + ), + 'new' => + array ( + 0 => 'object', + 'args=' => 'array|string, mixed>', + ), + ), + 'ReflectionProperty::getValue' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'object=' => 'object', + ), + 'new' => + array ( + 0 => 'mixed', + 'object=' => 'null|object', + ), + ), + 'ReflectionProperty::isInitialized' => + array ( + 'old' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'new' => + array ( + 0 => 'bool', + 'object=' => 'null|object', + ), + ), + 'SplFileInfo::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'SplFileInfo::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'SplFileInfo::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'SplFileObject::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'SplFileObject::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'SplFileObject::openFile' => + array ( + 'old' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'SplTempFileObject::getFileInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string|null', + ), + ), + 'SplTempFileObject::getPathInfo' => + array ( + 'old' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'new' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string|null', + ), + ), + 'SplTempFileObject::openFile' => + array ( + 'old' => + array ( + 0 => 'SplTempFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'SplTempFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'tidy::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'filename=' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'new' => + array ( + 0 => 'void', + 'filename=' => 'null|string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + ), + 'tidy::parseFile' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + ), + 'tidy::parseString' => + array ( + 'old' => + array ( + 0 => 'bool', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + ), + 'tidy::repairFile' => + array ( + 'old' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + ), + 'tidy::repairString' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + ), + 'XMLWriter::flush' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'empty=' => 'bool', + ), + 'new' => + array ( + 0 => 'int|string', + 'empty=' => 'bool', + ), + ), + 'SimpleXMLElement::asXML' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'filename=' => 'null|string', + ), + ), + 'SimpleXMLElement::saveXML' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'filename=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'filename=' => 'null|string', + ), + ), + 'SoapClient::__doRequest' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'request' => 'string', + 'location' => 'string', + 'action' => 'string', + 'version' => 'int', + 'one_way=' => 'int', + ), + 'new' => + array ( + 0 => 'null|string', + 'request' => 'string', + 'location' => 'string', + 'action' => 'string', + 'version' => 'int', + 'one_way=' => 'bool', + ), + ), + 'SplFileObject::fgets' => + array ( + 'old' => + array ( + 0 => 'false|string', + ), + 'new' => + array ( + 0 => 'string', + ), + ), + 'SplFileObject::getCurrentLine' => + array ( + 'old' => + array ( + 0 => 'false|string', + ), + 'new' => + array ( + 0 => 'string', + ), + ), + 'XMLReader::next' => + array ( + 'old' => + array ( + 0 => 'bool', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'name=' => 'null|string', + ), + ), + 'XMLWriter::startAttributeNs' => + array ( + 'old' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + ), + 'XMLWriter::writeAttributeNs' => + array ( + 'old' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + ), + 'XMLWriter::writeDtdEntity' => + array ( + 'old' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'isParam' => 'bool', + 'publicId' => 'string', + 'systemId' => 'string', + 'notationData' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'isParam=' => 'bool', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'notationData=' => 'null|string', + ), + ), + 'ZipArchive::getStatusString' => + array ( + 'old' => + array ( + 0 => 'false|string', + ), + 'new' => + array ( + 0 => 'string', + ), + ), + 'ZipArchive::setEncryptionIndex' => + array ( + 'old' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'password=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'password=' => 'null|string', + ), + ), + 'ZipArchive::setEncryptionName' => + array ( + 'old' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'password=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'password=' => 'null|string', + ), + ), + 'array_column' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + 'column_key' => 'mixed', + 'index_key=' => 'mixed', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + 'column_key' => 'int|null|string', + 'index_key=' => 'int|null|string', + ), + ), + 'array_combine' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'keys' => 'array', + 'values' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'keys' => 'array', + 'values' => 'array', + ), + ), + 'array_diff' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_diff_assoc' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_diff_key' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_filter' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + 'callback=' => 'callable(mixed, array-key=):mixed', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + 'callback=' => 'callable(mixed, array-key=):mixed|null', + 'mode=' => 'int', + ), + ), + 'array_key_exists' => + array ( + 'old' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array|object', + ), + 'new' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array', + ), + ), + 'array_intersect' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_intersect_assoc' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_intersect_key' => + array ( + 'old' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'new' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays=' => 'array', + ), + ), + 'array_splice' => + array ( + 'old' => + array ( + 0 => 'array', + '&rw_array' => 'array', + 'offset' => 'int', + 'length=' => 'int', + 'replacement=' => 'array|string', + ), + 'new' => + array ( + 0 => 'array', + '&rw_array' => 'array', + 'offset' => 'int', + 'length=' => 'int|null', + 'replacement=' => 'array|string', + ), + ), + 'bcadd' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bccomp' => + array ( + 'old' => + array ( + 0 => 'int', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcdiv' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcmod' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcmul' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcpow' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcpowmod' => + array ( + 'old' => + array ( + 0 => 'false|numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'modulus' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'modulus' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcscale' => + array ( + 'old' => + array ( + 0 => 'int', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'scale=' => 'int|null', + ), + ), + 'bcsqrt' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bcsub' => + array ( + 'old' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'new' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int|null', + ), + ), + 'bind_textdomain_codeset' => + array ( + 'old' => + array ( + 0 => 'string', + 'domain' => 'string', + 'codeset' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'domain' => 'string', + 'codeset' => 'null|string', + ), + ), + 'bindtextdomain' => + array ( + 'old' => + array ( + 0 => 'string', + 'domain' => 'string', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'domain' => 'string', + 'directory' => 'null|string', + ), + ), + 'bzdecompress' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'data' => 'string', + 'use_less_memory=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int|string', + 'data' => 'string', + 'use_less_memory=' => 'bool', + ), + ), + 'bzwrite' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'bz' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'bz' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'collator_get_strength' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'object' => 'collator', + ), + 'new' => + array ( + 0 => 'int', + 'object' => 'collator', + ), + ), + 'com_load_typelib' => + array ( + 'old' => + array ( + 0 => 'bool', + 'typelib_name' => 'string', + 'case_insensitive=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'typelib_name' => 'string', + 'case_insensitive=' => 'true', + ), + ), + 'count' => + array ( + 'old' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|SimpleXMLElement|array', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|array', + 'mode=' => 'int', + ), + ), + 'sizeof' => + array ( + 'old' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|SimpleXMLElement|array', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|array', + 'mode=' => 'int', + ), + ), + 'count_chars' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'input' => 'string', + 'mode=' => '0|1|2', + ), + 'new' => + array ( + 0 => 'array', + 'input' => 'string', + 'mode=' => '0|1|2', + ), + ), + 'count_chars\'1' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'input' => 'string', + 'mode=' => '3|4', + ), + 'new' => + array ( + 0 => 'string', + 'input' => 'string', + 'mode=' => '3|4', + ), + ), + 'crypt' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'salt=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'salt' => 'string', + ), + ), + 'curl_close' => + array ( + 'old' => + array ( + 0 => 'void', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'handle' => 'CurlHandle', + ), + ), + 'curl_copy_handle' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'CurlHandle|false', + 'handle' => 'CurlHandle', + ), + ), + 'curl_errno' => + array ( + 'old' => + array ( + 0 => 'int', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'handle' => 'CurlHandle', + ), + ), + 'curl_error' => + array ( + 'old' => + array ( + 0 => 'string', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'handle' => 'CurlHandle', + ), + ), + 'curl_escape' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ch' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'handle' => 'CurlHandle', + 'string' => 'string', + ), + ), + 'curl_exec' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'bool|string', + 'handle' => 'CurlHandle', + ), + ), + 'curl_file_create' => + array ( + 'old' => + array ( + 0 => 'CURLFile', + 'filename' => 'string', + 'mimetype=' => 'string', + 'postfilename=' => 'string', + ), + 'new' => + array ( + 0 => 'CURLFile', + 'filename' => 'string', + 'mime_type=' => 'null|string', + 'posted_filename=' => 'null|string', + ), + ), + 'curl_getinfo' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'ch' => 'resource', + 'option=' => 'int', + ), + 'new' => + array ( + 0 => 'mixed', + 'handle' => 'CurlHandle', + 'option=' => 'int|null', + ), + ), + 'curl_init' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'url=' => 'string', + ), + 'new' => + array ( + 0 => 'CurlHandle|false', + 'url=' => 'null|string', + ), + ), + 'curl_multi_add_handle' => + array ( + 'old' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'handle' => 'CurlHandle', + ), + ), + 'curl_multi_close' => + array ( + 'old' => + array ( + 0 => 'void', + 'mh' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'multi_handle' => 'CurlMultiHandle', + ), + ), + 'curl_multi_errno' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'mh' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + ), + ), + 'curl_multi_exec' => + array ( + 'old' => + array ( + 0 => 'int', + 'mh' => 'resource', + '&w_still_running' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + '&w_still_running' => 'int', + ), + ), + 'curl_multi_getcontent' => + array ( + 'old' => + array ( + 0 => 'string', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'handle' => 'CurlHandle', + ), + ), + 'curl_multi_info_read' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'mh' => 'resource', + '&w_msgs_in_queue=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'multi_handle' => 'CurlMultiHandle', + '&w_queued_messages=' => 'int', + ), + ), + 'curl_multi_init' => + array ( + 'old' => + array ( + 0 => 'resource', + ), + 'new' => + array ( + 0 => 'CurlMultiHandle', + ), + ), + 'curl_multi_remove_handle' => + array ( + 'old' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'handle' => 'CurlHandle', + ), + ), + 'curl_multi_select' => + array ( + 'old' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'timeout=' => 'float', + ), + 'new' => + array ( + 0 => 'int', + 'multi_handle' => 'CurlMultiHandle', + 'timeout=' => 'float', + ), + ), + 'curl_multi_setopt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'mh' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'multi_handle' => 'CurlMultiHandle', + 'option' => 'int', + 'value' => 'mixed', + ), + ), + 'curl_pause' => + array ( + 'old' => + array ( + 0 => 'int', + 'ch' => 'resource', + 'bitmask' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'handle' => 'CurlHandle', + 'flags' => 'int', + ), + ), + 'curl_reset' => + array ( + 'old' => + array ( + 0 => 'void', + 'ch' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'handle' => 'CurlHandle', + ), + ), + 'curl_setopt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ch' => 'resource', + 'option' => 'int', + 'value' => 'callable|mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + 'option' => 'int', + 'value' => 'callable|mixed', + ), + ), + 'curl_setopt_array' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ch' => 'resource', + 'options' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + 'options' => 'array', + ), + ), + 'curl_share_close' => + array ( + 'old' => + array ( + 0 => 'void', + 'sh' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'share_handle' => 'CurlShareHandle', + ), + ), + 'curl_share_errno' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'sh' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'share_handle' => 'CurlShareHandle', + ), + ), + 'curl_share_init' => + array ( + 'old' => + array ( + 0 => 'resource', + ), + 'new' => + array ( + 0 => 'CurlShareHandle', + ), + ), + 'curl_share_setopt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'sh' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'share_handle' => 'CurlShareHandle', + 'option' => 'int', + 'value' => 'mixed', + ), + ), + 'curl_unescape' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ch' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'handle' => 'CurlHandle', + 'string' => 'string', + ), + ), + 'date' => + array ( + 'old' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + ), + 'date_add' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + ), + 'date_date_set' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + ), + 'date_diff' => + array ( + 'old' => + array ( + 0 => 'DateInterval|false', + 'baseObject' => 'DateTimeInterface', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'new' => + array ( + 0 => 'DateInterval', + 'baseObject' => 'DateTimeInterface', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + ), + 'date_format' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'object' => 'DateTimeInterface', + 'format' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'object' => 'DateTimeInterface', + 'format' => 'string', + ), + ), + 'date_offset_get' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'object' => 'DateTimeInterface', + ), + 'new' => + array ( + 0 => 'int', + 'object' => 'DateTimeInterface', + ), + ), + 'date_parse' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'datetime' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'datetime' => 'string', + ), + ), + 'date_sub' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + ), + 'date_sun_info' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'timestamp' => 'int', + 'latitude' => 'float', + 'longitude' => 'float', + ), + 'new' => + array ( + 0 => 'array', + 'timestamp' => 'int', + 'latitude' => 'float', + 'longitude' => 'float', + ), + ), + 'date_sunrise' => + array ( + 'old' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float', + 'longitude=' => 'float', + 'zenith=' => 'float', + 'utcOffset=' => 'float', + ), + 'new' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float|null', + 'longitude=' => 'float|null', + 'zenith=' => 'float|null', + 'utcOffset=' => 'float|null', + ), + ), + 'date_sunset' => + array ( + 'old' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float', + 'longitude=' => 'float', + 'zenith=' => 'float', + 'utcOffset=' => 'float', + ), + 'new' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float|null', + 'longitude=' => 'float|null', + 'zenith=' => 'float|null', + 'utcOffset=' => 'float|null', + ), + ), + 'date_time_set' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'mixed', + 'hour' => 'mixed', + 'minute' => 'mixed', + 'second=' => 'mixed', + 'microsecond=' => 'mixed', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'mixed', + 'hour' => 'mixed', + 'minute' => 'mixed', + 'second=' => 'mixed', + 'microsecond=' => 'mixed', + ), + ), + 'date_timestamp_set' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'timestamp' => 'int', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'timestamp' => 'int', + ), + ), + 'date_timezone_set' => + array ( + 'old' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'timezone' => 'DateTimeZone', + ), + 'new' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'timezone' => 'DateTimeZone', + ), + ), + 'datefmt_create' => + array ( + 'old' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + ), + 'deflate_add' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'context' => 'resource', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'context' => 'DeflateContext', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + ), + 'deflate_init' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'DeflateContext|false', + 'encoding' => 'int', + 'options=' => 'array', + ), + ), + 'dom_import_simplexml' => + array ( + 'old' => + array ( + 0 => 'DOMElement|null', + 'node' => 'SimpleXMLElement', + ), + 'new' => + array ( + 0 => 'DOMElement', + 'node' => 'SimpleXMLElement', + ), + ), + 'easter_date' => + array ( + 'old' => + array ( + 0 => 'int', + 'year=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'year=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'easter_days' => + array ( + 'old' => + array ( + 0 => 'int', + 'year=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'year=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'enchant_broker_describe' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'broker' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'broker' => 'EnchantBroker', + ), + ), + 'enchant_broker_dict_exists' => + array ( + 'old' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'tag' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + ), + ), + 'enchant_broker_free' => + array ( + 'old' => + array ( + 0 => 'bool', + 'broker' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + ), + ), + 'enchant_broker_free_dict' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantBroker', + ), + ), + 'enchant_broker_get_dict_path' => + array ( + 'old' => + array ( + 0 => 'string', + 'broker' => 'resource', + 'type' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'broker' => 'EnchantBroker', + 'type' => 'int', + ), + ), + 'enchant_broker_get_error' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'broker' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'broker' => 'EnchantBroker', + ), + ), + 'enchant_broker_init' => + array ( + 'old' => + array ( + 0 => 'false|resource', + ), + 'new' => + array ( + 0 => 'EnchantBroker|false', + ), + ), + 'enchant_broker_list_dicts' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'broker' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'broker' => 'EnchantBroker', + ), + ), + 'enchant_broker_request_dict' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'broker' => 'resource', + 'tag' => 'string', + ), + 'new' => + array ( + 0 => 'EnchantDictionary|false', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + ), + ), + 'enchant_broker_request_pwl_dict' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'broker' => 'resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'EnchantDictionary|false', + 'broker' => 'EnchantBroker', + 'filename' => 'string', + ), + ), + 'enchant_broker_set_dict_path' => + array ( + 'old' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'type' => 'int', + 'path' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'type' => 'int', + 'path' => 'string', + ), + ), + 'enchant_broker_set_ordering' => + array ( + 'old' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'tag' => 'string', + 'ordering' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'broker' => 'EnchantBroker', + 'tag' => 'string', + 'ordering' => 'string', + ), + ), + 'enchant_dict_add_to_personal' => + array ( + 'old' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + ), + 'enchant_dict_add_to_session' => + array ( + 'old' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + ), + 'enchant_dict_check' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + ), + 'enchant_dict_describe' => + array ( + 'old' => + array ( + 0 => 'array', + 'dictionary' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'dictionary' => 'EnchantDictionary', + ), + ), + 'enchant_dict_get_error' => + array ( + 'old' => + array ( + 0 => 'string', + 'dictionary' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'dictionary' => 'EnchantDictionary', + ), + ), + 'enchant_dict_is_in_session' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + ), + 'enchant_dict_quick_check' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + '&w_suggestions=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + '&w_suggestions=' => 'array', + ), + ), + 'enchant_dict_store_replacement' => + array ( + 'old' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'dictionary' => 'EnchantDictionary', + 'misspelled' => 'string', + 'correct' => 'string', + ), + ), + 'enchant_dict_suggest' => + array ( + 'old' => + array ( + 0 => 'array', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'dictionary' => 'EnchantDictionary', + 'word' => 'string', + ), + ), + 'error_log' => + array ( + 'old' => + array ( + 0 => 'bool', + 'message' => 'string', + 'message_type=' => 'int', + 'destination=' => 'string', + 'additional_headers=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'message' => 'string', + 'message_type=' => 'int', + 'destination=' => 'null|string', + 'additional_headers=' => 'null|string', + ), + ), + 'error_reporting' => + array ( + 'old' => + array ( + 0 => 'int', + 'error_level=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'error_level=' => 'int|null', + ), + ), + 'exif_read_data' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'file' => 'resource|string', + 'required_sections=' => 'string', + 'as_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + 'new' => + array ( + 0 => 'array|false', + 'file' => 'resource|string', + 'required_sections=' => 'null|string', + 'as_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + ), + 'explode' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'separator' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + 'new' => + array ( + 0 => 'list', + 'separator' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + ), + 'fgetcsv' => + array ( + 'old' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'stream' => 'resource', + 'length=' => 'int', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'new' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'stream' => 'resource', + 'length=' => 'int|null', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + ), + 'fgets' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + ), + ), + 'file_get_contents' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + ), + 'finfo_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'flags=' => 'int', + 'magic_database=' => 'string', + ), + 'new' => + array ( + 0 => 'false|resource', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + ), + 'fputs' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'fsockopen' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + ), + 'new' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + ), + ), + 'fwrite' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'get_class_methods' => + array ( + 'old' => + array ( + 0 => 'list|null', + 'object_or_class' => 'mixed', + ), + 'new' => + array ( + 0 => 'list', + 'object_or_class' => 'class-string|object', + ), + ), + 'get_headers' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'int', + 'context=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'bool', + 'context=' => 'null|resource', + ), + ), + 'get_parent_class' => + array ( + 'old' => + array ( + 0 => 'class-string|false', + 'object_or_class=' => 'mixed', + ), + 'new' => + array ( + 0 => 'class-string|false', + 'object_or_class=' => 'class-string|object', + ), + ), + 'get_resources' => + array ( + 'old' => + array ( + 0 => 'array', + 'type=' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'type=' => 'null|string', + ), + ), + 'getdate' => + array ( + 'old' => + array ( + 0 => 'array{0: int, hours: int<0, 23>, mday: int<1, 31>, minutes: int<0, 59>, mon: int<1, 12>, month: \'April\'|\'August\'|\'December\'|\'February\'|\'January\'|\'July\'|\'June\'|\'March\'|\'May\'|\'November\'|\'October\'|\'September\', seconds: int<0, 59>, wday: int<0, 6>, weekday: \'Friday\'|\'Monday\'|\'Saturday\'|\'Sunday\'|\'Thursday\'|\'Tuesday\'|\'Wednesday\', yday: int<0, 365>, year: int}', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'array{0: int, hours: int<0, 23>, mday: int<1, 31>, minutes: int<0, 59>, mon: int<1, 12>, month: \'April\'|\'August\'|\'December\'|\'February\'|\'January\'|\'July\'|\'June\'|\'March\'|\'May\'|\'November\'|\'October\'|\'September\', seconds: int<0, 59>, wday: int<0, 6>, weekday: \'Friday\'|\'Monday\'|\'Saturday\'|\'Sunday\'|\'Thursday\'|\'Tuesday\'|\'Wednesday\', yday: int<0, 365>, year: int}', + 'timestamp=' => 'int|null', + ), + ), + 'gmdate' => + array ( + 'old' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + ), + 'gmmktime' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + 'month=' => 'int', + 'day=' => 'int', + 'year=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'hour' => 'int', + 'minute=' => 'int|null', + 'second=' => 'int|null', + 'month=' => 'int|null', + 'day=' => 'int|null', + 'year=' => 'int|null', + ), + ), + 'gmp_binomial' => + array ( + 'old' => + array ( + 0 => 'GMP|false', + 'n' => 'GMP|int|string', + 'k' => 'int', + ), + 'new' => + array ( + 0 => 'GMP', + 'n' => 'GMP|int|string', + 'k' => 'int', + ), + ), + 'gmp_export' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'num' => 'GMP|int|string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'num' => 'GMP|int|string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + ), + 'gmp_import' => + array ( + 'old' => + array ( + 0 => 'GMP|false', + 'data' => 'string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'GMP', + 'data' => 'string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + ), + 'gmstrftime' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + ), + 'gzgets' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + ), + ), + 'gzputs' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'gzwrite' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'hash' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + ), + ), + 'hash_hmac' => + array ( + 'old' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + ), + 'hash_hmac_file' => + array ( + 'old' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + ), + 'hash_init' => + array ( + 'old' => + array ( + 0 => 'HashContext|false', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + ), + 'new' => + array ( + 0 => 'HashContext', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + ), + ), + 'hash_hkdf' => + array ( + 'old' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'key' => 'string', + 'length=' => 'int', + 'info=' => 'string', + 'salt=' => 'string', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'key' => 'string', + 'length=' => 'int', + 'info=' => 'string', + 'salt=' => 'string', + ), + ), + 'hash_update_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'filename' => 'string', + 'stream_context=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'context' => 'HashContext', + 'filename' => 'string', + 'stream_context=' => 'null|resource', + ), + ), + 'header_remove' => + array ( + 'old' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'name=' => 'null|string', + ), + ), + 'html_entity_decode' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'htmlentities' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'string', + 'double_encode=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + 'double_encode=' => 'bool', + ), + ), + 'iconv_mime_decode' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'mode=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'mode=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'iconv_mime_decode_headers' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'headers' => 'string', + 'mode=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'headers' => 'string', + 'mode=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'iconv_strlen' => + array ( + 'old' => + array ( + 0 => 'false|int<0, max>', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int<0, max>', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'iconv_strpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'iconv_strrpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'iconv_substr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + ), + 'idate' => + array ( + 'old' => + array ( + 0 => 'int', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + ), + 'ignore_user_abort' => + array ( + 'old' => + array ( + 0 => 'int', + 'enable=' => 'bool', + ), + 'new' => + array ( + 0 => 'int', + 'enable=' => 'bool|null', + ), + ), + 'imageaffine' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'src' => 'resource', + 'affine' => 'array', + 'clip=' => 'array', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'affine' => 'array', + 'clip=' => 'array|null', + ), + ), + 'imagealphablending' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + ), + 'imageantialias' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + ), + 'imagearc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + ), + ), + 'imagebmp' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'compressed=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'compressed=' => 'bool', + ), + ), + 'imagechar' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + ), + 'imagecharup' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + ), + 'imagecolorallocate' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + ), + 'imagecolorallocatealpha' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + ), + 'imagecolorat' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + ), + ), + 'imagecolorclosest' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + ), + 'imagecolorclosestalpha' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + ), + 'imagecolorclosesthwb' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + ), + 'imagecolordeallocate' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'color' => 'int', + ), + ), + 'imagecolorexact' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + ), + 'imagecolorexactalpha' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + ), + 'imagecolormatch' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image1' => 'resource', + 'image2' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image1' => 'GdImage', + 'image2' => 'GdImage', + ), + ), + 'imagecolorresolve' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + ), + 'imagecolorresolvealpha' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + ), + 'imagecolorset' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'image' => 'resource', + 'color' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + 'new' => + array ( + 0 => 'false|null', + 'image' => 'GdImage', + 'color' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + ), + 'imagecolorsforindex' => + array ( + 'old' => + array ( + 0 => 'array', + 'image' => 'resource', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'array', + 'image' => 'GdImage', + 'color' => 'int', + ), + ), + 'imagecolorstotal' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + ), + 'imagecolortransparent' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + 'color=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + 'color=' => 'int|null', + ), + ), + 'imageconvolution' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'matrix' => 'array', + 'divisor' => 'float', + 'offset' => 'float', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'matrix' => 'array', + 'divisor' => 'float', + 'offset' => 'float', + ), + ), + 'imagecopy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + ), + 'imagecopymerge' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + ), + 'imagecopymergegray' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + ), + 'imagecopyresampled' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + ), + 'imagecopyresized' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dst_image' => 'GdImage', + 'src_image' => 'GdImage', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + ), + 'imagecreate' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'x_size' => 'int', + 'y_size' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'width' => 'int', + 'height' => 'int', + ), + ), + 'imagecreatefrombmp' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromgd' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromgd2' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromgd2part' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'srcx' => 'int', + 'srcy' => 'int', + 'width' => 'int', + 'height' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + ), + ), + 'imagecreatefromgif' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromjpeg' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefrompng' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromstring' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'image' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'data' => 'string', + ), + ), + 'imagecreatefromwbmp' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromwebp' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromxbm' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatefromxpm' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + ), + 'imagecreatetruecolor' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'x_size' => 'int', + 'y_size' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'width' => 'int', + 'height' => 'int', + ), + ), + 'imagecrop' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'rect' => 'array', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'rectangle' => 'array', + ), + ), + 'imagecropauto' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'mode=' => 'int', + 'threshold=' => 'float', + 'color=' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'mode=' => 'int', + 'threshold=' => 'float', + 'color=' => 'int', + ), + ), + 'imagedashedline' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + ), + 'imagedestroy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + ), + 'imageellipse' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + ), + 'imagefill' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + ), + 'imagefilledarc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + 'style' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + 'style' => 'int', + ), + ), + 'imagefilledellipse' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + ), + 'imagefilledpolygon' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + ), + 'imagefilledrectangle' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + ), + 'imagefilltoborder' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'border_color' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'border_color' => 'int', + 'color' => 'int', + ), + ), + 'imagefilter' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'filter' => 'int', + '...args=' => 'array|bool|float|int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'filter' => 'int', + '...args=' => 'array|bool|float|int', + ), + ), + 'imageflip' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'mode' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'mode' => 'int', + ), + ), + 'imagefttext' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'image' => 'resource', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'array|false', + 'image' => 'GdImage', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + ), + 'imagegammacorrect' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'input_gamma' => 'float', + 'output_gamma' => 'float', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'input_gamma' => 'float', + 'output_gamma' => 'float', + ), + ), + 'imagegd' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + ), + ), + 'imagegd2' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'chunk_size=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'chunk_size=' => 'int', + 'mode=' => 'int', + ), + ), + 'imagegetclip' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'im' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'image' => 'GdImage', + ), + ), + 'imagegif' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + ), + ), + 'imagegrabscreen' => + array ( + 'old' => + array ( + 0 => 'false|resource', + ), + 'new' => + array ( + 0 => 'GdImage|false', + ), + ), + 'imagegrabwindow' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'window_handle' => 'int', + 'client_area=' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'handle' => 'int', + 'client_area=' => 'int', + ), + ), + 'imageinterlace' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'enable=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable=' => 'bool|null', + ), + ), + 'imageistruecolor' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + ), + 'imagejpeg' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + ), + 'imagelayereffect' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'effect' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'effect' => 'int', + ), + ), + 'imageline' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + ), + 'imageopenpolygon' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points' => 'int', + 'color' => 'int', + ), + ), + 'imagepalettecopy' => + array ( + 'old' => + array ( + 0 => 'void', + 'dst' => 'resource', + 'src' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'dst' => 'GdImage', + 'src' => 'GdImage', + ), + ), + 'imagepalettetotruecolor' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + ), + ), + 'imagepng' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'filters=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'filters=' => 'int', + ), + ), + 'imagepolygon' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + ), + 'imagerectangle' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + ), + 'imageresolution' => + array ( + 'old' => + array ( + 0 => 'array|bool', + 'image' => 'resource', + 'resolution_x=' => 'int', + 'resolution_y=' => 'int', + ), + 'new' => + array ( + 0 => 'array|bool', + 'image' => 'GdImage', + 'resolution_x=' => 'int|null', + 'resolution_y=' => 'int|null', + ), + ), + 'imagerotate' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'src_im' => 'resource', + 'angle' => 'float', + 'bgdcolor' => 'int', + 'ignoretransparent=' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'angle' => 'float', + 'background_color' => 'int', + 'ignore_transparent=' => 'bool', + ), + ), + 'imagesavealpha' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'enable' => 'bool', + ), + ), + 'imagescale' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'new_width' => 'int', + 'new_height=' => 'int', + 'method=' => 'int', + ), + 'new' => + array ( + 0 => 'GdImage|false', + 'image' => 'GdImage', + 'width' => 'int', + 'height=' => 'int', + 'mode=' => 'int', + ), + ), + 'imagesetbrush' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'brush' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'brush' => 'GdImage', + ), + ), + 'imagesetclip' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'x2' => 'int', + 'y1' => 'int', + 'y2' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x1' => 'int', + 'x2' => 'int', + 'y1' => 'int', + 'y2' => 'int', + ), + ), + 'imagesetinterpolation' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'method=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'method=' => 'int', + ), + ), + 'imagesetpixel' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + ), + 'imagesetstyle' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'style' => 'non-empty-array', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'style' => 'non-empty-array', + ), + ), + 'imagesetthickness' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'thickness' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'thickness' => 'int', + ), + ), + 'imagesettile' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'tile' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'tile' => 'GdImage', + ), + ), + 'imagestring' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + ), + 'imagestringup' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + ), + 'imagesx' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + ), + 'imagesy' => + array ( + 'old' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'image' => 'GdImage', + ), + ), + 'imagetruecolortopalette' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'dither' => 'bool', + 'num_colors' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'dither' => 'bool', + 'num_colors' => 'int', + ), + ), + 'imagettfbbox' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + 'options=' => 'array', + ), + ), + 'imagettftext' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'image' => 'resource', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'image' => 'GdImage', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + ), + 'imagewbmp' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'foreground_color=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'foreground_color=' => 'int|null', + ), + ), + 'imagewebp' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + ), + 'imagexbm' => + array ( + 'old' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'filename' => 'null|string', + 'foreground_color=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'filename' => 'null|string', + 'foreground_color=' => 'int|null', + ), + ), + 'imap_append' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'string', + 'internal_date=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'null|string', + 'internal_date=' => 'null|string', + ), + ), + 'imap_headerinfo' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + 'default_host=' => 'null|string', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + ), + ), + 'imap_mail' => + array ( + 'old' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'string', + 'cc=' => 'string', + 'bcc=' => 'string', + 'return_path=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'null|string', + 'cc=' => 'null|string', + 'bcc=' => 'null|string', + 'return_path=' => 'null|string', + ), + ), + 'imap_sort' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'int', + 'reverse' => 'int', + 'flags=' => 'int', + 'search_criteria=' => 'string', + 'charset=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'int', + 'reverse' => 'bool', + 'flags=' => 'int', + 'search_criteria=' => 'null|string', + 'charset=' => 'null|string', + ), + ), + 'inflate_add' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'context' => 'resource', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'context' => 'InflateContext', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + ), + 'inflate_get_read_len' => + array ( + 'old' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'context' => 'InflateContext', + ), + ), + 'inflate_get_status' => + array ( + 'old' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'context' => 'InflateContext', + ), + ), + 'inflate_init' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'InflateContext|false', + 'encoding' => 'int', + 'options=' => 'array', + ), + ), + 'jdtounix' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'julian_day' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'julian_day' => 'int', + ), + ), + 'ldap_add' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_add_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_bind_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array|null', + ), + ), + 'ldap_compare' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_delete_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_exop_passwd' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array|null', + ), + ), + 'ldap_list' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_rename_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_add' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_add_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_del' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_del_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_replace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_replace_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_modify' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_modify_batch' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_read' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_rename' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + ), + 'ldap_search' => + array ( + 'old' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array', + ), + 'new' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_set_rebind_proc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'callback' => 'callable', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'callback' => 'callable|null', + ), + ), + 'ldap_sasl_bind' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'string', + 'password=' => 'string', + 'mech=' => 'string', + 'realm=' => 'string', + 'authc_id=' => 'string', + 'authz_id=' => 'string', + 'props=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'mech=' => 'null|string', + 'realm=' => 'null|string', + 'authc_id=' => 'null|string', + 'authz_id=' => 'null|string', + 'props=' => 'null|string', + ), + ), + 'libxml_use_internal_errors' => + array ( + 'old' => + array ( + 0 => 'bool', + 'use_errors=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'use_errors=' => 'bool|null', + ), + ), + 'locale_get_display_language' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'locale_get_display_name' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'locale_get_display_region' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'locale_get_display_script' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'locale_get_display_variant' => + array ( + 'old' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'null|string', + ), + ), + 'localtime' => + array ( + 'old' => + array ( + 0 => 'array', + 'timestamp=' => 'int', + 'associative=' => 'bool', + ), + 'new' => + array ( + 0 => 'array', + 'timestamp=' => 'int|null', + 'associative=' => 'bool', + ), + ), + 'mb_check_encoding' => + array ( + 'old' => + array ( + 0 => 'bool', + 'value=' => 'array|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'value=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + ), + 'mb_chr' => + array ( + 'old' => + array ( + 0 => 'false|non-empty-string', + 'codepoint' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|non-empty-string', + 'codepoint' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_convert_case' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_convert_encoding' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'to_encoding' => 'string', + 'from_encoding=' => 'mixed', + ), + 'new' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'to_encoding' => 'string', + 'from_encoding=' => 'array|null|string', + ), + ), + 'mb_convert_encoding\'1' => + array ( + 'old' => + array ( + 0 => 'array', + 'string' => 'array', + 'to_encoding' => 'string', + 'from_encoding=' => 'mixed', + ), + 'new' => + array ( + 0 => 'array', + 'string' => 'array', + 'to_encoding' => 'string', + 'from_encoding=' => 'array|null|string', + ), + ), + 'mb_convert_kana' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode=' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode=' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_decode_numericentity' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'null|string', + ), + ), + 'mb_detect_encoding' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'encodings=' => 'mixed', + 'strict=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'encodings=' => 'array|null|string', + 'strict=' => 'bool', + ), + ), + 'mb_detect_order' => + array ( + 'old' => + array ( + 0 => 'bool|list', + 'encoding=' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool|list', + 'encoding=' => 'array|null|string', + ), + ), + 'mb_encode_mimeheader' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'charset=' => 'string', + 'transfer_encoding=' => 'string', + 'newline=' => 'string', + 'indent=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'charset=' => 'null|string', + 'transfer_encoding=' => 'null|string', + 'newline=' => 'string', + 'indent=' => 'int', + ), + ), + 'mb_encode_numericentity' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'string', + 'hex=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'null|string', + 'hex=' => 'bool', + ), + ), + 'mb_encoding_aliases' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'encoding' => 'string', + ), + 'new' => + array ( + 0 => 'list', + 'encoding' => 'string', + ), + ), + 'mb_ereg' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + ), + 'mb_ereg_match' => + array ( + 'old' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_replace' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_replace_callback' => + array ( + 'old' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'callback' => 'callable', + 'string' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'callback' => 'callable', + 'string' => 'string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_search' => + array ( + 'old' => + array ( + 0 => 'bool', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_search_init' => + array ( + 'old' => + array ( + 0 => 'bool', + 'string' => 'string', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'string' => 'string', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_search_pos' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + ), + 'mb_ereg_search_regs' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'pattern=' => 'null|string', + 'options=' => 'null|string', + ), + ), + 'mb_eregi' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + ), + 'mb_eregi_replace' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'null|string', + ), + ), + 'mb_http_input' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'type=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false|string', + 'type=' => 'null|string', + ), + ), + 'mb_http_output' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + ), + 'mb_internal_encoding' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + ), + 'mb_language' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'language=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'language=' => 'null|string', + ), + ), + 'mb_ord' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_parse_str' => + array ( + 'old' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_result=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_result' => 'array', + ), + ), + 'mb_regex_encoding' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|string', + 'encoding=' => 'null|string', + ), + ), + 'mb_regex_set_options' => + array ( + 'old' => + array ( + 0 => 'string', + 'options=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'options=' => 'null|string', + ), + ), + 'mb_scrub' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_send_mail' => + array ( + 'old' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'null|string', + ), + ), + 'mb_str_split' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'string' => 'string', + 'length=' => 'int<1, max>', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'list', + 'string' => 'string', + 'length=' => 'int<1, max>', + 'encoding=' => 'null|string', + ), + ), + 'mb_strcut' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + ), + 'mb_strimwidth' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'width' => 'int', + 'trim_marker=' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'width' => 'int', + 'trim_marker=' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_stripos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_stristr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + ), + 'mb_strlen' => + array ( + 'old' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_strpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_strrchr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + ), + 'mb_strrichr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + ), + 'mb_strripos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_strrpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'null|string', + ), + ), + 'mb_strstr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'null|string', + ), + ), + 'mb_strtolower' => + array ( + 'old' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_strtoupper' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_strwidth' => + array ( + 'old' => + array ( + 0 => 'int', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'string' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'mb_substitute_character' => + array ( + 'old' => + array ( + 0 => 'bool|int|string', + 'substitute_character=' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool|int|string', + 'substitute_character=' => 'int|null|string', + ), + ), + 'mb_substr' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'null|string', + ), + ), + 'mb_substr_count' => + array ( + 'old' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'null|string', + ), + ), + 'metaphone' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'max_phonemes=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_phonemes=' => 'int', + ), + ), + 'mhash' => + array ( + 'old' => + array ( + 0 => 'string', + 'algo' => 'int', + 'data' => 'string', + 'key=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'algo' => 'int', + 'data' => 'string', + 'key=' => 'null|string', + ), + ), + 'mktime' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + 'month=' => 'int', + 'day=' => 'int', + 'year=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'hour' => 'int', + 'minute=' => 'int|null', + 'second=' => 'int|null', + 'month=' => 'int|null', + 'day=' => 'int|null', + 'year=' => 'int|null', + ), + ), + 'msg_get_queue' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'permissions=' => 'int', + ), + 'new' => + array ( + 0 => 'SysvMessageQueue|false', + 'key' => 'int', + 'permissions=' => 'int', + ), + ), + 'msg_receive' => + array ( + 'old' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'desired_message_type' => 'int', + '&w_received_message_type' => 'int', + 'max_message_size' => 'int', + '&w_message' => 'mixed', + 'unserialize=' => 'bool', + 'flags=' => 'int', + '&w_error_code=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'desired_message_type' => 'int', + '&w_received_message_type' => 'int', + 'max_message_size' => 'int', + '&w_message' => 'mixed', + 'unserialize=' => 'bool', + 'flags=' => 'int', + '&w_error_code=' => 'int', + ), + ), + 'msg_remove_queue' => + array ( + 'old' => + array ( + 0 => 'bool', + 'queue' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + ), + ), + 'msg_send' => + array ( + 'old' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'message_type' => 'int', + 'message' => 'mixed', + 'serialize=' => 'bool', + 'blocking=' => 'bool', + '&w_error_code=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'message_type' => 'int', + 'message' => 'mixed', + 'serialize=' => 'bool', + 'blocking=' => 'bool', + '&w_error_code=' => 'int', + ), + ), + 'msg_set_queue' => + array ( + 'old' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'data' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'queue' => 'SysvMessageQueue', + 'data' => 'array', + ), + ), + 'msg_stat_queue' => + array ( + 'old' => + array ( + 0 => 'array', + 'queue' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'queue' => 'SysvMessageQueue', + ), + ), + 'mysqli::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + ), + 'mysqli::begin_transaction' => + array ( + 'old' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'mysqli::commit' => + array ( + 'old' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'mysqli::connect' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'new' => + array ( + 0 => 'false|null', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + ), + 'mysqli::rollback' => + array ( + 'old' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'mysqli_begin_transaction' => + array ( + 'old' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'mysqli_commit' => + array ( + 'old' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'mysqli_connect' => + array ( + 'old' => + array ( + 0 => 'false|mysqli', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'new' => + array ( + 0 => 'false|mysqli', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + ), + 'mysqli_rollback' => + array ( + 'old' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'null|string', + ), + ), + 'number_format' => + array ( + 'old' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals=' => 'int', + 'decimal_separator=' => 'null|string', + 'thousands_separator=' => 'null|string', + ), + ), + 'numfmt_create' => + array ( + 'old' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'null|string', + ), + ), + 'ob_implicit_flush' => + array ( + 'old' => + array ( + 0 => 'void', + 'enable=' => 'int', + ), + 'new' => + array ( + 0 => 'void', + 'enable=' => 'bool', + ), + ), + 'odbc_exec' => + array ( + 'old' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + ), + 'odbc_fetch_row' => + array ( + 'old' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'row=' => 'int|null', + ), + ), + 'odbc_do' => + array ( + 'old' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + ), + 'odbc_tables' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'string', + 'table=' => 'string', + 'types=' => 'string', + ), + 'new' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'table=' => 'null|string', + 'types=' => 'null|string', + ), + ), + 'openssl_csr_export' => + array ( + 'old' => + array ( + 0 => 'bool', + 'csr' => 'resource|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + ), + 'openssl_csr_export_to_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'csr' => 'resource|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + ), + 'openssl_csr_get_public_key' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'csr' => 'resource|string', + 'short_names=' => 'bool', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'short_names=' => 'bool', + ), + ), + 'openssl_csr_get_subject' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'csr' => 'resource|string', + 'short_names=' => 'bool', + ), + 'new' => + array ( + 0 => 'array|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'short_names=' => 'bool', + ), + ), + 'openssl_csr_new' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'distinguished_names' => 'array', + '&w_private_key' => 'resource', + 'options=' => 'array', + 'extra_attributes=' => 'array', + ), + 'new' => + array ( + 0 => 'OpenSSLCertificateSigningRequest|false', + 'distinguished_names' => 'array', + '&w_private_key' => 'OpenSSLAsymmetricKey', + 'options=' => 'array|null', + 'extra_attributes=' => 'array|null', + ), + ), + 'openssl_csr_sign' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'csr' => 'resource|string', + 'ca_certificate' => 'null|resource|string', + 'private_key' => 'array|resource|string', + 'days' => 'int', + 'options=' => 'array', + 'serial=' => 'int', + ), + 'new' => + array ( + 0 => 'OpenSSLCertificate|false', + 'csr' => 'OpenSSLCertificateSigningRequest|string', + 'ca_certificate' => 'OpenSSLCertificate|null|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'days' => 'int', + 'options=' => 'array|null', + 'serial=' => 'int', + ), + ), + 'openssl_dh_compute_key' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'public_key' => 'string', + 'private_key' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'public_key' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey', + ), + ), + 'openssl_free_key' => + array ( + 'old' => + array ( + 0 => 'void', + 'key' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'key' => 'OpenSSLAsymmetricKey', + ), + ), + 'openssl_get_privatekey' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'private_key' => 'string', + 'passphrase=' => 'string', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase=' => 'null|string', + ), + ), + 'openssl_get_publickey' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'public_key' => 'resource|string', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + ), + 'openssl_open' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_output' => 'string', + 'encrypted_key' => 'string', + 'private_key' => 'array|resource|string', + 'cipher_algo=' => 'string', + 'iv=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_output' => 'string', + 'encrypted_key' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'cipher_algo' => 'string', + 'iv=' => 'null|string', + ), + ), + 'openssl_pkcs12_export' => + array ( + 'old' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + '&w_output' => 'string', + 'private_key' => 'array|resource|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + '&w_output' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + ), + 'openssl_pkcs12_export_to_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'output_filename' => 'string', + 'private_key' => 'array|resource|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'output_filename' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + ), + 'openssl_pkcs7_decrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'resource|string', + 'private_key=' => 'array|resource|string', + ), + 'new' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key=' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|null|string', + ), + ), + 'openssl_pkcs7_encrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'array|resource|string', + 'headers' => 'array', + 'flags=' => 'int', + 'cipher_algo=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|list|string', + 'headers' => 'array|null', + 'flags=' => 'int', + 'cipher_algo=' => 'int', + ), + ), + 'openssl_pkcs7_sign' => + array ( + 'old' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'resource|string', + 'private_key' => 'array|resource|string', + 'headers' => 'array', + 'flags=' => 'int', + 'untrusted_certificates_filename=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'headers' => 'array|null', + 'flags=' => 'int', + 'untrusted_certificates_filename=' => 'null|string', + ), + ), + 'openssl_pkcs7_verify' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'input_filename' => 'string', + 'flags' => 'int', + 'signers_certificates_filename=' => 'string', + 'ca_info=' => 'array', + 'untrusted_certificates_filename=' => 'string', + 'content=' => 'string', + 'output_filename=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|int', + 'input_filename' => 'string', + 'flags' => 'int', + 'signers_certificates_filename=' => 'null|string', + 'ca_info=' => 'array', + 'untrusted_certificates_filename=' => 'null|string', + 'content=' => 'null|string', + 'output_filename=' => 'null|string', + ), + ), + 'openssl_pkey_derive' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'public_key' => 'mixed', + 'private_key' => 'mixed', + 'key_length=' => 'int|null', + ), + 'new' => + array ( + 0 => 'false|string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'key_length=' => 'int', + ), + ), + 'openssl_pkey_export' => + array ( + 'old' => + array ( + 0 => 'bool', + 'key' => 'resource', + '&w_output' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + '&w_output' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array|null', + ), + ), + 'openssl_pkey_export_to_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'key' => 'array|resource|string', + 'output_filename' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'output_filename' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array|null', + ), + ), + 'openssl_pkey_free' => + array ( + 'old' => + array ( + 0 => 'void', + 'key' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'key' => 'OpenSSLAsymmetricKey', + ), + ), + 'openssl_pkey_get_details' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'key' => 'resource', + ), + 'new' => + array ( + 0 => 'array|false', + 'key' => 'OpenSSLAsymmetricKey', + ), + ), + 'openssl_pkey_get_private' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'private_key' => 'string', + 'passphrase=' => 'string', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', + 'passphrase=' => 'null|string', + ), + ), + 'openssl_pkey_get_public' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'public_key' => 'resource|string', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + ), + 'openssl_pkey_new' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'OpenSSLAsymmetricKey|false', + 'options=' => 'array|null', + ), + ), + 'openssl_private_decrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'private_key' => 'array|resource|string', + 'padding=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + ), + 'openssl_private_encrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'private_key' => 'array|resource|string', + 'padding=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + ), + 'openssl_public_decrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'public_key' => 'resource|string', + 'padding=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + ), + 'openssl_public_encrypt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'public_key' => 'resource|string', + 'padding=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'padding=' => 'int', + ), + ), + 'openssl_seal' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'data' => 'string', + '&w_sealed_data' => 'string', + '&w_encrypted_keys' => 'array', + 'public_key' => 'array', + 'cipher_algo=' => 'string', + '&rw_iv=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'data' => 'string', + '&w_sealed_data' => 'string', + '&w_encrypted_keys' => 'array', + 'public_key' => 'list', + 'cipher_algo' => 'string', + '&rw_iv=' => 'string', + ), + ), + 'openssl_sign' => + array ( + 'old' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_signature' => 'string', + 'private_key' => 'resource|string', + 'algorithm=' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_signature' => 'string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'algorithm=' => 'int|string', + ), + ), + 'openssl_spki_new' => + array ( + 'old' => + array ( + 0 => 'null|string', + 'private_key' => 'resource', + 'challenge' => 'string', + 'digest_algo=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'private_key' => 'OpenSSLAsymmetricKey', + 'challenge' => 'string', + 'digest_algo=' => 'int', + ), + ), + 'openssl_verify' => + array ( + 'old' => + array ( + 0 => '-1|0|1', + 'data' => 'string', + 'signature' => 'string', + 'public_key' => 'resource|string', + 'algorithm=' => 'int|string', + ), + 'new' => + array ( + 0 => '-1|0|1|false', + 'data' => 'string', + 'signature' => 'string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + 'algorithm=' => 'int|string', + ), + ), + 'openssl_x509_check_private_key' => + array ( + 'old' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'private_key' => 'array|resource|string', + ), + 'new' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'private_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|list{OpenSSLAsymmetricKey|OpenSSLCertificate|string, string}|string', + ), + ), + 'openssl_x509_checkpurpose' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'certificate' => 'resource|string', + 'purpose' => 'int', + 'ca_info=' => 'array', + 'untrusted_certificates_file=' => 'string', + ), + 'new' => + array ( + 0 => 'bool|int', + 'certificate' => 'OpenSSLCertificate|string', + 'purpose' => 'int', + 'ca_info=' => 'array', + 'untrusted_certificates_file=' => 'null|string', + ), + ), + 'openssl_x509_export' => + array ( + 'old' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + ), + 'openssl_x509_export_to_file' => + array ( + 'old' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'certificate' => 'OpenSSLCertificate|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + ), + 'openssl_x509_fingerprint' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'certificate' => 'resource|string', + 'digest_algo=' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|string', + 'certificate' => 'OpenSSLCertificate|string', + 'digest_algo=' => 'string', + 'binary=' => 'bool', + ), + ), + 'openssl_x509_free' => + array ( + 'old' => + array ( + 0 => 'void', + 'certificate' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'certificate' => 'OpenSSLCertificate', + ), + ), + 'openssl_x509_parse' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'certificate' => 'resource|string', + 'short_names=' => 'bool', + ), + 'new' => + array ( + 0 => 'array|false', + 'certificate' => 'OpenSSLCertificate|string', + 'short_names=' => 'bool', + ), + ), + 'openssl_x509_read' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'certificate' => 'resource|string', + ), + 'new' => + array ( + 0 => 'OpenSSLCertificate|false', + 'certificate' => 'OpenSSLCertificate|string', + ), + ), + 'openssl_x509_verify' => + array ( + 'old' => + array ( + 0 => 'int', + 'certificate' => 'resource|string', + 'public_key' => 'array|resource|string', + ), + 'new' => + array ( + 0 => 'int', + 'certificate' => 'OpenSSLCertificate|string', + 'public_key' => 'OpenSSLAsymmetricKey|OpenSSLCertificate|array|string', + ), + ), + 'pack' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'format' => 'string', + '...values=' => 'mixed', + ), + 'new' => + array ( + 0 => 'string', + 'format' => 'string', + '...values=' => 'mixed', + ), + ), + 'parse_str' => + array ( + 'old' => + array ( + 0 => 'void', + 'string' => 'string', + '&w_result=' => 'array', + ), + 'new' => + array ( + 0 => 'void', + 'string' => 'string', + '&w_result' => 'array', + ), + ), + 'password_hash' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'string', + 'password' => 'string', + 'algo' => 'int|null|string', + 'options=' => 'array', + ), + ), + 'pcntl_async_signals' => + array ( + 'old' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'enable=' => 'bool|null', + ), + ), + 'pcntl_exec' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'path' => 'string', + 'args=' => 'array', + 'env_vars=' => 'array', + ), + 'new' => + array ( + 0 => 'false', + 'path' => 'string', + 'args=' => 'array', + 'env_vars=' => 'array', + ), + ), + 'pcntl_getpriority' => + array ( + 'old' => + array ( + 0 => 'int', + 'process_id=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'process_id=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'pcntl_setpriority' => + array ( + 'old' => + array ( + 0 => 'bool', + 'priority' => 'int', + 'process_id=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'priority' => 'int', + 'process_id=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'pfsockopen' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + ), + 'new' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + ), + ), + 'pg_client_encoding' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + ), + 'pg_dbname' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_end_copy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + ), + 'pg_last_error' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_lo_write' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'lob' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'lob' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'pg_options' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_ping' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + ), + 'pg_port' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_trace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_tty' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + ), + 'pg_untrace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + ), + 'pg_version' => + array ( + 'old' => + array ( + 0 => 'array', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'connection=' => 'null|resource', + ), + ), + 'phpversion' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'extension=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'extension=' => 'null|string', + ), + ), + 'proc_get_status' => + array ( + 'old' => + array ( + 0 => 'array{command: string, exitcode: int, pid: int, running: bool, signaled: bool, stopped: bool, stopsig: int, termsig: int}|false', + 'process' => 'resource', + ), + 'new' => + array ( + 0 => 'array{command: string, exitcode: int, pid: int, running: bool, signaled: bool, stopped: bool, stopsig: int, termsig: int}', + 'process' => 'resource', + ), + ), + 'readline_info' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'var_name=' => 'string', + 'value=' => 'bool|int|string', + ), + 'new' => + array ( + 0 => 'mixed', + 'var_name=' => 'null|string', + 'value=' => 'bool|int|null|string', + ), + ), + 'readline_read_history' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'filename=' => 'null|string', + ), + ), + 'readline_write_history' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'filename=' => 'null|string', + ), + ), + 'sapi_windows_vt100_support' => + array ( + 'old' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable=' => 'bool|null', + ), + ), + 'sem_acquire' => + array ( + 'old' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + 'non_blocking=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + 'non_blocking=' => 'bool', + ), + ), + 'sem_get' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'max_acquire=' => 'int', + 'permissions=' => 'int', + 'auto_release=' => 'bool', + ), + 'new' => + array ( + 0 => 'SysvSemaphore|false', + 'key' => 'int', + 'max_acquire=' => 'int', + 'permissions=' => 'int', + 'auto_release=' => 'bool', + ), + ), + 'sem_release' => + array ( + 'old' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + ), + ), + 'sem_remove' => + array ( + 'old' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'semaphore' => 'SysvSemaphore', + ), + ), + 'session_cache_expire' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'value=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'value=' => 'int|null', + ), + ), + 'session_cache_limiter' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'value=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'value=' => 'null|string', + ), + ), + 'session_id' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'id=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'id=' => 'null|string', + ), + ), + 'session_module_name' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'module=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'module=' => 'null|string', + ), + ), + 'session_name' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'name=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'name=' => 'null|string', + ), + ), + 'session_save_path' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'path=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'path=' => 'null|string', + ), + ), + 'session_set_cookie_params' => + array ( + 'old' => + array ( + 0 => 'bool', + 'lifetime' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'lifetime' => 'int', + 'path=' => 'null|string', + 'domain=' => 'null|string', + 'secure=' => 'bool|null', + 'httponly=' => 'bool|null', + ), + ), + 'shm_attach' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'size=' => 'int', + 'permissions=' => 'int', + ), + 'new' => + array ( + 0 => 'SysvSharedMemory|false', + 'key' => 'int', + 'size=' => 'int|null', + 'permissions=' => 'int', + ), + ), + 'shm_detach' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shm' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + ), + ), + 'shm_get_var' => + array ( + 'old' => + array ( + 0 => 'mixed', + 'shm' => 'resource', + 'key' => 'int', + ), + 'new' => + array ( + 0 => 'mixed', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + ), + 'shm_has_var' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + ), + 'shm_put_var' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + 'value' => 'mixed', + ), + ), + 'shm_remove' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shm' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + ), + ), + 'shm_remove_var' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'shm' => 'SysvSharedMemory', + 'key' => 'int', + ), + ), + 'shmop_close' => + array ( + 'old' => + array ( + 0 => 'void', + 'shmop' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'shmop' => 'Shmop', + ), + ), + 'shmop_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'shmop' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'shmop' => 'Shmop', + ), + ), + 'shmop_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'mode' => 'string', + 'permissions' => 'int', + 'size' => 'int', + ), + 'new' => + array ( + 0 => 'Shmop|false', + 'key' => 'int', + 'mode' => 'string', + 'permissions' => 'int', + 'size' => 'int', + ), + ), + 'shmop_read' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'shmop' => 'resource', + 'offset' => 'int', + 'size' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'shmop' => 'Shmop', + 'offset' => 'int', + 'size' => 'int', + ), + ), + 'shmop_size' => + array ( + 'old' => + array ( + 0 => 'int', + 'shmop' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'shmop' => 'Shmop', + ), + ), + 'shmop_write' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'shmop' => 'resource', + 'data' => 'string', + 'offset' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'shmop' => 'Shmop', + 'data' => 'string', + 'offset' => 'int', + ), + ), + 'sleep' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'seconds' => 'int<0, max>', + ), + 'new' => + array ( + 0 => 'int', + 'seconds' => 'int<0, max>', + ), + ), + 'socket_accept' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'socket' => 'Socket', + ), + ), + 'socket_addrinfo_bind' => + array ( + 'old' => + array ( + 0 => 'null|resource', + 'addrinfo' => 'resource', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'address' => 'AddressInfo', + ), + ), + 'socket_addrinfo_connect' => + array ( + 'old' => + array ( + 0 => 'resource', + 'addrinfo' => 'resource', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'address' => 'AddressInfo', + ), + ), + 'socket_addrinfo_explain' => + array ( + 'old' => + array ( + 0 => 'array', + 'addrinfo' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'address' => 'AddressInfo', + ), + ), + 'socket_addrinfo_lookup' => + array ( + 'old' => + array ( + 0 => 'array', + 'host' => 'string', + 'service=' => 'string', + 'hints=' => 'array', + ), + 'new' => + array ( + 0 => 'array|false', + 'host' => 'string', + 'service=' => 'null|string', + 'hints=' => 'array', + ), + ), + 'socket_bind' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'address' => 'string', + 'port=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'address' => 'string', + 'port=' => 'int', + ), + ), + 'socket_clear_error' => + array ( + 'old' => + array ( + 0 => 'void', + 'socket=' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'socket=' => 'Socket|null', + ), + ), + 'socket_close' => + array ( + 'old' => + array ( + 0 => 'void', + 'socket' => 'resource', + ), + 'new' => + array ( + 0 => 'void', + 'socket' => 'Socket', + ), + ), + 'socket_connect' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'address' => 'string', + 'port=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'address' => 'string', + 'port=' => 'int|null', + ), + ), + 'socket_create' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + ), + 'socket_create_listen' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'port' => 'int', + 'backlog=' => 'int', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'port' => 'int', + 'backlog=' => 'int', + ), + ), + 'socket_create_pair' => + array ( + 'old' => + array ( + 0 => 'bool', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + '&w_pair' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + '&w_pair' => 'array', + ), + ), + 'socket_export_stream' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + ), + 'new' => + array ( + 0 => 'false|resource', + 'socket' => 'Socket', + ), + ), + 'socket_get_option' => + array ( + 'old' => + array ( + 0 => 'array|false|int', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + ), + 'new' => + array ( + 0 => 'array|false|int', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + ), + ), + 'socket_get_status' => + array ( + 'old' => + array ( + 0 => 'array', + 'stream' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'stream' => 'Socket', + ), + ), + 'socket_getopt' => + array ( + 'old' => + array ( + 0 => 'array|false|int', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + ), + 'new' => + array ( + 0 => 'array|false|int', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + ), + ), + 'socket_getpeername' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + ), + 'socket_getsockname' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + ), + 'socket_import_stream' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'stream' => 'resource', + ), + ), + 'socket_last_error' => + array ( + 'old' => + array ( + 0 => 'int', + 'socket=' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'socket=' => 'Socket|null', + ), + ), + 'socket_listen' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'backlog=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'backlog=' => 'int', + ), + ), + 'socket_read' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'length' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'socket' => 'Socket', + 'length' => 'int', + 'mode=' => 'int', + ), + ), + 'socket_recv' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + ), + 'socket_recvfrom' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + ), + 'socket_recvmsg' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_message' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + '&w_message' => 'array', + 'flags=' => 'int', + ), + ), + 'socket_select' => + array ( + 'old' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + ), + 'socket_send' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + ), + 'socket_sendmsg' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'message' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'message' => 'array', + 'flags=' => 'int', + ), + ), + 'socket_sendto' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + 'address' => 'string', + 'port=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + 'address' => 'string', + 'port=' => 'int|null', + ), + ), + 'socket_set_block' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + ), + ), + 'socket_set_blocking' => + array ( + 'old' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'stream' => 'Socket', + 'enable' => 'bool', + ), + ), + 'socket_set_nonblock' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + ), + ), + 'socket_set_option' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + ), + 'socket_set_timeout' => + array ( + 'old' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + ), + 'socket_setopt' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + ), + 'socket_shutdown' => + array ( + 'old' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'socket' => 'Socket', + 'mode=' => 'int', + ), + ), + 'socket_write' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'socket' => 'Socket', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'socket_wsaprotocol_info_export' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'process_id' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'socket' => 'Socket', + 'process_id' => 'int', + ), + ), + 'socket_wsaprotocol_info_import' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'info_id' => 'string', + ), + 'new' => + array ( + 0 => 'Socket|false', + 'info_id' => 'string', + ), + ), + 'spl_autoload' => + array ( + 'old' => + array ( + 0 => 'void', + 'class' => 'string', + 'file_extensions=' => 'string', + ), + 'new' => + array ( + 0 => 'void', + 'class' => 'string', + 'file_extensions=' => 'null|string', + ), + ), + 'spl_autoload_extensions' => + array ( + 'old' => + array ( + 0 => 'string', + 'file_extensions=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'file_extensions=' => 'null|string', + ), + ), + 'spl_autoload_functions' => + array ( + 'old' => + array ( + 0 => 'false|list', + ), + 'new' => + array ( + 0 => 'list', + ), + ), + 'spl_autoload_register' => + array ( + 'old' => + array ( + 0 => 'bool', + 'callback=' => 'callable(string):void', + 'throw=' => 'bool', + 'prepend=' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'callback=' => 'callable(string):void|null', + 'throw=' => 'bool', + 'prepend=' => 'bool', + ), + ), + 'str_word_count' => + array ( + 'old' => + array ( + 0 => 'array|int', + 'string' => 'string', + 'format=' => 'int', + 'characters=' => 'string', + ), + 'new' => + array ( + 0 => 'array|int', + 'string' => 'string', + 'format=' => 'int', + 'characters=' => 'null|string', + ), + ), + 'strchr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + ), + 'strcspn' => + array ( + 'old' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + ), + 'stream_context_create' => + array ( + 'old' => + array ( + 0 => 'resource', + 'options=' => 'array', + 'params=' => 'array', + ), + 'new' => + array ( + 0 => 'resource', + 'options=' => 'array|null', + 'params=' => 'array|null', + ), + ), + 'stream_context_get_default' => + array ( + 'old' => + array ( + 0 => 'resource', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'resource', + 'options=' => 'array|null', + ), + ), + 'stream_copy_to_stream' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'from' => 'resource', + 'to' => 'resource', + 'length=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'from' => 'resource', + 'to' => 'resource', + 'length=' => 'int|null', + 'offset=' => 'int', + ), + ), + 'stream_get_contents' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int|null', + 'offset=' => 'int', + ), + ), + 'stream_set_chunk_size' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + ), + 'stream_socket_accept' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + 'timeout=' => 'float', + '&w_peer_name=' => 'string', + ), + 'new' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + 'timeout=' => 'float|null', + '&w_peer_name=' => 'string', + ), + ), + 'stream_socket_client' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float|null', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + ), + 'stream_socket_enable_crypto' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'stream' => 'resource', + 'enable' => 'bool', + 'crypto_method=' => 'int|null', + 'session_stream=' => 'resource', + ), + 'new' => + array ( + 0 => 'bool|int', + 'stream' => 'resource', + 'enable' => 'bool', + 'crypto_method=' => 'int|null', + 'session_stream=' => 'null|resource', + ), + ), + 'strftime' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int|null', + ), + ), + 'strip_tags' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'list|string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'list|null|string', + ), + ), + 'stripos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + ), + 'stristr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + ), + 'strpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + ), + 'strrchr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + ), + ), + 'strripos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + ), + 'strrpos' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + ), + 'strspn' => + array ( + 'old' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + ), + 'strstr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + ), + 'strtotime' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'datetime' => 'string', + 'baseTimestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'datetime' => 'string', + 'baseTimestamp=' => 'int|null', + ), + ), + 'substr_compare' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'case_insensitive=' => 'bool', + ), + 'new' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + 'case_insensitive=' => 'bool', + ), + ), + 'substr_count' => + array ( + 'old' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'length=' => 'int|null', + ), + ), + 'substr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + ), + ), + 'substr_replace' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int|null', + ), + ), + 'substr_replace\'1' => + array ( + 'old' => + array ( + 0 => 'array', + 'string' => 'array', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int', + ), + 'new' => + array ( + 0 => 'array', + 'string' => 'array', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int|null', + ), + ), + 'tidy_parse_file' => + array ( + 'old' => + array ( + 0 => 'tidy', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'new' => + array ( + 0 => 'tidy', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + ), + 'tidy_parse_string' => + array ( + 'old' => + array ( + 0 => 'tidy', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'tidy', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + ), + 'tidy_repair_file' => + array ( + 'old' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + 'useIncludePath=' => 'bool', + ), + ), + 'tidy_repair_string' => + array ( + 'old' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + ), + 'timezone_identifiers_list' => + array ( + 'old' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + 'new' => + array ( + 0 => 'list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'null|string', + ), + ), + 'timezone_offset_get' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'object' => 'DateTimeZone', + 'datetime' => 'DateTimeInterface', + ), + 'new' => + array ( + 0 => 'int', + 'object' => 'DateTimeZone', + 'datetime' => 'DateTimeInterface', + ), + ), + 'touch' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mtime=' => 'int', + 'atime=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mtime=' => 'int|null', + 'atime=' => 'int|null', + ), + ), + 'umask' => + array ( + 'old' => + array ( + 0 => 'int', + 'mask=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'mask=' => 'int|null', + ), + ), + 'unixtojd' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'timestamp=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'timestamp=' => 'int|null', + ), + ), + 'xml_get_current_byte_index' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + ), + 'xml_get_current_column_number' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + ), + 'xml_get_current_line_number' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + ), + 'xml_get_error_code' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + ), + ), + 'xml_parse' => + array ( + 'old' => + array ( + 0 => 'int', + 'parser' => 'resource', + 'data' => 'string', + 'is_final=' => 'bool', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + 'data' => 'string', + 'is_final=' => 'bool', + ), + ), + 'xml_parse_into_struct' => + array ( + 'old' => + array ( + 0 => 'int', + 'parser' => 'resource', + 'data' => 'string', + '&w_values' => 'array', + '&w_index=' => 'array', + ), + 'new' => + array ( + 0 => 'int', + 'parser' => 'XMLParser', + 'data' => 'string', + '&w_values' => 'array', + '&w_index=' => 'array', + ), + ), + 'xml_parser_create' => + array ( + 'old' => + array ( + 0 => 'resource', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'XMLParser', + 'encoding=' => 'null|string', + ), + ), + 'xml_parser_create_ns' => + array ( + 'old' => + array ( + 0 => 'resource', + 'encoding=' => 'string', + 'separator=' => 'string', + ), + 'new' => + array ( + 0 => 'XMLParser', + 'encoding=' => 'null|string', + 'separator=' => 'string', + ), + ), + 'xml_parser_free' => + array ( + 'old' => + array ( + 0 => 'bool', + 'parser' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'parser' => 'XMLParser', + ), + ), + 'xml_parser_get_option' => + array ( + 'old' => + array ( + 0 => 'int|string', + 'parser' => 'resource', + 'option' => 'int', + ), + 'new' => + array ( + 0 => 'int|string', + 'parser' => 'XMLParser', + 'option' => 'int', + ), + ), + 'xml_parser_set_option' => + array ( + 'old' => + array ( + 0 => 'bool', + 'parser' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'parser' => 'XMLParser', + 'option' => 'int', + 'value' => 'mixed', + ), + ), + 'xml_set_character_data_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_default_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_element_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'start_handler' => 'callable', + 'end_handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'start_handler' => 'callable', + 'end_handler' => 'callable', + ), + ), + 'xml_set_end_namespace_decl_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_external_entity_ref_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_notation_decl_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_object' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'object' => 'object', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'object' => 'object', + ), + ), + 'xml_set_processing_instruction_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_start_namespace_decl_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xml_set_unparsed_entity_decl_handler' => + array ( + 'old' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'new' => + array ( + 0 => 'true', + 'parser' => 'XMLParser', + 'handler' => 'callable', + ), + ), + 'xmlwriter_end_attribute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_cdata' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_comment' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_document' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_dtd' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_dtd_attlist' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_dtd_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_dtd_entity' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_end_pi' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_flush' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'writer' => 'resource', + 'empty=' => 'bool', + ), + 'new' => + array ( + 0 => 'int|string', + 'writer' => 'XMLWriter', + 'empty=' => 'bool', + ), + ), + 'xmlwriter_full_end_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_open_memory' => + array ( + 'old' => + array ( + 0 => 'false|resource', + ), + 'new' => + array ( + 0 => 'XMLWriter|false', + ), + ), + 'xmlwriter_open_uri' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'uri' => 'string', + ), + 'new' => + array ( + 0 => 'XMLWriter|false', + 'uri' => 'string', + ), + ), + 'xmlwriter_output_memory' => + array ( + 'old' => + array ( + 0 => 'string', + 'writer' => 'resource', + 'flush=' => 'bool', + ), + 'new' => + array ( + 0 => 'string', + 'writer' => 'XMLWriter', + 'flush=' => 'bool', + ), + ), + 'xmlwriter_set_indent' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'enable' => 'bool', + ), + ), + 'xmlwriter_set_indent_string' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'indentation' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'indentation' => 'string', + ), + ), + 'xmlwriter_start_attribute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + ), + 'xmlwriter_start_attribute_ns' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + ), + 'xmlwriter_start_cdata' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_start_comment' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + ), + ), + 'xmlwriter_start_document' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + ), + 'xmlwriter_start_dtd' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + ), + 'xmlwriter_start_dtd_attlist' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + ), + 'xmlwriter_start_dtd_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'qualifiedName' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'qualifiedName' => 'string', + ), + ), + 'xmlwriter_start_dtd_entity' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'isParam' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'isParam' => 'bool', + ), + ), + 'xmlwriter_start_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + ), + ), + 'xmlwriter_start_element_ns' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + ), + 'xmlwriter_start_pi' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'target' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'target' => 'string', + ), + ), + 'xmlwriter_text' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + ), + 'xmlwriter_write_attribute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'value' => 'string', + ), + ), + 'xmlwriter_write_attribute_ns' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + ), + 'xmlwriter_write_cdata' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + ), + 'xmlwriter_write_comment' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + ), + 'xmlwriter_write_dtd' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + ), + 'xmlwriter_write_dtd_attlist' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + ), + ), + 'xmlwriter_write_dtd_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + ), + ), + 'xmlwriter_write_dtd_entity' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + 'isParam' => 'bool', + 'publicId' => 'string', + 'systemId' => 'string', + 'notationData' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content' => 'string', + 'isParam=' => 'bool', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'notationData=' => 'null|string', + ), + ), + 'xmlwriter_write_element' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'name' => 'string', + 'content=' => 'null|string', + ), + ), + 'xmlwriter_write_element_ns' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'string', + 'content' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'content=' => 'null|string', + ), + ), + 'xmlwriter_write_pi' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'target' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'target' => 'string', + 'content' => 'string', + ), + ), + 'xmlwriter_write_raw' => + array ( + 'old' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'writer' => 'XMLWriter', + 'content' => 'string', + ), + ), + 'ZipArchive::addEmptyDir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dirname' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dirname' => 'string', + 'flags=' => 'int', + ), + ), + 'ZipArchive::addFile' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'entryname=' => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'entryname=' => 'string', + 'start=' => 'int', + 'length=' => 'int', + 'flags=' => 'int', + ), + ), + 'ZipArchive::addFromString' => + array ( + 'old' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'flags=' => 'int', + ), + ), + ), + 'removed' => + array ( + 'PDOStatement::setFetchMode\'1' => + array ( + 0 => 'bool', + 'fetch_column' => 'int', + 'colno' => 'int', + ), + 'PDOStatement::setFetchMode\'2' => + array ( + 0 => 'bool', + 'fetch_class' => 'int', + 'classname' => 'string', + 'ctorargs' => 'array', + ), + 'PDOStatement::setFetchMode\'3' => + array ( + 0 => 'bool', + 'fetch_into' => 'int', + 'object' => 'object', + ), + 'ReflectionType::isBuiltin' => + array ( + 0 => 'bool', + ), + 'SplFileObject::fgetss' => + array ( + 0 => 'false|string', + 'allowable_tags=' => 'string', + ), + 'create_function' => + array ( + 0 => 'string', + 'args' => 'string', + 'code' => 'string', + ), + 'each' => + array ( + 0 => 'array{0: int|string, 1: mixed, key: int|string, value: mixed}', + '&r_arr' => 'array', + ), + 'fgetss' => + array ( + 0 => 'false|string', + 'fp' => 'resource', + 'length=' => 'int', + 'allowable_tags=' => 'string', + ), + 'gmp_random' => + array ( + 0 => 'GMP', + 'limiter=' => 'int', + ), + 'gzgetss' => + array ( + 0 => 'false|string', + 'zp' => 'resource', + 'length' => 'int', + 'allowable_tags=' => 'string', + ), + 'image2wbmp' => + array ( + 0 => 'bool', + 'im' => 'resource', + 'filename=' => 'null|string', + 'threshold=' => 'int', + ), + 'jpeg2wbmp' => + array ( + 0 => 'bool', + 'jpegname' => 'string', + 'wbmpname' => 'string', + 'dest_height' => 'int', + 'dest_width' => 'int', + 'threshold' => 'int', + ), + 'ldap_control_paged_result' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'pagesize' => 'int', + 'iscritical=' => 'bool', + 'cookie=' => 'string', + ), + 'ldap_control_paged_result_response' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'result_identifier' => 'resource', + '&w_cookie' => 'string', + '&w_estimated' => 'int', + ), + 'ldap_sort' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'result_identifier' => 'resource', + 'sortfilter' => 'string', + ), + 'number_format\'1' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals' => 'int', + 'decimal_separator' => 'null|string', + 'thousands_separator' => 'null|string', + ), + 'png2wbmp' => + array ( + 0 => 'bool', + 'pngname' => 'string', + 'wbmpname' => 'string', + 'dest_height' => 'int', + 'dest_width' => 'int', + 'threshold' => 'int', + ), + 'read_exif_data' => + array ( + 0 => 'array', + 'filename' => 'string', + 'sections_needed=' => 'string', + 'sub_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + 'Reflection::export' => + array ( + 0 => 'null|string', + 'r' => 'reflector', + 'return=' => 'bool', + ), + 'ReflectionClass::export' => + array ( + 0 => 'null|string', + 'argument' => 'object|string', + 'return=' => 'bool', + ), + 'ReflectionClassConstant::export' => + array ( + 0 => 'string', + 'class' => 'mixed', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionExtension::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionFunction::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionFunctionAbstract::export' => + array ( + 0 => 'null|string', + ), + 'ReflectionMethod::export' => + array ( + 0 => 'null|string', + 'class' => 'string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionObject::export' => + array ( + 0 => 'null|string', + 'argument' => 'object', + 'return=' => 'bool', + ), + 'ReflectionParameter::export' => + array ( + 0 => 'null|string', + 'function' => 'string', + 'parameter' => 'string', + 'return=' => 'bool', + ), + 'ReflectionProperty::export' => + array ( + 0 => 'null|string', + 'class' => 'mixed', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionZendExtension::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'SimpleXMLIterator::rewind' => + array ( + 0 => 'void', + ), + 'SimpleXMLIterator::valid' => + array ( + 0 => 'bool', + ), + 'SimpleXMLIterator::current' => + array ( + 0 => 'SimpleXMLIterator|null', + ), + 'SimpleXMLIterator::key' => + array ( + 0 => 'false|string', + ), + 'SimpleXMLIterator::next' => + array ( + 0 => 'void', + ), + 'SimpleXMLIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'SimpleXMLIterator::getChildren' => + array ( + 0 => 'SimpleXMLIterator|null', + ), + 'SplFixedArray::current' => + array ( + 0 => 'mixed', + ), + 'SplFixedArray::key' => + array ( + 0 => 'int', + ), + 'SplFixedArray::next' => + array ( + 0 => 'void', + ), + 'SplFixedArray::rewind' => + array ( + 0 => 'void', + ), + 'SplFixedArray::valid' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::fgetss' => + array ( + 0 => 'string', + 'allowable_tags=' => 'string', + ), + 'xmlrpc_decode' => + array ( + 0 => 'mixed', + 'xml' => 'string', + 'encoding=' => 'string', + ), + 'xmlrpc_decode_request' => + array ( + 0 => 'array|null', + 'xml' => 'string', + '&w_method' => 'string', + 'encoding=' => 'string', + ), + 'xmlrpc_encode' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'xmlrpc_encode_request' => + array ( + 0 => 'string', + 'method' => 'string', + 'params' => 'mixed', + 'output_options=' => 'array', + ), + 'xmlrpc_get_type' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'xmlrpc_is_fault' => + array ( + 0 => 'bool', + 'arg' => 'array', + ), + 'xmlrpc_parse_method_descriptions' => + array ( + 0 => 'array', + 'xml' => 'string', + ), + 'xmlrpc_server_add_introspection_data' => + array ( + 0 => 'int', + 'server' => 'resource', + 'desc' => 'array', + ), + 'xmlrpc_server_call_method' => + array ( + 0 => 'string', + 'server' => 'resource', + 'xml' => 'string', + 'user_data' => 'mixed', + 'output_options=' => 'array', + ), + 'xmlrpc_server_create' => + array ( + 0 => 'resource', + ), + 'xmlrpc_server_destroy' => + array ( + 0 => 'int', + 'server' => 'resource', + ), + 'xmlrpc_server_register_introspection_callback' => + array ( + 0 => 'bool', + 'server' => 'resource', + 'function' => 'string', + ), + 'xmlrpc_server_register_method' => + array ( + 0 => 'bool', + 'server' => 'resource', + 'method_name' => 'string', + 'function' => 'string', + ), + 'xmlrpc_set_type' => + array ( + 0 => 'bool', + '&rw_value' => 'DateTime|string', + 'type' => 'string', + ), + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_81_delta.php b/dictionaries/CallMap_81_delta.php index 176978a46b2..a52823a8926 100644 --- a/dictionaries/CallMap_81_delta.php +++ b/dictionaries/CallMap_81_delta.php @@ -1,1311 +1,5230 @@ [ - 'array_is_list' => ['bool', 'array' => 'array'], - 'enum_exists' => ['bool', 'enum' => 'string', 'autoload=' => 'bool'], - 'fsync' => ['bool', 'stream' => 'resource'], - 'fdatasync' => ['bool', 'stream' => 'resource'], - 'imageavif' => ['bool', 'image'=>'GdImage', 'file='=>'resource|string|null', 'quality='=>'int', 'speed='=>'int'], - 'imagecreatefromavif' => ['false|GdImage', 'filename'=>'string'], - 'mysqli_fetch_column' => ['null|int|float|string|false', 'result'=>'mysqli_result', 'column='=>'int'], - 'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column='=>'int'], - 'CURLStringFile::__construct' => ['void', 'data'=>'string', 'postname'=>'string', 'mime='=>'string'], - 'Fiber::__construct' => ['void', 'callback'=>'callable'], - 'Fiber::start' => ['mixed', '...args'=>'mixed'], - 'Fiber::resume' => ['mixed', 'value='=>'null|mixed'], - 'Fiber::throw' => ['mixed', 'exception'=>'Throwable'], - 'Fiber::isStarted' => ['bool'], - 'Fiber::isSuspended' => ['bool'], - 'Fiber::isRunning' => ['bool'], - 'Fiber::isTerminated' => ['bool'], - 'Fiber::getReturn' => ['mixed'], - 'Fiber::getCurrent' => ['?self'], - 'Fiber::suspend' => ['mixed', 'value='=>'null|mixed'], - 'FiberError::__construct' => ['void'], - 'GMP::__serialize' => ['array'], - 'GMP::__unserialize' => ['void', 'data'=>'array'], - 'ReflectionClass::isEnum' => ['bool'], - 'ReflectionEnum::getBackingType' => ['?ReflectionType'], - 'ReflectionEnum::getCase' => ['ReflectionEnumUnitCase', 'name' => 'string'], - 'ReflectionEnum::getCases' => ['list'], - 'ReflectionEnum::hasCase' => ['bool', 'name' => 'string'], - 'ReflectionEnum::isBacked' => ['bool'], - 'ReflectionEnumUnitCase::getEnum' => ['ReflectionEnum'], - 'ReflectionEnumUnitCase::getValue' => ['UnitEnum'], - 'ReflectionEnumBackedCase::getBackingValue' => ['string|int'], - 'ReflectionFunctionAbstract::getTentativeReturnType' => ['?ReflectionType'], - 'ReflectionFunctionAbstract::hasTentativeReturnType' => ['bool'], - 'ReflectionFunctionAbstract::isStatic' => ['bool'], - 'ReflectionObject::isEnum' => ['bool'], - 'ReflectionProperty::isReadonly' => ['bool'], - 'sodium_crypto_stream_xchacha20' => ['non-empty-string', 'length'=>'positive-int', 'nonce'=>'non-empty-string', 'key'=>'non-empty-string'], - 'sodium_crypto_stream_xchacha20_keygen' => ['non-empty-string'], - 'sodium_crypto_stream_xchacha20_xor' => ['string', 'message'=>'string', 'nonce'=>'non-empty-string', 'key'=>'non-empty-string'], - ], - - 'changed' => [ - 'DOMDocument::createComment' => [ - 'old' => ['DOMComment|false', 'data'=>'string'], - 'new' => ['DOMComment', 'data'=>'string'], - ], - 'DOMDocument::createDocumentFragment' => [ - 'old' => ['DOMDocumentFragment|false'], - 'new' => ['DOMDocumentFragment'], - ], - 'DOMDocument::createTextNode' => [ - 'old' => ['DOMText|false', 'data'=>'string'], - 'new' => ['DOMText', 'data'=>'string'], - ], - 'Phar::buildFromDirectory' => [ - 'old' => ['array|false', 'directory'=>'string', 'pattern='=>'string'], - 'new' => ['array', 'directory'=>'string', 'pattern='=>'string'], - ], - 'Phar::buildFromIterator' => [ - 'old' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - 'new' => ['array', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - ], - 'PharData::buildFromDirectory' => [ - 'old' => ['array|false', 'directory'=>'string', 'pattern='=>'string'], - 'new' => ['array', 'directory'=>'string', 'pattern='=>'string'], - ], - 'PharData::buildFromIterator' => [ - 'old' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - 'new' => ['array', 'iterator'=>'Traversable', 'baseDirectory='=>'?string'], - ], - 'SplFileObject::fputcsv' => [ - 'old' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'new' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string'], - ], - 'SplTempFileObject::fputcsv' => [ - 'old' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'new' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string'], - ], - 'hash_pbkdf2' => [ - 'old' => ['non-empty-string', 'algo'=>'string', 'password'=>'string', 'salt'=>'string', 'iterations'=>'int', 'length='=>'int', 'binary='=>'bool'], - 'new' => ['non-empty-string', 'algo'=>'string', 'password'=>'string', 'salt'=>'string', 'iterations'=>'int', 'length='=>'int', 'binary='=>'bool', 'options=' => 'array'], - ], - 'finfo_buffer' => [ - 'old' => ['string|false', 'finfo'=>'resource', 'string'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'new' => ['string|false', 'finfo'=>'finfo', 'string'=>'string', 'flags='=>'int', 'context='=>'resource'], - ], - 'finfo_close' => [ - 'old' => ['bool', 'finfo'=>'resource'], - 'new' => ['bool', 'finfo'=>'finfo'], - ], - 'finfo_file' => [ - 'old' => ['string|false', 'finfo'=>'resource', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'new' => ['string|false', 'finfo'=>'finfo', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], - ], - 'finfo_open' => [ - 'old' => ['resource|false', 'flags='=>'int', 'magic_database='=>'?string'], - 'new' => ['finfo|false', 'flags='=>'int', 'magic_database='=>'?string'], - ], - 'finfo_set_flags' => [ - 'old' => ['bool', 'finfo'=>'resource', 'flags'=>'int'], - 'new' => ['bool', 'finfo'=>'finfo', 'flags'=>'int'], - ], - 'fputcsv' => [ - 'old' => ['int|false', 'stream'=>'resource', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'new' => ['int|false', 'stream'=>'resource', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string', 'eol='=>'string'], - ], - 'ftp_connect' => [ - 'old' => ['resource|false', 'hostname' => 'string', 'port=' => 'int', 'timeout=' => 'int'], - 'new' => ['FTP\Connection|false', 'hostname' => 'string', 'port=' => 'int', 'timeout=' => 'int'], - ], - 'ftp_ssl_connect' => [ - 'old' => ['resource|false', 'hostname' => 'string', 'port=' => 'int', 'timeout=' => 'int'], - 'new' => ['FTP\Connection|false', 'hostname' => 'string', 'port=' => 'int', 'timeout=' => 'int'], - ], - 'ftp_login' => [ - 'old' => ['bool', 'ftp' => 'resource', 'username' => 'string', 'password' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'username' => 'string', 'password' => 'string'], - ], - 'ftp_pwd' => [ - 'old' => ['string|false', 'ftp' => 'resource'], - 'new' => ['string|false', 'ftp' => 'FTP\Connection'], - ], - 'ftp_cdup' => [ - 'old' => ['bool', 'ftp' => 'resource'], - 'new' => ['bool', 'ftp' => 'FTP\Connection'], - ], - 'ftp_chdir' => [ - 'old' => ['bool', 'ftp' => 'resource', 'directory' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'directory' => 'string'], - ], - 'ftp_exec' => [ - 'old' => ['bool', 'ftp' => 'resource', 'command' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'command' => 'string'], - ], - 'ftp_raw' => [ - 'old' => ['?array', 'ftp' => 'resource', 'command' => 'string'], - 'new' => ['?array', 'ftp' => 'FTP\Connection', 'command' => 'string'], - ], - 'ftp_mkdir' => [ - 'old' => ['string|false', 'ftp' => 'resource', 'directory' => 'string'], - 'new' => ['string|false', 'ftp' => 'FTP\Connection', 'directory' => 'string'], - ], - 'ftp_rmdir' => [ - 'old' => ['bool', 'ftp' => 'resource', 'directory' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'directory' => 'string'], - ], - 'ftp_chmod' => [ - 'old' => ['int|false', 'ftp' => 'resource', 'permissions' => 'int', 'filename' => 'string'], - 'new' => ['int|false', 'ftp' => 'FTP\Connection', 'permissions' => 'int', 'filename' => 'string'], - ], - 'ftp_alloc' => [ - 'old' => ['bool', 'ftp' => 'resource', 'size' => 'int', '&w_response=' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'size' => 'int', '&w_response=' => 'string'], - ], - 'ftp_nlist' => [ - 'old' => ['array|false', 'ftp' => 'resource', 'directory' => 'string'], - 'new' => ['array|false', 'ftp' => 'FTP\Connection', 'directory' => 'string'], - ], - 'ftp_rawlist' => [ - 'old' => ['array|false', 'ftp' => 'resource', 'directory' => 'string', 'recursive=' => 'bool'], - 'new' => ['array|false', 'ftp' => 'FTP\Connection', 'directory' => 'string', 'recursive=' => 'bool'], - ], - 'ftp_mlsd' => [ - 'old' => ['array|false', 'ftp' => 'resource', 'directory' => 'string'], - 'new' => ['array|false', 'ftp' => 'FTP\Connection', 'directory' => 'string'], - ], - 'ftp_systype' => [ - 'old' => ['string|false', 'ftp' => 'resource'], - 'new' => ['string|false', 'ftp' => 'FTP\Connection'], - ], - 'ftp_fget' => [ - 'old' => ['bool', 'ftp' => 'resource', 'stream' => 'resource', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'stream' => 'resource', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_nb_fget' => [ - 'old' => ['int', 'ftp' => 'resource', 'stream' => 'resource', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'stream' => 'resource', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_pasv' => [ - 'old' => ['bool', 'ftp' => 'resource', 'enable' => 'bool'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'enable' => 'bool'], - ], - 'ftp_get' => [ - 'old' => ['bool', 'ftp' => 'resource', 'local_filename' => 'string', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'local_filename' => 'string', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_nb_get' => [ - 'old' => ['int', 'ftp' => 'resource', 'local_filename' => 'string', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'local_filename' => 'string', 'remote_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_nb_continue' => [ - 'old' => ['int', 'ftp' => 'resource'], - 'new' => ['int', 'ftp' => 'FTP\Connection'], - ], - 'ftp_fput' => [ - 'old' => ['bool', 'ftp' => 'resource', 'remote_filename' => 'string', 'stream' => 'resource', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'remote_filename' => 'string', 'stream' => 'resource', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_nb_fput' => [ - 'old' => ['int', 'ftp' => 'resource', 'remote_filename' => 'string', 'stream' => 'resource', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'remote_filename' => 'string', 'stream' => 'resource', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_put' => [ - 'old' => ['bool', 'ftp' => 'resource', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_append' => [ - 'old' => ['bool', 'ftp' => 'resource', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int'], - ], - 'ftp_nb_put' => [ - 'old' => ['int', 'ftp' => 'resource', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'remote_filename' => 'string', 'local_filename' => 'string', 'mode=' => 'int', 'offset=' => 'int'], - ], - 'ftp_size' => [ - 'old' => ['int', 'ftp' => 'resource', 'filename' => 'string'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'filename' => 'string'], - ], - 'ftp_mdtm' => [ - 'old' => ['int', 'ftp' => 'resource', 'filename' => 'string'], - 'new' => ['int', 'ftp' => 'FTP\Connection', 'filename' => 'string'], - ], - 'ftp_rename' => [ - 'old' => ['bool', 'ftp' => 'resource', 'from' => 'string', 'to' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'from' => 'string', 'to' => 'string'], - ], - 'ftp_delete' => [ - 'old' => ['bool', 'ftp' => 'resource', 'filename' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'filename' => 'string'], - ], - 'ftp_site' => [ - 'old' => ['bool', 'ftp' => 'resource', 'command' => 'string'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'command' => 'string'], - ], - 'ftp_close' => [ - 'old' => ['bool', 'ftp' => 'resource'], - 'new' => ['bool', 'ftp' => 'FTP\Connection'], - ], - 'ftp_quit' => [ - 'old' => ['bool', 'ftp' => 'resource'], - 'new' => ['bool', 'ftp' => 'FTP\Connection'], - ], - 'ftp_set_option' => [ - 'old' => ['bool', 'ftp' => 'resource', 'option' => 'int', 'value' => 'mixed'], - 'new' => ['bool', 'ftp' => 'FTP\Connection', 'option' => 'int', 'value' => 'mixed'], - ], - 'ftp_get_option' => [ - 'old' => ['int|false', 'ftp' => 'resource', 'option' => 'int'], - 'new' => ['int|false', 'ftp' => 'FTP\Connection', 'option' => 'int'], - ], - 'hash' => [ - 'old' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool'], - 'new' => ['non-empty-string', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool', 'options='=>'array{seed:scalar}'], - ], - 'hash_file' => [ - 'old' => ['non-empty-string|false', 'algo'=>'string', 'filename'=>'string', 'binary='=>'bool'], - 'new' => ['non-empty-string|false', 'algo'=>'string', 'filename'=>'string', 'binary='=>'bool', 'options='=>'array{seed:scalar}'], - ], - 'hash_init' => [ - 'old' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string'], - 'new' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string', 'options='=>'array{seed:scalar}'], - ], - 'imageloadfont' => [ - 'old' => ['int|false', 'filename'=>'string'], - 'new' => ['GdFont|false', 'filename'=>'string'], - ], - 'imap_append' => [ - 'old' => ['bool', 'imap'=>'resource', 'folder'=>'string', 'message'=>'string', 'options='=>'?string', 'internal_date='=>'?string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'folder'=>'string', 'message'=>'string', 'options='=>'?string', 'internal_date='=>'?string'], - ], - 'imap_body' => [ - 'old' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'new' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], - ], - 'imap_bodystruct' => [ - 'old' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string'], - 'new' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string'], - ], - 'imap_check' => [ - 'old' => ['stdClass|false', 'imap'=>'resource'], - 'new' => ['stdClass|false', 'imap'=>'IMAP\Connection'], - ], - 'imap_clearflag_full' => [ - 'old' => ['bool', 'imap'=>'resource', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - ], - 'imap_close' => [ - 'old' => ['bool', 'imap'=>'resource', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'flags='=>'int'], - ], - 'imap_create' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_createmailbox' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_delete' => [ - 'old' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - ], - 'imap_deletemailbox' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_expunge' => [ - 'old' => ['bool', 'imap'=>'resource'], - 'new' => ['bool', 'imap'=>'IMAP\Connection'], - ], - 'imap_fetch_overview' => [ - 'old' => ['array|false', 'imap'=>'resource', 'sequence'=>'string', 'flags='=>'int'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flags='=>'int'], - ], - 'imap_fetchbody' => [ - 'old' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - 'new' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - ], - 'imap_fetchheader' => [ - 'old' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'new' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], - ], - 'imap_fetchmime' => [ - 'old' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - 'new' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - ], - 'imap_fetchstructure' => [ - 'old' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'new' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], - ], - 'imap_fetchtext' => [ - 'old' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'new' => ['string|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'flags='=>'int'], - ], - 'imap_gc' => [ - 'old' => ['bool', 'imap'=>'resource', 'flags'=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'flags'=>'int'], - ], - 'imap_get_quota' => [ - 'old' => ['array|false', 'imap'=>'resource', 'quota_root'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'quota_root'=>'string'], - ], - 'imap_get_quotaroot' => [ - 'old' => ['array|false', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_getacl' => [ - 'old' => ['array|false', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_getmailboxes' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_getsubscribed' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_headerinfo' => [ - 'old' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int'], - 'new' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int'], - ], - 'imap_headers' => [ - 'old' => ['array|false', 'imap'=>'resource'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection'], - ], - 'imap_list' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_listmailbox' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_listscan' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - ], - 'imap_listsubscribed' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_lsub' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string'], - ], - 'imap_mail_copy' => [ - 'old' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - ], - 'imap_mail_move' => [ - 'old' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - ], - 'imap_mailboxmsginfo' => [ - 'old' => ['stdClass', 'imap'=>'resource'], - 'new' => ['stdClass', 'imap'=>'IMAP\Connection'], - ], - 'imap_msgno' => [ - 'old' => ['int', 'imap'=>'resource', 'message_uid'=>'int'], - 'new' => ['int', 'imap'=>'IMAP\Connection', 'message_uid'=>'int'], - ], - 'imap_num_msg' => [ - 'old' => ['int|false', 'imap'=>'resource'], - 'new' => ['int|false', 'imap'=>'IMAP\Connection'], - ], - 'imap_num_recent' => [ - 'old' => ['int', 'imap'=>'resource'], - 'new' => ['int', 'imap'=>'IMAP\Connection'], - ], - 'imap_open' => [ - 'old' => ['resource|false', 'mailbox'=>'string', 'user'=>'string', 'password'=>'string', 'flags='=>'int', 'retries='=>'int', 'options='=>'array'], - 'new' => ['IMAP\Connection|false', 'mailbox'=>'string', 'user'=>'string', 'password'=>'string', 'flags='=>'int', 'retries='=>'int', 'options='=>'array'], - ], - 'imap_ping' => [ - 'old' => ['bool', 'imap'=>'resource'], - 'new' => ['bool', 'imap'=>'IMAP\Connection'], - ], - 'imap_rename' => [ - 'old' => ['bool', 'imap'=>'resource', 'from'=>'string', 'to'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'from'=>'string', 'to'=>'string'], - ], - 'imap_renamemailbox' => [ - 'old' => ['bool', 'imap'=>'resource', 'from'=>'string', 'to'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'from'=>'string', 'to'=>'string'], - ], - 'imap_reopen' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string', 'flags='=>'int', 'retries='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'flags='=>'int', 'retries='=>'int'], - ], - 'imap_savebody' => [ - 'old' => ['bool', 'imap'=>'resource', 'file'=>'string|resource', 'message_num'=>'int', 'section='=>'string', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'file'=>'string|resource', 'message_num'=>'int', 'section='=>'string', 'flags='=>'int'], - ], - 'imap_scan' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - ], - 'imap_scanmailbox' => [ - 'old' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - ], - 'imap_search' => [ - 'old' => ['array|false', 'imap'=>'resource', 'criteria'=>'string', 'flags='=>'int', 'charset='=>'string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'criteria'=>'string', 'flags='=>'int', 'charset='=>'string'], - ], - 'imap_set_quota' => [ - 'old' => ['bool', 'imap'=>'resource', 'quota_root'=>'string', 'mailbox_size'=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'quota_root'=>'string', 'mailbox_size'=>'int'], - ], - 'imap_setacl' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string', 'user_id'=>'string', 'rights'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'user_id'=>'string', 'rights'=>'string'], - ], - 'imap_setflag_full' => [ - 'old' => ['bool', 'imap'=>'resource', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - ], - 'imap_sort' => [ - 'old' => ['array|false', 'imap'=>'resource', 'criteria'=>'int', 'reverse'=>'bool', 'flags='=>'int', 'search_criteria='=>'?string', 'charset='=>'?string'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'criteria'=>'int', 'reverse'=>'bool', 'flags='=>'int', 'search_criteria='=>'?string', 'charset='=>'?string'], - ], - 'imap_status' => [ - 'old' => ['stdClass|false', 'imap'=>'resource', 'mailbox'=>'string', 'flags'=>'int'], - 'new' => ['stdClass|false', 'imap'=>'IMAP\Connection', 'mailbox'=>'string', 'flags'=>'int'], - ], - 'imap_subscribe' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'imap_thread' => [ - 'old' => ['array|false', 'imap'=>'resource', 'flags='=>'int'], - 'new' => ['array|false', 'imap'=>'IMAP\Connection', 'flags='=>'int'], - ], - 'imap_uid' => [ - 'old' => ['int|false', 'imap'=>'resource', 'message_num'=>'int'], - 'new' => ['int|false', 'imap'=>'IMAP\Connection', 'message_num'=>'int'], - ], - 'imap_undelete' => [ - 'old' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'flags='=>'int'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - ], - 'imap_unsubscribe' => [ - 'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'], - ], - 'ini_alter' => [ - 'old' => ['string|false', 'option'=>'string', 'value'=>'string'], - 'new' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'], - ], - 'ini_set' => [ - 'old' => ['string|false', 'option'=>'string', 'value'=>'string'], - 'new' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'], - ], - 'IntlDateFormatter::__construct' => [ - 'old' => ['void', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'new' => ['void', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - ], - 'IntlDateFormatter::create' => [ - 'old' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'new' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType='=>'int', 'timeType='=>'int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - ], - 'ldap_add' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_add_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_bind' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn='=>'string|null', 'password='=>'string|null'], - ], - 'ldap_bind_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'?array'], - ], - 'ldap_close' => [ - 'old' => ['bool', 'ldap'=>'resource'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection'], - ], - 'ldap_compare' => [ - 'old' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'?array'], - 'new' => ['bool|int', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string', 'controls='=>'?array'], - ], - 'ldap_connect' => [ - 'old' => ['resource|false', 'uri='=>'?string', 'port='=>'int', 'wallet='=>'string', 'password='=>'string', 'auth_mode='=>'int'], - 'new' => ['LDAP\Connection|false', 'uri='=>'?string', 'port='=>'int', 'wallet='=>'string', 'password='=>'string', 'auth_mode='=>'int'], - ], - 'ldap_count_entries' => [ - 'old' => ['int', 'ldap'=>'resource', 'result'=>'resource'], - 'new' => ['int', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], - ], - 'ldap_delete' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'controls='=>'?array'], - ], - 'ldap_delete_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'controls='=>'?array'], - ], - 'ldap_errno' => [ - 'old' => ['int', 'ldap'=>'resource'], - 'new' => ['int', 'ldap'=>'LDAP\Connection'], - ], - 'ldap_error' => [ - 'old' => ['string', 'ldap'=>'resource'], - 'new' => ['string', 'ldap'=>'LDAP\Connection'], - ], - 'ldap_exop' => [ - 'old' => ['resource|bool', 'ldap'=>'resource', 'request_oid'=>'string', 'request_data='=>'?string', 'controls='=>'array|null', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - 'new' => ['LDAP\Result|bool', 'ldap'=>'LDAP\Connection', 'request_oid'=>'string', 'request_data='=>'?string', 'controls='=>'?array', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - ], - 'ldap_exop_passwd' => [ - 'old' => ['bool|string', 'ldap'=>'resource', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array|null'], - 'new' => ['bool|string', 'ldap'=>'LDAP\Connection', 'user='=>'string', 'old_password='=>'string', 'new_password='=>'string', '&w_controls='=>'array|null'], - ], - 'ldap_exop_refresh' => [ - 'old' => ['int|false', 'ldap'=>'resource', 'dn'=>'string', 'ttl'=>'int'], - 'new' => ['int|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'ttl'=>'int'], - ], - 'ldap_exop_whoami' => [ - 'old' => ['string|false', 'ldap'=>'resource'], - 'new' => ['string|false', 'ldap'=>'LDAP\Connection'], - ], - 'ldap_first_attribute' => [ - 'old' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_first_entry' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'result'=>'resource'], - 'new' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], - ], - 'ldap_first_reference' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'result'=>'resource'], - 'new' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], - ], - 'ldap_free_result' => [ - 'old' => ['bool', 'ldap'=>'resource'], - 'new' => ['bool', 'result'=>'LDAP\Result'], - ], - 'ldap_get_attributes' => [ - 'old' => ['array', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['array', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_get_dn' => [ - 'old' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_get_entries' => [ - 'old' => ['array|false', 'ldap'=>'resource', 'result'=>'resource'], - 'new' => ['array|false', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result'], - ], - 'ldap_get_option' => [ - 'old' => ['bool', 'ldap'=>'resource', 'option'=>'int', '&w_value='=>'array|string|int'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'option'=>'int', '&w_value='=>'array|string|int'], - ], - 'ldap_get_values' => [ - 'old' => ['array|false', 'ldap'=>'resource', 'entry'=>'resource', 'attribute'=>'string'], - 'new' => ['array|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', 'attribute'=>'string'], - ], - 'ldap_get_values_len' => [ - 'old' => ['array|false', 'ldap'=>'resource', 'entry'=>'resource', 'attribute'=>'string'], - 'new' => ['array|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', 'attribute'=>'string'], - ], - 'ldap_list' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - 'new' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_mod_add' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_add_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_del' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_del_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_replace' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_mod_replace_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_modify' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'], - ], - 'ldap_modify_batch' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'modifications_info'=>'array', 'controls='=>'?array'], - ], - 'ldap_next_attribute' => [ - 'old' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['string|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_next_entry' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_next_reference' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'new' => ['LDAP\ResultEntry|false', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry'], - ], - 'ldap_parse_exop' => [ - 'old' => ['bool', 'ldap'=>'resource', 'result'=>'resource', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result', '&w_response_data='=>'string', '&w_response_oid='=>'string'], - ], - 'ldap_parse_reference' => [ - 'old' => ['bool', 'ldap'=>'resource', 'entry'=>'resource', '&w_referrals'=>'array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'entry'=>'LDAP\ResultEntry', '&w_referrals'=>'array'], - ], - 'ldap_parse_result' => [ - 'old' => ['bool', 'ldap'=>'resource', 'result'=>'resource', '&w_error_code'=>'int', '&w_matched_dn='=>'string', '&w_error_message='=>'string', '&w_referrals='=>'array', '&w_controls='=>'array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'result'=>'LDAP\Result', '&w_error_code'=>'int', '&w_matched_dn='=>'string', '&w_error_message='=>'string', '&w_referrals='=>'array', '&w_controls='=>'array'], - ], - 'ldap_read' => [ - 'old' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - 'new' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_rename' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - ], - 'ldap_rename_ext' => [ - 'old' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - 'new' => ['LDAP\Result|false', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'?array'], - ], - 'ldap_sasl_bind' => [ - 'old' => ['bool', 'ldap'=>'resource', 'dn='=>'?string', 'password='=>'?string', 'mech='=>'?string', 'realm='=>'?string', 'authc_id='=>'?string', 'authz_id='=>'?string', 'props='=>'?string'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn='=>'?string', 'password='=>'?string', 'mech='=>'?string', 'realm='=>'?string', 'authc_id='=>'?string', 'authz_id='=>'?string', 'props='=>'?string'], - ], - 'ldap_search' => [ - 'old' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - 'new' => ['LDAP\Result|LDAP\Result[]|false', 'ldap'=>'LDAP\Connection|LDAP\Connection[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int', 'controls='=>'?array'], - ], - 'ldap_set_option' => [ - 'old' => ['bool', 'ldap'=>'resource|null', 'option'=>'int', 'value'=>'mixed'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection|null', 'option'=>'int', 'value'=>'mixed'], - ], - 'ldap_set_rebind_proc' => [ - 'old' => ['bool', 'ldap'=>'resource', 'callback'=>'?callable'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection', 'callback'=>'?callable'], - ], - 'ldap_start_tls' => [ - 'old' => ['bool', 'ldap'=>'resource'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection'], - ], - 'ldap_unbind' => [ - 'old' => ['bool', 'ldap'=>'resource'], - 'new' => ['bool', 'ldap'=>'LDAP\Connection'], - ], - 'mysqli::connect' => [ - 'old' => ['null|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], - 'new' => ['bool', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'], - ], - 'mysqli_execute' => [ - 'old' => ['bool', 'statement' => 'mysqli_stmt'], - 'new' => ['bool', 'statement' => 'mysqli_stmt', 'params=' => 'list|null'], - ], - 'mysqli_fetch_field' => [ - 'old' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result'], - 'new' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result'], - ], - 'mysqli_fetch_field_direct' => [ - 'old' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result', 'index'=>'int'], - 'new' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result', 'index'=>'int'], - ], - 'mysqli_fetch_fields' => [ - 'old' => ['list', 'result'=>'mysqli_result'], - 'new' => ['list', 'result'=>'mysqli_result'], - ], - 'mysqli_result::fetch_field' => [ - 'old' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false'], - 'new' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false'], - ], - 'mysqli_result::fetch_field_direct' => [ - 'old' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'index'=>'int'], - 'new' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:0,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'index'=>'int'], - ], - 'mysqli_result::fetch_fields' => [ - 'old' => ['list'], - 'new' => ['list'], - ], - 'mysqli_stmt_execute' => [ - 'old' => ['bool', 'statement' => 'mysqli_stmt'], - 'new' => ['bool', 'statement' => 'mysqli_stmt', 'params=' => 'list|null'], - ], - 'mysqli_stmt::execute' => [ - 'old' => ['bool'], - 'new' => ['bool', 'params=' => 'list|null'], - ], - 'openssl_decrypt' => [ - 'old' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', 'tag='=>'string', 'aad='=>'string'], - 'new' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', 'tag='=>'?string', 'aad='=>'string'], - ], - 'pg_affected_rows' => [ - 'old' => ['int', 'result' => 'resource'], - 'new' => ['int', 'result' => '\PgSql\Result'], - ], - 'pg_cancel_query' => [ - 'old' => ['bool', 'connection' => 'resource'], - 'new' => ['bool', 'connection' => '\PgSql\Connection'], - ], - 'pg_client_encoding' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_close' => [ - 'old' => ['bool', 'connection=' => '?resource'], - 'new' => ['bool', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_connect' => [ - 'old' => ['resource|false', 'connection_string' => 'string', 'flags=' => 'int'], - 'new' => ['\PgSql\Connection|false', 'connection_string' => 'string', 'flags=' => 'int'], - ], - 'pg_connect_poll' => [ - 'old' => ['int', 'connection' => 'resource'], - 'new' => ['int', 'connection' => '\PgSql\Connection'], - ], - 'pg_connection_busy' => [ - 'old' => ['bool', 'connection' => 'resource'], - 'new' => ['bool', 'connection' => '\PgSql\Connection'], - ], - 'pg_connection_reset' => [ - 'old' => ['bool', 'connection' => 'resource'], - 'new' => ['bool', 'connection' => '\PgSql\Connection'], - ], - 'pg_connection_status' => [ - 'old' => ['int', 'connection' => 'resource'], - 'new' => ['int', 'connection' => '\PgSql\Connection'], - ], - 'pg_consume_input' => [ - 'old' => ['bool', 'connection' => 'resource'], - 'new' => ['bool', 'connection' => '\PgSql\Connection'], - ], - 'pg_convert' => [ - 'old' => ['array|false', 'connection' => 'resource', 'table_name' => 'string', 'values' => 'array', 'flags=' => 'int'], - 'new' => ['array|false', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'values' => 'array', 'flags=' => 'int'], - ], - 'pg_copy_from' => [ - 'old' => ['bool', 'connection' => 'resource', 'table_name' => 'string', 'rows' => 'array', 'separator=' => 'string', 'null_as=' => 'string'], - 'new' => ['bool', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'rows' => 'array', 'separator=' => 'string', 'null_as=' => 'string'], - ], - 'pg_copy_to' => [ - 'old' => ['array|false', 'connection' => 'resource', 'table_name' => 'string', 'separator=' => 'string', 'null_as=' => 'string'], - 'new' => ['array|false', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'separator=' => 'string', 'null_as=' => 'string'], - ], - 'pg_dbname' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_delete' => [ - 'old' => ['string|bool', 'connection' => 'resource', 'table_name' => 'string', 'conditions' => 'array', 'flags=' => 'int'], - 'new' => ['string|bool', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'conditions' => 'array', 'flags=' => 'int'], - ], - 'pg_end_copy' => [ - 'old' => ['bool', 'connection=' => '?resource'], - 'new' => ['bool', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_escape_bytea' => [ - 'old' => ['string', 'connection' => 'resource', 'string' => 'string'], - 'new' => ['string', 'connection' => '\PgSql\Connection', 'string' => 'string'], - ], - 'pg_escape_identifier' => [ - 'old' => ['string|false', 'connection' => 'resource', 'string' => 'string'], - 'new' => ['string|false', 'connection' => '\PgSql\Connection', 'string' => 'string'], - ], - 'pg_escape_literal' => [ - 'old' => ['string|false', 'connection' => 'resource', 'string' => 'string'], - 'new' => ['string|false', 'connection' => '\PgSql\Connection', 'string' => 'string'], - ], - 'pg_escape_string' => [ - 'old' => ['string', 'connection' => 'resource', 'string' => 'string'], - 'new' => ['string', 'connection' => '\PgSql\Connection', 'string' => 'string'], - ], - 'pg_exec' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'query' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection', 'query' => 'string'], - ], - 'pg_exec\'1' => [ - 'old' => ['resource|false', 'connection' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => 'string'], - ], - 'pg_execute' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'statement_name' => 'string', 'params' => 'array'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection', 'statement_name' => 'string', 'params' => 'array'], - ], - 'pg_execute\'1' => [ - 'old' => ['resource|false', 'connection' => 'string', 'statement_name' => 'array'], - 'new' => ['\PgSql\Result|false', 'connection' => 'string', 'statement_name' => 'array'], - ], - 'pg_fetch_all' => [ - 'old' => ['array', 'result' => 'resource', 'mode=' => 'int'], - 'new' => ['array', 'result' => '\PgSql\Result', 'mode=' => 'int'], - ], - 'pg_fetch_all_columns' => [ - 'old' => ['array', 'result' => 'resource', 'field=' => 'int'], - 'new' => ['array', 'result' => '\PgSql\Result', 'field=' => 'int'], - ], - 'pg_fetch_array' => [ - 'old' => ['array|false', 'result' => 'resource', 'row=' => '?int', 'mode=' => 'int'], - 'new' => ['array|false', 'result' => '\PgSql\Result', 'row=' => '?int', 'mode=' => 'int'], - ], - 'pg_fetch_assoc' => [ - 'old' => ['array|false', 'result' => 'resource', 'row=' => '?int'], - 'new' => ['array|false', 'result' => '\PgSql\Result', 'row=' => '?int'], - ], - 'pg_fetch_object' => [ - 'old' => ['object|false', 'result' => 'resource', 'row=' => '?int', 'class=' => 'string', 'constructor_args=' => 'array'], - 'new' => ['object|false', 'result' => '\PgSql\Result', 'row=' => '?int', 'class=' => 'string', 'constructor_args=' => 'array'], - ], - 'pg_fetch_result' => [ - 'old' => ['string|false|null', 'result' => 'resource', 'row' => 'string|int'], - 'new' => ['string|false|null', 'result' => '\PgSql\Result', 'row' => 'string|int'], - ], - 'pg_fetch_result\'1' => [ - 'old' => ['string|false|null', 'result' => 'resource', 'row' => '?int', 'field' => 'string|int'], - 'new' => ['string|false|null', 'result' => '\PgSql\Result', 'row' => '?int', 'field' => 'string|int'], - ], - 'pg_fetch_row' => [ - 'old' => ['array|false', 'result' => 'resource', 'row=' => '?int', 'mode=' => 'int'], - 'new' => ['array|false', 'result' => '\PgSql\Result', 'row=' => '?int', 'mode=' => 'int'], - ], - 'pg_field_is_null' => [ - 'old' => ['int|false', 'result' => 'resource', 'row'=>'string|int'], - 'new' => ['int|false', 'result' => '\PgSql\Result', 'row'=>'string|int'], - ], - 'pg_field_is_null\'1' => [ - 'old' => ['int|false', 'result' => 'resource', 'row' => 'int', 'field' => 'string|int'], - 'new' => ['int|false', 'result' => '\PgSql\Result', 'row' => 'int', 'field' => 'string|int'], - ], - 'pg_field_name' => [ - 'old' => ['string', 'result' => 'resource', 'field' => 'int'], - 'new' => ['string', 'result' => '\PgSql\Result', 'field' => 'int'], - ], - 'pg_field_num' => [ - 'old' => ['int', 'result' => 'resource', 'field' => 'string'], - 'new' => ['int', 'result' => '\PgSql\Result', 'field' => 'string'], - ], - 'pg_field_prtlen' => [ - 'old' => ['int|false', 'result' => 'resource', 'row' => 'string|int'], - 'new' => ['int|false', 'result' => '\PgSql\Result', 'row' => 'string|int'], - ], - 'pg_field_prtlen\'1' => [ - 'old' => ['int|false', 'result' => 'resource', 'row' => 'int', 'field' => 'string|int'], - 'new' => ['int|false', 'result' => '\PgSql\Result', 'row' => 'int', 'field' => 'string|int'], - ], - 'pg_field_size' => [ - 'old' => ['int', 'result' => 'resource', 'field' => 'int'], - 'new' => ['int', 'result' => '\PgSql\Result', 'field' => 'int'], - ], - 'pg_field_table' => [ - 'old' => ['string|int|false', 'result' => 'resource', 'field' => 'int', 'oid_only=' => 'bool'], - 'new' => ['string|int|false', 'result' => '\PgSql\Result', 'field' => 'int', 'oid_only=' => 'bool'], - ], - 'pg_field_type' => [ - 'old' => ['string', 'result' => 'resource', 'field' => 'int'], - 'new' => ['string', 'result' => '\PgSql\Result', 'field' => 'int'], - ], - 'pg_field_type_oid' => [ - 'old' => ['int|string', 'result' => 'resource', 'field' => 'int'], - 'new' => ['int|string', 'result' => '\PgSql\Result', 'field' => 'int'], - ], - 'pg_flush' => [ - 'old' => ['int|bool', 'connection' => 'resource'], - 'new' => ['int|bool', 'connection' => '\PgSql\Connection'], - ], - 'pg_free_result' => [ - 'old' => ['bool', 'result' => 'resource'], - 'new' => ['bool', 'result' => '\PgSql\Result'], - ], - 'pg_get_notify' => [ - 'old' => ['array|false', 'connection' => 'resource', 'mode=' => 'int'], - 'new' => ['array|false', 'connection' => '\PgSql\Connection', 'mode=' => 'int'], - ], - 'pg_get_pid' => [ - 'old' => ['int', 'connection' => 'resource'], - 'new' => ['int', 'connection' => '\PgSql\Connection'], - ], - 'pg_get_result' => [ - 'old' => ['resource|false', 'connection' => 'resource'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection'], - ], - 'pg_host' => [ - 'old' => ['string', 'connection=' => 'resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_insert' => [ - 'old' => ['resource|string|false', 'connection' => 'resource', 'table_name' => 'string', 'values' => 'array', 'flags=' => 'int'], - 'new' => ['\PgSql\Result|string|false', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'values' => 'array', 'flags=' => 'int'], - ], - 'pg_last_error' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_last_notice' => [ - 'old' => ['string|array|bool', 'connection' => 'resource', 'mode=' => 'int'], - 'new' => ['string|array|bool', 'connection' => '\PgSql\Connection', 'mode=' => 'int'], - ], - 'pg_last_oid' => [ - 'old' => ['string|int|false', 'result' => 'resource'], - 'new' => ['string|int|false', 'result' => '\PgSql\Result'], - ], - 'pg_lo_close' => [ - 'old' => ['bool', 'lob' => 'resource'], - 'new' => ['bool', 'lob' => '\PgSql\Lob'], - ], - 'pg_lo_create' => [ - 'old' => ['int|string|false', 'connection=' => 'resource', 'oid=' => 'int|string'], - 'new' => ['int|string|false', 'connection=' => '\PgSql\Connection', 'oid=' => 'int|string'], - ], - 'pg_lo_export' => [ - 'old' => ['bool', 'connection' => 'resource', 'oid' => 'int|string', 'filename' => 'string'], - 'new' => ['bool', 'connection' => '\PgSql\Connection', 'oid' => 'int|string', 'filename' => 'string'], - ], - 'pg_lo_import' => [ - 'old' => ['int|string|false', 'connection' => 'resource', 'filename' => 'string', 'oid' => 'string|int'], - 'new' => ['int|string|false', 'connection' => '\PgSql\Connection', 'filename' => 'string', 'oid' => 'string|int'], - ], - 'pg_lo_open' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'oid' => 'int|string', 'mode' => 'string'], - 'new' => ['\PgSql\Lob|false', 'connection' => '\PgSql\Connection', 'oid' => 'int|string', 'mode' => 'string'], - ], - 'pg_lo_open\'1' => [ - 'old' => ['resource|false', 'connection' => 'int|string', 'oid' => 'string'], - 'new' => ['\PgSql\Lob|false', 'connection' => 'int|string', 'oid' => 'string'], - ], - 'pg_lo_read' => [ - 'old' => ['string|false', 'lob' => 'resource', 'length=' => 'int'], - 'new' => ['string|false', 'lob' => '\PgSql\Lob', 'length=' => 'int'], - ], - 'pg_lo_read_all' => [ - 'old' => ['int', 'lob' => 'resource'], - 'new' => ['int', 'lob' => '\PgSql\Lob'], - ], - 'pg_lo_seek' => [ - 'old' => ['bool', 'lob' => 'resource', 'offset' => 'int', 'whence=' => 'int'], - 'new' => ['bool', 'lob' => '\PgSql\Lob', 'offset' => 'int', 'whence=' => 'int'], - ], - 'pg_lo_tell' => [ - 'old' => ['int', 'lob' => 'resource'], - 'new' => ['int', 'lob' => '\PgSql\Lob'], - ], - 'pg_lo_truncate' => [ - 'old' => ['bool', 'lob' => 'resource', 'size' => 'int'], - 'new' => ['bool', 'lob' => '\PgSql\Lob', 'size' => 'int'], - ], - 'pg_lo_unlink' => [ - 'old' => ['bool', 'connection' => 'resource', 'oid' => 'int|string'], - 'new' => ['bool', 'connection' => '\PgSql\Connection', 'oid' => 'int|string'], - ], - 'pg_lo_write' => [ - 'old' => ['int|false', 'lob' => 'resource', 'data' => 'string', 'length=' => '?int'], - 'new' => ['int|false', 'lob' => '\PgSql\Lob', 'data' => 'string', 'length=' => '?int'], - ], - 'pg_meta_data' => [ - 'old' => ['array|false', 'connection' => 'resource', 'table_name' => 'string', 'extended=' => 'bool'], - 'new' => ['array|false', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'extended=' => 'bool'], - ], - 'pg_num_fields' => [ - 'old' => ['int', 'result' => 'resource'], - 'new' => ['int', 'result' => '\PgSql\Result'], - ], - 'pg_num_rows' => [ - 'old' => ['int', 'result' => 'resource'], - 'new' => ['int', 'result' => '\PgSql\Result'], - ], - 'pg_options' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_parameter_status' => [ - 'old' => ['string|false', 'connection' => 'resource', 'name' => 'string'], - 'new' => ['string|false', 'connection' => '\PgSql\Connection', 'name' => 'string'], - ], - 'pg_pconnect' => [ - 'old' => ['resource|false', 'connection_string' => 'string', 'flags=' => 'int'], - 'new' => ['\PgSql\Connection|false', 'connection_string' => 'string', 'flags=' => 'int'], - ], - 'pg_ping' => [ - 'old' => ['bool', 'connection=' => '?resource'], - 'new' => ['bool', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_port' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_prepare' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'statement_name' => 'string', 'query' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection', 'statement_name' => 'string', 'query' => 'string'], - ], - 'pg_prepare\'1' => [ - 'old' => ['resource|false', 'connection' => 'string', 'statement_name' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => 'string', 'statement_name' => 'string'], - ], - 'pg_put_line' => [ - 'old' => ['bool', 'connection' => 'resource', 'data' => 'string'], - 'new' => ['bool', 'connection' => '\PgSql\Connection', 'data' => 'string'], - ], - 'pg_query' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'query' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection', 'query' => 'string'], - ], - 'pg_query\'1' => [ - 'old' => ['resource|false', 'connection' => 'string'], - 'new' => ['\PgSql\Result|false', 'connection' => 'string'], - ], - 'pg_query_params' => [ - 'old' => ['resource|false', 'connection' => 'resource', 'query' => 'string', 'params' => 'array'], - 'new' => ['\PgSql\Result|false', 'connection' => '\PgSql\Connection', 'query' => 'string', 'params' => 'array'], - ], - 'pg_query_params\'1' => [ - 'old' => ['resource|false', 'connection' => 'string', 'query' => 'array'], - 'new' => ['\PgSql\Result|false', 'connection' => 'string', 'query' => 'array'], - ], - 'pg_result_error' => [ - 'old' => ['string|false', 'result' => 'resource'], - 'new' => ['string|false', 'result' => '\PgSql\Result'], - ], - 'pg_result_error_field' => [ - 'old' => ['string|false|null', 'result' => 'resource', 'field_code' => 'int'], - 'new' => ['string|false|null', 'result' => '\PgSql\Result', 'field_code' => 'int'], - ], - 'pg_result_seek' => [ - 'old' => ['bool', 'result' => 'resource', 'row' => 'int'], - 'new' => ['bool', 'result' => '\PgSql\Result', 'row' => 'int'], - ], - 'pg_result_status' => [ - 'old' => ['string|int', 'result' => 'resource', 'mode=' => 'int'], - 'new' => ['string|int', 'result' => '\PgSql\Result', 'mode=' => 'int'], - ], - 'pg_select' => [ - 'old' => ['string|array|false', 'connection' => 'resource', 'table_name' => 'string', 'conditions' => 'array', 'flags=' => 'int', 'mode='=>'int'], - 'new' => ['string|array|false', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'conditions' => 'array', 'flags=' => 'int', 'mode='=>'int'], - ], - 'pg_send_execute' => [ - 'old' => ['bool|int', 'connection' => 'resource', 'statement_name' => 'string', 'params' => 'array'], - 'new' => ['bool|int', 'connection' => '\PgSql\Connection', 'statement_name' => 'string', 'params' => 'array'], - ], - 'pg_send_prepare' => [ - 'old' => ['bool|int', 'connection' => 'resource', 'statement_name' => 'string', 'query' => 'string'], - 'new' => ['bool|int', 'connection' => '\PgSql\Connection', 'statement_name' => 'string', 'query' => 'string'], - ], - 'pg_send_query' => [ - 'old' => ['bool|int', 'connection' => 'resource', 'query' => 'string'], - 'new' => ['bool|int', 'connection' => '\PgSql\Connection', 'query' => 'string'], - ], - 'pg_send_query_params' => [ - 'old' => ['bool|int', 'connection' => 'resource', 'query' => 'string', 'params' => 'array'], - 'new' => ['bool|int', 'connection' => '\PgSql\Connection', 'query' => 'string', 'params' => 'array'], - ], - 'pg_set_client_encoding' => [ - 'old' => ['int', 'connection' => 'resource', 'encoding' => 'string'], - 'new' => ['int', 'connection' => '\PgSql\Connection', 'encoding' => 'string'], - ], - 'pg_set_error_verbosity' => [ - 'old' => ['int|false', 'connection' => 'resource', 'verbosity' => 'int'], - 'new' => ['int|false', 'connection' => '\PgSql\Connection', 'verbosity' => 'int'], - ], - 'pg_socket' => [ - 'old' => ['resource|false', 'connection' => 'resource'], - 'new' => ['resource|false', 'connection' => '\PgSql\Connection'], - ], - 'pg_trace' => [ - 'old' => ['bool', 'filename' => 'string', 'mode=' => 'string', 'connection=' => '?resource'], - 'new' => ['bool', 'filename' => 'string', 'mode=' => 'string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_transaction_status' => [ - 'old' => ['int', 'connection' => 'resource'], - 'new' => ['int', 'connection' => '\PgSql\Connection'], - ], - 'pg_tty' => [ - 'old' => ['string', 'connection=' => '?resource'], - 'new' => ['string', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_untrace' => [ - 'old' => ['bool', 'connection=' => '?resource'], - 'new' => ['bool', 'connection=' => '?\PgSql\Connection'], - ], - 'pg_update' => [ - 'old' => ['string|bool', 'connection' => 'resource', 'table_name' => 'string', 'values' => 'array', 'conditions' => 'array', 'flags=' => 'int'], - 'new' => ['string|bool', 'connection' => '\PgSql\Connection', 'table_name' => 'string', 'values' => 'array', 'conditions' => 'array', 'flags=' => 'int'], - ], - 'pg_version' => [ - 'old' => ['array', 'connection=' => '?resource'], - 'new' => ['array', 'connection=' => '?\PgSql\Connection'], - ], - 'pspell_add_to_personal' => [ - 'old' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], - ], - 'pspell_add_to_session' => [ - 'old' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], - ], - 'pspell_check' => [ - 'old' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], - ], - 'pspell_clear_session' => [ - 'old' => ['bool', 'dictionary'=>'int'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary'], - ], - 'pspell_config_create' => [ - 'old' => ['int', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string'], - 'new' => ['PSpell\Config', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string'], - ], - 'pspell_config_data_dir' => [ - 'old' => ['bool', 'config'=>'int', 'directory'=>'string'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'directory'=>'string'], - ], - 'pspell_config_dict_dir' => [ - 'old' => ['bool', 'config'=>'int', 'directory'=>'string'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'directory'=>'string'], - ], - 'pspell_config_ignore' => [ - 'old' => ['bool', 'config'=>'int', 'min_length'=>'int'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'min_length'=>'int'], - ], - 'pspell_config_mode' => [ - 'old' => ['bool', 'config'=>'int', 'mode'=>'int'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'mode'=>'int'], - ], - 'pspell_config_personal' => [ - 'old' => ['bool', 'config'=>'int', 'filename'=>'string'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'filename'=>'string'], - ], - 'pspell_config_repl' => [ - 'old' => ['bool', 'config'=>'int', 'filename'=>'string'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'filename'=>'string'], - ], - 'pspell_config_runtogether' => [ - 'old' => ['bool', 'config'=>'int', 'allow'=>'bool'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'allow'=>'bool'], - ], - 'pspell_config_save_repl' => [ - 'old' => ['bool', 'config'=>'int', 'save'=>'bool'], - 'new' => ['bool', 'config'=>'PSpell\Config', 'save'=>'bool'], - ], - 'pspell_new' => [ - 'old' => ['int|false', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - 'new' => ['PSpell\Dictionary|false', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - ], - 'pspell_new_config' => [ - 'old' => ['int|false', 'config'=>'int'], - 'new' => ['PSpell\Dictionary|false', 'config'=>'PSpell\Config'], - ], - 'pspell_new_personal' => [ - 'old' => ['int|false', 'filename'=>'string', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - 'new' => ['PSpell\Dictionary|false', 'filename'=>'string', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - ], - 'pspell_save_wordlist' => [ - 'old' => ['bool', 'dictionary'=>'int'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary'], - ], - 'pspell_store_replacement' => [ - 'old' => ['bool', 'dictionary'=>'int', 'misspelled'=>'string', 'correct'=>'string'], - 'new' => ['bool', 'dictionary'=>'PSpell\Dictionary', 'misspelled'=>'string', 'correct'=>'string'], - ], - 'pspell_suggest' => [ - 'old' => ['array', 'dictionary'=>'int', 'word'=>'string'], - 'new' => ['array', 'dictionary'=>'PSpell\Dictionary', 'word'=>'string'], - ], - 'stream_select' => [ - 'old' => ['int|false', '&rw_read'=>'?resource[]', '&rw_write'=>'?resource[]', '&rw_except'=>'?resource[]', 'seconds'=>'?int', 'microseconds='=>'int'], - 'new' => ['int|false', '&rw_read'=>'?resource[]', '&rw_write'=>'?resource[]', '&rw_except'=>'?resource[]', 'seconds'=>'?int', 'microseconds='=>'?int'], - ], - 'mb_check_encoding' => [ - 'old' => ['bool', 'value='=>'array|string|null', 'encoding='=>'string|null'], - 'new' => ['bool', 'value'=>'array|string', 'encoding='=>'string|null'], - ], - 'ctype_alnum' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_alpha' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_cntrl' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_digit' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_graph' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_lower' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_print' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_punct' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_space' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_upper' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'ctype_xdigit' => [ - 'old' => ['bool', 'text'=>'string|int'], - 'new' => ['bool', 'text'=>'string'], - ], - 'key' => [ - 'old' => ['int|string|null', 'array'=>'array|object'], - 'new' => ['int|string|null', 'array'=>'array'], - ], - 'current' => [ - 'old' => ['mixed|false', 'array'=>'array|object'], - 'new' => ['mixed|false', 'array'=>'array'], - ], - 'next' => [ - 'old' => ['mixed', '&r_array'=>'array|object'], - 'new' => ['mixed', '&r_array'=>'array'], - ], - 'prev' => [ - 'old' => ['mixed', '&r_array'=>'array|object'], - 'new' => ['mixed', '&r_array'=>'array'], - ], - 'reset' => [ - 'old' => ['mixed|false', '&r_array'=>'array|object'], - 'new' => ['mixed|false', '&r_array'=>'array'], - ], - ], - - 'removed' => [ - 'ReflectionMethod::isStatic' => ['bool'], - ], -]; +return array ( + 'added' => + array ( + 'array_is_list' => + array ( + 0 => 'bool', + 'array' => 'array', + ), + 'enum_exists' => + array ( + 0 => 'bool', + 'enum' => 'string', + 'autoload=' => 'bool', + ), + 'fsync' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fdatasync' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'imageavif' => + array ( + 0 => 'bool', + 'image' => 'GdImage', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'speed=' => 'int', + ), + 'imagecreatefromavif' => + array ( + 0 => 'GdImage|false', + 'filename' => 'string', + ), + 'mysqli_fetch_column' => + array ( + 0 => 'false|float|int|null|string', + 'result' => 'mysqli_result', + 'column=' => 'int', + ), + 'mysqli_result::fetch_column' => + array ( + 0 => 'false|float|int|null|string', + 'column=' => 'int', + ), + 'CURLStringFile::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'postname' => 'string', + 'mime=' => 'string', + ), + 'Fiber::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Fiber::start' => + array ( + 0 => 'mixed', + '...args' => 'mixed', + ), + 'Fiber::resume' => + array ( + 0 => 'mixed', + 'value=' => 'mixed|null', + ), + 'Fiber::throw' => + array ( + 0 => 'mixed', + 'exception' => 'Throwable', + ), + 'Fiber::isStarted' => + array ( + 0 => 'bool', + ), + 'Fiber::isSuspended' => + array ( + 0 => 'bool', + ), + 'Fiber::isRunning' => + array ( + 0 => 'bool', + ), + 'Fiber::isTerminated' => + array ( + 0 => 'bool', + ), + 'Fiber::getReturn' => + array ( + 0 => 'mixed', + ), + 'Fiber::getCurrent' => + array ( + 0 => 'null|self', + ), + 'Fiber::suspend' => + array ( + 0 => 'mixed', + 'value=' => 'mixed|null', + ), + 'FiberError::__construct' => + array ( + 0 => 'void', + ), + 'GMP::__serialize' => + array ( + 0 => 'array', + ), + 'GMP::__unserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + 'ReflectionClass::isEnum' => + array ( + 0 => 'bool', + ), + 'ReflectionEnum::getBackingType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionEnum::getCase' => + array ( + 0 => 'ReflectionEnumUnitCase', + 'name' => 'string', + ), + 'ReflectionEnum::getCases' => + array ( + 0 => 'list', + ), + 'ReflectionEnum::hasCase' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionEnum::isBacked' => + array ( + 0 => 'bool', + ), + 'ReflectionEnumUnitCase::getEnum' => + array ( + 0 => 'ReflectionEnum', + ), + 'ReflectionEnumUnitCase::getValue' => + array ( + 0 => 'UnitEnum', + ), + 'ReflectionEnumBackedCase::getBackingValue' => + array ( + 0 => 'int|string', + ), + 'ReflectionFunctionAbstract::getTentativeReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunctionAbstract::hasTentativeReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isStatic' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isEnum' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isReadonly' => + array ( + 0 => 'bool', + ), + 'sodium_crypto_stream_xchacha20' => + array ( + 0 => 'non-empty-string', + 'length' => 'int<1, max>', + 'nonce' => 'non-empty-string', + 'key' => 'non-empty-string', + ), + 'sodium_crypto_stream_xchacha20_keygen' => + array ( + 0 => 'non-empty-string', + ), + 'sodium_crypto_stream_xchacha20_xor' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'non-empty-string', + 'key' => 'non-empty-string', + ), + ), + 'changed' => + array ( + 'DOMDocument::createComment' => + array ( + 'old' => + array ( + 0 => 'DOMComment|false', + 'data' => 'string', + ), + 'new' => + array ( + 0 => 'DOMComment', + 'data' => 'string', + ), + ), + 'DOMDocument::createDocumentFragment' => + array ( + 'old' => + array ( + 0 => 'DOMDocumentFragment|false', + ), + 'new' => + array ( + 0 => 'DOMDocumentFragment', + ), + ), + 'DOMDocument::createTextNode' => + array ( + 'old' => + array ( + 0 => 'DOMText|false', + 'data' => 'string', + ), + 'new' => + array ( + 0 => 'DOMText', + 'data' => 'string', + ), + ), + 'Phar::buildFromDirectory' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'directory' => 'string', + 'pattern=' => 'string', + ), + ), + 'Phar::buildFromIterator' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + 'new' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + ), + 'PharData::buildFromDirectory' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'directory' => 'string', + 'pattern=' => 'string', + ), + ), + 'PharData::buildFromIterator' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + 'new' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'null|string', + ), + ), + 'SplFileObject::fputcsv' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + ), + 'SplTempFileObject::fputcsv' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + ), + 'hash_pbkdf2' => + array ( + 'old' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'password' => 'string', + 'salt' => 'string', + 'iterations' => 'int', + 'length=' => 'int', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'password' => 'string', + 'salt' => 'string', + 'iterations' => 'int', + 'length=' => 'int', + 'binary=' => 'bool', + 'options=' => 'array', + ), + ), + 'finfo_buffer' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'finfo' => 'resource', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'finfo' => 'finfo', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + ), + 'finfo_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'finfo' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'finfo' => 'finfo', + ), + ), + 'finfo_file' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'finfo' => 'resource', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'finfo' => 'finfo', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + ), + 'finfo_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + 'new' => + array ( + 0 => 'false|finfo', + 'flags=' => 'int', + 'magic_database=' => 'null|string', + ), + ), + 'finfo_set_flags' => + array ( + 'old' => + array ( + 0 => 'bool', + 'finfo' => 'resource', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'finfo' => 'finfo', + 'flags' => 'int', + ), + ), + 'fputcsv' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + 'eol=' => 'string', + ), + ), + 'ftp_connect' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'new' => + array ( + 0 => 'FTP\\Connection|false', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + ), + 'ftp_ssl_connect' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'new' => + array ( + 0 => 'FTP\\Connection|false', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + ), + 'ftp_login' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'username' => 'string', + 'password' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'username' => 'string', + 'password' => 'string', + ), + ), + 'ftp_pwd' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_cdup' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_chdir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + ), + 'ftp_exec' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + ), + 'ftp_raw' => + array ( + 'old' => + array ( + 0 => 'array|null', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'new' => + array ( + 0 => 'array|null', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + ), + 'ftp_mkdir' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + ), + 'ftp_rmdir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + ), + 'ftp_chmod' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'ftp' => 'resource', + 'permissions' => 'int', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'false|int', + 'ftp' => 'FTP\\Connection', + 'permissions' => 'int', + 'filename' => 'string', + ), + ), + 'ftp_alloc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'size' => 'int', + '&w_response=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'size' => 'int', + '&w_response=' => 'string', + ), + ), + 'ftp_nlist' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + ), + 'ftp_rawlist' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + 'recursive=' => 'bool', + ), + 'new' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + 'recursive=' => 'bool', + ), + ), + 'ftp_mlsd' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'ftp' => 'FTP\\Connection', + 'directory' => 'string', + ), + ), + 'ftp_systype' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_fget' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_nb_fget' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_pasv' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'enable' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'enable' => 'bool', + ), + ), + 'ftp_get' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_nb_get' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_nb_continue' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_fput' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_nb_fput' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_put' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_append' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + ), + ), + 'ftp_nb_put' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + ), + 'ftp_size' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + ), + 'ftp_mdtm' => + array ( + 'old' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + ), + 'ftp_rename' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + ), + 'ftp_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'filename' => 'string', + ), + ), + 'ftp_site' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'command' => 'string', + ), + ), + 'ftp_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_quit' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + ), + ), + 'ftp_set_option' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'ftp' => 'FTP\\Connection', + 'option' => 'int', + 'value' => 'mixed', + ), + ), + 'ftp_get_option' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'ftp' => 'resource', + 'option' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'ftp' => 'FTP\\Connection', + 'option' => 'int', + ), + ), + 'hash' => + array ( + 'old' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + 'options=' => 'array{seed: scalar}', + ), + ), + 'hash_file' => + array ( + 'old' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'binary=' => 'bool', + 'options=' => 'array{seed: scalar}', + ), + ), + 'hash_init' => + array ( + 'old' => + array ( + 0 => 'HashContext', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + ), + 'new' => + array ( + 0 => 'HashContext', + 'algo' => 'string', + 'flags=' => 'int', + 'key=' => 'string', + 'options=' => 'array{seed: scalar}', + ), + ), + 'imageloadfont' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'GdFont|false', + 'filename' => 'string', + ), + ), + 'imap_append' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'null|string', + 'internal_date=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'null|string', + 'internal_date=' => 'null|string', + ), + ), + 'imap_body' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + ), + 'imap_bodystruct' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + ), + ), + 'imap_check' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_clearflag_full' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + ), + 'imap_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + ), + 'imap_create' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_createmailbox' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_deletemailbox' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_expunge' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_fetch_overview' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'sequence' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_fetchbody' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_fetchheader' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + ), + 'imap_fetchmime' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_fetchstructure' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + ), + 'imap_fetchtext' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'flags=' => 'int', + ), + ), + 'imap_gc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'flags' => 'int', + ), + ), + 'imap_get_quota' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'quota_root' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'quota_root' => 'string', + ), + ), + 'imap_get_quotaroot' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_getacl' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_getmailboxes' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_getsubscribed' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_headerinfo' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + ), + ), + 'imap_headers' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_list' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_listmailbox' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_listscan' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + ), + 'imap_listsubscribed' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_lsub' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + ), + ), + 'imap_mail_copy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_mail_move' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_mailboxmsginfo' => + array ( + 'old' => + array ( + 0 => 'stdClass', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'stdClass', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_msgno' => + array ( + 'old' => + array ( + 0 => 'int', + 'imap' => 'resource', + 'message_uid' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'imap' => 'IMAP\\Connection', + 'message_uid' => 'int', + ), + ), + 'imap_num_msg' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'false|int', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_num_recent' => + array ( + 'old' => + array ( + 0 => 'int', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'mailbox' => 'string', + 'user' => 'string', + 'password' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + 'options=' => 'array', + ), + 'new' => + array ( + 0 => 'IMAP\\Connection|false', + 'mailbox' => 'string', + 'user' => 'string', + 'password' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + 'options=' => 'array', + ), + ), + 'imap_ping' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_rename' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + ), + 'imap_renamemailbox' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'from' => 'string', + 'to' => 'string', + ), + ), + 'imap_reopen' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + ), + ), + 'imap_savebody' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'file' => 'resource|string', + 'message_num' => 'int', + 'section=' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'file' => 'resource|string', + 'message_num' => 'int', + 'section=' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_scan' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + ), + 'imap_scanmailbox' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + ), + 'imap_search' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'string', + 'flags=' => 'int', + 'charset=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'criteria' => 'string', + 'flags=' => 'int', + 'charset=' => 'string', + ), + ), + 'imap_set_quota' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'quota_root' => 'string', + 'mailbox_size' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'quota_root' => 'string', + 'mailbox_size' => 'int', + ), + ), + 'imap_setacl' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + 'user_id' => 'string', + 'rights' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'user_id' => 'string', + 'rights' => 'string', + ), + ), + 'imap_setflag_full' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + ), + 'imap_sort' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'int', + 'reverse' => 'bool', + 'flags=' => 'int', + 'search_criteria=' => 'null|string', + 'charset=' => 'null|string', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'criteria' => 'int', + 'reverse' => 'bool', + 'flags=' => 'int', + 'search_criteria=' => 'null|string', + 'charset=' => 'null|string', + ), + ), + 'imap_status' => + array ( + 'old' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'mailbox' => 'string', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'false|stdClass', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + 'flags' => 'int', + ), + ), + 'imap_subscribe' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'imap_thread' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + ), + 'imap_uid' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'imap' => 'resource', + 'message_num' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'imap' => 'IMAP\\Connection', + 'message_num' => 'int', + ), + ), + 'imap_undelete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_unsubscribe' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'mailbox' => 'string', + ), + ), + 'ini_alter' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'null|scalar', + ), + ), + 'ini_set' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'null|scalar', + ), + ), + 'IntlDateFormatter::__construct' => + array ( + 'old' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'new' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + ), + 'IntlDateFormatter::create' => + array ( + 'old' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'new' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType=' => 'int', + 'timeType=' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + ), + 'ldap_add' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_add_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_bind' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + ), + ), + 'ldap_bind_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array|null', + ), + ), + 'ldap_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'ldap_compare' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool|int', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_connect' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'uri=' => 'null|string', + 'port=' => 'int', + 'wallet=' => 'string', + 'password=' => 'string', + 'auth_mode=' => 'int', + ), + 'new' => + array ( + 0 => 'LDAP\\Connection|false', + 'uri=' => 'null|string', + 'port=' => 'int', + 'wallet=' => 'string', + 'password=' => 'string', + 'auth_mode=' => 'int', + ), + ), + 'ldap_count_entries' => + array ( + 'old' => + array ( + 0 => 'int', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + ), + 'ldap_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_delete_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'controls=' => 'array|null', + ), + ), + 'ldap_errno' => + array ( + 'old' => + array ( + 0 => 'int', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'ldap_error' => + array ( + 'old' => + array ( + 0 => 'string', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'ldap_exop' => + array ( + 'old' => + array ( + 0 => 'bool|resource', + 'ldap' => 'resource', + 'request_oid' => 'string', + 'request_data=' => 'null|string', + 'controls=' => 'array|null', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|bool', + 'ldap' => 'LDAP\\Connection', + 'request_oid' => 'string', + 'request_data=' => 'null|string', + 'controls=' => 'array|null', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + ), + 'ldap_exop_passwd' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'ldap' => 'resource', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool|string', + 'ldap' => 'LDAP\\Connection', + 'user=' => 'string', + 'old_password=' => 'string', + 'new_password=' => 'string', + '&w_controls=' => 'array|null', + ), + ), + 'ldap_exop_refresh' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'ttl' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'ttl' => 'int', + ), + ), + 'ldap_exop_whoami' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'ldap_first_attribute' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_first_entry' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + ), + 'ldap_first_reference' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + ), + 'ldap_free_result' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'result' => 'LDAP\\Result', + ), + ), + 'ldap_get_attributes' => + array ( + 'old' => + array ( + 0 => 'array', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'array', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_get_dn' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_get_entries' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + ), + ), + 'ldap_get_option' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'option' => 'int', + '&w_value=' => 'array|int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'option' => 'int', + '&w_value=' => 'array|int|string', + ), + ), + 'ldap_get_values' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'entry' => 'resource', + 'attribute' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + 'attribute' => 'string', + ), + ), + 'ldap_get_values_len' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'entry' => 'resource', + 'attribute' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + 'attribute' => 'string', + ), + ), + 'ldap_list' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_add' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_add_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_del' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_del_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_replace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_mod_replace_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_modify' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_modify_batch' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'modifications_info' => 'array', + 'controls=' => 'array|null', + ), + ), + 'ldap_next_attribute' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_next_entry' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_next_reference' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'new' => + array ( + 0 => 'LDAP\\ResultEntry|false', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + ), + ), + 'ldap_parse_exop' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'result' => 'resource', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + '&w_response_data=' => 'string', + '&w_response_oid=' => 'string', + ), + ), + 'ldap_parse_reference' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'entry' => 'resource', + '&w_referrals' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'entry' => 'LDAP\\ResultEntry', + '&w_referrals' => 'array', + ), + ), + 'ldap_parse_result' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'result' => 'resource', + '&w_error_code' => 'int', + '&w_matched_dn=' => 'string', + '&w_error_message=' => 'string', + '&w_referrals=' => 'array', + '&w_controls=' => 'array', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'result' => 'LDAP\\Result', + '&w_error_code' => 'int', + '&w_matched_dn=' => 'string', + '&w_error_message=' => 'string', + '&w_referrals=' => 'array', + '&w_controls=' => 'array', + ), + ), + 'ldap_read' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_rename' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + ), + 'ldap_rename_ext' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|false', + 'ldap' => 'LDAP\\Connection', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array|null', + ), + ), + 'ldap_sasl_bind' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'mech=' => 'null|string', + 'realm=' => 'null|string', + 'authc_id=' => 'null|string', + 'authz_id=' => 'null|string', + 'props=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'mech=' => 'null|string', + 'realm=' => 'null|string', + 'authc_id=' => 'null|string', + 'authz_id=' => 'null|string', + 'props=' => 'null|string', + ), + ), + 'ldap_search' => + array ( + 'old' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + 'new' => + array ( + 0 => 'LDAP\\Result|array|false', + 'ldap' => 'LDAP\\Connection|array', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + 'controls=' => 'array|null', + ), + ), + 'ldap_set_option' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'null|resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection|null', + 'option' => 'int', + 'value' => 'mixed', + ), + ), + 'ldap_set_rebind_proc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'callback' => 'callable|null', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + 'callback' => 'callable|null', + ), + ), + 'ldap_start_tls' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'ldap_unbind' => + array ( + 'old' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'ldap' => 'LDAP\\Connection', + ), + ), + 'mysqli::connect' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + ), + ), + 'mysqli_execute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'new' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'params=' => 'list|null', + ), + ), + 'mysqli_fetch_field' => + array ( + 'old' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + ), + 'new' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + ), + ), + 'mysqli_fetch_field_direct' => + array ( + 'old' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'new' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + ), + 'mysqli_fetch_fields' => + array ( + 'old' => + array ( + 0 => 'list', + 'result' => 'mysqli_result', + ), + 'new' => + array ( + 0 => 'list', + 'result' => 'mysqli_result', + ), + ), + 'mysqli_result::fetch_field' => + array ( + 'old' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + ), + 'new' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + ), + ), + 'mysqli_result::fetch_field_direct' => + array ( + 'old' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'index' => 'int', + ), + 'new' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:0, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'index' => 'int', + ), + ), + 'mysqli_result::fetch_fields' => + array ( + 'old' => + array ( + 0 => 'list', + ), + 'new' => + array ( + 0 => 'list', + ), + ), + 'mysqli_stmt_execute' => + array ( + 'old' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'new' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'params=' => 'list|null', + ), + ), + 'mysqli_stmt::execute' => + array ( + 'old' => + array ( + 0 => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'params=' => 'list|null', + ), + ), + 'openssl_decrypt' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + 'tag=' => 'string', + 'aad=' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + 'tag=' => 'null|string', + 'aad=' => 'string', + ), + ), + 'pg_affected_rows' => + array ( + 'old' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_cancel_query' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_client_encoding' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_connect' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'PgSql\\Connection|false', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + ), + 'pg_connect_poll' => + array ( + 'old' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_connection_busy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_connection_reset' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_connection_status' => + array ( + 'old' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_consume_input' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_convert' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + ), + 'pg_copy_from' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'table_name' => 'string', + 'rows' => 'array', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'rows' => 'array', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + ), + 'pg_copy_to' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + ), + 'pg_dbname' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_delete' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + ), + 'pg_end_copy' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_escape_bytea' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + ), + 'pg_escape_identifier' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + ), + 'pg_escape_literal' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + ), + 'pg_escape_string' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'new' => + array ( + 0 => 'string', + 'connection' => 'PgSql\\Connection', + 'string' => 'string', + ), + ), + 'pg_exec' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + ), + 'pg_exec\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + ), + ), + 'pg_execute' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'params' => 'array', + ), + ), + 'pg_execute\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'statement_name' => 'array', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'statement_name' => 'array', + ), + ), + 'pg_fetch_all' => + array ( + 'old' => + array ( + 0 => 'array>', + 'result' => 'resource', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array>', + 'result' => 'PgSql\\Result', + 'mode=' => 'int', + ), + ), + 'pg_fetch_all_columns' => + array ( + 'old' => + array ( + 0 => 'array', + 'result' => 'resource', + 'field=' => 'int', + ), + 'new' => + array ( + 0 => 'array', + 'result' => 'PgSql\\Result', + 'field=' => 'int', + ), + ), + 'pg_fetch_array' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'pg_fetch_assoc' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + ), + 'new' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + ), + ), + 'pg_fetch_object' => + array ( + 'old' => + array ( + 0 => 'false|object', + 'result' => 'resource', + 'row=' => 'int|null', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'new' => + array ( + 0 => 'false|object', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + ), + 'pg_fetch_result' => + array ( + 'old' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + ), + 'pg_fetch_result\'1' => + array ( + 'old' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'row' => 'int|null', + 'field' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'row' => 'int|null', + 'field' => 'int|string', + ), + ), + 'pg_fetch_row' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'result' => 'PgSql\\Result', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'pg_field_is_null' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + ), + 'pg_field_is_null\'1' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int', + 'field' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int', + 'field' => 'int|string', + ), + ), + 'pg_field_name' => + array ( + 'old' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + ), + 'pg_field_num' => + array ( + 'old' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + 'field' => 'string', + ), + ), + 'pg_field_prtlen' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int|string', + ), + ), + 'pg_field_prtlen\'1' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int', + 'field' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int', + 'result' => 'PgSql\\Result', + 'row' => 'int', + 'field' => 'int|string', + ), + ), + 'pg_field_size' => + array ( + 'old' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field' => 'int', + ), + 'new' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + ), + 'pg_field_table' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'result' => 'resource', + 'field' => 'int', + 'oid_only=' => 'bool', + ), + 'new' => + array ( + 0 => 'false|int|string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + 'oid_only=' => 'bool', + ), + ), + 'pg_field_type' => + array ( + 'old' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field' => 'int', + ), + 'new' => + array ( + 0 => 'string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + ), + 'pg_field_type_oid' => + array ( + 'old' => + array ( + 0 => 'int|string', + 'result' => 'resource', + 'field' => 'int', + ), + 'new' => + array ( + 0 => 'int|string', + 'result' => 'PgSql\\Result', + 'field' => 'int', + ), + ), + 'pg_flush' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_free_result' => + array ( + 'old' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_get_notify' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'mode=' => 'int', + ), + ), + 'pg_get_pid' => + array ( + 'old' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_get_result' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_host' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_insert' => + array ( + 'old' => + array ( + 0 => 'false|resource|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + ), + 'pg_last_error' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_last_notice' => + array ( + 'old' => + array ( + 0 => 'array|bool|string', + 'connection' => 'resource', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array|bool|string', + 'connection' => 'PgSql\\Connection', + 'mode=' => 'int', + ), + ), + 'pg_last_oid' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'false|int|string', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_lo_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'lob' => 'resource', + ), + 'new' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + ), + ), + 'pg_lo_create' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'connection=' => 'resource', + 'oid=' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int|string', + 'connection=' => 'PgSql\\Connection', + 'oid=' => 'int|string', + ), + ), + 'pg_lo_export' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'oid' => 'int|string', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + 'filename' => 'string', + ), + ), + 'pg_lo_import' => + array ( + 'old' => + array ( + 0 => 'false|int|string', + 'connection' => 'resource', + 'filename' => 'string', + 'oid' => 'int|string', + ), + 'new' => + array ( + 0 => 'false|int|string', + 'connection' => 'PgSql\\Connection', + 'filename' => 'string', + 'oid' => 'int|string', + ), + ), + 'pg_lo_open' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'oid' => 'int|string', + 'mode' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Lob|false', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + 'mode' => 'string', + ), + ), + 'pg_lo_open\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'int|string', + 'oid' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Lob|false', + 'connection' => 'int|string', + 'oid' => 'string', + ), + ), + 'pg_lo_read' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'lob' => 'resource', + 'length=' => 'int', + ), + 'new' => + array ( + 0 => 'false|string', + 'lob' => 'PgSql\\Lob', + 'length=' => 'int', + ), + ), + 'pg_lo_read_all' => + array ( + 'old' => + array ( + 0 => 'int', + 'lob' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'lob' => 'PgSql\\Lob', + ), + ), + 'pg_lo_seek' => + array ( + 'old' => + array ( + 0 => 'bool', + 'lob' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + 'offset' => 'int', + 'whence=' => 'int', + ), + ), + 'pg_lo_tell' => + array ( + 'old' => + array ( + 0 => 'int', + 'lob' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'lob' => 'PgSql\\Lob', + ), + ), + 'pg_lo_truncate' => + array ( + 'old' => + array ( + 0 => 'bool', + 'lob' => 'resource', + 'size' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'lob' => 'PgSql\\Lob', + 'size' => 'int', + ), + ), + 'pg_lo_unlink' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'oid' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'oid' => 'int|string', + ), + ), + 'pg_lo_write' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'lob' => 'resource', + 'data' => 'string', + 'length=' => 'int|null', + ), + 'new' => + array ( + 0 => 'false|int', + 'lob' => 'PgSql\\Lob', + 'data' => 'string', + 'length=' => 'int|null', + ), + ), + 'pg_meta_data' => + array ( + 'old' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'extended=' => 'bool', + ), + 'new' => + array ( + 0 => 'array|false', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'extended=' => 'bool', + ), + ), + 'pg_num_fields' => + array ( + 'old' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_num_rows' => + array ( + 'old' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_options' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_parameter_status' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'name' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'connection' => 'PgSql\\Connection', + 'name' => 'string', + ), + ), + 'pg_pconnect' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'PgSql\\Connection|false', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + ), + 'pg_ping' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_port' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_prepare' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'query' => 'string', + ), + ), + 'pg_prepare\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'statement_name' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'statement_name' => 'string', + ), + ), + 'pg_put_line' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'data' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'connection' => 'PgSql\\Connection', + 'data' => 'string', + ), + ), + 'pg_query' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + ), + 'pg_query\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + ), + ), + 'pg_query_params' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + 'params' => 'array', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + 'params' => 'array', + ), + ), + 'pg_query_params\'1' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'query' => 'array', + ), + 'new' => + array ( + 0 => 'PgSql\\Result|false', + 'connection' => 'string', + 'query' => 'array', + ), + ), + 'pg_result_error' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'result' => 'resource', + ), + 'new' => + array ( + 0 => 'false|string', + 'result' => 'PgSql\\Result', + ), + ), + 'pg_result_error_field' => + array ( + 'old' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'field_code' => 'int', + ), + 'new' => + array ( + 0 => 'false|null|string', + 'result' => 'PgSql\\Result', + 'field_code' => 'int', + ), + ), + 'pg_result_seek' => + array ( + 'old' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'result' => 'PgSql\\Result', + 'row' => 'int', + ), + ), + 'pg_result_status' => + array ( + 'old' => + array ( + 0 => 'int|string', + 'result' => 'resource', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'int|string', + 'result' => 'PgSql\\Result', + 'mode=' => 'int', + ), + ), + 'pg_select' => + array ( + 'old' => + array ( + 0 => 'array|false|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'array|false|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + 'mode=' => 'int', + ), + ), + 'pg_send_execute' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'new' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'params' => 'array', + ), + ), + 'pg_send_prepare' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'new' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'statement_name' => 'string', + 'query' => 'string', + ), + ), + 'pg_send_query' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'query' => 'string', + ), + 'new' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + ), + ), + 'pg_send_query_params' => + array ( + 'old' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'query' => 'string', + 'params' => 'array', + ), + 'new' => + array ( + 0 => 'bool|int', + 'connection' => 'PgSql\\Connection', + 'query' => 'string', + 'params' => 'array', + ), + ), + 'pg_set_client_encoding' => + array ( + 'old' => + array ( + 0 => 'int', + 'connection' => 'resource', + 'encoding' => 'string', + ), + 'new' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + 'encoding' => 'string', + ), + ), + 'pg_set_error_verbosity' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'connection' => 'resource', + 'verbosity' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + 'connection' => 'PgSql\\Connection', + 'verbosity' => 'int', + ), + ), + 'pg_socket' => + array ( + 'old' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'false|resource', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_trace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_transaction_status' => + array ( + 'old' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'new' => + array ( + 0 => 'int', + 'connection' => 'PgSql\\Connection', + ), + ), + 'pg_tty' => + array ( + 'old' => + array ( + 0 => 'string', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'string', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_untrace' => + array ( + 'old' => + array ( + 0 => 'bool', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'bool', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pg_update' => + array ( + 'old' => + array ( + 0 => 'bool|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'bool|string', + 'connection' => 'PgSql\\Connection', + 'table_name' => 'string', + 'values' => 'array', + 'conditions' => 'array', + 'flags=' => 'int', + ), + ), + 'pg_version' => + array ( + 'old' => + array ( + 0 => 'array', + 'connection=' => 'null|resource', + ), + 'new' => + array ( + 0 => 'array', + 'connection=' => 'PgSql\\Connection|null', + ), + ), + 'pspell_add_to_personal' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + ), + 'pspell_add_to_session' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + ), + 'pspell_check' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + ), + 'pspell_clear_session' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + ), + ), + 'pspell_config_create' => + array ( + 'old' => + array ( + 0 => 'int', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + ), + 'new' => + array ( + 0 => 'PSpell\\Config', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + ), + ), + 'pspell_config_data_dir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'directory' => 'string', + ), + ), + 'pspell_config_dict_dir' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'directory' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'directory' => 'string', + ), + ), + 'pspell_config_ignore' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'min_length' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'min_length' => 'int', + ), + ), + 'pspell_config_mode' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'mode' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'mode' => 'int', + ), + ), + 'pspell_config_personal' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'filename' => 'string', + ), + ), + 'pspell_config_repl' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'filename' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'filename' => 'string', + ), + ), + 'pspell_config_runtogether' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'allow' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'allow' => 'bool', + ), + ), + 'pspell_config_save_repl' => + array ( + 'old' => + array ( + 0 => 'bool', + 'config' => 'int', + 'save' => 'bool', + ), + 'new' => + array ( + 0 => 'bool', + 'config' => 'PSpell\\Config', + 'save' => 'bool', + ), + ), + 'pspell_new' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + ), + 'pspell_new_config' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'config' => 'int', + ), + 'new' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'config' => 'PSpell\\Config', + ), + ), + 'pspell_new_personal' => + array ( + 'old' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'PSpell\\Dictionary|false', + 'filename' => 'string', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + ), + 'pspell_save_wordlist' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + ), + ), + 'pspell_store_replacement' => + array ( + 'old' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'dictionary' => 'PSpell\\Dictionary', + 'misspelled' => 'string', + 'correct' => 'string', + ), + ), + 'pspell_suggest' => + array ( + 'old' => + array ( + 0 => 'array', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'new' => + array ( + 0 => 'array', + 'dictionary' => 'PSpell\\Dictionary', + 'word' => 'string', + ), + ), + 'stream_select' => + array ( + 'old' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + 'new' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int|null', + ), + ), + 'mb_check_encoding' => + array ( + 'old' => + array ( + 0 => 'bool', + 'value=' => 'array|null|string', + 'encoding=' => 'null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'value' => 'array|string', + 'encoding=' => 'null|string', + ), + ), + 'ctype_alnum' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_alpha' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_cntrl' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_digit' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_graph' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_lower' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_print' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_punct' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_space' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_upper' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'ctype_xdigit' => + array ( + 'old' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'key' => + array ( + 'old' => + array ( + 0 => 'int|null|string', + 'array' => 'array|object', + ), + 'new' => + array ( + 0 => 'int|null|string', + 'array' => 'array', + ), + ), + 'current' => + array ( + 'old' => + array ( + 0 => 'false|mixed', + 'array' => 'array|object', + ), + 'new' => + array ( + 0 => 'false|mixed', + 'array' => 'array', + ), + ), + 'next' => + array ( + 'old' => + array ( + 0 => 'mixed', + '&r_array' => 'array|object', + ), + 'new' => + array ( + 0 => 'mixed', + '&r_array' => 'array', + ), + ), + 'prev' => + array ( + 'old' => + array ( + 0 => 'mixed', + '&r_array' => 'array|object', + ), + 'new' => + array ( + 0 => 'mixed', + '&r_array' => 'array', + ), + ), + 'reset' => + array ( + 'old' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array|object', + ), + 'new' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array', + ), + ), + ), + 'removed' => + array ( + 'ReflectionMethod::isStatic' => + array ( + 0 => 'bool', + ), + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_82_delta.php b/dictionaries/CallMap_82_delta.php index 38dad00278b..e7a62985547 100644 --- a/dictionaries/CallMap_82_delta.php +++ b/dictionaries/CallMap_82_delta.php @@ -1,88 +1,279 @@ [ - 'mysqli_execute_query' => ['mysqli_result|bool', 'mysql'=>'mysqli', 'query'=>'non-empty-string', 'params='=>'list|null'], - 'mysqli::execute_query' => ['mysqli_result|bool', 'query'=>'non-empty-string', 'params='=>'list|null'], - 'openssl_cipher_key_length' => ['positive-int|false', 'cipher_algo'=>'non-empty-string'], - 'curl_upkeep' => ['bool', 'handle'=>'CurlHandle'], - 'imap_is_open' => ['bool', 'imap'=>'IMAP\Connection'], - 'ini_parse_quantity' => ['int', 'shorthand'=>'non-empty-string'], - 'libxml_get_external_entity_loader' => ['(callable(string,string,array{directory:?string,intSubName:?string,extSubURI:?string,extSubSystem:?string}):(resource|string|null))|null'], - 'memory_reset_peak_usage' => ['void'], - 'sodium_crypto_stream_xchacha20_xor_ic' => ['string', 'message'=>'string', 'nonce'=>'non-empty-string', 'counter'=>'int', 'key'=>'non-empty-string'], - 'ZipArchive::clearError' => ['void'], - 'ZipArchive::getStreamIndex' => ['resource|false', 'index'=>'int', 'flags='=>'int'], - 'ZipArchive::getStreamName' => ['resource|false', 'name'=>'string', 'flags='=>'int'], - 'DateTimeInterface::__serialize' => ['array'], - 'DateTimeInterface::__unserialize' => ['void', 'data'=>'array'], - ], - - 'changed' => [ - 'dba_open' => [ - 'old' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'string', '...handler_params='=>'string'], - 'new' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'?string', 'permission='=>'int', 'map_size='=>'int', 'flags='=>'?int'], - ], - 'dba_popen' => [ - 'old' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'string', '...handler_params='=>'string'], - 'new' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'?string', 'permission='=>'int', 'map_size='=>'int', 'flags='=>'?int'], - ], - 'iterator_count' => [ - 'old' => ['0|positive-int', 'iterator'=>'Traversable'], - 'new' => ['0|positive-int', 'iterator'=>'Traversable|array'], - ], - 'iterator_to_array' => [ - 'old' => ['array', 'iterator'=>'Traversable', 'preserve_keys='=>'bool'], - 'new' => ['array', 'iterator'=>'Traversable|array', 'preserve_keys='=>'bool'], - ], - 'str_split' => [ - 'old' => ['non-empty-list', 'string'=>'string', 'length='=>'positive-int'], - 'new' => ['list', 'string'=>'string', 'length='=>'positive-int'], - ], - 'mb_get_info' => [ - 'old' => ['array|string|int|false', 'type='=>'string'], - 'new' => ['array|string|int|false|null', 'type='=>'string'], - ], - 'strcmp' => [ - 'old' => ['int', 'string1' => 'string', 'string2' => 'string'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string'], - ], - 'strcasecmp' => [ - 'old' => ['int', 'string1' => 'string', 'string2' => 'string'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string'], - ], - 'strnatcasecmp' => [ - 'old' => ['int', 'string1' => 'string', 'string2' => 'string'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string'], - ], - 'strnatcmp' => [ - 'old' => ['int', 'string1' => 'string', 'string2' => 'string'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string'], - ], - 'strncmp' => [ - 'old' => ['int', 'string1'=>'string', 'string2'=>'string', 'length'=>'int'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string', 'length'=>'positive-int|0'], - ], - 'strncasecmp' => [ - 'old' => ['int', 'string1'=>'string', 'string2'=>'string', 'length'=>'int'], - 'new' => ['int<-1,1>', 'string1' => 'string', 'string2' => 'string', 'length'=>'positive-int|0'], - ], - ], - - 'removed' => [ - ], -]; +return array ( + 'added' => + array ( + 'mysqli_execute_query' => + array ( + 0 => 'bool|mysqli_result', + 'mysql' => 'mysqli', + 'query' => 'non-empty-string', + 'params=' => 'list|null', + ), + 'mysqli::execute_query' => + array ( + 0 => 'bool|mysqli_result', + 'query' => 'non-empty-string', + 'params=' => 'list|null', + ), + 'openssl_cipher_key_length' => + array ( + 0 => 'false|int<1, max>', + 'cipher_algo' => 'non-empty-string', + ), + 'curl_upkeep' => + array ( + 0 => 'bool', + 'handle' => 'CurlHandle', + ), + 'imap_is_open' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + 'ini_parse_quantity' => + array ( + 0 => 'int', + 'shorthand' => 'non-empty-string', + ), + 'libxml_get_external_entity_loader' => + array ( + 0 => 'callable(string, string, array{directory: null|string, extSubSystem: null|string, extSubURI: null|string, intSubName: null|string}):(null|resource|string)|null', + ), + 'memory_reset_peak_usage' => + array ( + 0 => 'void', + ), + 'sodium_crypto_stream_xchacha20_xor_ic' => + array ( + 0 => 'string', + 'message' => 'string', + 'nonce' => 'non-empty-string', + 'counter' => 'int', + 'key' => 'non-empty-string', + ), + 'ZipArchive::clearError' => + array ( + 0 => 'void', + ), + 'ZipArchive::getStreamIndex' => + array ( + 0 => 'false|resource', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getStreamName' => + array ( + 0 => 'false|resource', + 'name' => 'string', + 'flags=' => 'int', + ), + 'DateTimeInterface::__serialize' => + array ( + 0 => 'array', + ), + 'DateTimeInterface::__unserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + ), + 'changed' => + array ( + 'dba_open' => + array ( + 'old' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'string', + '...handler_params=' => 'string', + ), + 'new' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'null|string', + 'permission=' => 'int', + 'map_size=' => 'int', + 'flags=' => 'int|null', + ), + ), + 'dba_popen' => + array ( + 'old' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'string', + '...handler_params=' => 'string', + ), + 'new' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'null|string', + 'permission=' => 'int', + 'map_size=' => 'int', + 'flags=' => 'int|null', + ), + ), + 'iterator_count' => + array ( + 'old' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable', + ), + 'new' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable|array', + ), + ), + 'iterator_to_array' => + array ( + 'old' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'preserve_keys=' => 'bool', + ), + 'new' => + array ( + 0 => 'array', + 'iterator' => 'Traversable|array', + 'preserve_keys=' => 'bool', + ), + ), + 'str_split' => + array ( + 'old' => + array ( + 0 => 'non-empty-list', + 'string' => 'string', + 'length=' => 'int<1, max>', + ), + 'new' => + array ( + 0 => 'list', + 'string' => 'string', + 'length=' => 'int<1, max>', + ), + ), + 'mb_get_info' => + array ( + 'old' => + array ( + 0 => 'array|false|int|string', + 'type=' => 'string', + ), + 'new' => + array ( + 0 => 'array|false|int|null|string', + 'type=' => 'string', + ), + ), + 'strcmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + ), + 'strcasecmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + ), + 'strnatcasecmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + ), + 'strnatcmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + ), + ), + 'strncmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int<0, max>', + ), + ), + 'strncasecmp' => + array ( + 'old' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int', + ), + 'new' => + array ( + 0 => 'int<-1, 1>', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int<0, max>', + ), + ), + ), + 'removed' => + array ( + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_83_delta.php b/dictionaries/CallMap_83_delta.php index 005017e4dfe..a6992744c7a 100644 --- a/dictionaries/CallMap_83_delta.php +++ b/dictionaries/CallMap_83_delta.php @@ -1,156 +1,498 @@ [ - 'json_validate' => ['bool', 'json'=>'string', 'depth='=>'positive-int', 'flags='=>'int'], - ], - - 'changed' => [ - 'gc_status' => [ - 'old' => ['array{runs:int,collected:int,threshold:int,roots:int}'], - 'new' => ['array{runs:int,collected:int,threshold:int,roots:int,running:bool,protected:bool,full:bool,buffer_size:int,application_time:float,collector_time:float,destructor_time:float,free_time:float}'], - ], - 'srand' => [ - 'old' => ['void', 'seed='=>'int', 'mode='=>'int'], - 'new' => ['void', 'seed='=>'?int', 'mode='=>'int'], - ], - 'mt_srand' => [ - 'old' => ['void', 'seed='=>'int', 'mode='=>'int'], - 'new' =>['void', 'seed='=>'?int', 'mode='=>'int'], - ], - 'posix_getrlimit' => [ - 'old' => ['array{"soft core": string, "hard core": string, "soft data": string, "hard data": string, "soft stack": integer, "hard stack": string, "soft totalmem": string, "hard totalmem": string, "soft rss": string, "hard rss": string, "soft maxproc": integer, "hard maxproc": integer, "soft memlock": integer, "hard memlock": integer, "soft cpu": string, "hard cpu": string, "soft filesize": string, "hard filesize": string, "soft openfiles": integer, "hard openfiles": integer}|false'], - 'new' => ['array{"soft core": string, "hard core": string, "soft data": string, "hard data": string, "soft stack": integer, "hard stack": string, "soft totalmem": string, "hard totalmem": string, "soft rss": string, "hard rss": string, "soft maxproc": integer, "hard maxproc": integer, "soft memlock": integer, "hard memlock": integer, "soft cpu": string, "hard cpu": string, "soft filesize": string, "hard filesize": string, "soft openfiles": integer, "hard openfiles": integer}|false', 'resource=' => '?int'], - ], - 'natcasesort' => [ - 'old' => ['bool', '&rw_array'=>'array'], - 'new' => ['true', '&rw_array'=>'array'], - ], - 'natsort' => [ - 'old' => ['bool', '&rw_array'=>'array'], - 'new' => ['true', '&rw_array'=>'array'], - ], - 'rsort' => [ - 'old' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], - 'new' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - ], - 'imap_setflag_full' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - ], - 'imap_expunge' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection'], - 'new' => ['true', 'imap'=>'IMAP\Connection'], - ], - 'imap_gc' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'flags'=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'flags'=>'int'], - ], - 'imap_undelete' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - ], - 'imap_delete' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'message_nums'=>'string', 'flags='=>'int'], - ], - 'imap_clearflag_full' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - ], - 'imap_close' => [ - 'old' => ['bool', 'imap'=>'IMAP\Connection', 'flags='=>'int'], - 'new' => ['true', 'imap'=>'IMAP\Connection', 'flags='=>'int'], - ], - 'intlcal_clear' => [ - 'old' => ['bool', 'calendar'=>'IntlCalendar', 'field='=>'?int'], - 'new' => ['true', 'calendar'=>'IntlCalendar', 'field='=>'?int'], - ], - 'intlcal_set_lenient' => [ - 'old' => ['bool', 'calendar'=>'IntlCalendar', 'lenient'=>'bool'], - 'new' => ['true', 'calendar'=>'IntlCalendar', 'lenient'=>'bool'], - ], - 'intlcal_set_first_day_of_week' => [ - 'old' => ['bool', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], - 'new' => ['true', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], - ], - 'datefmt_set_timezone' => [ - 'old' => ['false|null', 'formatter'=>'IntlDateFormatter', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'new' => ['bool', 'formatter'=>'IntlDateFormatter', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - ], - 'IntlRuleBasedBreakIterator::setText' => [ - 'old' => ['?bool', 'text'=>'string'], - 'new' => ['bool', 'text'=>'string'], - ], - 'IntlCodePointBreakIterator::setText' => [ - 'old' => ['?bool', 'text'=>'string'], - 'new' => ['bool', 'text'=>'string'], - ], - 'IntlDateFormatter::setTimeZone' => [ - 'old' => ['null|false', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'new' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - ], - 'IntlChar::enumCharNames' => [ - 'old' => ['?bool', 'start'=>'string|int', 'end'=>'string|int', 'callback'=>'callable(int,int,int):void', 'type='=>'int'], - 'new' => ['bool', 'start'=>'string|int', 'end'=>'string|int', 'callback'=>'callable(int,int,int):void', 'type='=>'int'], - ], - 'IntlBreakIterator::setText' => [ - 'old' => ['?bool', 'text'=>'string'], - 'new' => ['bool', 'text'=>'string'], - ], - 'strrchr' => [ - 'old' => ['string|false', 'haystack'=>'string', 'needle'=>'string'], - 'new' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'], - ], - 'get_class' => [ - 'old' => ['class-string', 'object='=>'object'], - 'new' => ['class-string', 'object'=>'object'], - ], - 'get_parent_class' => [ - 'old' => ['class-string|false', 'object_or_class='=>'object|class-string'], - 'new' => ['class-string|false', 'object_or_class'=>'object|class-string'], - ], - ], - - 'removed' => [ - 'OutOfBoundsException::__clone' => ['void'], - 'ArgumentCountError::__clone' => ['void'], - 'ArithmeticError::__clone' => ['void'], - 'BadFunctionCallException::__clone' => ['void'], - 'BadMethodCallException::__clone' => ['void'], - 'ClosedGeneratorException::__clone' => ['void'], - 'DomainException::__clone' => ['void'], - 'ErrorException::__clone' => ['void'], - 'IntlException::__clone' => ['void'], - 'InvalidArgumentException::__clone' => ['void'], - 'JsonException::__clone' => ['void'], - 'LengthException::__clone' => ['void'], - 'LogicException::__clone' => ['void'], - 'OutOfRangeException::__clone' => ['void'], - 'OverflowException::__clone' => ['void'], - 'ParseError::__clone' => ['void'], - 'RangeException::__clone' => ['void'], - 'ReflectionNamedType::__clone' => ['void'], - 'ReflectionObject::__clone' => ['void'], - 'RuntimeException::__clone' => ['void'], - 'TypeError::__clone' => ['void'], - 'UnderflowException::__clone' => ['void'], - 'UnexpectedValueException::__clone' => ['void'], - 'IntlCodePointBreakIterator::__construct' => ['void'], - ], -]; +return array ( + 'added' => + array ( + 'json_validate' => + array ( + 0 => 'bool', + 'json' => 'string', + 'depth=' => 'int<1, max>', + 'flags=' => 'int', + ), + ), + 'changed' => + array ( + 'gc_status' => + array ( + 'old' => + array ( + 0 => 'array{collected: int, roots: int, runs: int, threshold: int}', + ), + 'new' => + array ( + 0 => 'array{application_time: float, buffer_size: int, collected: int, collector_time: float, destructor_time: float, free_time: float, full: bool, protected: bool, roots: int, running: bool, runs: int, threshold: int}', + ), + ), + 'srand' => + array ( + 'old' => + array ( + 0 => 'void', + 'seed=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'void', + 'seed=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'mt_srand' => + array ( + 'old' => + array ( + 0 => 'void', + 'seed=' => 'int', + 'mode=' => 'int', + ), + 'new' => + array ( + 0 => 'void', + 'seed=' => 'int|null', + 'mode=' => 'int', + ), + ), + 'posix_getrlimit' => + array ( + 'old' => + array ( + 0 => 'array{\'hard core\': string, \'hard cpu\': string, \'hard data\': string, \'hard filesize\': string, \'hard maxproc\': int, \'hard memlock\': int, \'hard openfiles\': int, \'hard rss\': string, \'hard stack\': string, \'hard totalmem\': string, \'soft core\': string, \'soft cpu\': string, \'soft data\': string, \'soft filesize\': string, \'soft maxproc\': int, \'soft memlock\': int, \'soft openfiles\': int, \'soft rss\': string, \'soft stack\': int, \'soft totalmem\': string}|false', + ), + 'new' => + array ( + 0 => 'array{\'hard core\': string, \'hard cpu\': string, \'hard data\': string, \'hard filesize\': string, \'hard maxproc\': int, \'hard memlock\': int, \'hard openfiles\': int, \'hard rss\': string, \'hard stack\': string, \'hard totalmem\': string, \'soft core\': string, \'soft cpu\': string, \'soft data\': string, \'soft filesize\': string, \'soft maxproc\': int, \'soft memlock\': int, \'soft openfiles\': int, \'soft rss\': string, \'soft stack\': int, \'soft totalmem\': string}|false', + 'resource=' => 'int|null', + ), + ), + 'natcasesort' => + array ( + 'old' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'new' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + ), + 'natsort' => + array ( + 'old' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'new' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + ), + 'rsort' => + array ( + 'old' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + ), + 'imap_setflag_full' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + ), + 'imap_expunge' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + ), + ), + 'imap_gc' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'flags' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'flags' => 'int', + ), + ), + 'imap_undelete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_delete' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + ), + 'imap_clearflag_full' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + ), + 'imap_close' => + array ( + 'old' => + array ( + 0 => 'bool', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'imap' => 'IMAP\\Connection', + 'flags=' => 'int', + ), + ), + 'intlcal_clear' => + array ( + 'old' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field=' => 'int|null', + ), + 'new' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'field=' => 'int|null', + ), + ), + 'intlcal_set_lenient' => + array ( + 'old' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'lenient' => 'bool', + ), + 'new' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'lenient' => 'bool', + ), + ), + 'intlcal_set_first_day_of_week' => + array ( + 'old' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'new' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + ), + 'datefmt_set_timezone' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'formatter' => 'IntlDateFormatter', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + ), + 'IntlRuleBasedBreakIterator::setText' => + array ( + 'old' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'IntlCodePointBreakIterator::setText' => + array ( + 'old' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'IntlDateFormatter::setTimeZone' => + array ( + 'old' => + array ( + 0 => 'false|null', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'new' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + ), + 'IntlChar::enumCharNames' => + array ( + 'old' => + array ( + 0 => 'bool|null', + 'start' => 'int|string', + 'end' => 'int|string', + 'callback' => 'callable(int, int, int):void', + 'type=' => 'int', + ), + 'new' => + array ( + 0 => 'bool', + 'start' => 'int|string', + 'end' => 'int|string', + 'callback' => 'callable(int, int, int):void', + 'type=' => 'int', + ), + ), + 'IntlBreakIterator::setText' => + array ( + 'old' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'new' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + ), + 'strrchr' => + array ( + 'old' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + ), + 'new' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + ), + ), + 'get_class' => + array ( + 'old' => + array ( + 0 => 'class-string', + 'object=' => 'object', + ), + 'new' => + array ( + 0 => 'class-string', + 'object' => 'object', + ), + ), + 'get_parent_class' => + array ( + 'old' => + array ( + 0 => 'class-string|false', + 'object_or_class=' => 'class-string|object', + ), + 'new' => + array ( + 0 => 'class-string|false', + 'object_or_class' => 'class-string|object', + ), + ), + ), + 'removed' => + array ( + 'OutOfBoundsException::__clone' => + array ( + 0 => 'void', + ), + 'ArgumentCountError::__clone' => + array ( + 0 => 'void', + ), + 'ArithmeticError::__clone' => + array ( + 0 => 'void', + ), + 'BadFunctionCallException::__clone' => + array ( + 0 => 'void', + ), + 'BadMethodCallException::__clone' => + array ( + 0 => 'void', + ), + 'ClosedGeneratorException::__clone' => + array ( + 0 => 'void', + ), + 'DomainException::__clone' => + array ( + 0 => 'void', + ), + 'ErrorException::__clone' => + array ( + 0 => 'void', + ), + 'IntlException::__clone' => + array ( + 0 => 'void', + ), + 'InvalidArgumentException::__clone' => + array ( + 0 => 'void', + ), + 'JsonException::__clone' => + array ( + 0 => 'void', + ), + 'LengthException::__clone' => + array ( + 0 => 'void', + ), + 'LogicException::__clone' => + array ( + 0 => 'void', + ), + 'OutOfRangeException::__clone' => + array ( + 0 => 'void', + ), + 'OverflowException::__clone' => + array ( + 0 => 'void', + ), + 'ParseError::__clone' => + array ( + 0 => 'void', + ), + 'RangeException::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionNamedType::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionObject::__clone' => + array ( + 0 => 'void', + ), + 'RuntimeException::__clone' => + array ( + 0 => 'void', + ), + 'TypeError::__clone' => + array ( + 0 => 'void', + ), + 'UnderflowException::__clone' => + array ( + 0 => 'void', + ), + 'UnexpectedValueException::__clone' => + array ( + 0 => 'void', + ), + 'IntlCodePointBreakIterator::__construct' => + array ( + 0 => 'void', + ), + ), +); \ No newline at end of file diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index aa56a806272..bfdc1c03b15 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -1,15635 +1,83543 @@ ['void', 'content_type='=>'string', 'content_encoding='=>'string', 'headers='=>'array', 'delivery_mode='=>'int', 'priority='=>'int', 'correlation_id='=>'string', 'reply_to='=>'string', 'expiration='=>'string', 'message_id='=>'string', 'timestamp='=>'int', 'type='=>'string', 'user_id='=>'string', 'app_id='=>'string', 'cluster_id='=>'string'], - 'AMQPBasicProperties::getAppId' => ['string'], - 'AMQPBasicProperties::getClusterId' => ['string'], - 'AMQPBasicProperties::getContentEncoding' => ['string'], - 'AMQPBasicProperties::getContentType' => ['string'], - 'AMQPBasicProperties::getCorrelationId' => ['string'], - 'AMQPBasicProperties::getDeliveryMode' => ['int'], - 'AMQPBasicProperties::getExpiration' => ['string'], - 'AMQPBasicProperties::getHeaders' => ['array'], - 'AMQPBasicProperties::getMessageId' => ['string'], - 'AMQPBasicProperties::getPriority' => ['int'], - 'AMQPBasicProperties::getReplyTo' => ['string'], - 'AMQPBasicProperties::getTimestamp' => ['string'], - 'AMQPBasicProperties::getType' => ['string'], - 'AMQPBasicProperties::getUserId' => ['string'], - 'AMQPChannel::__construct' => ['void', 'amqp_connection'=>'AMQPConnection'], - 'AMQPChannel::basicRecover' => ['', 'requeue='=>'bool'], - 'AMQPChannel::close' => [''], - 'AMQPChannel::commitTransaction' => ['bool'], - 'AMQPChannel::confirmSelect' => [''], - 'AMQPChannel::getChannelId' => ['int'], - 'AMQPChannel::getConnection' => ['AMQPConnection'], - 'AMQPChannel::getConsumers' => ['AMQPQueue[]'], - 'AMQPChannel::getPrefetchCount' => ['int'], - 'AMQPChannel::getPrefetchSize' => ['int'], - 'AMQPChannel::isConnected' => ['bool'], - 'AMQPChannel::qos' => ['bool', 'size'=>'int', 'count'=>'int'], - 'AMQPChannel::rollbackTransaction' => ['bool'], - 'AMQPChannel::setConfirmCallback' => ['', 'ack_callback='=>'?callable', 'nack_callback='=>'?callable'], - 'AMQPChannel::setPrefetchCount' => ['bool', 'count'=>'int'], - 'AMQPChannel::setPrefetchSize' => ['bool', 'size'=>'int'], - 'AMQPChannel::setReturnCallback' => ['', 'return_callback='=>'?callable'], - 'AMQPChannel::startTransaction' => ['bool'], - 'AMQPChannel::waitForBasicReturn' => ['', 'timeout='=>'float'], - 'AMQPChannel::waitForConfirm' => ['', 'timeout='=>'float'], - 'AMQPConnection::__construct' => ['void', 'credentials='=>'array'], - 'AMQPConnection::connect' => ['bool'], - 'AMQPConnection::disconnect' => ['bool'], - 'AMQPConnection::getCACert' => ['string'], - 'AMQPConnection::getCert' => ['string'], - 'AMQPConnection::getHeartbeatInterval' => ['int'], - 'AMQPConnection::getHost' => ['string'], - 'AMQPConnection::getKey' => ['string'], - 'AMQPConnection::getLogin' => ['string'], - 'AMQPConnection::getMaxChannels' => ['?int'], - 'AMQPConnection::getMaxFrameSize' => ['int'], - 'AMQPConnection::getPassword' => ['string'], - 'AMQPConnection::getPort' => ['int'], - 'AMQPConnection::getReadTimeout' => ['float'], - 'AMQPConnection::getTimeout' => ['float'], - 'AMQPConnection::getUsedChannels' => ['int'], - 'AMQPConnection::getVerify' => ['bool'], - 'AMQPConnection::getVhost' => ['string'], - 'AMQPConnection::getWriteTimeout' => ['float'], - 'AMQPConnection::isConnected' => ['bool'], - 'AMQPConnection::isPersistent' => ['?bool'], - 'AMQPConnection::pconnect' => ['bool'], - 'AMQPConnection::pdisconnect' => ['bool'], - 'AMQPConnection::preconnect' => ['bool'], - 'AMQPConnection::reconnect' => ['bool'], - 'AMQPConnection::setCACert' => ['', 'cacert'=>'string'], - 'AMQPConnection::setCert' => ['', 'cert'=>'string'], - 'AMQPConnection::setHost' => ['bool', 'host'=>'string'], - 'AMQPConnection::setKey' => ['', 'key'=>'string'], - 'AMQPConnection::setLogin' => ['bool', 'login'=>'string'], - 'AMQPConnection::setPassword' => ['bool', 'password'=>'string'], - 'AMQPConnection::setPort' => ['bool', 'port'=>'int'], - 'AMQPConnection::setReadTimeout' => ['bool', 'timeout'=>'int'], - 'AMQPConnection::setTimeout' => ['bool', 'timeout'=>'int'], - 'AMQPConnection::setVerify' => ['', 'verify'=>'bool'], - 'AMQPConnection::setVhost' => ['bool', 'vhost'=>'string'], - 'AMQPConnection::setWriteTimeout' => ['bool', 'timeout'=>'int'], - 'AMQPDecimal::__construct' => ['void', 'exponent'=>'', 'significand'=>''], - 'AMQPDecimal::getExponent' => ['int'], - 'AMQPDecimal::getSignificand' => ['int'], - 'AMQPEnvelope::__construct' => ['void'], - 'AMQPEnvelope::getAppId' => ['string'], - 'AMQPEnvelope::getBody' => ['string'], - 'AMQPEnvelope::getClusterId' => ['string'], - 'AMQPEnvelope::getConsumerTag' => ['string'], - 'AMQPEnvelope::getContentEncoding' => ['string'], - 'AMQPEnvelope::getContentType' => ['string'], - 'AMQPEnvelope::getCorrelationId' => ['string'], - 'AMQPEnvelope::getDeliveryMode' => ['int'], - 'AMQPEnvelope::getDeliveryTag' => ['string'], - 'AMQPEnvelope::getExchangeName' => ['string'], - 'AMQPEnvelope::getExpiration' => ['string'], - 'AMQPEnvelope::getHeader' => ['string|false', 'header_key'=>'string'], - 'AMQPEnvelope::getHeaders' => ['array'], - 'AMQPEnvelope::getMessageId' => ['string'], - 'AMQPEnvelope::getPriority' => ['int'], - 'AMQPEnvelope::getReplyTo' => ['string'], - 'AMQPEnvelope::getRoutingKey' => ['string'], - 'AMQPEnvelope::getTimeStamp' => ['string'], - 'AMQPEnvelope::getType' => ['string'], - 'AMQPEnvelope::getUserId' => ['string'], - 'AMQPEnvelope::hasHeader' => ['bool', 'header_key'=>'string'], - 'AMQPEnvelope::isRedelivery' => ['bool'], - 'AMQPExchange::__construct' => ['void', 'amqp_channel'=>'AMQPChannel'], - 'AMQPExchange::bind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], - 'AMQPExchange::declareExchange' => ['bool'], - 'AMQPExchange::delete' => ['bool', 'exchangeName='=>'string', 'flags='=>'int'], - 'AMQPExchange::getArgument' => ['int|string|false', 'key'=>'string'], - 'AMQPExchange::getArguments' => ['array'], - 'AMQPExchange::getChannel' => ['AMQPChannel'], - 'AMQPExchange::getConnection' => ['AMQPConnection'], - 'AMQPExchange::getFlags' => ['int'], - 'AMQPExchange::getName' => ['string'], - 'AMQPExchange::getType' => ['string'], - 'AMQPExchange::hasArgument' => ['bool', 'key'=>'string'], - 'AMQPExchange::publish' => ['bool', 'message'=>'string', 'routing_key='=>'string', 'flags='=>'int', 'attributes='=>'array'], - 'AMQPExchange::setArgument' => ['bool', 'key'=>'string', 'value'=>'int|string'], - 'AMQPExchange::setArguments' => ['bool', 'arguments'=>'array'], - 'AMQPExchange::setFlags' => ['bool', 'flags'=>'int'], - 'AMQPExchange::setName' => ['bool', 'exchange_name'=>'string'], - 'AMQPExchange::setType' => ['bool', 'exchange_type'=>'string'], - 'AMQPExchange::unbind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], - 'AMQPQueue::__construct' => ['void', 'amqp_channel'=>'AMQPChannel'], - 'AMQPQueue::ack' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], - 'AMQPQueue::bind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], - 'AMQPQueue::cancel' => ['bool', 'consumer_tag='=>'string'], - 'AMQPQueue::consume' => ['void', 'callback='=>'?callable', 'flags='=>'int', 'consumerTag='=>'string'], - 'AMQPQueue::declareQueue' => ['int'], - 'AMQPQueue::delete' => ['int', 'flags='=>'int'], - 'AMQPQueue::get' => ['AMQPEnvelope|false', 'flags='=>'int'], - 'AMQPQueue::getArgument' => ['int|string|false', 'key'=>'string'], - 'AMQPQueue::getArguments' => ['array'], - 'AMQPQueue::getChannel' => ['AMQPChannel'], - 'AMQPQueue::getConnection' => ['AMQPConnection'], - 'AMQPQueue::getConsumerTag' => ['?string'], - 'AMQPQueue::getFlags' => ['int'], - 'AMQPQueue::getName' => ['string'], - 'AMQPQueue::hasArgument' => ['bool', 'key'=>'string'], - 'AMQPQueue::nack' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], - 'AMQPQueue::purge' => ['bool'], - 'AMQPQueue::reject' => ['bool', 'delivery_tag'=>'string', 'flags='=>'int'], - 'AMQPQueue::setArgument' => ['bool', 'key'=>'string', 'value'=>'mixed'], - 'AMQPQueue::setArguments' => ['bool', 'arguments'=>'array'], - 'AMQPQueue::setFlags' => ['bool', 'flags'=>'int'], - 'AMQPQueue::setName' => ['bool', 'queue_name'=>'string'], - 'AMQPQueue::unbind' => ['bool', 'exchange_name'=>'string', 'routing_key='=>'string', 'arguments='=>'array'], - 'AMQPTimestamp::__construct' => ['void', 'timestamp'=>'string'], - 'AMQPTimestamp::__toString' => ['string'], - 'AMQPTimestamp::getTimestamp' => ['string'], - 'APCIterator::__construct' => ['void', 'cache'=>'string', 'search='=>'null|string|string[]', 'format='=>'int', 'chunk_size='=>'int', 'list='=>'int'], - 'APCIterator::current' => ['mixed|false'], - 'APCIterator::getTotalCount' => ['int|false'], - 'APCIterator::getTotalHits' => ['int|false'], - 'APCIterator::getTotalSize' => ['int|false'], - 'APCIterator::key' => ['string'], - 'APCIterator::next' => ['void'], - 'APCIterator::rewind' => ['void'], - 'APCIterator::valid' => ['bool'], - 'APCuIterator::__construct' => ['void', 'search='=>'string|string[]|null', 'format='=>'int', 'chunk_size='=>'int', 'list='=>'int'], - 'APCuIterator::current' => ['mixed'], - 'APCuIterator::getTotalCount' => ['int'], - 'APCuIterator::getTotalHits' => ['int'], - 'APCuIterator::getTotalSize' => ['int'], - 'APCuIterator::key' => ['string'], - 'APCuIterator::next' => ['void'], - 'APCuIterator::rewind' => ['void'], - 'APCuIterator::valid' => ['bool'], - 'AppendIterator::__construct' => ['void'], - 'AppendIterator::append' => ['void', 'iterator'=>'Iterator'], - 'AppendIterator::current' => ['mixed'], - 'AppendIterator::getArrayIterator' => ['ArrayIterator'], - 'AppendIterator::getInnerIterator' => ['Iterator'], - 'AppendIterator::getIteratorIndex' => ['int'], - 'AppendIterator::key' => ['int|string|float|bool'], - 'AppendIterator::next' => ['void'], - 'AppendIterator::rewind' => ['void'], - 'AppendIterator::valid' => ['bool'], - 'ArgumentCountError::__clone' => ['void'], - 'ArgumentCountError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'ArgumentCountError::__toString' => ['string'], - 'ArgumentCountError::__wakeup' => ['void'], - 'ArgumentCountError::getCode' => ['int'], - 'ArgumentCountError::getFile' => ['string'], - 'ArgumentCountError::getLine' => ['int'], - 'ArgumentCountError::getMessage' => ['string'], - 'ArgumentCountError::getPrevious' => ['?Throwable'], - 'ArgumentCountError::getTrace' => ['list\',args?:array}>'], - 'ArgumentCountError::getTraceAsString' => ['string'], - 'ArithmeticError::__clone' => ['void'], - 'ArithmeticError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'ArithmeticError::__toString' => ['string'], - 'ArithmeticError::__wakeup' => ['void'], - 'ArithmeticError::getCode' => ['int'], - 'ArithmeticError::getFile' => ['string'], - 'ArithmeticError::getLine' => ['int'], - 'ArithmeticError::getMessage' => ['string'], - 'ArithmeticError::getPrevious' => ['?Throwable'], - 'ArithmeticError::getTrace' => ['list\',args?:array}>'], - 'ArithmeticError::getTraceAsString' => ['string'], - 'ArrayAccess::offsetExists' => ['bool', 'offset'=>'int|string'], - 'ArrayAccess::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'ArrayAccess::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'ArrayAccess::offsetUnset' => ['void', 'offset'=>'int|string'], - 'ArrayIterator::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int'], - 'ArrayIterator::append' => ['void', 'value'=>'mixed'], - 'ArrayIterator::asort' => ['true', 'flags='=>'int'], - 'ArrayIterator::count' => ['int'], - 'ArrayIterator::current' => ['mixed'], - 'ArrayIterator::getArrayCopy' => ['array'], - 'ArrayIterator::getFlags' => ['int'], - 'ArrayIterator::key' => ['int|string|null'], - 'ArrayIterator::ksort' => ['true', 'flags='=>'int'], - 'ArrayIterator::natcasesort' => ['true'], - 'ArrayIterator::natsort' => ['true'], - 'ArrayIterator::next' => ['void'], - 'ArrayIterator::offsetExists' => ['bool', 'key'=>'string|int'], - 'ArrayIterator::offsetGet' => ['mixed', 'key'=>'string|int'], - 'ArrayIterator::offsetSet' => ['void', 'key'=>'string|int|null', 'value'=>'mixed'], - 'ArrayIterator::offsetUnset' => ['void', 'key'=>'string|int'], - 'ArrayIterator::rewind' => ['void'], - 'ArrayIterator::seek' => ['void', 'offset'=>'int'], - 'ArrayIterator::serialize' => ['string'], - 'ArrayIterator::setFlags' => ['void', 'flags'=>'int'], - 'ArrayIterator::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'ArrayIterator::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'ArrayIterator::unserialize' => ['void', 'data'=>'string'], - 'ArrayIterator::valid' => ['bool'], - 'ArrayObject::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int', 'iteratorClass='=>'class-string'], - 'ArrayObject::append' => ['void', 'value'=>'mixed'], - 'ArrayObject::asort' => ['true', 'flags='=>'int'], - 'ArrayObject::count' => ['int'], - 'ArrayObject::exchangeArray' => ['array', 'array'=>'array|object'], - 'ArrayObject::getArrayCopy' => ['array'], - 'ArrayObject::getFlags' => ['int'], - 'ArrayObject::getIterator' => ['ArrayIterator'], - 'ArrayObject::getIteratorClass' => ['string'], - 'ArrayObject::ksort' => ['true', 'flags='=>'int'], - 'ArrayObject::natcasesort' => ['true'], - 'ArrayObject::natsort' => ['true'], - 'ArrayObject::offsetExists' => ['bool', 'key'=>'int|string'], - 'ArrayObject::offsetGet' => ['mixed|null', 'key'=>'int|string'], - 'ArrayObject::offsetSet' => ['void', 'key'=>'int|string|null', 'value'=>'mixed'], - 'ArrayObject::offsetUnset' => ['void', 'key'=>'int|string'], - 'ArrayObject::serialize' => ['string'], - 'ArrayObject::setFlags' => ['void', 'flags'=>'int'], - 'ArrayObject::setIteratorClass' => ['void', 'iteratorClass'=>'class-string'], - 'ArrayObject::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'ArrayObject::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'ArrayObject::unserialize' => ['void', 'data'=>'string'], - 'BadFunctionCallException::__clone' => ['void'], - 'BadFunctionCallException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'BadFunctionCallException::__toString' => ['string'], - 'BadFunctionCallException::getCode' => ['int'], - 'BadFunctionCallException::getFile' => ['string'], - 'BadFunctionCallException::getLine' => ['int'], - 'BadFunctionCallException::getMessage' => ['string'], - 'BadFunctionCallException::getPrevious' => ['?Throwable'], - 'BadFunctionCallException::getTrace' => ['list\',args?:array}>'], - 'BadFunctionCallException::getTraceAsString' => ['string'], - 'BadMethodCallException::__clone' => ['void'], - 'BadMethodCallException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'BadMethodCallException::__toString' => ['string'], - 'BadMethodCallException::getCode' => ['int'], - 'BadMethodCallException::getFile' => ['string'], - 'BadMethodCallException::getLine' => ['int'], - 'BadMethodCallException::getMessage' => ['string'], - 'BadMethodCallException::getPrevious' => ['?Throwable'], - 'BadMethodCallException::getTrace' => ['list\',args?:array}>'], - 'BadMethodCallException::getTraceAsString' => ['string'], - 'COM::__call' => ['', 'name'=>'', 'args'=>''], - 'COM::__construct' => ['void', 'module_name'=>'string', 'server_name='=>'mixed', 'codepage='=>'int', 'typelib='=>'string'], - 'COM::__get' => ['', 'name'=>''], - 'COM::__set' => ['void', 'name'=>'', 'value'=>''], - 'COMPersistHelper::GetCurFile' => ['string'], - 'COMPersistHelper::GetCurFileName' => ['string'], - 'COMPersistHelper::GetMaxStreamSize' => ['int'], - 'COMPersistHelper::InitNew' => ['int'], - 'COMPersistHelper::LoadFromFile' => ['bool', 'filename'=>'string', 'flags'=>'int'], - 'COMPersistHelper::LoadFromStream' => ['', 'stream'=>''], - 'COMPersistHelper::SaveToFile' => ['bool', 'filename'=>'string', 'remember'=>'bool'], - 'COMPersistHelper::SaveToStream' => ['int', 'stream'=>''], - 'COMPersistHelper::__construct' => ['void', 'variant'=>'object'], - 'CURLFile::__construct' => ['void', 'filename'=>'string', 'mime_type='=>'string', 'posted_filename='=>'string'], - 'CURLFile::getFilename' => ['string'], - 'CURLFile::getMimeType' => ['string'], - 'CURLFile::getPostFilename' => ['string'], - 'CURLFile::setMimeType' => ['void', 'mime_type'=>'string'], - 'CURLFile::setPostFilename' => ['void', 'posted_filename'=>'string'], - 'CachingIterator::__construct' => ['void', 'iterator'=>'Iterator', 'flags='=>''], - 'CachingIterator::__toString' => ['string'], - 'CachingIterator::count' => ['int'], - 'CachingIterator::current' => ['mixed'], - 'CachingIterator::getCache' => ['array'], - 'CachingIterator::getFlags' => ['int'], - 'CachingIterator::getInnerIterator' => ['Iterator'], - 'CachingIterator::hasNext' => ['bool'], - 'CachingIterator::key' => ['int|string|float|bool'], - 'CachingIterator::next' => ['void'], - 'CachingIterator::offsetExists' => ['bool', 'key'=>'string'], - 'CachingIterator::offsetGet' => ['mixed', 'key'=>'string'], - 'CachingIterator::offsetSet' => ['void', 'key'=>'string', 'value'=>'mixed'], - 'CachingIterator::offsetUnset' => ['void', 'key'=>'string'], - 'CachingIterator::rewind' => ['void'], - 'CachingIterator::setFlags' => ['void', 'flags'=>'int'], - 'CachingIterator::valid' => ['bool'], - 'CallbackFilterIterator::__construct' => ['void', 'iterator'=>'Iterator', 'callback'=>'callable(mixed,mixed=,mixed=):bool'], - 'CallbackFilterIterator::accept' => ['bool'], - 'CallbackFilterIterator::current' => ['mixed'], - 'CallbackFilterIterator::getInnerIterator' => ['Iterator'], - 'CallbackFilterIterator::key' => ['mixed'], - 'CallbackFilterIterator::next' => ['void'], - 'CallbackFilterIterator::rewind' => ['void'], - 'CallbackFilterIterator::valid' => ['bool'], - 'ClosedGeneratorException::__clone' => ['void'], - 'ClosedGeneratorException::__toString' => ['string'], - 'ClosedGeneratorException::getCode' => ['int'], - 'ClosedGeneratorException::getFile' => ['string'], - 'ClosedGeneratorException::getLine' => ['int'], - 'ClosedGeneratorException::getMessage' => ['string'], - 'ClosedGeneratorException::getPrevious' => ['?Throwable'], - 'ClosedGeneratorException::getTrace' => ['list\',args?:array}>'], - 'ClosedGeneratorException::getTraceAsString' => ['string'], - 'Closure::__construct' => ['void'], - 'Closure::__invoke' => ['', '...args='=>''], - 'Closure::bind' => ['?Closure', 'closure'=>'Closure', 'newThis'=>'?object', 'newScope='=>'object|string|null'], - 'Closure::bindTo' => ['?Closure', 'newThis'=>'?object', 'newScope='=>'object|string|null'], - 'Closure::call' => ['mixed', 'newThis'=>'object', '...args='=>'mixed'], - 'Collator::__construct' => ['void', 'locale'=>'string'], - 'Collator::asort' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], - 'Collator::compare' => ['int|false', 'string1'=>'string', 'string2'=>'string'], - 'Collator::create' => ['?Collator', 'locale'=>'string'], - 'Collator::getAttribute' => ['int|false', 'attribute'=>'int'], - 'Collator::getErrorCode' => ['int'], - 'Collator::getErrorMessage' => ['string'], - 'Collator::getLocale' => ['string', 'type'=>'int'], - 'Collator::getSortKey' => ['string|false', 'string'=>'string'], - 'Collator::getStrength' => ['int|false'], - 'Collator::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'int'], - 'Collator::setStrength' => ['bool', 'strength'=>'int'], - 'Collator::sort' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], - 'Collator::sortWithSortKeys' => ['bool', '&rw_array'=>'array'], - 'Collectable::isGarbage' => ['bool'], - 'Collectable::setGarbage' => ['void'], - 'Cond::broadcast' => ['bool', 'condition'=>'long'], - 'Cond::create' => ['long'], - 'Cond::destroy' => ['bool', 'condition'=>'long'], - 'Cond::signal' => ['bool', 'condition'=>'long'], - 'Cond::wait' => ['bool', 'condition'=>'long', 'mutex'=>'long', 'timeout='=>'long'], - 'Couchbase\AnalyticsQuery::__construct' => ['void'], - 'Couchbase\AnalyticsQuery::fromString' => ['Couchbase\AnalyticsQuery', 'statement'=>'string'], - 'Couchbase\BooleanFieldSearchQuery::__construct' => ['void'], - 'Couchbase\BooleanFieldSearchQuery::boost' => ['Couchbase\BooleanFieldSearchQuery', 'boost'=>'float'], - 'Couchbase\BooleanFieldSearchQuery::field' => ['Couchbase\BooleanFieldSearchQuery', 'field'=>'string'], - 'Couchbase\BooleanFieldSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\BooleanSearchQuery::__construct' => ['void'], - 'Couchbase\BooleanSearchQuery::boost' => ['Couchbase\BooleanSearchQuery', 'boost'=>'float'], - 'Couchbase\BooleanSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\BooleanSearchQuery::must' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], - 'Couchbase\BooleanSearchQuery::mustNot' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], - 'Couchbase\BooleanSearchQuery::should' => ['Couchbase\BooleanSearchQuery', '...queries='=>'array'], - 'Couchbase\Bucket::__construct' => ['void'], - 'Couchbase\Bucket::__get' => ['int', 'name'=>'string'], - 'Couchbase\Bucket::__set' => ['int', 'name'=>'string', 'value'=>'int'], - 'Couchbase\Bucket::append' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\Bucket::counter' => ['Couchbase\Document|array', 'ids'=>'array|string', 'delta='=>'int', 'options='=>'array'], - 'Couchbase\Bucket::decryptFields' => ['array', 'document'=>'array', 'fieldOptions'=>'', 'prefix='=>'string'], - 'Couchbase\Bucket::diag' => ['array', 'reportId='=>'string'], - 'Couchbase\Bucket::encryptFields' => ['array', 'document'=>'array', 'fieldOptions'=>'', 'prefix='=>'string'], - 'Couchbase\Bucket::get' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], - 'Couchbase\Bucket::getAndLock' => ['Couchbase\Document|array', 'ids'=>'array|string', 'lockTime'=>'int', 'options='=>'array'], - 'Couchbase\Bucket::getAndTouch' => ['Couchbase\Document|array', 'ids'=>'array|string', 'expiry'=>'int', 'options='=>'array'], - 'Couchbase\Bucket::getFromReplica' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], - 'Couchbase\Bucket::getName' => ['string'], - 'Couchbase\Bucket::insert' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\Bucket::listExists' => ['bool', 'id'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::listGet' => ['mixed', 'id'=>'string', 'index'=>'int'], - 'Couchbase\Bucket::listPush' => ['', 'id'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::listRemove' => ['', 'id'=>'string', 'index'=>'int'], - 'Couchbase\Bucket::listSet' => ['', 'id'=>'string', 'index'=>'int', 'value'=>'mixed'], - 'Couchbase\Bucket::listShift' => ['', 'id'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::listSize' => ['int', 'id'=>'string'], - 'Couchbase\Bucket::lookupIn' => ['Couchbase\LookupInBuilder', 'id'=>'string'], - 'Couchbase\Bucket::manager' => ['Couchbase\BucketManager'], - 'Couchbase\Bucket::mapAdd' => ['', 'id'=>'string', 'key'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::mapGet' => ['mixed', 'id'=>'string', 'key'=>'string'], - 'Couchbase\Bucket::mapRemove' => ['', 'id'=>'string', 'key'=>'string'], - 'Couchbase\Bucket::mapSize' => ['int', 'id'=>'string'], - 'Couchbase\Bucket::mutateIn' => ['Couchbase\MutateInBuilder', 'id'=>'string', 'cas'=>'string'], - 'Couchbase\Bucket::ping' => ['array', 'services='=>'int', 'reportId='=>'string'], - 'Couchbase\Bucket::prepend' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\Bucket::query' => ['object', 'query'=>'Couchbase\AnalyticsQuery|Couchbase\N1qlQuery|Couchbase\SearchQuery|Couchbase\SpatialViewQuery|Couchbase\ViewQuery', 'jsonAsArray='=>'bool'], - 'Couchbase\Bucket::queueAdd' => ['', 'id'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::queueExists' => ['bool', 'id'=>'string', 'value'=>'mixed'], - 'Couchbase\Bucket::queueRemove' => ['mixed', 'id'=>'string'], - 'Couchbase\Bucket::queueSize' => ['int', 'id'=>'string'], - 'Couchbase\Bucket::remove' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], - 'Couchbase\Bucket::replace' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\Bucket::retrieveIn' => ['Couchbase\DocumentFragment', 'id'=>'string', '...paths='=>'array'], - 'Couchbase\Bucket::setAdd' => ['', 'id'=>'string', 'value'=>'bool|float|int|string'], - 'Couchbase\Bucket::setExists' => ['bool', 'id'=>'string', 'value'=>'bool|float|int|string'], - 'Couchbase\Bucket::setRemove' => ['', 'id'=>'string', 'value'=>'bool|float|int|string'], - 'Couchbase\Bucket::setSize' => ['int', 'id'=>'string'], - 'Couchbase\Bucket::setTranscoder' => ['', 'encoder'=>'callable', 'decoder'=>'callable'], - 'Couchbase\Bucket::touch' => ['Couchbase\Document|array', 'ids'=>'array|string', 'expiry'=>'int', 'options='=>'array'], - 'Couchbase\Bucket::unlock' => ['Couchbase\Document|array', 'ids'=>'array|string', 'options='=>'array'], - 'Couchbase\Bucket::upsert' => ['Couchbase\Document|array', 'ids'=>'array|string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\BucketManager::__construct' => ['void'], - 'Couchbase\BucketManager::createN1qlIndex' => ['', 'name'=>'string', 'fields'=>'array', 'whereClause='=>'string', 'ignoreIfExist='=>'bool', 'defer='=>'bool'], - 'Couchbase\BucketManager::createN1qlPrimaryIndex' => ['', 'customName='=>'string', 'ignoreIfExist='=>'bool', 'defer='=>'bool'], - 'Couchbase\BucketManager::dropN1qlIndex' => ['', 'name'=>'string', 'ignoreIfNotExist='=>'bool'], - 'Couchbase\BucketManager::dropN1qlPrimaryIndex' => ['', 'customName='=>'string', 'ignoreIfNotExist='=>'bool'], - 'Couchbase\BucketManager::flush' => [''], - 'Couchbase\BucketManager::getDesignDocument' => ['array', 'name'=>'string'], - 'Couchbase\BucketManager::info' => ['array'], - 'Couchbase\BucketManager::insertDesignDocument' => ['', 'name'=>'string', 'document'=>'array'], - 'Couchbase\BucketManager::listDesignDocuments' => ['array'], - 'Couchbase\BucketManager::listN1qlIndexes' => ['array'], - 'Couchbase\BucketManager::removeDesignDocument' => ['', 'name'=>'string'], - 'Couchbase\BucketManager::upsertDesignDocument' => ['', 'name'=>'string', 'document'=>'array'], - 'Couchbase\ClassicAuthenticator::bucket' => ['', 'name'=>'string', 'password'=>'string'], - 'Couchbase\ClassicAuthenticator::cluster' => ['', 'username'=>'string', 'password'=>'string'], - 'Couchbase\Cluster::__construct' => ['void', 'connstr'=>'string'], - 'Couchbase\Cluster::authenticate' => ['null', 'authenticator'=>'Couchbase\Authenticator'], - 'Couchbase\Cluster::authenticateAs' => ['null', 'username'=>'string', 'password'=>'string'], - 'Couchbase\Cluster::manager' => ['Couchbase\ClusterManager', 'username='=>'string', 'password='=>'string'], - 'Couchbase\Cluster::openBucket' => ['Couchbase\Bucket', 'name='=>'string', 'password='=>'string'], - 'Couchbase\ClusterManager::__construct' => ['void'], - 'Couchbase\ClusterManager::createBucket' => ['', 'name'=>'string', 'options='=>'array'], - 'Couchbase\ClusterManager::getUser' => ['array', 'username'=>'string', 'domain='=>'int'], - 'Couchbase\ClusterManager::info' => ['array'], - 'Couchbase\ClusterManager::listBuckets' => ['array'], - 'Couchbase\ClusterManager::listUsers' => ['array', 'domain='=>'int'], - 'Couchbase\ClusterManager::removeBucket' => ['', 'name'=>'string'], - 'Couchbase\ClusterManager::removeUser' => ['', 'name'=>'string', 'domain='=>'int'], - 'Couchbase\ClusterManager::upsertUser' => ['', 'name'=>'string', 'settings'=>'Couchbase\UserSettings', 'domain='=>'int'], - 'Couchbase\ConjunctionSearchQuery::__construct' => ['void'], - 'Couchbase\ConjunctionSearchQuery::boost' => ['Couchbase\ConjunctionSearchQuery', 'boost'=>'float'], - 'Couchbase\ConjunctionSearchQuery::every' => ['Couchbase\ConjunctionSearchQuery', '...queries='=>'array'], - 'Couchbase\ConjunctionSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\DateRangeSearchFacet::__construct' => ['void'], - 'Couchbase\DateRangeSearchFacet::addRange' => ['Couchbase\DateRangeSearchFacet', 'name'=>'string', 'start'=>'int|string', 'end'=>'int|string'], - 'Couchbase\DateRangeSearchFacet::jsonSerialize' => ['array'], - 'Couchbase\DateRangeSearchQuery::__construct' => ['void'], - 'Couchbase\DateRangeSearchQuery::boost' => ['Couchbase\DateRangeSearchQuery', 'boost'=>'float'], - 'Couchbase\DateRangeSearchQuery::dateTimeParser' => ['Couchbase\DateRangeSearchQuery', 'dateTimeParser'=>'string'], - 'Couchbase\DateRangeSearchQuery::end' => ['Couchbase\DateRangeSearchQuery', 'end'=>'int|string', 'inclusive='=>'bool'], - 'Couchbase\DateRangeSearchQuery::field' => ['Couchbase\DateRangeSearchQuery', 'field'=>'string'], - 'Couchbase\DateRangeSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\DateRangeSearchQuery::start' => ['Couchbase\DateRangeSearchQuery', 'start'=>'int|string', 'inclusive='=>'bool'], - 'Couchbase\DisjunctionSearchQuery::__construct' => ['void'], - 'Couchbase\DisjunctionSearchQuery::boost' => ['Couchbase\DisjunctionSearchQuery', 'boost'=>'float'], - 'Couchbase\DisjunctionSearchQuery::either' => ['Couchbase\DisjunctionSearchQuery', '...queries='=>'array'], - 'Couchbase\DisjunctionSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\DisjunctionSearchQuery::min' => ['Couchbase\DisjunctionSearchQuery', 'min'=>'int'], - 'Couchbase\DocIdSearchQuery::__construct' => ['void'], - 'Couchbase\DocIdSearchQuery::boost' => ['Couchbase\DocIdSearchQuery', 'boost'=>'float'], - 'Couchbase\DocIdSearchQuery::docIds' => ['Couchbase\DocIdSearchQuery', '...documentIds='=>'array'], - 'Couchbase\DocIdSearchQuery::field' => ['Couchbase\DocIdSearchQuery', 'field'=>'string'], - 'Couchbase\DocIdSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\GeoBoundingBoxSearchQuery::__construct' => ['void'], - 'Couchbase\GeoBoundingBoxSearchQuery::boost' => ['Couchbase\GeoBoundingBoxSearchQuery', 'boost'=>'float'], - 'Couchbase\GeoBoundingBoxSearchQuery::field' => ['Couchbase\GeoBoundingBoxSearchQuery', 'field'=>'string'], - 'Couchbase\GeoBoundingBoxSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\GeoDistanceSearchQuery::__construct' => ['void'], - 'Couchbase\GeoDistanceSearchQuery::boost' => ['Couchbase\GeoDistanceSearchQuery', 'boost'=>'float'], - 'Couchbase\GeoDistanceSearchQuery::field' => ['Couchbase\GeoDistanceSearchQuery', 'field'=>'string'], - 'Couchbase\GeoDistanceSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\LookupInBuilder::__construct' => ['void'], - 'Couchbase\LookupInBuilder::execute' => ['Couchbase\DocumentFragment'], - 'Couchbase\LookupInBuilder::exists' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], - 'Couchbase\LookupInBuilder::get' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], - 'Couchbase\LookupInBuilder::getCount' => ['Couchbase\LookupInBuilder', 'path'=>'string', 'options='=>'array'], - 'Couchbase\MatchAllSearchQuery::__construct' => ['void'], - 'Couchbase\MatchAllSearchQuery::boost' => ['Couchbase\MatchAllSearchQuery', 'boost'=>'float'], - 'Couchbase\MatchAllSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\MatchNoneSearchQuery::__construct' => ['void'], - 'Couchbase\MatchNoneSearchQuery::boost' => ['Couchbase\MatchNoneSearchQuery', 'boost'=>'float'], - 'Couchbase\MatchNoneSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\MatchPhraseSearchQuery::__construct' => ['void'], - 'Couchbase\MatchPhraseSearchQuery::analyzer' => ['Couchbase\MatchPhraseSearchQuery', 'analyzer'=>'string'], - 'Couchbase\MatchPhraseSearchQuery::boost' => ['Couchbase\MatchPhraseSearchQuery', 'boost'=>'float'], - 'Couchbase\MatchPhraseSearchQuery::field' => ['Couchbase\MatchPhraseSearchQuery', 'field'=>'string'], - 'Couchbase\MatchPhraseSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\MatchSearchQuery::__construct' => ['void'], - 'Couchbase\MatchSearchQuery::analyzer' => ['Couchbase\MatchSearchQuery', 'analyzer'=>'string'], - 'Couchbase\MatchSearchQuery::boost' => ['Couchbase\MatchSearchQuery', 'boost'=>'float'], - 'Couchbase\MatchSearchQuery::field' => ['Couchbase\MatchSearchQuery', 'field'=>'string'], - 'Couchbase\MatchSearchQuery::fuzziness' => ['Couchbase\MatchSearchQuery', 'fuzziness'=>'int'], - 'Couchbase\MatchSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\MatchSearchQuery::prefixLength' => ['Couchbase\MatchSearchQuery', 'prefixLength'=>'int'], - 'Couchbase\MutateInBuilder::__construct' => ['void'], - 'Couchbase\MutateInBuilder::arrayAddUnique' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::arrayAppend' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::arrayAppendAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::arrayInsert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\MutateInBuilder::arrayInsertAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array'], - 'Couchbase\MutateInBuilder::arrayPrepend' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::arrayPrependAll' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'values'=>'array', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::counter' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'delta'=>'int', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::execute' => ['Couchbase\DocumentFragment'], - 'Couchbase\MutateInBuilder::insert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::modeDocument' => ['', 'mode'=>'int'], - 'Couchbase\MutateInBuilder::remove' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'options='=>'array'], - 'Couchbase\MutateInBuilder::replace' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array'], - 'Couchbase\MutateInBuilder::upsert' => ['Couchbase\MutateInBuilder', 'path'=>'string', 'value'=>'mixed', 'options='=>'array|bool'], - 'Couchbase\MutateInBuilder::withExpiry' => ['Couchbase\MutateInBuilder', 'expiry'=>'Couchbase\expiry'], - 'Couchbase\MutationState::__construct' => ['void'], - 'Couchbase\MutationState::add' => ['', 'source'=>'Couchbase\Document|Couchbase\DocumentFragment|array'], - 'Couchbase\MutationState::from' => ['Couchbase\MutationState', 'source'=>'Couchbase\Document|Couchbase\DocumentFragment|array'], - 'Couchbase\MutationToken::__construct' => ['void'], - 'Couchbase\MutationToken::bucketName' => ['string'], - 'Couchbase\MutationToken::from' => ['', 'bucketName'=>'string', 'vbucketId'=>'int', 'vbucketUuid'=>'string', 'sequenceNumber'=>'string'], - 'Couchbase\MutationToken::sequenceNumber' => ['string'], - 'Couchbase\MutationToken::vbucketId' => ['int'], - 'Couchbase\MutationToken::vbucketUuid' => ['string'], - 'Couchbase\N1qlIndex::__construct' => ['void'], - 'Couchbase\N1qlQuery::__construct' => ['void'], - 'Couchbase\N1qlQuery::adhoc' => ['Couchbase\N1qlQuery', 'adhoc'=>'bool'], - 'Couchbase\N1qlQuery::consistency' => ['Couchbase\N1qlQuery', 'consistency'=>'int'], - 'Couchbase\N1qlQuery::consistentWith' => ['Couchbase\N1qlQuery', 'state'=>'Couchbase\MutationState'], - 'Couchbase\N1qlQuery::crossBucket' => ['Couchbase\N1qlQuery', 'crossBucket'=>'bool'], - 'Couchbase\N1qlQuery::fromString' => ['Couchbase\N1qlQuery', 'statement'=>'string'], - 'Couchbase\N1qlQuery::maxParallelism' => ['Couchbase\N1qlQuery', 'maxParallelism'=>'int'], - 'Couchbase\N1qlQuery::namedParams' => ['Couchbase\N1qlQuery', 'params'=>'array'], - 'Couchbase\N1qlQuery::pipelineBatch' => ['Couchbase\N1qlQuery', 'pipelineBatch'=>'int'], - 'Couchbase\N1qlQuery::pipelineCap' => ['Couchbase\N1qlQuery', 'pipelineCap'=>'int'], - 'Couchbase\N1qlQuery::positionalParams' => ['Couchbase\N1qlQuery', 'params'=>'array'], - 'Couchbase\N1qlQuery::profile' => ['', 'profileType'=>'string'], - 'Couchbase\N1qlQuery::readonly' => ['Couchbase\N1qlQuery', 'readonly'=>'bool'], - 'Couchbase\N1qlQuery::scanCap' => ['Couchbase\N1qlQuery', 'scanCap'=>'int'], - 'Couchbase\NumericRangeSearchFacet::__construct' => ['void'], - 'Couchbase\NumericRangeSearchFacet::addRange' => ['Couchbase\NumericRangeSearchFacet', 'name'=>'string', 'min'=>'float', 'max'=>'float'], - 'Couchbase\NumericRangeSearchFacet::jsonSerialize' => ['array'], - 'Couchbase\NumericRangeSearchQuery::__construct' => ['void'], - 'Couchbase\NumericRangeSearchQuery::boost' => ['Couchbase\NumericRangeSearchQuery', 'boost'=>'float'], - 'Couchbase\NumericRangeSearchQuery::field' => ['Couchbase\NumericRangeSearchQuery', 'field'=>'string'], - 'Couchbase\NumericRangeSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\NumericRangeSearchQuery::max' => ['Couchbase\NumericRangeSearchQuery', 'max'=>'float', 'inclusive='=>'bool'], - 'Couchbase\NumericRangeSearchQuery::min' => ['Couchbase\NumericRangeSearchQuery', 'min'=>'float', 'inclusive='=>'bool'], - 'Couchbase\PasswordAuthenticator::password' => ['Couchbase\PasswordAuthenticator', 'password'=>'string'], - 'Couchbase\PasswordAuthenticator::username' => ['Couchbase\PasswordAuthenticator', 'username'=>'string'], - 'Couchbase\PhraseSearchQuery::__construct' => ['void'], - 'Couchbase\PhraseSearchQuery::boost' => ['Couchbase\PhraseSearchQuery', 'boost'=>'float'], - 'Couchbase\PhraseSearchQuery::field' => ['Couchbase\PhraseSearchQuery', 'field'=>'string'], - 'Couchbase\PhraseSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\PrefixSearchQuery::__construct' => ['void'], - 'Couchbase\PrefixSearchQuery::boost' => ['Couchbase\PrefixSearchQuery', 'boost'=>'float'], - 'Couchbase\PrefixSearchQuery::field' => ['Couchbase\PrefixSearchQuery', 'field'=>'string'], - 'Couchbase\PrefixSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\QueryStringSearchQuery::__construct' => ['void'], - 'Couchbase\QueryStringSearchQuery::boost' => ['Couchbase\QueryStringSearchQuery', 'boost'=>'float'], - 'Couchbase\QueryStringSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\RegexpSearchQuery::__construct' => ['void'], - 'Couchbase\RegexpSearchQuery::boost' => ['Couchbase\RegexpSearchQuery', 'boost'=>'float'], - 'Couchbase\RegexpSearchQuery::field' => ['Couchbase\RegexpSearchQuery', 'field'=>'string'], - 'Couchbase\RegexpSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\SearchQuery::__construct' => ['void', 'indexName'=>'string', 'queryPart'=>'Couchbase\SearchQueryPart'], - 'Couchbase\SearchQuery::addFacet' => ['Couchbase\SearchQuery', 'name'=>'string', 'facet'=>'Couchbase\SearchFacet'], - 'Couchbase\SearchQuery::boolean' => ['Couchbase\BooleanSearchQuery'], - 'Couchbase\SearchQuery::booleanField' => ['Couchbase\BooleanFieldSearchQuery', 'value'=>'bool'], - 'Couchbase\SearchQuery::conjuncts' => ['Couchbase\ConjunctionSearchQuery', '...queries='=>'array'], - 'Couchbase\SearchQuery::consistentWith' => ['Couchbase\SearchQuery', 'state'=>'Couchbase\MutationState'], - 'Couchbase\SearchQuery::dateRange' => ['Couchbase\DateRangeSearchQuery'], - 'Couchbase\SearchQuery::dateRangeFacet' => ['Couchbase\DateRangeSearchFacet', 'field'=>'string', 'limit'=>'int'], - 'Couchbase\SearchQuery::disjuncts' => ['Couchbase\DisjunctionSearchQuery', '...queries='=>'array'], - 'Couchbase\SearchQuery::docId' => ['Couchbase\DocIdSearchQuery', '...documentIds='=>'array'], - 'Couchbase\SearchQuery::explain' => ['Couchbase\SearchQuery', 'explain'=>'bool'], - 'Couchbase\SearchQuery::fields' => ['Couchbase\SearchQuery', '...fields='=>'array'], - 'Couchbase\SearchQuery::geoBoundingBox' => ['Couchbase\GeoBoundingBoxSearchQuery', 'topLeftLongitude'=>'float', 'topLeftLatitude'=>'float', 'bottomRightLongitude'=>'float', 'bottomRightLatitude'=>'float'], - 'Couchbase\SearchQuery::geoDistance' => ['Couchbase\GeoDistanceSearchQuery', 'longitude'=>'float', 'latitude'=>'float', 'distance'=>'string'], - 'Couchbase\SearchQuery::highlight' => ['Couchbase\SearchQuery', 'style'=>'string', '...fields='=>'array'], - 'Couchbase\SearchQuery::jsonSerialize' => ['array'], - 'Couchbase\SearchQuery::limit' => ['Couchbase\SearchQuery', 'limit'=>'int'], - 'Couchbase\SearchQuery::match' => ['Couchbase\MatchSearchQuery', 'match'=>'string'], - 'Couchbase\SearchQuery::matchAll' => ['Couchbase\MatchAllSearchQuery'], - 'Couchbase\SearchQuery::matchNone' => ['Couchbase\MatchNoneSearchQuery'], - 'Couchbase\SearchQuery::matchPhrase' => ['Couchbase\MatchPhraseSearchQuery', '...terms='=>'array'], - 'Couchbase\SearchQuery::numericRange' => ['Couchbase\NumericRangeSearchQuery'], - 'Couchbase\SearchQuery::numericRangeFacet' => ['Couchbase\NumericRangeSearchFacet', 'field'=>'string', 'limit'=>'int'], - 'Couchbase\SearchQuery::prefix' => ['Couchbase\PrefixSearchQuery', 'prefix'=>'string'], - 'Couchbase\SearchQuery::queryString' => ['Couchbase\QueryStringSearchQuery', 'queryString'=>'string'], - 'Couchbase\SearchQuery::regexp' => ['Couchbase\RegexpSearchQuery', 'regexp'=>'string'], - 'Couchbase\SearchQuery::serverSideTimeout' => ['Couchbase\SearchQuery', 'serverSideTimeout'=>'int'], - 'Couchbase\SearchQuery::skip' => ['Couchbase\SearchQuery', 'skip'=>'int'], - 'Couchbase\SearchQuery::sort' => ['Couchbase\SearchQuery', '...sort='=>'array'], - 'Couchbase\SearchQuery::term' => ['Couchbase\TermSearchQuery', 'term'=>'string'], - 'Couchbase\SearchQuery::termFacet' => ['Couchbase\TermSearchFacet', 'field'=>'string', 'limit'=>'int'], - 'Couchbase\SearchQuery::termRange' => ['Couchbase\TermRangeSearchQuery'], - 'Couchbase\SearchQuery::wildcard' => ['Couchbase\WildcardSearchQuery', 'wildcard'=>'string'], - 'Couchbase\SearchSort::__construct' => ['void'], - 'Couchbase\SearchSort::field' => ['Couchbase\SearchSortField', 'field'=>'string'], - 'Couchbase\SearchSort::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], - 'Couchbase\SearchSort::id' => ['Couchbase\SearchSortId'], - 'Couchbase\SearchSort::score' => ['Couchbase\SearchSortScore'], - 'Couchbase\SearchSortField::__construct' => ['void'], - 'Couchbase\SearchSortField::descending' => ['Couchbase\SearchSortField', 'descending'=>'bool'], - 'Couchbase\SearchSortField::field' => ['Couchbase\SearchSortField', 'field'=>'string'], - 'Couchbase\SearchSortField::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], - 'Couchbase\SearchSortField::id' => ['Couchbase\SearchSortId'], - 'Couchbase\SearchSortField::jsonSerialize' => ['mixed'], - 'Couchbase\SearchSortField::missing' => ['', 'missing'=>'string'], - 'Couchbase\SearchSortField::mode' => ['', 'mode'=>'string'], - 'Couchbase\SearchSortField::score' => ['Couchbase\SearchSortScore'], - 'Couchbase\SearchSortField::type' => ['', 'type'=>'string'], - 'Couchbase\SearchSortGeoDistance::__construct' => ['void'], - 'Couchbase\SearchSortGeoDistance::descending' => ['Couchbase\SearchSortGeoDistance', 'descending'=>'bool'], - 'Couchbase\SearchSortGeoDistance::field' => ['Couchbase\SearchSortField', 'field'=>'string'], - 'Couchbase\SearchSortGeoDistance::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], - 'Couchbase\SearchSortGeoDistance::id' => ['Couchbase\SearchSortId'], - 'Couchbase\SearchSortGeoDistance::jsonSerialize' => ['mixed'], - 'Couchbase\SearchSortGeoDistance::score' => ['Couchbase\SearchSortScore'], - 'Couchbase\SearchSortGeoDistance::unit' => ['Couchbase\SearchSortGeoDistance', 'unit'=>'string'], - 'Couchbase\SearchSortId::__construct' => ['void'], - 'Couchbase\SearchSortId::descending' => ['Couchbase\SearchSortId', 'descending'=>'bool'], - 'Couchbase\SearchSortId::field' => ['Couchbase\SearchSortField', 'field'=>'string'], - 'Couchbase\SearchSortId::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], - 'Couchbase\SearchSortId::id' => ['Couchbase\SearchSortId'], - 'Couchbase\SearchSortId::jsonSerialize' => ['mixed'], - 'Couchbase\SearchSortId::score' => ['Couchbase\SearchSortScore'], - 'Couchbase\SearchSortScore::__construct' => ['void'], - 'Couchbase\SearchSortScore::descending' => ['Couchbase\SearchSortScore', 'descending'=>'bool'], - 'Couchbase\SearchSortScore::field' => ['Couchbase\SearchSortField', 'field'=>'string'], - 'Couchbase\SearchSortScore::geoDistance' => ['Couchbase\SearchSortGeoDistance', 'field'=>'string', 'longitude'=>'float', 'latitude'=>'float'], - 'Couchbase\SearchSortScore::id' => ['Couchbase\SearchSortId'], - 'Couchbase\SearchSortScore::jsonSerialize' => ['mixed'], - 'Couchbase\SearchSortScore::score' => ['Couchbase\SearchSortScore'], - 'Couchbase\SpatialViewQuery::__construct' => ['void'], - 'Couchbase\SpatialViewQuery::bbox' => ['Couchbase\SpatialViewQuery', 'bbox'=>'array'], - 'Couchbase\SpatialViewQuery::consistency' => ['Couchbase\SpatialViewQuery', 'consistency'=>'int'], - 'Couchbase\SpatialViewQuery::custom' => ['', 'customParameters'=>'array'], - 'Couchbase\SpatialViewQuery::encode' => ['array'], - 'Couchbase\SpatialViewQuery::endRange' => ['Couchbase\SpatialViewQuery', 'range'=>'array'], - 'Couchbase\SpatialViewQuery::limit' => ['Couchbase\SpatialViewQuery', 'limit'=>'int'], - 'Couchbase\SpatialViewQuery::order' => ['Couchbase\SpatialViewQuery', 'order'=>'int'], - 'Couchbase\SpatialViewQuery::skip' => ['Couchbase\SpatialViewQuery', 'skip'=>'int'], - 'Couchbase\SpatialViewQuery::startRange' => ['Couchbase\SpatialViewQuery', 'range'=>'array'], - 'Couchbase\TermRangeSearchQuery::__construct' => ['void'], - 'Couchbase\TermRangeSearchQuery::boost' => ['Couchbase\TermRangeSearchQuery', 'boost'=>'float'], - 'Couchbase\TermRangeSearchQuery::field' => ['Couchbase\TermRangeSearchQuery', 'field'=>'string'], - 'Couchbase\TermRangeSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\TermRangeSearchQuery::max' => ['Couchbase\TermRangeSearchQuery', 'max'=>'string', 'inclusive='=>'bool'], - 'Couchbase\TermRangeSearchQuery::min' => ['Couchbase\TermRangeSearchQuery', 'min'=>'string', 'inclusive='=>'bool'], - 'Couchbase\TermSearchFacet::__construct' => ['void'], - 'Couchbase\TermSearchFacet::jsonSerialize' => ['array'], - 'Couchbase\TermSearchQuery::__construct' => ['void'], - 'Couchbase\TermSearchQuery::boost' => ['Couchbase\TermSearchQuery', 'boost'=>'float'], - 'Couchbase\TermSearchQuery::field' => ['Couchbase\TermSearchQuery', 'field'=>'string'], - 'Couchbase\TermSearchQuery::fuzziness' => ['Couchbase\TermSearchQuery', 'fuzziness'=>'int'], - 'Couchbase\TermSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\TermSearchQuery::prefixLength' => ['Couchbase\TermSearchQuery', 'prefixLength'=>'int'], - 'Couchbase\UserSettings::fullName' => ['Couchbase\UserSettings', 'fullName'=>'string'], - 'Couchbase\UserSettings::password' => ['Couchbase\UserSettings', 'password'=>'string'], - 'Couchbase\UserSettings::role' => ['Couchbase\UserSettings', 'role'=>'string', 'bucket='=>'string'], - 'Couchbase\ViewQuery::__construct' => ['void'], - 'Couchbase\ViewQuery::consistency' => ['Couchbase\ViewQuery', 'consistency'=>'int'], - 'Couchbase\ViewQuery::custom' => ['Couchbase\ViewQuery', 'customParameters'=>'array'], - 'Couchbase\ViewQuery::encode' => ['array'], - 'Couchbase\ViewQuery::from' => ['Couchbase\ViewQuery', 'designDocumentName'=>'string', 'viewName'=>'string'], - 'Couchbase\ViewQuery::fromSpatial' => ['Couchbase\SpatialViewQuery', 'designDocumentName'=>'string', 'viewName'=>'string'], - 'Couchbase\ViewQuery::group' => ['Couchbase\ViewQuery', 'group'=>'bool'], - 'Couchbase\ViewQuery::groupLevel' => ['Couchbase\ViewQuery', 'groupLevel'=>'int'], - 'Couchbase\ViewQuery::idRange' => ['Couchbase\ViewQuery', 'startKeyDocumentId'=>'string', 'endKeyDocumentId'=>'string'], - 'Couchbase\ViewQuery::key' => ['Couchbase\ViewQuery', 'key'=>'mixed'], - 'Couchbase\ViewQuery::keys' => ['Couchbase\ViewQuery', 'keys'=>'array'], - 'Couchbase\ViewQuery::limit' => ['Couchbase\ViewQuery', 'limit'=>'int'], - 'Couchbase\ViewQuery::order' => ['Couchbase\ViewQuery', 'order'=>'int'], - 'Couchbase\ViewQuery::range' => ['Couchbase\ViewQuery', 'startKey'=>'mixed', 'endKey'=>'mixed', 'inclusiveEnd='=>'bool'], - 'Couchbase\ViewQuery::reduce' => ['Couchbase\ViewQuery', 'reduce'=>'bool'], - 'Couchbase\ViewQuery::skip' => ['Couchbase\ViewQuery', 'skip'=>'int'], - 'Couchbase\ViewQueryEncodable::encode' => ['array'], - 'Couchbase\WildcardSearchQuery::__construct' => ['void'], - 'Couchbase\WildcardSearchQuery::boost' => ['Couchbase\WildcardSearchQuery', 'boost'=>'float'], - 'Couchbase\WildcardSearchQuery::field' => ['Couchbase\WildcardSearchQuery', 'field'=>'string'], - 'Couchbase\WildcardSearchQuery::jsonSerialize' => ['array'], - 'Couchbase\basicDecoderV1' => ['mixed', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int', 'options'=>'array'], - 'Couchbase\basicEncoderV1' => ['array', 'value'=>'mixed', 'options'=>'array'], - 'Couchbase\defaultDecoder' => ['mixed', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int'], - 'Couchbase\defaultEncoder' => ['array', 'value'=>'mixed'], - 'Couchbase\fastlzCompress' => ['string', 'data'=>'string'], - 'Couchbase\fastlzDecompress' => ['string', 'data'=>'string'], - 'Couchbase\passthruDecoder' => ['string', 'bytes'=>'string', 'flags'=>'int', 'datatype'=>'int'], - 'Couchbase\passthruEncoder' => ['array', 'value'=>'string'], - 'Couchbase\zlibCompress' => ['string', 'data'=>'string'], - 'Couchbase\zlibDecompress' => ['string', 'data'=>'string'], - 'Countable::count' => ['int'], - 'DOMAttr::__construct' => ['void', 'name'=>'string', 'value='=>'string'], - 'DOMAttr::getLineNo' => ['int'], - 'DOMAttr::getNodePath' => ['?string'], - 'DOMAttr::hasAttributes' => ['bool'], - 'DOMAttr::hasChildNodes' => ['bool'], - 'DOMAttr::insertBefore' => ['DOMNode|false', 'node'=>'DOMNode', 'child='=>'?DOMNode'], - 'DOMAttr::isDefaultNamespace' => ['bool', 'namespace'=>'string'], - 'DOMAttr::isId' => ['bool'], - 'DOMAttr::isSameNode' => ['bool', 'otherNode'=>'DOMNode'], - 'DOMAttr::isSupported' => ['bool', 'feature'=>'string', 'version'=>'string'], - 'DOMAttr::lookupNamespaceUri' => ['string|null', 'prefix'=>'string|null'], - 'DOMAttr::lookupPrefix' => ['string|null', 'namespace'=>'string'], - 'DOMAttr::normalize' => ['void'], - 'DOMAttr::removeChild' => ['DOMNode|false', 'child'=>'DOMNode'], - 'DOMAttr::replaceChild' => ['DOMNode|false', 'node'=>'DOMNode', 'child'=>'DOMNode'], - 'DOMCdataSection::__construct' => ['void', 'data'=>'string'], - 'DOMCharacterData::appendData' => ['true', 'data'=>'string'], - 'DOMCharacterData::deleteData' => ['bool', 'offset'=>'int', 'count'=>'int'], - 'DOMCharacterData::insertData' => ['bool', 'offset'=>'int', 'data'=>'string'], - 'DOMCharacterData::replaceData' => ['bool', 'offset'=>'int', 'count'=>'int', 'data'=>'string'], - 'DOMCharacterData::substringData' => ['string', 'offset'=>'int', 'count'=>'int'], - 'DOMComment::__construct' => ['void', 'data='=>'string'], - 'DOMDocument::__construct' => ['void', 'version='=>'string', 'encoding='=>'string'], - 'DOMDocument::createAttribute' => ['DOMAttr|false', 'localName'=>'string'], - 'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespace'=>'string|null', 'qualifiedName'=>'string'], - 'DOMDocument::createCDATASection' => ['DOMCDATASection|false', 'data'=>'string'], - 'DOMDocument::createComment' => ['DOMComment|false', 'data'=>'string'], - 'DOMDocument::createDocumentFragment' => ['DOMDocumentFragment|false'], - 'DOMDocument::createElement' => ['DOMElement|false', 'localName'=>'string', 'value='=>'string'], - 'DOMDocument::createElementNS' => ['DOMElement|false', 'namespace'=>'string|null', 'qualifiedName'=>'string', 'value='=>'string'], - 'DOMDocument::createEntityReference' => ['DOMEntityReference|false', 'name'=>'string'], - 'DOMDocument::createProcessingInstruction' => ['DOMProcessingInstruction|false', 'target'=>'string', 'data='=>'string'], - 'DOMDocument::createTextNode' => ['DOMText|false', 'data'=>'string'], - 'DOMDocument::getElementById' => ['?DOMElement', 'elementId'=>'string'], - 'DOMDocument::getElementsByTagName' => ['DOMNodeList', 'qualifiedName'=>'string'], - 'DOMDocument::getElementsByTagNameNS' => ['DOMNodeList', 'namespace'=>'string', 'localName'=>'string'], - 'DOMDocument::importNode' => ['DOMNode|false', 'node'=>'DOMNode', 'deep='=>'bool'], - 'DOMDocument::load' => ['DOMDocument|bool', 'filename'=>'string', 'options='=>'int'], - 'DOMDocument::loadHTML' => ['DOMDocument|bool', 'source'=>'non-empty-string', 'options='=>'int'], - 'DOMDocument::loadHTMLFile' => ['DOMDocument|bool', 'filename'=>'string', 'options='=>'int'], - 'DOMDocument::loadXML' => ['DOMDocument|bool', 'source'=>'non-empty-string', 'options='=>'int'], - 'DOMDocument::normalizeDocument' => ['void'], - 'DOMDocument::registerNodeClass' => ['bool', 'baseClass'=>'string', 'extendedClass'=>'?string'], - 'DOMDocument::relaxNGValidate' => ['bool', 'filename'=>'string'], - 'DOMDocument::relaxNGValidateSource' => ['bool', 'source'=>'string'], - 'DOMDocument::save' => ['int|false', 'filename'=>'string', 'options='=>'int'], - 'DOMDocument::saveHTML' => ['string|false', 'node='=>'?DOMNode'], - 'DOMDocument::saveHTMLFile' => ['int|false', 'filename'=>'string'], - 'DOMDocument::saveXML' => ['string|false', 'node='=>'?DOMNode', 'options='=>'int'], - 'DOMDocument::schemaValidate' => ['bool', 'filename'=>'string', 'flags='=>'int'], - 'DOMDocument::schemaValidateSource' => ['bool', 'source'=>'string', 'flags='=>'int'], - 'DOMDocument::validate' => ['bool'], - 'DOMDocument::xinclude' => ['int', 'options='=>'int'], - 'DOMDocumentFragment::__construct' => ['void'], - 'DOMDocumentFragment::appendXML' => ['bool', 'data'=>'string'], - 'DOMElement::__construct' => ['void', 'qualifiedName'=>'string', 'value='=>'?string', 'namespace='=>'string'], - 'DOMElement::getAttribute' => ['string', 'qualifiedName'=>'string'], - 'DOMElement::getAttributeNS' => ['string', 'namespace'=>'string|null', 'localName'=>'string'], - 'DOMElement::getAttributeNode' => ['DOMAttr', 'qualifiedName'=>'string'], - 'DOMElement::getAttributeNodeNS' => ['DOMAttr', 'namespace'=>'string|null', 'localName'=>'string'], - 'DOMElement::getElementsByTagName' => ['DOMNodeList', 'qualifiedName'=>'string'], - 'DOMElement::getElementsByTagNameNS' => ['DOMNodeList', 'namespace'=>'string|null', 'localName'=>'string'], - 'DOMElement::hasAttribute' => ['bool', 'qualifiedName'=>'string'], - 'DOMElement::hasAttributeNS' => ['bool', 'namespace'=>'string|null', 'localName'=>'string'], - 'DOMElement::removeAttribute' => ['bool', 'qualifiedName'=>'string'], - 'DOMElement::removeAttributeNS' => ['void', 'namespace'=>'string|null', 'localName'=>'string'], - 'DOMElement::removeAttributeNode' => ['DOMAttr|false', 'attr'=>'DOMAttr'], - 'DOMElement::setAttribute' => ['DOMAttr|false', 'qualifiedName'=>'string', 'value'=>'string'], - 'DOMElement::setAttributeNS' => ['void', 'namespace'=>'string|null', 'qualifiedName'=>'string', 'value'=>'string'], - 'DOMElement::setAttributeNode' => ['?DOMAttr', 'attr'=>'DOMAttr'], - 'DOMElement::setAttributeNodeNS' => ['DOMAttr', 'attr'=>'DOMAttr'], - 'DOMElement::setIdAttribute' => ['void', 'qualifiedName'=>'string', 'isId'=>'bool'], - 'DOMElement::setIdAttributeNS' => ['void', 'namespace'=>'string', 'qualifiedName'=>'string', 'isId'=>'bool'], - 'DOMElement::setIdAttributeNode' => ['void', 'attr'=>'DOMAttr', 'isId'=>'bool'], - 'DOMEntityReference::__construct' => ['void', 'name'=>'string'], - 'DOMImplementation::__construct' => ['void'], - 'DOMImplementation::createDocument' => ['DOMDocument|false', 'namespace='=>'string', 'qualifiedName='=>'string', 'doctype='=>'DOMDocumentType'], - 'DOMImplementation::createDocumentType' => ['DOMDocumentType|false', 'qualifiedName'=>'string', 'publicId='=>'string', 'systemId='=>'string'], - 'DOMImplementation::hasFeature' => ['bool', 'feature'=>'string', 'version'=>'string'], - 'DOMNamedNodeMap::count' => ['int'], - 'DOMNamedNodeMap::getNamedItem' => ['?DOMNode', 'qualifiedName'=>'string'], - 'DOMNamedNodeMap::getNamedItemNS' => ['?DOMNode', 'namespace'=>'?string', 'localName'=>'string'], - 'DOMNamedNodeMap::item' => ['?DOMNode', 'index'=>'int'], - 'DOMNode::C14N' => ['string|false', 'exclusive='=>'bool', 'withComments='=>'bool', 'xpath='=>'?array', 'nsPrefixes='=>'?array'], - 'DOMNode::C14NFile' => ['int|false', 'uri'=>'string', 'exclusive='=>'bool', 'withComments='=>'bool', 'xpath='=>'?array', 'nsPrefixes='=>'?array'], - 'DOMNode::appendChild' => ['DOMNode|false', 'node'=>'DOMNode'], - 'DOMNode::cloneNode' => ['DOMNode', 'deep='=>'bool'], - 'DOMNode::getLineNo' => ['int'], - 'DOMNode::getNodePath' => ['?string'], - 'DOMNode::hasAttributes' => ['bool'], - 'DOMNode::hasChildNodes' => ['bool'], - 'DOMNode::insertBefore' => ['DOMNode|false', 'node'=>'DOMNode', 'child='=>'?DOMNode'], - 'DOMNode::isDefaultNamespace' => ['bool', 'namespace'=>'string'], - 'DOMNode::isSameNode' => ['bool', 'otherNode'=>'DOMNode'], - 'DOMNode::isSupported' => ['bool', 'feature'=>'string', 'version'=>'string'], - 'DOMNode::lookupNamespaceURI' => ['string|null', 'prefix'=>'string|null'], - 'DOMNode::lookupPrefix' => ['string|null', 'namespace'=>'string'], - 'DOMNode::normalize' => ['void'], - 'DOMNode::removeChild' => ['DOMNode|false', 'child'=>'DOMNode'], - 'DOMNode::replaceChild' => ['DOMNode|false', 'node'=>'DOMNode', 'child'=>'DOMNode'], - 'DOMNodeList::item' => ['?DOMNode', 'index'=>'int'], - 'DOMProcessingInstruction::__construct' => ['void', 'name'=>'string', 'value='=>'string'], - 'DOMText::__construct' => ['void', 'data='=>'string'], - 'DOMText::isElementContentWhitespace' => ['bool'], - 'DOMText::isWhitespaceInElementContent' => ['bool'], - 'DOMText::splitText' => ['DOMText', 'offset'=>'int'], - 'DOMXPath::__construct' => ['void', 'document'=>'DOMDocument', 'registerNodeNS='=>'bool'], - 'DOMXPath::evaluate' => ['mixed', 'expression'=>'string', 'contextNode='=>'?DOMNode', 'registerNodeNS='=>'bool'], - 'DOMXPath::query' => ['DOMNodeList|false', 'expression'=>'string', 'contextNode='=>'?DOMNode', 'registerNodeNS='=>'bool'], - 'DOMXPath::registerNamespace' => ['bool', 'prefix'=>'string', 'namespace'=>'string'], - 'DOMXPath::registerPhpFunctions' => ['void', 'restrict='=>'array|string|null'], - 'DOTNET::__call' => ['mixed', 'name'=>'string', 'args'=>''], - 'DOTNET::__construct' => ['void', 'assembly_name'=>'string', 'datatype_name'=>'string', 'codepage='=>'int'], - 'DOTNET::__get' => ['mixed', 'name'=>'string'], - 'DOTNET::__set' => ['void', 'name'=>'string', 'value'=>''], - 'DateInterval::__construct' => ['void', 'duration'=>'string'], - 'DateInterval::__set_state' => ['DateInterval', 'array'=>'array'], - 'DateInterval::__wakeup' => ['void'], - 'DateInterval::createFromDateString' => ['DateInterval|false', 'datetime'=>'string'], - 'DateInterval::format' => ['string', 'format'=>'string'], - 'DatePeriod::__construct' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'recur'=>'int', 'options='=>'int'], - 'DatePeriod::__construct\'1' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'end'=>'DateTimeInterface', 'options='=>'int'], - 'DatePeriod::__construct\'2' => ['void', 'iso'=>'string', 'options='=>'int'], - 'DatePeriod::__wakeup' => ['void'], - 'DatePeriod::getDateInterval' => ['DateInterval'], - 'DatePeriod::getEndDate' => ['?DateTimeInterface'], - 'DatePeriod::getStartDate' => ['DateTimeInterface'], - 'DateTime::__construct' => ['void', 'time='=>'string'], - 'DateTime::__construct\'1' => ['void', 'time'=>'?string', 'timezone'=>'?DateTimeZone'], - 'DateTime::__wakeup' => ['void'], - 'DateTime::add' => ['static', 'interval'=>'DateInterval'], - 'DateTime::createFromFormat' => ['static|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?DateTimeZone'], - 'DateTime::diff' => ['DateInterval', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], - 'DateTime::format' => ['string|false', 'format'=>'string'], - 'DateTime::getLastErrors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], - 'DateTime::getOffset' => ['int'], - 'DateTime::getTimestamp' => ['int|false'], - 'DateTime::getTimezone' => ['DateTimeZone|false'], - 'DateTime::modify' => ['static|false', 'modifier'=>'string'], - 'DateTime::setDate' => ['static', 'year'=>'int', 'month'=>'int', 'day'=>'int'], - 'DateTime::setISODate' => ['static', 'year'=>'int', 'week'=>'int', 'dayOfWeek='=>'int'], - 'DateTime::setTime' => ['static', 'hour'=>'int', 'minute'=>'int', 'second='=>'int', 'microsecond='=>'int'], - 'DateTime::setTimestamp' => ['static', 'timestamp'=>'int'], - 'DateTime::setTimezone' => ['static', 'timezone'=>'DateTimeZone'], - 'DateTime::sub' => ['static', 'interval'=>'DateInterval'], - 'DateTimeImmutable::__wakeup' => ['void'], - 'DateTimeImmutable::getLastErrors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], - 'DateTimeInterface::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'], - 'DateTimeInterface::format' => ['string', 'format'=>'string'], - 'DateTimeInterface::getOffset' => ['int'], - 'DateTimeInterface::getTimestamp' => ['int|false'], - 'DateTimeInterface::getTimezone' => ['DateTimeZone|false'], - 'DateTimeZone::__construct' => ['void', 'timezone'=>'non-empty-string'], - 'DateTimeZone::__set_state' => ['DateTimeZone', 'array'=>'array'], - 'DateTimeZone::__wakeup' => ['void'], - 'DateTimeZone::getLocation' => ['array|false'], - 'DateTimeZone::getName' => ['non-empty-string'], - 'DateTimeZone::getOffset' => ['int|false', 'datetime'=>'DateTimeInterface'], - 'DateTimeZone::getTransitions' => ['list|false', 'timestampBegin='=>'int', 'timestampEnd='=>'int'], - 'DateTimeZone::listAbbreviations' => ['array>'], - 'DateTimeZone::listIdentifiers' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'], - 'Directory::close' => ['void', 'dir_handle='=>'resource'], - 'Directory::read' => ['string|false', 'dir_handle='=>'resource'], - 'Directory::rewind' => ['void', 'dir_handle='=>'resource'], - 'DirectoryIterator::__construct' => ['void', 'directory'=>'string'], - 'DirectoryIterator::__toString' => ['string'], - 'DirectoryIterator::current' => ['DirectoryIterator'], - 'DirectoryIterator::getATime' => ['int'], - 'DirectoryIterator::getBasename' => ['string', 'suffix='=>'string'], - 'DirectoryIterator::getCTime' => ['int'], - 'DirectoryIterator::getExtension' => ['string'], - 'DirectoryIterator::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'DirectoryIterator::getFilename' => ['string'], - 'DirectoryIterator::getGroup' => ['int'], - 'DirectoryIterator::getInode' => ['int'], - 'DirectoryIterator::getLinkTarget' => ['string'], - 'DirectoryIterator::getMTime' => ['int'], - 'DirectoryIterator::getOwner' => ['int'], - 'DirectoryIterator::getPath' => ['string'], - 'DirectoryIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'class-string'], - 'DirectoryIterator::getPathname' => ['string'], - 'DirectoryIterator::getPerms' => ['int'], - 'DirectoryIterator::getRealPath' => ['non-falsy-string'], - 'DirectoryIterator::getSize' => ['int'], - 'DirectoryIterator::getType' => ['string'], - 'DirectoryIterator::isDir' => ['bool'], - 'DirectoryIterator::isDot' => ['bool'], - 'DirectoryIterator::isExecutable' => ['bool'], - 'DirectoryIterator::isFile' => ['bool'], - 'DirectoryIterator::isLink' => ['bool'], - 'DirectoryIterator::isReadable' => ['bool'], - 'DirectoryIterator::isWritable' => ['bool'], - 'DirectoryIterator::key' => ['string'], - 'DirectoryIterator::next' => ['void'], - 'DirectoryIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'DirectoryIterator::rewind' => ['void'], - 'DirectoryIterator::seek' => ['void', 'offset'=>'int'], - 'DirectoryIterator::setFileClass' => ['void', 'class='=>'class-string'], - 'DirectoryIterator::setInfoClass' => ['void', 'class='=>'class-string'], - 'DirectoryIterator::valid' => ['bool'], - 'DomAttribute::name' => ['string'], - 'DomAttribute::set_value' => ['bool', 'content'=>'string'], - 'DomAttribute::specified' => ['bool'], - 'DomAttribute::value' => ['string'], - 'DomXsltStylesheet::process' => ['DomDocument', 'xml_doc'=>'DOMDocument', 'xslt_params='=>'array', 'is_xpath_param='=>'bool', 'profile_filename='=>'string'], - 'DomXsltStylesheet::result_dump_file' => ['string', 'xmldoc'=>'DOMDocument', 'filename'=>'string'], - 'DomXsltStylesheet::result_dump_mem' => ['string', 'xmldoc'=>'DOMDocument'], - 'DomainException::__clone' => ['void'], - 'DomainException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'DomainException::__toString' => ['string'], - 'DomainException::__wakeup' => ['void'], - 'DomainException::getCode' => ['int'], - 'DomainException::getFile' => ['string'], - 'DomainException::getLine' => ['int'], - 'DomainException::getMessage' => ['string'], - 'DomainException::getPrevious' => ['?Throwable'], - 'DomainException::getTrace' => ['list\',args?:array}>'], - 'DomainException::getTraceAsString' => ['string'], - 'Ds\Collection::clear' => ['void'], - 'Ds\Collection::copy' => ['Ds\Collection'], - 'Ds\Collection::isEmpty' => ['bool'], - 'Ds\Collection::toArray' => ['array'], - 'Ds\Deque::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Deque::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Deque::apply' => ['void', 'callback'=>'callable'], - 'Ds\Deque::capacity' => ['int'], - 'Ds\Deque::clear' => ['void'], - 'Ds\Deque::contains' => ['bool', '...values='=>'mixed'], - 'Ds\Deque::copy' => ['Ds\Deque'], - 'Ds\Deque::count' => ['int'], - 'Ds\Deque::filter' => ['Ds\Deque', 'callback='=>'callable'], - 'Ds\Deque::find' => ['mixed', 'value'=>'mixed'], - 'Ds\Deque::first' => ['mixed'], - 'Ds\Deque::get' => ['void', 'index'=>'int'], - 'Ds\Deque::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], - 'Ds\Deque::isEmpty' => ['bool'], - 'Ds\Deque::join' => ['string', 'glue='=>'string'], - 'Ds\Deque::jsonSerialize' => ['array'], - 'Ds\Deque::last' => ['mixed'], - 'Ds\Deque::map' => ['Ds\Deque', 'callback'=>'callable'], - 'Ds\Deque::merge' => ['Ds\Deque', 'values'=>'mixed'], - 'Ds\Deque::pop' => ['mixed'], - 'Ds\Deque::push' => ['void', '...values='=>'mixed'], - 'Ds\Deque::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], - 'Ds\Deque::remove' => ['mixed', 'index'=>'int'], - 'Ds\Deque::reverse' => ['void'], - 'Ds\Deque::reversed' => ['Ds\Deque'], - 'Ds\Deque::rotate' => ['void', 'rotations'=>'int'], - 'Ds\Deque::set' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'Ds\Deque::shift' => ['mixed'], - 'Ds\Deque::slice' => ['Ds\Deque', 'index'=>'int', 'length='=>'?int'], - 'Ds\Deque::sort' => ['void', 'comparator='=>'callable'], - 'Ds\Deque::sorted' => ['Ds\Deque', 'comparator='=>'callable'], - 'Ds\Deque::sum' => ['int|float'], - 'Ds\Deque::toArray' => ['array'], - 'Ds\Deque::unshift' => ['void', '...values='=>'mixed'], - 'Ds\Hashable::equals' => ['bool', 'object'=>'mixed'], - 'Ds\Hashable::hash' => ['mixed'], - 'Ds\Map::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Map::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Map::apply' => ['void', 'callback'=>'callable'], - 'Ds\Map::capacity' => ['int'], - 'Ds\Map::clear' => ['void'], - 'Ds\Map::copy' => ['Ds\Map'], - 'Ds\Map::count' => ['int'], - 'Ds\Map::diff' => ['Ds\Map', 'map'=>'Ds\Map'], - 'Ds\Map::filter' => ['Ds\Map', 'callback='=>'callable'], - 'Ds\Map::first' => ['Ds\Pair'], - 'Ds\Map::get' => ['mixed', 'key'=>'mixed', 'default='=>'mixed'], - 'Ds\Map::hasKey' => ['bool', 'key'=>'mixed'], - 'Ds\Map::hasValue' => ['bool', 'value'=>'mixed'], - 'Ds\Map::intersect' => ['Ds\Map', 'map'=>'Ds\Map'], - 'Ds\Map::isEmpty' => ['bool'], - 'Ds\Map::jsonSerialize' => ['array'], - 'Ds\Map::keys' => ['Ds\Set'], - 'Ds\Map::ksort' => ['void', 'comparator='=>'callable'], - 'Ds\Map::ksorted' => ['Ds\Map', 'comparator='=>'callable'], - 'Ds\Map::last' => ['Ds\Pair'], - 'Ds\Map::map' => ['Ds\Map', 'callback'=>'callable'], - 'Ds\Map::merge' => ['Ds\Map', 'values'=>'mixed'], - 'Ds\Map::pairs' => ['Ds\Sequence'], - 'Ds\Map::put' => ['void', 'key'=>'mixed', 'value'=>'mixed'], - 'Ds\Map::putAll' => ['void', 'values'=>'mixed'], - 'Ds\Map::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], - 'Ds\Map::remove' => ['mixed', 'key'=>'mixed', 'default='=>'mixed'], - 'Ds\Map::reverse' => ['void'], - 'Ds\Map::reversed' => ['Ds\Map'], - 'Ds\Map::skip' => ['Ds\Pair', 'position'=>'int'], - 'Ds\Map::slice' => ['Ds\Map', 'index'=>'int', 'length='=>'?int'], - 'Ds\Map::sort' => ['void', 'comparator='=>'callable'], - 'Ds\Map::sorted' => ['Ds\Map', 'comparator='=>'callable'], - 'Ds\Map::sum' => ['int|float'], - 'Ds\Map::toArray' => ['array'], - 'Ds\Map::union' => ['Ds\Map', 'map'=>'Ds\Map'], - 'Ds\Map::values' => ['Ds\Sequence'], - 'Ds\Map::xor' => ['Ds\Map', 'map'=>'Ds\Map'], - 'Ds\Pair::__construct' => ['void', 'key='=>'mixed', 'value='=>'mixed'], - 'Ds\Pair::clear' => ['void'], - 'Ds\Pair::copy' => ['Ds\Pair'], - 'Ds\Pair::isEmpty' => ['bool'], - 'Ds\Pair::jsonSerialize' => ['array'], - 'Ds\Pair::toArray' => ['array'], - 'Ds\PriorityQueue::__construct' => ['void'], - 'Ds\PriorityQueue::allocate' => ['void', 'capacity'=>'int'], - 'Ds\PriorityQueue::capacity' => ['int'], - 'Ds\PriorityQueue::clear' => ['void'], - 'Ds\PriorityQueue::copy' => ['Ds\PriorityQueue'], - 'Ds\PriorityQueue::count' => ['int'], - 'Ds\PriorityQueue::isEmpty' => ['bool'], - 'Ds\PriorityQueue::jsonSerialize' => ['array'], - 'Ds\PriorityQueue::peek' => ['mixed'], - 'Ds\PriorityQueue::pop' => ['mixed'], - 'Ds\PriorityQueue::push' => ['void', 'value'=>'mixed', 'priority'=>'int'], - 'Ds\PriorityQueue::toArray' => ['array'], - 'Ds\Queue::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Queue::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Queue::capacity' => ['int'], - 'Ds\Queue::clear' => ['void'], - 'Ds\Queue::copy' => ['Ds\Queue'], - 'Ds\Queue::count' => ['int'], - 'Ds\Queue::isEmpty' => ['bool'], - 'Ds\Queue::jsonSerialize' => ['array'], - 'Ds\Queue::peek' => ['mixed'], - 'Ds\Queue::pop' => ['mixed'], - 'Ds\Queue::push' => ['void', '...values='=>'mixed'], - 'Ds\Queue::toArray' => ['array'], - 'Ds\Sequence::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Sequence::apply' => ['void', 'callback'=>'callable'], - 'Ds\Sequence::capacity' => ['int'], - 'Ds\Sequence::contains' => ['bool', '...values='=>'mixed'], - 'Ds\Sequence::filter' => ['Ds\Sequence', 'callback='=>'callable'], - 'Ds\Sequence::find' => ['mixed', 'value'=>'mixed'], - 'Ds\Sequence::first' => ['mixed'], - 'Ds\Sequence::get' => ['mixed', 'index'=>'int'], - 'Ds\Sequence::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], - 'Ds\Sequence::join' => ['string', 'glue='=>'string'], - 'Ds\Sequence::last' => ['void'], - 'Ds\Sequence::map' => ['Ds\Sequence', 'callback'=>'callable'], - 'Ds\Sequence::merge' => ['Ds\Sequence', 'values'=>'mixed'], - 'Ds\Sequence::pop' => ['mixed'], - 'Ds\Sequence::push' => ['void', '...values='=>'mixed'], - 'Ds\Sequence::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], - 'Ds\Sequence::remove' => ['mixed', 'index'=>'int'], - 'Ds\Sequence::reverse' => ['void'], - 'Ds\Sequence::reversed' => ['Ds\Sequence'], - 'Ds\Sequence::rotate' => ['void', 'rotations'=>'int'], - 'Ds\Sequence::set' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'Ds\Sequence::shift' => ['mixed'], - 'Ds\Sequence::slice' => ['Ds\Sequence', 'index'=>'int', 'length='=>'?int'], - 'Ds\Sequence::sort' => ['void', 'comparator='=>'callable'], - 'Ds\Sequence::sorted' => ['Ds\Sequence', 'comparator='=>'callable'], - 'Ds\Sequence::sum' => ['int|float'], - 'Ds\Sequence::unshift' => ['void', '...values='=>'mixed'], - 'Ds\Set::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Set::add' => ['void', '...values='=>'mixed'], - 'Ds\Set::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Set::capacity' => ['int'], - 'Ds\Set::clear' => ['void'], - 'Ds\Set::contains' => ['bool', '...values='=>'mixed'], - 'Ds\Set::copy' => ['Ds\Set'], - 'Ds\Set::count' => ['int'], - 'Ds\Set::diff' => ['Ds\Set', 'set'=>'Ds\Set'], - 'Ds\Set::filter' => ['Ds\Set', 'callback='=>'callable'], - 'Ds\Set::first' => ['mixed'], - 'Ds\Set::get' => ['mixed', 'index'=>'int'], - 'Ds\Set::intersect' => ['Ds\Set', 'set'=>'Ds\Set'], - 'Ds\Set::isEmpty' => ['bool'], - 'Ds\Set::join' => ['string', 'glue='=>'string'], - 'Ds\Set::jsonSerialize' => ['array'], - 'Ds\Set::last' => ['mixed'], - 'Ds\Set::merge' => ['Ds\Set', 'values'=>'mixed'], - 'Ds\Set::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], - 'Ds\Set::remove' => ['void', '...values='=>'mixed'], - 'Ds\Set::reverse' => ['void'], - 'Ds\Set::reversed' => ['Ds\Set'], - 'Ds\Set::slice' => ['Ds\Set', 'index'=>'int', 'length='=>'?int'], - 'Ds\Set::sort' => ['void', 'comparator='=>'callable'], - 'Ds\Set::sorted' => ['Ds\Set', 'comparator='=>'callable'], - 'Ds\Set::sum' => ['int|float'], - 'Ds\Set::toArray' => ['array'], - 'Ds\Set::union' => ['Ds\Set', 'set'=>'Ds\Set'], - 'Ds\Set::xor' => ['Ds\Set', 'set'=>'Ds\Set'], - 'Ds\Stack::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Stack::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Stack::capacity' => ['int'], - 'Ds\Stack::clear' => ['void'], - 'Ds\Stack::copy' => ['Ds\Stack'], - 'Ds\Stack::count' => ['int'], - 'Ds\Stack::isEmpty' => ['bool'], - 'Ds\Stack::jsonSerialize' => ['array'], - 'Ds\Stack::peek' => ['mixed'], - 'Ds\Stack::pop' => ['mixed'], - 'Ds\Stack::push' => ['void', '...values='=>'mixed'], - 'Ds\Stack::toArray' => ['array'], - 'Ds\Vector::__construct' => ['void', 'values='=>'mixed'], - 'Ds\Vector::allocate' => ['void', 'capacity'=>'int'], - 'Ds\Vector::apply' => ['void', 'callback'=>'callable'], - 'Ds\Vector::capacity' => ['int'], - 'Ds\Vector::clear' => ['void'], - 'Ds\Vector::contains' => ['bool', '...values='=>'mixed'], - 'Ds\Vector::copy' => ['Ds\Vector'], - 'Ds\Vector::count' => ['int'], - 'Ds\Vector::filter' => ['Ds\Vector', 'callback='=>'callable'], - 'Ds\Vector::find' => ['mixed', 'value'=>'mixed'], - 'Ds\Vector::first' => ['mixed'], - 'Ds\Vector::get' => ['mixed', 'index'=>'int'], - 'Ds\Vector::insert' => ['void', 'index'=>'int', '...values='=>'mixed'], - 'Ds\Vector::isEmpty' => ['bool'], - 'Ds\Vector::join' => ['string', 'glue='=>'string'], - 'Ds\Vector::jsonSerialize' => ['array'], - 'Ds\Vector::last' => ['mixed'], - 'Ds\Vector::map' => ['Ds\Vector', 'callback'=>'callable'], - 'Ds\Vector::merge' => ['Ds\Vector', 'values'=>'mixed'], - 'Ds\Vector::pop' => ['mixed'], - 'Ds\Vector::push' => ['void', '...values='=>'mixed'], - 'Ds\Vector::reduce' => ['mixed', 'callback'=>'callable', 'initial='=>'mixed'], - 'Ds\Vector::remove' => ['mixed', 'index'=>'int'], - 'Ds\Vector::reverse' => ['void'], - 'Ds\Vector::reversed' => ['Ds\Vector'], - 'Ds\Vector::rotate' => ['void', 'rotations'=>'int'], - 'Ds\Vector::set' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'Ds\Vector::shift' => ['mixed'], - 'Ds\Vector::slice' => ['Ds\Vector', 'index'=>'int', 'length='=>'?int'], - 'Ds\Vector::sort' => ['void', 'comparator='=>'callable'], - 'Ds\Vector::sorted' => ['Ds\Vector', 'comparator='=>'callable'], - 'Ds\Vector::sum' => ['int|float'], - 'Ds\Vector::toArray' => ['array'], - 'Ds\Vector::unshift' => ['void', '...values='=>'mixed'], - 'EmptyIterator::current' => ['never'], - 'EmptyIterator::key' => ['never'], - 'EmptyIterator::next' => ['void'], - 'EmptyIterator::rewind' => ['void'], - 'EmptyIterator::valid' => ['false'], - 'Error::__clone' => ['void'], - 'Error::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'Error::__toString' => ['string'], - 'Error::getCode' => ['int'], - 'Error::getFile' => ['string'], - 'Error::getLine' => ['int'], - 'Error::getMessage' => ['string'], - 'Error::getPrevious' => ['?Throwable'], - 'Error::getTrace' => ['list\',args?:array}>'], - 'Error::getTraceAsString' => ['string'], - 'ErrorException::__clone' => ['void'], - 'ErrorException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'severity='=>'int', 'filename='=>'string', 'line='=>'int', 'previous='=>'?Throwable'], - 'ErrorException::__toString' => ['string'], - 'ErrorException::getCode' => ['int'], - 'ErrorException::getFile' => ['string'], - 'ErrorException::getLine' => ['int'], - 'ErrorException::getMessage' => ['string'], - 'ErrorException::getPrevious' => ['?Throwable'], - 'ErrorException::getSeverity' => ['int'], - 'ErrorException::getTrace' => ['list\',args?:array}>'], - 'ErrorException::getTraceAsString' => ['string'], - 'Ev::backend' => ['int'], - 'Ev::depth' => ['int'], - 'Ev::embeddableBackends' => ['int'], - 'Ev::feedSignal' => ['void', 'signum'=>'int'], - 'Ev::feedSignalEvent' => ['void', 'signum'=>'int'], - 'Ev::iteration' => ['int'], - 'Ev::now' => ['float'], - 'Ev::nowUpdate' => ['void'], - 'Ev::recommendedBackends' => ['int'], - 'Ev::resume' => ['void'], - 'Ev::run' => ['void', 'flags='=>'int'], - 'Ev::sleep' => ['void', 'seconds'=>'float'], - 'Ev::stop' => ['void', 'how='=>'int'], - 'Ev::supportedBackends' => ['int'], - 'Ev::suspend' => ['void'], - 'Ev::time' => ['float'], - 'Ev::verify' => ['void'], - 'EvCheck::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvCheck::clear' => ['int'], - 'EvCheck::createStopped' => ['EvCheck', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvCheck::feed' => ['void', 'events'=>'int'], - 'EvCheck::getLoop' => ['EvLoop'], - 'EvCheck::invoke' => ['void', 'events'=>'int'], - 'EvCheck::keepAlive' => ['void', 'value'=>'bool'], - 'EvCheck::setCallback' => ['void', 'callback'=>'callable'], - 'EvCheck::start' => ['void'], - 'EvCheck::stop' => ['void'], - 'EvChild::__construct' => ['void', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvChild::clear' => ['int'], - 'EvChild::createStopped' => ['EvChild', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvChild::feed' => ['void', 'events'=>'int'], - 'EvChild::getLoop' => ['EvLoop'], - 'EvChild::invoke' => ['void', 'events'=>'int'], - 'EvChild::keepAlive' => ['void', 'value'=>'bool'], - 'EvChild::set' => ['void', 'pid'=>'int', 'trace'=>'bool'], - 'EvChild::setCallback' => ['void', 'callback'=>'callable'], - 'EvChild::start' => ['void'], - 'EvChild::stop' => ['void'], - 'EvEmbed::__construct' => ['void', 'other'=>'object', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvEmbed::clear' => ['int'], - 'EvEmbed::createStopped' => ['EvEmbed', 'other'=>'object', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvEmbed::feed' => ['void', 'events'=>'int'], - 'EvEmbed::getLoop' => ['EvLoop'], - 'EvEmbed::invoke' => ['void', 'events'=>'int'], - 'EvEmbed::keepAlive' => ['void', 'value'=>'bool'], - 'EvEmbed::set' => ['void', 'other'=>'object'], - 'EvEmbed::setCallback' => ['void', 'callback'=>'callable'], - 'EvEmbed::start' => ['void'], - 'EvEmbed::stop' => ['void'], - 'EvEmbed::sweep' => ['void'], - 'EvFork::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvFork::clear' => ['int'], - 'EvFork::createStopped' => ['EvFork', 'callback'=>'callable', 'data='=>'string', 'priority='=>'string'], - 'EvFork::feed' => ['void', 'events'=>'int'], - 'EvFork::getLoop' => ['EvLoop'], - 'EvFork::invoke' => ['void', 'events'=>'int'], - 'EvFork::keepAlive' => ['void', 'value'=>'bool'], - 'EvFork::setCallback' => ['void', 'callback'=>'callable'], - 'EvFork::start' => ['void'], - 'EvFork::stop' => ['void'], - 'EvIdle::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvIdle::clear' => ['int'], - 'EvIdle::createStopped' => ['EvIdle', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvIdle::feed' => ['void', 'events'=>'int'], - 'EvIdle::getLoop' => ['EvLoop'], - 'EvIdle::invoke' => ['void', 'events'=>'int'], - 'EvIdle::keepAlive' => ['void', 'value'=>'bool'], - 'EvIdle::setCallback' => ['void', 'callback'=>'callable'], - 'EvIdle::start' => ['void'], - 'EvIdle::stop' => ['void'], - 'EvIo::__construct' => ['void', 'fd'=>'mixed', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvIo::clear' => ['int'], - 'EvIo::createStopped' => ['EvIo', 'fd'=>'resource', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvIo::feed' => ['void', 'events'=>'int'], - 'EvIo::getLoop' => ['EvLoop'], - 'EvIo::invoke' => ['void', 'events'=>'int'], - 'EvIo::keepAlive' => ['void', 'value'=>'bool'], - 'EvIo::set' => ['void', 'fd'=>'resource', 'events'=>'int'], - 'EvIo::setCallback' => ['void', 'callback'=>'callable'], - 'EvIo::start' => ['void'], - 'EvIo::stop' => ['void'], - 'EvLoop::__construct' => ['void', 'flags='=>'int', 'data='=>'mixed', 'io_interval='=>'float', 'timeout_interval='=>'float'], - 'EvLoop::backend' => ['int'], - 'EvLoop::check' => ['EvCheck', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::child' => ['EvChild', 'pid'=>'int', 'trace'=>'bool', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::defaultLoop' => ['EvLoop', 'flags='=>'int', 'data='=>'mixed', 'io_interval='=>'float', 'timeout_interval='=>'float'], - 'EvLoop::embed' => ['EvEmbed', 'other'=>'EvLoop', 'callback='=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::fork' => ['EvFork', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::idle' => ['EvIdle', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::invokePending' => ['void'], - 'EvLoop::io' => ['EvIo', 'fd'=>'resource', 'events'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::loopFork' => ['void'], - 'EvLoop::now' => ['float'], - 'EvLoop::nowUpdate' => ['void'], - 'EvLoop::periodic' => ['EvPeriodic', 'offset'=>'float', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::prepare' => ['EvPrepare', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::resume' => ['void'], - 'EvLoop::run' => ['void', 'flags='=>'int'], - 'EvLoop::signal' => ['EvSignal', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::stat' => ['EvStat', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::stop' => ['void', 'how='=>'int'], - 'EvLoop::suspend' => ['void'], - 'EvLoop::timer' => ['EvTimer', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvLoop::verify' => ['void'], - 'EvPeriodic::__construct' => ['void', 'offset'=>'float', 'interval'=>'string', 'reschedule_cb'=>'callable', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvPeriodic::again' => ['void'], - 'EvPeriodic::at' => ['float'], - 'EvPeriodic::clear' => ['int'], - 'EvPeriodic::createStopped' => ['EvPeriodic', 'offset'=>'float', 'interval'=>'float', 'reschedule_cb'=>'callable', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvPeriodic::feed' => ['void', 'events'=>'int'], - 'EvPeriodic::getLoop' => ['EvLoop'], - 'EvPeriodic::invoke' => ['void', 'events'=>'int'], - 'EvPeriodic::keepAlive' => ['void', 'value'=>'bool'], - 'EvPeriodic::set' => ['void', 'offset'=>'float', 'interval'=>'float'], - 'EvPeriodic::setCallback' => ['void', 'callback'=>'callable'], - 'EvPeriodic::start' => ['void'], - 'EvPeriodic::stop' => ['void'], - 'EvPrepare::__construct' => ['void', 'callback'=>'string', 'data='=>'string', 'priority='=>'string'], - 'EvPrepare::clear' => ['int'], - 'EvPrepare::createStopped' => ['EvPrepare', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvPrepare::feed' => ['void', 'events'=>'int'], - 'EvPrepare::getLoop' => ['EvLoop'], - 'EvPrepare::invoke' => ['void', 'events'=>'int'], - 'EvPrepare::keepAlive' => ['void', 'value'=>'bool'], - 'EvPrepare::setCallback' => ['void', 'callback'=>'callable'], - 'EvPrepare::start' => ['void'], - 'EvPrepare::stop' => ['void'], - 'EvSignal::__construct' => ['void', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvSignal::clear' => ['int'], - 'EvSignal::createStopped' => ['EvSignal', 'signum'=>'int', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvSignal::feed' => ['void', 'events'=>'int'], - 'EvSignal::getLoop' => ['EvLoop'], - 'EvSignal::invoke' => ['void', 'events'=>'int'], - 'EvSignal::keepAlive' => ['void', 'value'=>'bool'], - 'EvSignal::set' => ['void', 'signum'=>'int'], - 'EvSignal::setCallback' => ['void', 'callback'=>'callable'], - 'EvSignal::start' => ['void'], - 'EvSignal::stop' => ['void'], - 'EvStat::__construct' => ['void', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvStat::attr' => ['array'], - 'EvStat::clear' => ['int'], - 'EvStat::createStopped' => ['EvStat', 'path'=>'string', 'interval'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvStat::feed' => ['void', 'events'=>'int'], - 'EvStat::getLoop' => ['EvLoop'], - 'EvStat::invoke' => ['void', 'events'=>'int'], - 'EvStat::keepAlive' => ['void', 'value'=>'bool'], - 'EvStat::prev' => ['array'], - 'EvStat::set' => ['void', 'path'=>'string', 'interval'=>'float'], - 'EvStat::setCallback' => ['void', 'callback'=>'callable'], - 'EvStat::start' => ['void'], - 'EvStat::stat' => ['bool'], - 'EvStat::stop' => ['void'], - 'EvTimer::__construct' => ['void', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvTimer::again' => ['void'], - 'EvTimer::clear' => ['int'], - 'EvTimer::createStopped' => ['EvTimer', 'after'=>'float', 'repeat'=>'float', 'callback'=>'callable', 'data='=>'mixed', 'priority='=>'int'], - 'EvTimer::feed' => ['void', 'events'=>'int'], - 'EvTimer::getLoop' => ['EvLoop'], - 'EvTimer::invoke' => ['void', 'events'=>'int'], - 'EvTimer::keepAlive' => ['void', 'value'=>'bool'], - 'EvTimer::set' => ['void', 'after'=>'float', 'repeat'=>'float'], - 'EvTimer::setCallback' => ['void', 'callback'=>'callable'], - 'EvTimer::start' => ['void'], - 'EvTimer::stop' => ['void'], - 'EvWatcher::__construct' => ['void'], - 'EvWatcher::clear' => ['int'], - 'EvWatcher::feed' => ['void', 'revents'=>'int'], - 'EvWatcher::getLoop' => ['EvLoop'], - 'EvWatcher::invoke' => ['void', 'revents'=>'int'], - 'EvWatcher::keepalive' => ['bool', 'value='=>'bool'], - 'EvWatcher::setCallback' => ['void', 'callback'=>'callable'], - 'EvWatcher::start' => ['void'], - 'EvWatcher::stop' => ['void'], - 'Event::__construct' => ['void', 'base'=>'EventBase', 'fd'=>'mixed', 'what'=>'int', 'cb'=>'callable', 'arg='=>'mixed'], - 'Event::add' => ['bool', 'timeout='=>'float'], - 'Event::addSignal' => ['bool', 'timeout='=>'float'], - 'Event::addTimer' => ['bool', 'timeout='=>'float'], - 'Event::del' => ['bool'], - 'Event::delSignal' => ['bool'], - 'Event::delTimer' => ['bool'], - 'Event::free' => ['void'], - 'Event::getSupportedMethods' => ['array'], - 'Event::pending' => ['bool', 'flags'=>'int'], - 'Event::set' => ['bool', 'base'=>'EventBase', 'fd'=>'mixed', 'what='=>'int', 'cb='=>'callable', 'arg='=>'mixed'], - 'Event::setPriority' => ['bool', 'priority'=>'int'], - 'Event::setTimer' => ['bool', 'base'=>'EventBase', 'cb'=>'callable', 'arg='=>'mixed'], - 'Event::signal' => ['Event', 'base'=>'EventBase', 'signum'=>'int', 'cb'=>'callable', 'arg='=>'mixed'], - 'Event::timer' => ['Event', 'base'=>'EventBase', 'cb'=>'callable', 'arg='=>'mixed'], - 'EventBase::__construct' => ['void', 'cfg='=>'EventConfig'], - 'EventBase::dispatch' => ['void'], - 'EventBase::exit' => ['bool', 'timeout='=>'float'], - 'EventBase::free' => ['void'], - 'EventBase::getFeatures' => ['int'], - 'EventBase::getMethod' => ['string', 'cfg='=>'EventConfig'], - 'EventBase::getTimeOfDayCached' => ['float'], - 'EventBase::gotExit' => ['bool'], - 'EventBase::gotStop' => ['bool'], - 'EventBase::loop' => ['bool', 'flags='=>'int'], - 'EventBase::priorityInit' => ['bool', 'n_priorities'=>'int'], - 'EventBase::reInit' => ['bool'], - 'EventBase::stop' => ['bool'], - 'EventBuffer::__construct' => ['void'], - 'EventBuffer::add' => ['bool', 'data'=>'string'], - 'EventBuffer::addBuffer' => ['bool', 'buf'=>'EventBuffer'], - 'EventBuffer::appendFrom' => ['int', 'buf'=>'EventBuffer', 'length'=>'int'], - 'EventBuffer::copyout' => ['int', '&w_data'=>'string', 'max_bytes'=>'int'], - 'EventBuffer::drain' => ['bool', 'length'=>'int'], - 'EventBuffer::enableLocking' => ['void'], - 'EventBuffer::expand' => ['bool', 'length'=>'int'], - 'EventBuffer::freeze' => ['bool', 'at_front'=>'bool'], - 'EventBuffer::lock' => ['void'], - 'EventBuffer::prepend' => ['bool', 'data'=>'string'], - 'EventBuffer::prependBuffer' => ['bool', 'buf'=>'EventBuffer'], - 'EventBuffer::pullup' => ['string', 'size'=>'int'], - 'EventBuffer::read' => ['string', 'max_bytes'=>'int'], - 'EventBuffer::readFrom' => ['int', 'fd'=>'mixed', 'howmuch'=>'int'], - 'EventBuffer::readLine' => ['string', 'eol_style'=>'int'], - 'EventBuffer::search' => ['mixed', 'what'=>'string', 'start='=>'int', 'end='=>'int'], - 'EventBuffer::searchEol' => ['mixed', 'start='=>'int', 'eol_style='=>'int'], - 'EventBuffer::substr' => ['string', 'start'=>'int', 'length='=>'int'], - 'EventBuffer::unfreeze' => ['bool', 'at_front'=>'bool'], - 'EventBuffer::unlock' => ['bool'], - 'EventBuffer::write' => ['int', 'fd'=>'mixed', 'howmuch='=>'int'], - 'EventBufferEvent::__construct' => ['void', 'base'=>'EventBase', 'socket='=>'mixed', 'options='=>'int', 'readcb='=>'callable', 'writecb='=>'callable', 'eventcb='=>'callable'], - 'EventBufferEvent::close' => ['void'], - 'EventBufferEvent::connect' => ['bool', 'addr'=>'string'], - 'EventBufferEvent::connectHost' => ['bool', 'dns_base'=>'EventDnsBase', 'hostname'=>'string', 'port'=>'int', 'family='=>'int'], - 'EventBufferEvent::createPair' => ['array', 'base'=>'EventBase', 'options='=>'int'], - 'EventBufferEvent::disable' => ['bool', 'events'=>'int'], - 'EventBufferEvent::enable' => ['bool', 'events'=>'int'], - 'EventBufferEvent::free' => ['void'], - 'EventBufferEvent::getDnsErrorString' => ['string'], - 'EventBufferEvent::getEnabled' => ['int'], - 'EventBufferEvent::getInput' => ['EventBuffer'], - 'EventBufferEvent::getOutput' => ['EventBuffer'], - 'EventBufferEvent::read' => ['string', 'size'=>'int'], - 'EventBufferEvent::readBuffer' => ['bool', 'buf'=>'EventBuffer'], - 'EventBufferEvent::setCallbacks' => ['void', 'readcb'=>'callable', 'writecb'=>'callable', 'eventcb'=>'callable', 'arg='=>'string'], - 'EventBufferEvent::setPriority' => ['bool', 'priority'=>'int'], - 'EventBufferEvent::setTimeouts' => ['bool', 'timeout_read'=>'float', 'timeout_write'=>'float'], - 'EventBufferEvent::setWatermark' => ['void', 'events'=>'int', 'lowmark'=>'int', 'highmark'=>'int'], - 'EventBufferEvent::sslError' => ['string'], - 'EventBufferEvent::sslFilter' => ['EventBufferEvent', 'base'=>'EventBase', 'underlying'=>'EventBufferEvent', 'ctx'=>'EventSslContext', 'state'=>'int', 'options='=>'int'], - 'EventBufferEvent::sslGetCipherInfo' => ['string'], - 'EventBufferEvent::sslGetCipherName' => ['string'], - 'EventBufferEvent::sslGetCipherVersion' => ['string'], - 'EventBufferEvent::sslGetProtocol' => ['string'], - 'EventBufferEvent::sslRenegotiate' => ['void'], - 'EventBufferEvent::sslSocket' => ['EventBufferEvent', 'base'=>'EventBase', 'socket'=>'mixed', 'ctx'=>'EventSslContext', 'state'=>'int', 'options='=>'int'], - 'EventBufferEvent::write' => ['bool', 'data'=>'string'], - 'EventBufferEvent::writeBuffer' => ['bool', 'buf'=>'EventBuffer'], - 'EventConfig::__construct' => ['void'], - 'EventConfig::avoidMethod' => ['bool', 'method'=>'string'], - 'EventConfig::requireFeatures' => ['bool', 'feature'=>'int'], - 'EventConfig::setMaxDispatchInterval' => ['void', 'max_interval'=>'int', 'max_callbacks'=>'int', 'min_priority'=>'int'], - 'EventDnsBase::__construct' => ['void', 'base'=>'EventBase', 'initialize'=>'bool'], - 'EventDnsBase::addNameserverIp' => ['bool', 'ip'=>'string'], - 'EventDnsBase::addSearch' => ['void', 'domain'=>'string'], - 'EventDnsBase::clearSearch' => ['void'], - 'EventDnsBase::countNameservers' => ['int'], - 'EventDnsBase::loadHosts' => ['bool', 'hosts'=>'string'], - 'EventDnsBase::parseResolvConf' => ['bool', 'flags'=>'int', 'filename'=>'string'], - 'EventDnsBase::setOption' => ['bool', 'option'=>'string', 'value'=>'string'], - 'EventDnsBase::setSearchNdots' => ['bool', 'ndots'=>'int'], - 'EventHttp::__construct' => ['void', 'base'=>'EventBase', 'ctx='=>'EventSslContext'], - 'EventHttp::accept' => ['bool', 'socket'=>'mixed'], - 'EventHttp::addServerAlias' => ['bool', 'alias'=>'string'], - 'EventHttp::bind' => ['void', 'address'=>'string', 'port'=>'int'], - 'EventHttp::removeServerAlias' => ['bool', 'alias'=>'string'], - 'EventHttp::setAllowedMethods' => ['void', 'methods'=>'int'], - 'EventHttp::setCallback' => ['void', 'path'=>'string', 'cb'=>'string', 'arg='=>'string'], - 'EventHttp::setDefaultCallback' => ['void', 'cb'=>'string', 'arg='=>'string'], - 'EventHttp::setMaxBodySize' => ['void', 'value'=>'int'], - 'EventHttp::setMaxHeadersSize' => ['void', 'value'=>'int'], - 'EventHttp::setTimeout' => ['void', 'value'=>'int'], - 'EventHttpConnection::__construct' => ['void', 'base'=>'EventBase', 'dns_base'=>'EventDnsBase', 'address'=>'string', 'port'=>'int', 'ctx='=>'EventSslContext'], - 'EventHttpConnection::getBase' => ['EventBase'], - 'EventHttpConnection::getPeer' => ['void', '&w_address'=>'string', '&w_port'=>'int'], - 'EventHttpConnection::makeRequest' => ['bool', 'req'=>'EventHttpRequest', 'type'=>'int', 'uri'=>'string'], - 'EventHttpConnection::setCloseCallback' => ['void', 'callback'=>'callable', 'data='=>'mixed'], - 'EventHttpConnection::setLocalAddress' => ['void', 'address'=>'string'], - 'EventHttpConnection::setLocalPort' => ['void', 'port'=>'int'], - 'EventHttpConnection::setMaxBodySize' => ['void', 'max_size'=>'string'], - 'EventHttpConnection::setMaxHeadersSize' => ['void', 'max_size'=>'string'], - 'EventHttpConnection::setRetries' => ['void', 'retries'=>'int'], - 'EventHttpConnection::setTimeout' => ['void', 'timeout'=>'int'], - 'EventHttpRequest::__construct' => ['void', 'callback'=>'callable', 'data='=>'mixed'], - 'EventHttpRequest::addHeader' => ['bool', 'key'=>'string', 'value'=>'string', 'type'=>'int'], - 'EventHttpRequest::cancel' => ['void'], - 'EventHttpRequest::clearHeaders' => ['void'], - 'EventHttpRequest::closeConnection' => ['void'], - 'EventHttpRequest::findHeader' => ['void', 'key'=>'string', 'type'=>'string'], - 'EventHttpRequest::free' => ['void'], - 'EventHttpRequest::getBufferEvent' => ['EventBufferEvent'], - 'EventHttpRequest::getCommand' => ['void'], - 'EventHttpRequest::getConnection' => ['EventHttpConnection'], - 'EventHttpRequest::getHost' => ['string'], - 'EventHttpRequest::getInputBuffer' => ['EventBuffer'], - 'EventHttpRequest::getInputHeaders' => ['array'], - 'EventHttpRequest::getOutputBuffer' => ['EventBuffer'], - 'EventHttpRequest::getOutputHeaders' => ['void'], - 'EventHttpRequest::getResponseCode' => ['int'], - 'EventHttpRequest::getUri' => ['string'], - 'EventHttpRequest::removeHeader' => ['void', 'key'=>'string', 'type'=>'string'], - 'EventHttpRequest::sendError' => ['void', 'error'=>'int', 'reason='=>'string'], - 'EventHttpRequest::sendReply' => ['void', 'code'=>'int', 'reason'=>'string', 'buf='=>'EventBuffer'], - 'EventHttpRequest::sendReplyChunk' => ['void', 'buf'=>'EventBuffer'], - 'EventHttpRequest::sendReplyEnd' => ['void'], - 'EventHttpRequest::sendReplyStart' => ['void', 'code'=>'int', 'reason'=>'string'], - 'EventListener::__construct' => ['void', 'base'=>'EventBase', 'cb'=>'callable', 'data'=>'mixed', 'flags'=>'int', 'backlog'=>'int', 'target'=>'mixed'], - 'EventListener::disable' => ['bool'], - 'EventListener::enable' => ['bool'], - 'EventListener::getBase' => ['void'], - 'EventListener::getSocketName' => ['bool', '&w_address'=>'string', '&w_port='=>'mixed'], - 'EventListener::setCallback' => ['void', 'cb'=>'callable', 'arg='=>'mixed'], - 'EventListener::setErrorCallback' => ['void', 'cb'=>'string'], - 'EventSslContext::__construct' => ['void', 'method'=>'string', 'options'=>'string'], - 'EventUtil::__construct' => ['void'], - 'EventUtil::getLastSocketErrno' => ['int', 'socket='=>'mixed'], - 'EventUtil::getLastSocketError' => ['string', 'socket='=>'mixed'], - 'EventUtil::getSocketFd' => ['int', 'socket'=>'mixed'], - 'EventUtil::getSocketName' => ['bool', 'socket'=>'mixed', '&w_address'=>'string', '&w_port='=>'mixed'], - 'EventUtil::setSocketOption' => ['bool', 'socket'=>'mixed', 'level'=>'int', 'optname'=>'int', 'optval'=>'mixed'], - 'EventUtil::sslRandPoll' => ['void'], - 'Exception::__clone' => ['void'], - 'Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'Exception::__toString' => ['string'], - 'Exception::getCode' => ['int|string'], - 'Exception::getFile' => ['string'], - 'Exception::getLine' => ['int'], - 'Exception::getMessage' => ['string'], - 'Exception::getPrevious' => ['?Throwable'], - 'Exception::getTrace' => ['list\',args?:array}>'], - 'Exception::getTraceAsString' => ['string'], - 'FANNConnection::__construct' => ['void', 'from_neuron'=>'int', 'to_neuron'=>'int', 'weight'=>'float'], - 'FANNConnection::getFromNeuron' => ['int'], - 'FANNConnection::getToNeuron' => ['int'], - 'FANNConnection::getWeight' => ['void'], - 'FANNConnection::setWeight' => ['bool', 'weight'=>'float'], - 'FilesystemIterator::__construct' => ['void', 'directory'=>'string', 'flags='=>'int'], - 'FilesystemIterator::__toString' => ['string'], - 'FilesystemIterator::current' => ['SplFileInfo|FilesystemIterator|string'], - 'FilesystemIterator::getATime' => ['int'], - 'FilesystemIterator::getBasename' => ['string', 'suffix='=>'string'], - 'FilesystemIterator::getCTime' => ['int'], - 'FilesystemIterator::getExtension' => ['string'], - 'FilesystemIterator::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'FilesystemIterator::getFilename' => ['string'], - 'FilesystemIterator::getFlags' => ['int'], - 'FilesystemIterator::getGroup' => ['int'], - 'FilesystemIterator::getInode' => ['int'], - 'FilesystemIterator::getLinkTarget' => ['string'], - 'FilesystemIterator::getMTime' => ['int'], - 'FilesystemIterator::getOwner' => ['int'], - 'FilesystemIterator::getPath' => ['string'], - 'FilesystemIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'class-string'], - 'FilesystemIterator::getPathname' => ['string'], - 'FilesystemIterator::getPerms' => ['int'], - 'FilesystemIterator::getRealPath' => ['non-falsy-string'], - 'FilesystemIterator::getSize' => ['int'], - 'FilesystemIterator::getType' => ['string'], - 'FilesystemIterator::isDir' => ['bool'], - 'FilesystemIterator::isDot' => ['bool'], - 'FilesystemIterator::isExecutable' => ['bool'], - 'FilesystemIterator::isFile' => ['bool'], - 'FilesystemIterator::isLink' => ['bool'], - 'FilesystemIterator::isReadable' => ['bool'], - 'FilesystemIterator::isWritable' => ['bool'], - 'FilesystemIterator::key' => ['string'], - 'FilesystemIterator::next' => ['void'], - 'FilesystemIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'FilesystemIterator::rewind' => ['void'], - 'FilesystemIterator::seek' => ['void', 'offset'=>'int'], - 'FilesystemIterator::setFileClass' => ['void', 'class='=>'class-string'], - 'FilesystemIterator::setFlags' => ['void', 'flags'=>'int'], - 'FilesystemIterator::setInfoClass' => ['void', 'class='=>'class-string'], - 'FilesystemIterator::valid' => ['bool'], - 'FilterIterator::__construct' => ['void', 'iterator'=>'Iterator'], - 'FilterIterator::accept' => ['bool'], - 'FilterIterator::current' => ['mixed'], - 'FilterIterator::getInnerIterator' => ['Iterator'], - 'FilterIterator::key' => ['mixed'], - 'FilterIterator::next' => ['void'], - 'FilterIterator::rewind' => ['void'], - 'FilterIterator::valid' => ['bool'], - 'GEOSGeometry::__toString' => ['string'], - 'GEOSGeometry::area' => ['float'], - 'GEOSGeometry::boundary' => ['GEOSGeometry'], - 'GEOSGeometry::buffer' => ['GEOSGeometry', 'dist'=>'float', 'styleArray='=>'array'], - 'GEOSGeometry::centroid' => ['GEOSGeometry'], - 'GEOSGeometry::checkValidity' => ['array{valid: bool, reason?: string, location?: GEOSGeometry}'], - 'GEOSGeometry::contains' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::convexHull' => ['GEOSGeometry'], - 'GEOSGeometry::coordinateDimension' => ['int'], - 'GEOSGeometry::coveredBy' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::covers' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::crosses' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::delaunayTriangulation' => ['GEOSGeometry', 'tolerance'=>'float', 'onlyEdges'=>'bool'], - 'GEOSGeometry::difference' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::dimension' => ['int'], - 'GEOSGeometry::disjoint' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::distance' => ['float', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::endPoint' => ['GEOSGeometry'], - 'GEOSGeometry::envelope' => ['GEOSGeometry'], - 'GEOSGeometry::equals' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::equalsExact' => ['bool', 'geom'=>'GEOSGeometry', 'tolerance'=>'float'], - 'GEOSGeometry::exteriorRing' => ['GEOSGeometry'], - 'GEOSGeometry::extractUniquePoints' => ['GEOSGeometry'], - 'GEOSGeometry::geometryN' => ['GEOSGeometry', 'num'=>'int'], - 'GEOSGeometry::getSRID' => ['int'], - 'GEOSGeometry::getX' => ['float'], - 'GEOSGeometry::getY' => ['float'], - 'GEOSGeometry::hasZ' => ['bool'], - 'GEOSGeometry::hausdorffDistance' => ['float', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::interiorRingN' => ['GEOSGeometry', 'num'=>'int'], - 'GEOSGeometry::interpolate' => ['GEOSGeometry', 'dist'=>'float', 'normalized'=>'bool'], - 'GEOSGeometry::intersection' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::intersects' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::isClosed' => ['bool'], - 'GEOSGeometry::isEmpty' => ['bool'], - 'GEOSGeometry::isRing' => ['bool'], - 'GEOSGeometry::isSimple' => ['bool'], - 'GEOSGeometry::length' => ['float'], - 'GEOSGeometry::node' => ['GEOSGeometry'], - 'GEOSGeometry::normalize' => ['GEOSGeometry'], - 'GEOSGeometry::numCoordinates' => ['int'], - 'GEOSGeometry::numGeometries' => ['int'], - 'GEOSGeometry::numInteriorRings' => ['int'], - 'GEOSGeometry::numPoints' => ['int'], - 'GEOSGeometry::offsetCurve' => ['GEOSGeometry', 'dist'=>'float', 'styleArray'=>'array'], - 'GEOSGeometry::overlaps' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::pointN' => ['GEOSGeometry', 'num'=>'int'], - 'GEOSGeometry::pointOnSurface' => ['GEOSGeometry'], - 'GEOSGeometry::project' => ['float', 'other'=>'GEOSGeometry', 'normalized'=>'bool'], - 'GEOSGeometry::relate' => ['string|bool', 'otherGeom'=>'GEOSGeometry', 'pattern'=>'string'], - 'GEOSGeometry::relateBoundaryNodeRule' => ['string', 'otherGeom'=>'GEOSGeometry', 'rule'=>'int'], - 'GEOSGeometry::setSRID' => ['void', 'srid'=>'int'], - 'GEOSGeometry::simplify' => ['GEOSGeometry', 'tolerance'=>'float', 'preserveTopology='=>'bool'], - 'GEOSGeometry::snapTo' => ['GEOSGeometry', 'geom'=>'GEOSGeometry', 'tolerance'=>'float'], - 'GEOSGeometry::startPoint' => ['GEOSGeometry'], - 'GEOSGeometry::symDifference' => ['GEOSGeometry', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::touches' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSGeometry::typeId' => ['int'], - 'GEOSGeometry::typeName' => ['string'], - 'GEOSGeometry::union' => ['GEOSGeometry', 'otherGeom='=>'GEOSGeometry'], - 'GEOSGeometry::voronoiDiagram' => ['GEOSGeometry', 'tolerance'=>'float', 'onlyEdges'=>'bool', 'extent'=>'GEOSGeometry|null'], - 'GEOSGeometry::within' => ['bool', 'geom'=>'GEOSGeometry'], - 'GEOSLineMerge' => ['array', 'geom'=>'GEOSGeometry'], - 'GEOSPolygonize' => ['array{rings: GEOSGeometry[], cut_edges?: GEOSGeometry[], dangles: GEOSGeometry[], invalid_rings: GEOSGeometry[]}', 'geom'=>'GEOSGeometry'], - 'GEOSRelateMatch' => ['bool', 'matrix'=>'string', 'pattern'=>'string'], - 'GEOSSharedPaths' => ['GEOSGeometry', 'geom1'=>'GEOSGeometry', 'geom2'=>'GEOSGeometry'], - 'GEOSVersion' => ['string'], - 'GEOSWKBReader::__construct' => ['void'], - 'GEOSWKBReader::read' => ['GEOSGeometry', 'wkb'=>'string'], - 'GEOSWKBReader::readHEX' => ['GEOSGeometry', 'wkb'=>'string'], - 'GEOSWKBWriter::__construct' => ['void'], - 'GEOSWKBWriter::getByteOrder' => ['int'], - 'GEOSWKBWriter::getIncludeSRID' => ['bool'], - 'GEOSWKBWriter::getOutputDimension' => ['int'], - 'GEOSWKBWriter::setByteOrder' => ['void', 'byteOrder'=>'int'], - 'GEOSWKBWriter::setIncludeSRID' => ['void', 'inc'=>'bool'], - 'GEOSWKBWriter::setOutputDimension' => ['void', 'dim'=>'int'], - 'GEOSWKBWriter::write' => ['string', 'geom'=>'GEOSGeometry'], - 'GEOSWKBWriter::writeHEX' => ['string', 'geom'=>'GEOSGeometry'], - 'GEOSWKTReader::__construct' => ['void'], - 'GEOSWKTReader::read' => ['GEOSGeometry', 'wkt'=>'string'], - 'GEOSWKTWriter::__construct' => ['void'], - 'GEOSWKTWriter::getOutputDimension' => ['int'], - 'GEOSWKTWriter::setOld3D' => ['void', 'val'=>'bool'], - 'GEOSWKTWriter::setOutputDimension' => ['void', 'dim'=>'int'], - 'GEOSWKTWriter::setRoundingPrecision' => ['void', 'prec'=>'int'], - 'GEOSWKTWriter::setTrim' => ['void', 'trim'=>'bool'], - 'GEOSWKTWriter::write' => ['string', 'geom'=>'GEOSGeometry'], - 'GearmanClient::__construct' => ['void'], - 'GearmanClient::addOptions' => ['bool', 'options'=>'int'], - 'GearmanClient::addServer' => ['bool', 'host='=>'string', 'port='=>'int'], - 'GearmanClient::addServers' => ['bool', 'servers='=>'string'], - 'GearmanClient::addTask' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskHigh' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskHighBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskLow' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskLowBackground' => ['GearmanTask|false', 'function_name'=>'string', 'workload'=>'string', 'context='=>'mixed', 'unique='=>'string'], - 'GearmanClient::addTaskStatus' => ['GearmanTask', 'job_handle'=>'string', 'context='=>'string'], - 'GearmanClient::clearCallbacks' => ['bool'], - 'GearmanClient::clone' => ['GearmanClient'], - 'GearmanClient::context' => ['string'], - 'GearmanClient::data' => ['string'], - 'GearmanClient::do' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doHigh' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doHighBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doJobHandle' => ['string'], - 'GearmanClient::doLow' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doLowBackground' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doNormal' => ['string', 'function_name'=>'string', 'workload'=>'string', 'unique='=>'string'], - 'GearmanClient::doStatus' => ['array'], - 'GearmanClient::echo' => ['bool', 'workload'=>'string'], - 'GearmanClient::error' => ['string'], - 'GearmanClient::getErrno' => ['int'], - 'GearmanClient::jobStatus' => ['array', 'job_handle'=>'string'], - 'GearmanClient::options' => [''], - 'GearmanClient::ping' => ['bool', 'workload'=>'string'], - 'GearmanClient::removeOptions' => ['bool', 'options'=>'int'], - 'GearmanClient::returnCode' => ['int'], - 'GearmanClient::runTasks' => ['bool'], - 'GearmanClient::setClientCallback' => ['void', 'callback'=>'callable'], - 'GearmanClient::setCompleteCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setContext' => ['bool', 'context'=>'string'], - 'GearmanClient::setCreatedCallback' => ['bool', 'callback'=>'string'], - 'GearmanClient::setData' => ['bool', 'data'=>'string'], - 'GearmanClient::setDataCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setExceptionCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setFailCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setOptions' => ['bool', 'options'=>'int'], - 'GearmanClient::setStatusCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setTimeout' => ['bool', 'timeout'=>'int'], - 'GearmanClient::setWarningCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::setWorkloadCallback' => ['bool', 'callback'=>'callable'], - 'GearmanClient::timeout' => ['int'], - 'GearmanClient::wait' => [''], - 'GearmanJob::__construct' => ['void'], - 'GearmanJob::complete' => ['bool', 'result'=>'string'], - 'GearmanJob::data' => ['bool', 'data'=>'string'], - 'GearmanJob::exception' => ['bool', 'exception'=>'string'], - 'GearmanJob::fail' => ['bool'], - 'GearmanJob::functionName' => ['string'], - 'GearmanJob::handle' => ['string'], - 'GearmanJob::returnCode' => ['int'], - 'GearmanJob::sendComplete' => ['bool', 'result'=>'string'], - 'GearmanJob::sendData' => ['bool', 'data'=>'string'], - 'GearmanJob::sendException' => ['bool', 'exception'=>'string'], - 'GearmanJob::sendFail' => ['bool'], - 'GearmanJob::sendStatus' => ['bool', 'numerator'=>'int', 'denominator'=>'int'], - 'GearmanJob::sendWarning' => ['bool', 'warning'=>'string'], - 'GearmanJob::setReturn' => ['bool', 'gearman_return_t'=>'string'], - 'GearmanJob::status' => ['bool', 'numerator'=>'int', 'denominator'=>'int'], - 'GearmanJob::unique' => ['string'], - 'GearmanJob::warning' => ['bool', 'warning'=>'string'], - 'GearmanJob::workload' => ['string'], - 'GearmanJob::workloadSize' => ['int'], - 'GearmanTask::__construct' => ['void'], - 'GearmanTask::create' => ['GearmanTask'], - 'GearmanTask::data' => ['string|false'], - 'GearmanTask::dataSize' => ['int|false'], - 'GearmanTask::function' => ['string'], - 'GearmanTask::functionName' => ['string'], - 'GearmanTask::isKnown' => ['bool'], - 'GearmanTask::isRunning' => ['bool'], - 'GearmanTask::jobHandle' => ['string'], - 'GearmanTask::recvData' => ['array|false', 'data_len'=>'int'], - 'GearmanTask::returnCode' => ['int'], - 'GearmanTask::sendData' => ['int', 'data'=>'string'], - 'GearmanTask::sendWorkload' => ['int|false', 'data'=>'string'], - 'GearmanTask::taskDenominator' => ['int|false'], - 'GearmanTask::taskNumerator' => ['int|false'], - 'GearmanTask::unique' => ['string|false'], - 'GearmanTask::uuid' => ['string'], - 'GearmanWorker::__construct' => ['void'], - 'GearmanWorker::addFunction' => ['bool', 'function_name'=>'string', 'function'=>'callable', 'context='=>'mixed', 'timeout='=>'int'], - 'GearmanWorker::addOptions' => ['bool', 'option'=>'int'], - 'GearmanWorker::addServer' => ['bool', 'host='=>'string', 'port='=>'int'], - 'GearmanWorker::addServers' => ['bool', 'servers'=>'string'], - 'GearmanWorker::clone' => ['void'], - 'GearmanWorker::echo' => ['bool', 'workload'=>'string'], - 'GearmanWorker::error' => ['string'], - 'GearmanWorker::getErrno' => ['int'], - 'GearmanWorker::grabJob' => [''], - 'GearmanWorker::options' => ['int'], - 'GearmanWorker::register' => ['bool', 'function_name'=>'string', 'timeout='=>'int'], - 'GearmanWorker::removeOptions' => ['bool', 'option'=>'int'], - 'GearmanWorker::returnCode' => ['int'], - 'GearmanWorker::setId' => ['bool', 'id'=>'string'], - 'GearmanWorker::setOptions' => ['bool', 'option'=>'int'], - 'GearmanWorker::setTimeout' => ['bool', 'timeout'=>'int'], - 'GearmanWorker::timeout' => ['int'], - 'GearmanWorker::unregister' => ['bool', 'function_name'=>'string'], - 'GearmanWorker::unregisterAll' => ['bool'], - 'GearmanWorker::wait' => ['bool'], - 'GearmanWorker::work' => ['bool'], - 'Gender\Gender::__construct' => ['void', 'dsn='=>'string'], - 'Gender\Gender::connect' => ['bool', 'dsn'=>'string'], - 'Gender\Gender::country' => ['array', 'country'=>'int'], - 'Gender\Gender::get' => ['int', 'name'=>'string', 'country='=>'int'], - 'Gender\Gender::isNick' => ['array', 'name0'=>'string', 'name1'=>'string', 'country='=>'int'], - 'Gender\Gender::similarNames' => ['array', 'name'=>'string', 'country='=>'int'], - 'Generator::current' => ['mixed'], - 'Generator::getReturn' => ['mixed'], - 'Generator::key' => ['mixed'], - 'Generator::next' => ['void'], - 'Generator::rewind' => ['void'], - 'Generator::send' => ['mixed', 'value'=>'mixed'], - 'Generator::throw' => ['mixed', 'exception'=>'Throwable'], - 'Generator::valid' => ['bool'], - 'GlobIterator::__construct' => ['void', 'pattern'=>'string', 'flags='=>'int'], - 'GlobIterator::count' => ['int'], - 'GlobIterator::current' => ['FilesystemIterator|SplFileInfo|string'], - 'GlobIterator::getATime' => ['int'], - 'GlobIterator::getBasename' => ['string', 'suffix='=>'string'], - 'GlobIterator::getCTime' => ['int'], - 'GlobIterator::getExtension' => ['string'], - 'GlobIterator::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'GlobIterator::getFilename' => ['string'], - 'GlobIterator::getFlags' => ['int'], - 'GlobIterator::getGroup' => ['int'], - 'GlobIterator::getInode' => ['int'], - 'GlobIterator::getLinkTarget' => ['string|false'], - 'GlobIterator::getMTime' => ['int'], - 'GlobIterator::getOwner' => ['int'], - 'GlobIterator::getPath' => ['string'], - 'GlobIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'class-string'], - 'GlobIterator::getPathname' => ['string'], - 'GlobIterator::getPerms' => ['int'], - 'GlobIterator::getRealPath' => ['non-falsy-string|false'], - 'GlobIterator::getSize' => ['int'], - 'GlobIterator::getType' => ['string|false'], - 'GlobIterator::isDir' => ['bool'], - 'GlobIterator::isDot' => ['bool'], - 'GlobIterator::isExecutable' => ['bool'], - 'GlobIterator::isFile' => ['bool'], - 'GlobIterator::isLink' => ['bool'], - 'GlobIterator::isReadable' => ['bool'], - 'GlobIterator::isWritable' => ['bool'], - 'GlobIterator::key' => ['string'], - 'GlobIterator::next' => ['void'], - 'GlobIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'GlobIterator::rewind' => ['void'], - 'GlobIterator::seek' => ['void', 'offset'=>'int'], - 'GlobIterator::setFileClass' => ['void', 'class='=>'class-string'], - 'GlobIterator::setFlags' => ['void', 'flags'=>'int'], - 'GlobIterator::setInfoClass' => ['void', 'class='=>'class-string'], - 'GlobIterator::valid' => ['bool'], - 'Gmagick::__construct' => ['void', 'filename='=>'string'], - 'Gmagick::addimage' => ['Gmagick', 'gmagick'=>'gmagick'], - 'Gmagick::addnoiseimage' => ['Gmagick', 'noise'=>'int'], - 'Gmagick::annotateimage' => ['Gmagick', 'gmagickdraw'=>'gmagickdraw', 'x'=>'float', 'y'=>'float', 'angle'=>'float', 'text'=>'string'], - 'Gmagick::blurimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Gmagick::borderimage' => ['Gmagick', 'color'=>'gmagickpixel', 'width'=>'int', 'height'=>'int'], - 'Gmagick::charcoalimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float'], - 'Gmagick::chopimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Gmagick::clear' => ['Gmagick'], - 'Gmagick::commentimage' => ['Gmagick', 'comment'=>'string'], - 'Gmagick::compositeimage' => ['Gmagick', 'source'=>'gmagick', 'compose'=>'int', 'x'=>'int', 'y'=>'int'], - 'Gmagick::cropimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Gmagick::cropthumbnailimage' => ['Gmagick', 'width'=>'int', 'height'=>'int'], - 'Gmagick::current' => ['Gmagick'], - 'Gmagick::cyclecolormapimage' => ['Gmagick', 'displace'=>'int'], - 'Gmagick::deconstructimages' => ['Gmagick'], - 'Gmagick::despeckleimage' => ['Gmagick'], - 'Gmagick::destroy' => ['bool'], - 'Gmagick::drawimage' => ['Gmagick', 'gmagickdraw'=>'gmagickdraw'], - 'Gmagick::edgeimage' => ['Gmagick', 'radius'=>'float'], - 'Gmagick::embossimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float'], - 'Gmagick::enhanceimage' => ['Gmagick'], - 'Gmagick::equalizeimage' => ['Gmagick'], - 'Gmagick::flipimage' => ['Gmagick'], - 'Gmagick::flopimage' => ['Gmagick'], - 'Gmagick::frameimage' => ['Gmagick', 'color'=>'gmagickpixel', 'width'=>'int', 'height'=>'int', 'inner_bevel'=>'int', 'outer_bevel'=>'int'], - 'Gmagick::gammaimage' => ['Gmagick', 'gamma'=>'float'], - 'Gmagick::getcopyright' => ['string'], - 'Gmagick::getfilename' => ['string'], - 'Gmagick::getimagebackgroundcolor' => ['GmagickPixel'], - 'Gmagick::getimageblueprimary' => ['array'], - 'Gmagick::getimagebordercolor' => ['GmagickPixel'], - 'Gmagick::getimagechanneldepth' => ['int', 'channel_type'=>'int'], - 'Gmagick::getimagecolors' => ['int'], - 'Gmagick::getimagecolorspace' => ['int'], - 'Gmagick::getimagecompose' => ['int'], - 'Gmagick::getimagedelay' => ['int'], - 'Gmagick::getimagedepth' => ['int'], - 'Gmagick::getimagedispose' => ['int'], - 'Gmagick::getimageextrema' => ['array'], - 'Gmagick::getimagefilename' => ['string'], - 'Gmagick::getimageformat' => ['string'], - 'Gmagick::getimagegamma' => ['float'], - 'Gmagick::getimagegreenprimary' => ['array'], - 'Gmagick::getimageheight' => ['int'], - 'Gmagick::getimagehistogram' => ['array'], - 'Gmagick::getimageindex' => ['int'], - 'Gmagick::getimageinterlacescheme' => ['int'], - 'Gmagick::getimageiterations' => ['int'], - 'Gmagick::getimagematte' => ['int'], - 'Gmagick::getimagemattecolor' => ['GmagickPixel'], - 'Gmagick::getimageprofile' => ['string', 'name'=>'string'], - 'Gmagick::getimageredprimary' => ['array'], - 'Gmagick::getimagerenderingintent' => ['int'], - 'Gmagick::getimageresolution' => ['array'], - 'Gmagick::getimagescene' => ['int'], - 'Gmagick::getimagesignature' => ['string'], - 'Gmagick::getimagetype' => ['int'], - 'Gmagick::getimageunits' => ['int'], - 'Gmagick::getimagewhitepoint' => ['array'], - 'Gmagick::getimagewidth' => ['int'], - 'Gmagick::getpackagename' => ['string'], - 'Gmagick::getquantumdepth' => ['array'], - 'Gmagick::getreleasedate' => ['string'], - 'Gmagick::getsamplingfactors' => ['array'], - 'Gmagick::getsize' => ['array'], - 'Gmagick::getversion' => ['array'], - 'Gmagick::hasnextimage' => ['bool'], - 'Gmagick::haspreviousimage' => ['bool'], - 'Gmagick::implodeimage' => ['mixed', 'radius'=>'float'], - 'Gmagick::labelimage' => ['mixed', 'label'=>'string'], - 'Gmagick::levelimage' => ['mixed', 'blackpoint'=>'float', 'gamma'=>'float', 'whitepoint'=>'float', 'channel='=>'int'], - 'Gmagick::magnifyimage' => ['mixed'], - 'Gmagick::mapimage' => ['Gmagick', 'gmagick'=>'gmagick', 'dither'=>'bool'], - 'Gmagick::medianfilterimage' => ['void', 'radius'=>'float'], - 'Gmagick::minifyimage' => ['Gmagick'], - 'Gmagick::modulateimage' => ['Gmagick', 'brightness'=>'float', 'saturation'=>'float', 'hue'=>'float'], - 'Gmagick::motionblurimage' => ['Gmagick', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float'], - 'Gmagick::newimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'background'=>'string', 'format='=>'string'], - 'Gmagick::nextimage' => ['bool'], - 'Gmagick::normalizeimage' => ['Gmagick', 'channel='=>'int'], - 'Gmagick::oilpaintimage' => ['Gmagick', 'radius'=>'float'], - 'Gmagick::previousimage' => ['bool'], - 'Gmagick::profileimage' => ['Gmagick', 'name'=>'string', 'profile'=>'string'], - 'Gmagick::quantizeimage' => ['Gmagick', 'numcolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], - 'Gmagick::quantizeimages' => ['Gmagick', 'numcolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], - 'Gmagick::queryfontmetrics' => ['array', 'draw'=>'gmagickdraw', 'text'=>'string'], - 'Gmagick::queryfonts' => ['array', 'pattern='=>'string'], - 'Gmagick::queryformats' => ['array', 'pattern='=>'string'], - 'Gmagick::radialblurimage' => ['Gmagick', 'angle'=>'float', 'channel='=>'int'], - 'Gmagick::raiseimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int', 'raise'=>'bool'], - 'Gmagick::read' => ['Gmagick', 'filename'=>'string'], - 'Gmagick::readimage' => ['Gmagick', 'filename'=>'string'], - 'Gmagick::readimageblob' => ['Gmagick', 'imagecontents'=>'string', 'filename='=>'string'], - 'Gmagick::readimagefile' => ['Gmagick', 'fp'=>'resource', 'filename='=>'string'], - 'Gmagick::reducenoiseimage' => ['Gmagick', 'radius'=>'float'], - 'Gmagick::removeimage' => ['Gmagick'], - 'Gmagick::removeimageprofile' => ['string', 'name'=>'string'], - 'Gmagick::resampleimage' => ['Gmagick', 'xresolution'=>'float', 'yresolution'=>'float', 'filter'=>'int', 'blur'=>'float'], - 'Gmagick::resizeimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'filter'=>'int', 'blur'=>'float', 'fit='=>'bool'], - 'Gmagick::rollimage' => ['Gmagick', 'x'=>'int', 'y'=>'int'], - 'Gmagick::rotateimage' => ['Gmagick', 'color'=>'mixed', 'degrees'=>'float'], - 'Gmagick::scaleimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'fit='=>'bool'], - 'Gmagick::separateimagechannel' => ['Gmagick', 'channel'=>'int'], - 'Gmagick::setCompressionQuality' => ['Gmagick', 'quality'=>'int'], - 'Gmagick::setfilename' => ['Gmagick', 'filename'=>'string'], - 'Gmagick::setimagebackgroundcolor' => ['Gmagick', 'color'=>'gmagickpixel'], - 'Gmagick::setimageblueprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], - 'Gmagick::setimagebordercolor' => ['Gmagick', 'color'=>'gmagickpixel'], - 'Gmagick::setimagechanneldepth' => ['Gmagick', 'channel'=>'int', 'depth'=>'int'], - 'Gmagick::setimagecolorspace' => ['Gmagick', 'colorspace'=>'int'], - 'Gmagick::setimagecompose' => ['Gmagick', 'composite'=>'int'], - 'Gmagick::setimagedelay' => ['Gmagick', 'delay'=>'int'], - 'Gmagick::setimagedepth' => ['Gmagick', 'depth'=>'int'], - 'Gmagick::setimagedispose' => ['Gmagick', 'disposetype'=>'int'], - 'Gmagick::setimagefilename' => ['Gmagick', 'filename'=>'string'], - 'Gmagick::setimageformat' => ['Gmagick', 'imageformat'=>'string'], - 'Gmagick::setimagegamma' => ['Gmagick', 'gamma'=>'float'], - 'Gmagick::setimagegreenprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], - 'Gmagick::setimageindex' => ['Gmagick', 'index'=>'int'], - 'Gmagick::setimageinterlacescheme' => ['Gmagick', 'interlace'=>'int'], - 'Gmagick::setimageiterations' => ['Gmagick', 'iterations'=>'int'], - 'Gmagick::setimageprofile' => ['Gmagick', 'name'=>'string', 'profile'=>'string'], - 'Gmagick::setimageredprimary' => ['Gmagick', 'x'=>'float', 'y'=>'float'], - 'Gmagick::setimagerenderingintent' => ['Gmagick', 'rendering_intent'=>'int'], - 'Gmagick::setimageresolution' => ['Gmagick', 'xresolution'=>'float', 'yresolution'=>'float'], - 'Gmagick::setimagescene' => ['Gmagick', 'scene'=>'int'], - 'Gmagick::setimagetype' => ['Gmagick', 'imgtype'=>'int'], - 'Gmagick::setimageunits' => ['Gmagick', 'resolution'=>'int'], - 'Gmagick::setimagewhitepoint' => ['Gmagick', 'x'=>'float', 'y'=>'float'], - 'Gmagick::setsamplingfactors' => ['Gmagick', 'factors'=>'array'], - 'Gmagick::setsize' => ['Gmagick', 'columns'=>'int', 'rows'=>'int'], - 'Gmagick::shearimage' => ['Gmagick', 'color'=>'mixed', 'xshear'=>'float', 'yshear'=>'float'], - 'Gmagick::solarizeimage' => ['Gmagick', 'threshold'=>'int'], - 'Gmagick::spreadimage' => ['Gmagick', 'radius'=>'float'], - 'Gmagick::stripimage' => ['Gmagick'], - 'Gmagick::swirlimage' => ['Gmagick', 'degrees'=>'float'], - 'Gmagick::thumbnailimage' => ['Gmagick', 'width'=>'int', 'height'=>'int', 'fit='=>'bool'], - 'Gmagick::trimimage' => ['Gmagick', 'fuzz'=>'float'], - 'Gmagick::write' => ['Gmagick', 'filename'=>'string'], - 'Gmagick::writeimage' => ['Gmagick', 'filename'=>'string', 'all_frames='=>'bool'], - 'GmagickDraw::annotate' => ['GmagickDraw', 'x'=>'float', 'y'=>'float', 'text'=>'string'], - 'GmagickDraw::arc' => ['GmagickDraw', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float', 'sd'=>'float', 'ed'=>'float'], - 'GmagickDraw::bezier' => ['GmagickDraw', 'coordinate_array'=>'array'], - 'GmagickDraw::ellipse' => ['GmagickDraw', 'ox'=>'float', 'oy'=>'float', 'rx'=>'float', 'ry'=>'float', 'start'=>'float', 'end'=>'float'], - 'GmagickDraw::getfillcolor' => ['GmagickPixel'], - 'GmagickDraw::getfillopacity' => ['float'], - 'GmagickDraw::getfont' => ['string|false'], - 'GmagickDraw::getfontsize' => ['float'], - 'GmagickDraw::getfontstyle' => ['int'], - 'GmagickDraw::getfontweight' => ['int'], - 'GmagickDraw::getstrokecolor' => ['GmagickPixel'], - 'GmagickDraw::getstrokeopacity' => ['float'], - 'GmagickDraw::getstrokewidth' => ['float'], - 'GmagickDraw::gettextdecoration' => ['int'], - 'GmagickDraw::gettextencoding' => ['string|false'], - 'GmagickDraw::line' => ['GmagickDraw', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float'], - 'GmagickDraw::point' => ['GmagickDraw', 'x'=>'float', 'y'=>'float'], - 'GmagickDraw::polygon' => ['GmagickDraw', 'coordinates'=>'array'], - 'GmagickDraw::polyline' => ['GmagickDraw', 'coordinate_array'=>'array'], - 'GmagickDraw::rectangle' => ['GmagickDraw', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], - 'GmagickDraw::rotate' => ['GmagickDraw', 'degrees'=>'float'], - 'GmagickDraw::roundrectangle' => ['GmagickDraw', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'rx'=>'float', 'ry'=>'float'], - 'GmagickDraw::scale' => ['GmagickDraw', 'x'=>'float', 'y'=>'float'], - 'GmagickDraw::setfillcolor' => ['GmagickDraw', 'color'=>'string'], - 'GmagickDraw::setfillopacity' => ['GmagickDraw', 'fill_opacity'=>'float'], - 'GmagickDraw::setfont' => ['GmagickDraw', 'font'=>'string'], - 'GmagickDraw::setfontsize' => ['GmagickDraw', 'pointsize'=>'float'], - 'GmagickDraw::setfontstyle' => ['GmagickDraw', 'style'=>'int'], - 'GmagickDraw::setfontweight' => ['GmagickDraw', 'weight'=>'int'], - 'GmagickDraw::setstrokecolor' => ['GmagickDraw', 'color'=>'gmagickpixel'], - 'GmagickDraw::setstrokeopacity' => ['GmagickDraw', 'stroke_opacity'=>'float'], - 'GmagickDraw::setstrokewidth' => ['GmagickDraw', 'width'=>'float'], - 'GmagickDraw::settextdecoration' => ['GmagickDraw', 'decoration'=>'int'], - 'GmagickDraw::settextencoding' => ['GmagickDraw', 'encoding'=>'string'], - 'GmagickPixel::__construct' => ['void', 'color='=>'string'], - 'GmagickPixel::getcolor' => ['mixed', 'as_array='=>'bool', 'normalize_array='=>'bool'], - 'GmagickPixel::getcolorcount' => ['int'], - 'GmagickPixel::getcolorvalue' => ['float', 'color'=>'int'], - 'GmagickPixel::setcolor' => ['GmagickPixel', 'color'=>'string'], - 'GmagickPixel::setcolorvalue' => ['GmagickPixel', 'color'=>'int', 'value'=>'float'], - 'Grpc\Call::__construct' => ['void', 'channel'=>'Grpc\Channel', 'method'=>'string', 'absolute_deadline'=>'Grpc\Timeval', 'host_override='=>'mixed'], - 'Grpc\Call::cancel' => [''], - 'Grpc\Call::getPeer' => ['string'], - 'Grpc\Call::setCredentials' => ['int', 'creds_obj'=>'Grpc\CallCredentials'], - 'Grpc\Call::startBatch' => ['object', 'batch'=>'array'], - 'Grpc\CallCredentials::createComposite' => ['Grpc\CallCredentials', 'cred1'=>'Grpc\CallCredentials', 'cred2'=>'Grpc\CallCredentials'], - 'Grpc\CallCredentials::createFromPlugin' => ['Grpc\CallCredentials', 'callback'=>'Closure'], - 'Grpc\Channel::__construct' => ['void', 'target'=>'string', 'args='=>'array'], - 'Grpc\Channel::close' => [''], - 'Grpc\Channel::getConnectivityState' => ['int', 'try_to_connect='=>'bool'], - 'Grpc\Channel::getTarget' => ['string'], - 'Grpc\Channel::watchConnectivityState' => ['bool', 'last_state'=>'int', 'deadline_obj'=>'Grpc\Timeval'], - 'Grpc\ChannelCredentials::createComposite' => ['Grpc\ChannelCredentials', 'cred1'=>'Grpc\ChannelCredentials', 'cred2'=>'Grpc\CallCredentials'], - 'Grpc\ChannelCredentials::createDefault' => ['Grpc\ChannelCredentials'], - 'Grpc\ChannelCredentials::createInsecure' => ['null'], - 'Grpc\ChannelCredentials::createSsl' => ['Grpc\ChannelCredentials', 'pem_root_certs'=>'string', 'pem_private_key='=>'string', 'pem_cert_chain='=>'string'], - 'Grpc\ChannelCredentials::setDefaultRootsPem' => ['', 'pem_roots'=>'string'], - 'Grpc\Server::__construct' => ['void', 'args'=>'array'], - 'Grpc\Server::addHttp2Port' => ['bool', 'addr'=>'string'], - 'Grpc\Server::addSecureHttp2Port' => ['bool', 'addr'=>'string', 'creds_obj'=>'Grpc\ServerCredentials'], - 'Grpc\Server::requestCall' => ['', 'tag_new'=>'int', 'tag_cancel'=>'int'], - 'Grpc\Server::start' => [''], - 'Grpc\ServerCredentials::createSsl' => ['object', 'pem_root_certs'=>'string', 'pem_private_key'=>'string', 'pem_cert_chain'=>'string'], - 'Grpc\Timeval::__construct' => ['void', 'usec'=>'int'], - 'Grpc\Timeval::add' => ['Grpc\Timeval', 'other'=>'Grpc\Timeval'], - 'Grpc\Timeval::compare' => ['int', 'a'=>'Grpc\Timeval', 'b'=>'Grpc\Timeval'], - 'Grpc\Timeval::infFuture' => ['Grpc\Timeval'], - 'Grpc\Timeval::infPast' => ['Grpc\Timeval'], - 'Grpc\Timeval::now' => ['Grpc\Timeval'], - 'Grpc\Timeval::similar' => ['bool', 'a'=>'Grpc\Timeval', 'b'=>'Grpc\Timeval', 'threshold'=>'Grpc\Timeval'], - 'Grpc\Timeval::sleepUntil' => [''], - 'Grpc\Timeval::subtract' => ['Grpc\Timeval', 'other'=>'Grpc\Timeval'], - 'Grpc\Timeval::zero' => ['Grpc\Timeval'], - 'HRTime\PerformanceCounter::getElapsedTicks' => ['int'], - 'HRTime\PerformanceCounter::getFrequency' => ['int'], - 'HRTime\PerformanceCounter::getLastElapsedTicks' => ['int'], - 'HRTime\PerformanceCounter::getTicks' => ['int'], - 'HRTime\PerformanceCounter::getTicksSince' => ['int', 'start'=>'int'], - 'HRTime\PerformanceCounter::isRunning' => ['bool'], - 'HRTime\PerformanceCounter::start' => ['void'], - 'HRTime\PerformanceCounter::stop' => ['void'], - 'HRTime\StopWatch::getElapsedTicks' => ['int'], - 'HRTime\StopWatch::getElapsedTime' => ['float', 'unit='=>'int'], - 'HRTime\StopWatch::getLastElapsedTicks' => ['int'], - 'HRTime\StopWatch::getLastElapsedTime' => ['float', 'unit='=>'int'], - 'HRTime\StopWatch::isRunning' => ['bool'], - 'HRTime\StopWatch::start' => ['void'], - 'HRTime\StopWatch::stop' => ['void'], - 'HaruAnnotation::setBorderStyle' => ['bool', 'width'=>'float', 'dash_on'=>'int', 'dash_off'=>'int'], - 'HaruAnnotation::setHighlightMode' => ['bool', 'mode'=>'int'], - 'HaruAnnotation::setIcon' => ['bool', 'icon'=>'int'], - 'HaruAnnotation::setOpened' => ['bool', 'opened'=>'bool'], - 'HaruDestination::setFit' => ['bool'], - 'HaruDestination::setFitB' => ['bool'], - 'HaruDestination::setFitBH' => ['bool', 'top'=>'float'], - 'HaruDestination::setFitBV' => ['bool', 'left'=>'float'], - 'HaruDestination::setFitH' => ['bool', 'top'=>'float'], - 'HaruDestination::setFitR' => ['bool', 'left'=>'float', 'bottom'=>'float', 'right'=>'float', 'top'=>'float'], - 'HaruDestination::setFitV' => ['bool', 'left'=>'float'], - 'HaruDestination::setXYZ' => ['bool', 'left'=>'float', 'top'=>'float', 'zoom'=>'float'], - 'HaruDoc::__construct' => ['void'], - 'HaruDoc::addPage' => ['object'], - 'HaruDoc::addPageLabel' => ['bool', 'first_page'=>'int', 'style'=>'int', 'first_num'=>'int', 'prefix='=>'string'], - 'HaruDoc::createOutline' => ['object', 'title'=>'string', 'parent_outline='=>'object', 'encoder='=>'object'], - 'HaruDoc::getCurrentEncoder' => ['object'], - 'HaruDoc::getCurrentPage' => ['object'], - 'HaruDoc::getEncoder' => ['object', 'encoding'=>'string'], - 'HaruDoc::getFont' => ['object', 'fontname'=>'string', 'encoding='=>'string'], - 'HaruDoc::getInfoAttr' => ['string', 'type'=>'int'], - 'HaruDoc::getPageLayout' => ['int'], - 'HaruDoc::getPageMode' => ['int'], - 'HaruDoc::getStreamSize' => ['int'], - 'HaruDoc::insertPage' => ['object', 'page'=>'object'], - 'HaruDoc::loadJPEG' => ['object', 'filename'=>'string'], - 'HaruDoc::loadPNG' => ['object', 'filename'=>'string', 'deferred='=>'bool'], - 'HaruDoc::loadRaw' => ['object', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'color_space'=>'int'], - 'HaruDoc::loadTTC' => ['string', 'fontfile'=>'string', 'index'=>'int', 'embed='=>'bool'], - 'HaruDoc::loadTTF' => ['string', 'fontfile'=>'string', 'embed='=>'bool'], - 'HaruDoc::loadType1' => ['string', 'afmfile'=>'string', 'pfmfile='=>'string'], - 'HaruDoc::output' => ['bool'], - 'HaruDoc::readFromStream' => ['string', 'bytes'=>'int'], - 'HaruDoc::resetError' => ['bool'], - 'HaruDoc::resetStream' => ['bool'], - 'HaruDoc::save' => ['bool', 'file'=>'string'], - 'HaruDoc::saveToStream' => ['bool'], - 'HaruDoc::setCompressionMode' => ['bool', 'mode'=>'int'], - 'HaruDoc::setCurrentEncoder' => ['bool', 'encoding'=>'string'], - 'HaruDoc::setEncryptionMode' => ['bool', 'mode'=>'int', 'key_len='=>'int'], - 'HaruDoc::setInfoAttr' => ['bool', 'type'=>'int', 'info'=>'string'], - 'HaruDoc::setInfoDateAttr' => ['bool', 'type'=>'int', 'year'=>'int', 'month'=>'int', 'day'=>'int', 'hour'=>'int', 'min'=>'int', 'sec'=>'int', 'ind'=>'string', 'off_hour'=>'int', 'off_min'=>'int'], - 'HaruDoc::setOpenAction' => ['bool', 'destination'=>'object'], - 'HaruDoc::setPageLayout' => ['bool', 'layout'=>'int'], - 'HaruDoc::setPageMode' => ['bool', 'mode'=>'int'], - 'HaruDoc::setPagesConfiguration' => ['bool', 'page_per_pages'=>'int'], - 'HaruDoc::setPassword' => ['bool', 'owner_password'=>'string', 'user_password'=>'string'], - 'HaruDoc::setPermission' => ['bool', 'permission'=>'int'], - 'HaruDoc::useCNSEncodings' => ['bool'], - 'HaruDoc::useCNSFonts' => ['bool'], - 'HaruDoc::useCNTEncodings' => ['bool'], - 'HaruDoc::useCNTFonts' => ['bool'], - 'HaruDoc::useJPEncodings' => ['bool'], - 'HaruDoc::useJPFonts' => ['bool'], - 'HaruDoc::useKREncodings' => ['bool'], - 'HaruDoc::useKRFonts' => ['bool'], - 'HaruEncoder::getByteType' => ['int', 'text'=>'string', 'index'=>'int'], - 'HaruEncoder::getType' => ['int'], - 'HaruEncoder::getUnicode' => ['int', 'character'=>'int'], - 'HaruEncoder::getWritingMode' => ['int'], - 'HaruFont::getAscent' => ['int'], - 'HaruFont::getCapHeight' => ['int'], - 'HaruFont::getDescent' => ['int'], - 'HaruFont::getEncodingName' => ['string'], - 'HaruFont::getFontName' => ['string'], - 'HaruFont::getTextWidth' => ['array', 'text'=>'string'], - 'HaruFont::getUnicodeWidth' => ['int', 'character'=>'int'], - 'HaruFont::getXHeight' => ['int'], - 'HaruFont::measureText' => ['int', 'text'=>'string', 'width'=>'float', 'font_size'=>'float', 'char_space'=>'float', 'word_space'=>'float', 'word_wrap='=>'bool'], - 'HaruImage::getBitsPerComponent' => ['int'], - 'HaruImage::getColorSpace' => ['string'], - 'HaruImage::getHeight' => ['int'], - 'HaruImage::getSize' => ['array'], - 'HaruImage::getWidth' => ['int'], - 'HaruImage::setColorMask' => ['bool', 'rmin'=>'int', 'rmax'=>'int', 'gmin'=>'int', 'gmax'=>'int', 'bmin'=>'int', 'bmax'=>'int'], - 'HaruImage::setMaskImage' => ['bool', 'mask_image'=>'object'], - 'HaruOutline::setDestination' => ['bool', 'destination'=>'object'], - 'HaruOutline::setOpened' => ['bool', 'opened'=>'bool'], - 'HaruPage::arc' => ['bool', 'x'=>'float', 'y'=>'float', 'ray'=>'float', 'ang1'=>'float', 'ang2'=>'float'], - 'HaruPage::beginText' => ['bool'], - 'HaruPage::circle' => ['bool', 'x'=>'float', 'y'=>'float', 'ray'=>'float'], - 'HaruPage::closePath' => ['bool'], - 'HaruPage::concat' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], - 'HaruPage::createDestination' => ['object'], - 'HaruPage::createLinkAnnotation' => ['object', 'rectangle'=>'array', 'destination'=>'object'], - 'HaruPage::createTextAnnotation' => ['object', 'rectangle'=>'array', 'text'=>'string', 'encoder='=>'object'], - 'HaruPage::createURLAnnotation' => ['object', 'rectangle'=>'array', 'url'=>'string'], - 'HaruPage::curveTo' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'HaruPage::curveTo2' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'HaruPage::curveTo3' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'HaruPage::drawImage' => ['bool', 'image'=>'object', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'HaruPage::ellipse' => ['bool', 'x'=>'float', 'y'=>'float', 'xray'=>'float', 'yray'=>'float'], - 'HaruPage::endPath' => ['bool'], - 'HaruPage::endText' => ['bool'], - 'HaruPage::eoFillStroke' => ['bool', 'close_path='=>'bool'], - 'HaruPage::eofill' => ['bool'], - 'HaruPage::fill' => ['bool'], - 'HaruPage::fillStroke' => ['bool', 'close_path='=>'bool'], - 'HaruPage::getCMYKFill' => ['array'], - 'HaruPage::getCMYKStroke' => ['array'], - 'HaruPage::getCharSpace' => ['float'], - 'HaruPage::getCurrentFont' => ['object'], - 'HaruPage::getCurrentFontSize' => ['float'], - 'HaruPage::getCurrentPos' => ['array'], - 'HaruPage::getCurrentTextPos' => ['array'], - 'HaruPage::getDash' => ['array'], - 'HaruPage::getFillingColorSpace' => ['int'], - 'HaruPage::getFlatness' => ['float'], - 'HaruPage::getGMode' => ['int'], - 'HaruPage::getGrayFill' => ['float'], - 'HaruPage::getGrayStroke' => ['float'], - 'HaruPage::getHeight' => ['float'], - 'HaruPage::getHorizontalScaling' => ['float'], - 'HaruPage::getLineCap' => ['int'], - 'HaruPage::getLineJoin' => ['int'], - 'HaruPage::getLineWidth' => ['float'], - 'HaruPage::getMiterLimit' => ['float'], - 'HaruPage::getRGBFill' => ['array'], - 'HaruPage::getRGBStroke' => ['array'], - 'HaruPage::getStrokingColorSpace' => ['int'], - 'HaruPage::getTextLeading' => ['float'], - 'HaruPage::getTextMatrix' => ['array'], - 'HaruPage::getTextRenderingMode' => ['int'], - 'HaruPage::getTextRise' => ['float'], - 'HaruPage::getTextWidth' => ['float', 'text'=>'string'], - 'HaruPage::getTransMatrix' => ['array'], - 'HaruPage::getWidth' => ['float'], - 'HaruPage::getWordSpace' => ['float'], - 'HaruPage::lineTo' => ['bool', 'x'=>'float', 'y'=>'float'], - 'HaruPage::measureText' => ['int', 'text'=>'string', 'width'=>'float', 'wordwrap='=>'bool'], - 'HaruPage::moveTextPos' => ['bool', 'x'=>'float', 'y'=>'float', 'set_leading='=>'bool'], - 'HaruPage::moveTo' => ['bool', 'x'=>'float', 'y'=>'float'], - 'HaruPage::moveToNextLine' => ['bool'], - 'HaruPage::rectangle' => ['bool', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'HaruPage::setCMYKFill' => ['bool', 'c'=>'float', 'm'=>'float', 'y'=>'float', 'k'=>'float'], - 'HaruPage::setCMYKStroke' => ['bool', 'c'=>'float', 'm'=>'float', 'y'=>'float', 'k'=>'float'], - 'HaruPage::setCharSpace' => ['bool', 'char_space'=>'float'], - 'HaruPage::setDash' => ['bool', 'pattern'=>'array', 'phase'=>'int'], - 'HaruPage::setFlatness' => ['bool', 'flatness'=>'float'], - 'HaruPage::setFontAndSize' => ['bool', 'font'=>'object', 'size'=>'float'], - 'HaruPage::setGrayFill' => ['bool', 'value'=>'float'], - 'HaruPage::setGrayStroke' => ['bool', 'value'=>'float'], - 'HaruPage::setHeight' => ['bool', 'height'=>'float'], - 'HaruPage::setHorizontalScaling' => ['bool', 'scaling'=>'float'], - 'HaruPage::setLineCap' => ['bool', 'cap'=>'int'], - 'HaruPage::setLineJoin' => ['bool', 'join'=>'int'], - 'HaruPage::setLineWidth' => ['bool', 'width'=>'float'], - 'HaruPage::setMiterLimit' => ['bool', 'limit'=>'float'], - 'HaruPage::setRGBFill' => ['bool', 'r'=>'float', 'g'=>'float', 'b'=>'float'], - 'HaruPage::setRGBStroke' => ['bool', 'r'=>'float', 'g'=>'float', 'b'=>'float'], - 'HaruPage::setRotate' => ['bool', 'angle'=>'int'], - 'HaruPage::setSize' => ['bool', 'size'=>'int', 'direction'=>'int'], - 'HaruPage::setSlideShow' => ['bool', 'type'=>'int', 'disp_time'=>'float', 'trans_time'=>'float'], - 'HaruPage::setTextLeading' => ['bool', 'text_leading'=>'float'], - 'HaruPage::setTextMatrix' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], - 'HaruPage::setTextRenderingMode' => ['bool', 'mode'=>'int'], - 'HaruPage::setTextRise' => ['bool', 'rise'=>'float'], - 'HaruPage::setWidth' => ['bool', 'width'=>'float'], - 'HaruPage::setWordSpace' => ['bool', 'word_space'=>'float'], - 'HaruPage::showText' => ['bool', 'text'=>'string'], - 'HaruPage::showTextNextLine' => ['bool', 'text'=>'string', 'word_space='=>'float', 'char_space='=>'float'], - 'HaruPage::stroke' => ['bool', 'close_path='=>'bool'], - 'HaruPage::textOut' => ['bool', 'x'=>'float', 'y'=>'float', 'text'=>'string'], - 'HaruPage::textRect' => ['bool', 'left'=>'float', 'top'=>'float', 'right'=>'float', 'bottom'=>'float', 'text'=>'string', 'align='=>'int'], - 'HttpDeflateStream::__construct' => ['void', 'flags='=>'int'], - 'HttpDeflateStream::factory' => ['HttpDeflateStream', 'flags='=>'int', 'class_name='=>'string'], - 'HttpDeflateStream::finish' => ['string', 'data='=>'string'], - 'HttpDeflateStream::flush' => ['string|false', 'data='=>'string'], - 'HttpDeflateStream::update' => ['string|false', 'data'=>'string'], - 'HttpInflateStream::__construct' => ['void', 'flags='=>'int'], - 'HttpInflateStream::factory' => ['HttpInflateStream', 'flags='=>'int', 'class_name='=>'string'], - 'HttpInflateStream::finish' => ['string', 'data='=>'string'], - 'HttpInflateStream::flush' => ['string|false', 'data='=>'string'], - 'HttpInflateStream::update' => ['string|false', 'data'=>'string'], - 'HttpMessage::__construct' => ['void', 'message='=>'string'], - 'HttpMessage::__toString' => ['string'], - 'HttpMessage::addHeaders' => ['void', 'headers'=>'array', 'append='=>'bool'], - 'HttpMessage::count' => ['int'], - 'HttpMessage::current' => ['mixed'], - 'HttpMessage::detach' => ['HttpMessage'], - 'HttpMessage::factory' => ['?HttpMessage', 'raw_message='=>'string', 'class_name='=>'string'], - 'HttpMessage::fromEnv' => ['?HttpMessage', 'message_type'=>'int', 'class_name='=>'string'], - 'HttpMessage::fromString' => ['?HttpMessage', 'raw_message='=>'string', 'class_name='=>'string'], - 'HttpMessage::getBody' => ['string'], - 'HttpMessage::getHeader' => ['?string', 'header'=>'string'], - 'HttpMessage::getHeaders' => ['array'], - 'HttpMessage::getHttpVersion' => ['string'], - 'HttpMessage::getInfo' => [''], - 'HttpMessage::getParentMessage' => ['HttpMessage'], - 'HttpMessage::getRequestMethod' => ['string|false'], - 'HttpMessage::getRequestUrl' => ['string|false'], - 'HttpMessage::getResponseCode' => ['int'], - 'HttpMessage::getResponseStatus' => ['string'], - 'HttpMessage::getType' => ['int'], - 'HttpMessage::guessContentType' => ['string|false', 'magic_file'=>'string', 'magic_mode='=>'int'], - 'HttpMessage::key' => ['int|string'], - 'HttpMessage::next' => ['void'], - 'HttpMessage::prepend' => ['void', 'message'=>'HttpMessage', 'top='=>'bool'], - 'HttpMessage::reverse' => ['HttpMessage'], - 'HttpMessage::rewind' => ['void'], - 'HttpMessage::send' => ['bool'], - 'HttpMessage::serialize' => ['string'], - 'HttpMessage::setBody' => ['void', 'body'=>'string'], - 'HttpMessage::setHeaders' => ['void', 'headers'=>'array'], - 'HttpMessage::setHttpVersion' => ['bool', 'version'=>'string'], - 'HttpMessage::setInfo' => ['', 'http_info'=>''], - 'HttpMessage::setRequestMethod' => ['bool', 'method'=>'string'], - 'HttpMessage::setRequestUrl' => ['bool', 'url'=>'string'], - 'HttpMessage::setResponseCode' => ['bool', 'code'=>'int'], - 'HttpMessage::setResponseStatus' => ['bool', 'status'=>'string'], - 'HttpMessage::setType' => ['void', 'type'=>'int'], - 'HttpMessage::toMessageTypeObject' => ['HttpRequest|HttpResponse|null'], - 'HttpMessage::toString' => ['string', 'include_parent='=>'bool'], - 'HttpMessage::unserialize' => ['void', 'serialized'=>'string'], - 'HttpMessage::valid' => ['bool'], - 'HttpQueryString::__construct' => ['void', 'global='=>'bool', 'add='=>'mixed'], - 'HttpQueryString::__toString' => ['string'], - 'HttpQueryString::factory' => ['', 'global'=>'', 'params'=>'', 'class_name'=>''], - 'HttpQueryString::get' => ['mixed', 'key='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], - 'HttpQueryString::getArray' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::getBool' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::getFloat' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::getInt' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::getObject' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::getString' => ['', 'name'=>'', 'defval'=>'', 'delete'=>''], - 'HttpQueryString::mod' => ['HttpQueryString', 'params'=>'mixed'], - 'HttpQueryString::offsetExists' => ['bool', 'offset'=>'int|string'], - 'HttpQueryString::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'HttpQueryString::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'HttpQueryString::offsetUnset' => ['void', 'offset'=>'int|string'], - 'HttpQueryString::serialize' => ['string'], - 'HttpQueryString::set' => ['string', 'params'=>'mixed'], - 'HttpQueryString::singleton' => ['HttpQueryString', 'global='=>'bool'], - 'HttpQueryString::toArray' => ['array'], - 'HttpQueryString::toString' => ['string'], - 'HttpQueryString::unserialize' => ['void', 'serialized'=>'string'], - 'HttpQueryString::xlate' => ['bool', 'ie'=>'string', 'oe'=>'string'], - 'HttpRequest::__construct' => ['void', 'url='=>'string', 'request_method='=>'int', 'options='=>'array'], - 'HttpRequest::addBody' => ['', 'request_body_data'=>''], - 'HttpRequest::addCookies' => ['bool', 'cookies'=>'array'], - 'HttpRequest::addHeaders' => ['bool', 'headers'=>'array'], - 'HttpRequest::addPostFields' => ['bool', 'post_data'=>'array'], - 'HttpRequest::addPostFile' => ['bool', 'name'=>'string', 'file'=>'string', 'content_type='=>'string'], - 'HttpRequest::addPutData' => ['bool', 'put_data'=>'string'], - 'HttpRequest::addQueryData' => ['bool', 'query_params'=>'array'], - 'HttpRequest::addRawPostData' => ['bool', 'raw_post_data'=>'string'], - 'HttpRequest::addSslOptions' => ['bool', 'options'=>'array'], - 'HttpRequest::clearHistory' => ['void'], - 'HttpRequest::enableCookies' => ['bool'], - 'HttpRequest::encodeBody' => ['', 'fields'=>'', 'files'=>''], - 'HttpRequest::factory' => ['', 'url'=>'', 'method'=>'', 'options'=>'', 'class_name'=>''], - 'HttpRequest::flushCookies' => [''], - 'HttpRequest::get' => ['', 'url'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::getBody' => [''], - 'HttpRequest::getContentType' => ['string'], - 'HttpRequest::getCookies' => ['array'], - 'HttpRequest::getHeaders' => ['array'], - 'HttpRequest::getHistory' => ['HttpMessage'], - 'HttpRequest::getMethod' => ['int'], - 'HttpRequest::getOptions' => ['array'], - 'HttpRequest::getPostFields' => ['array'], - 'HttpRequest::getPostFiles' => ['array'], - 'HttpRequest::getPutData' => ['string'], - 'HttpRequest::getPutFile' => ['string'], - 'HttpRequest::getQueryData' => ['string'], - 'HttpRequest::getRawPostData' => ['string'], - 'HttpRequest::getRawRequestMessage' => ['string'], - 'HttpRequest::getRawResponseMessage' => ['string'], - 'HttpRequest::getRequestMessage' => ['HttpMessage'], - 'HttpRequest::getResponseBody' => ['string'], - 'HttpRequest::getResponseCode' => ['int'], - 'HttpRequest::getResponseCookies' => ['stdClass[]', 'flags='=>'int', 'allowed_extras='=>'array'], - 'HttpRequest::getResponseData' => ['array'], - 'HttpRequest::getResponseHeader' => ['mixed', 'name='=>'string'], - 'HttpRequest::getResponseInfo' => ['mixed', 'name='=>'string'], - 'HttpRequest::getResponseMessage' => ['HttpMessage'], - 'HttpRequest::getResponseStatus' => ['string'], - 'HttpRequest::getSslOptions' => ['array'], - 'HttpRequest::getUrl' => ['string'], - 'HttpRequest::head' => ['', 'url'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::methodExists' => ['', 'method'=>''], - 'HttpRequest::methodName' => ['', 'method_id'=>''], - 'HttpRequest::methodRegister' => ['', 'method_name'=>''], - 'HttpRequest::methodUnregister' => ['', 'method'=>''], - 'HttpRequest::postData' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::postFields' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::putData' => ['', 'url'=>'', 'data'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::putFile' => ['', 'url'=>'', 'file'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::putStream' => ['', 'url'=>'', 'stream'=>'', 'options'=>'', '&info'=>''], - 'HttpRequest::resetCookies' => ['bool', 'session_only='=>'bool'], - 'HttpRequest::send' => ['HttpMessage'], - 'HttpRequest::setBody' => ['bool', 'request_body_data='=>'string'], - 'HttpRequest::setContentType' => ['bool', 'content_type'=>'string'], - 'HttpRequest::setCookies' => ['bool', 'cookies='=>'array'], - 'HttpRequest::setHeaders' => ['bool', 'headers='=>'array'], - 'HttpRequest::setMethod' => ['bool', 'request_method'=>'int'], - 'HttpRequest::setOptions' => ['bool', 'options='=>'array'], - 'HttpRequest::setPostFields' => ['bool', 'post_data'=>'array'], - 'HttpRequest::setPostFiles' => ['bool', 'post_files'=>'array'], - 'HttpRequest::setPutData' => ['bool', 'put_data='=>'string'], - 'HttpRequest::setPutFile' => ['bool', 'file='=>'string'], - 'HttpRequest::setQueryData' => ['bool', 'query_data'=>'mixed'], - 'HttpRequest::setRawPostData' => ['bool', 'raw_post_data='=>'string'], - 'HttpRequest::setSslOptions' => ['bool', 'options='=>'array'], - 'HttpRequest::setUrl' => ['bool', 'url'=>'string'], - 'HttpRequestDataShare::__construct' => ['void'], - 'HttpRequestDataShare::__destruct' => ['void'], - 'HttpRequestDataShare::attach' => ['', 'request'=>'HttpRequest'], - 'HttpRequestDataShare::count' => ['int'], - 'HttpRequestDataShare::detach' => ['', 'request'=>'HttpRequest'], - 'HttpRequestDataShare::factory' => ['', 'global'=>'', 'class_name'=>''], - 'HttpRequestDataShare::reset' => [''], - 'HttpRequestDataShare::singleton' => ['', 'global'=>''], - 'HttpRequestPool::__construct' => ['void', 'request='=>'HttpRequest'], - 'HttpRequestPool::__destruct' => ['void'], - 'HttpRequestPool::attach' => ['bool', 'request'=>'HttpRequest'], - 'HttpRequestPool::count' => ['int'], - 'HttpRequestPool::current' => ['mixed'], - 'HttpRequestPool::detach' => ['bool', 'request'=>'HttpRequest'], - 'HttpRequestPool::enableEvents' => ['', 'enable'=>''], - 'HttpRequestPool::enablePipelining' => ['', 'enable'=>''], - 'HttpRequestPool::getAttachedRequests' => ['array'], - 'HttpRequestPool::getFinishedRequests' => ['array'], - 'HttpRequestPool::key' => ['int|string'], - 'HttpRequestPool::next' => ['void'], - 'HttpRequestPool::reset' => ['void'], - 'HttpRequestPool::rewind' => ['void'], - 'HttpRequestPool::send' => ['bool'], - 'HttpRequestPool::socketPerform' => ['bool'], - 'HttpRequestPool::socketSelect' => ['bool', 'timeout='=>'float'], - 'HttpRequestPool::valid' => ['bool'], - 'HttpResponse::capture' => ['void'], - 'HttpResponse::getBufferSize' => ['int'], - 'HttpResponse::getCache' => ['bool'], - 'HttpResponse::getCacheControl' => ['string'], - 'HttpResponse::getContentDisposition' => ['string'], - 'HttpResponse::getContentType' => ['string'], - 'HttpResponse::getData' => ['string'], - 'HttpResponse::getETag' => ['string'], - 'HttpResponse::getFile' => ['string'], - 'HttpResponse::getGzip' => ['bool'], - 'HttpResponse::getHeader' => ['mixed', 'name='=>'string'], - 'HttpResponse::getLastModified' => ['int'], - 'HttpResponse::getRequestBody' => ['string'], - 'HttpResponse::getRequestBodyStream' => ['resource'], - 'HttpResponse::getRequestHeaders' => ['array'], - 'HttpResponse::getStream' => ['resource'], - 'HttpResponse::getThrottleDelay' => ['float'], - 'HttpResponse::guessContentType' => ['string|false', 'magic_file'=>'string', 'magic_mode='=>'int'], - 'HttpResponse::redirect' => ['void', 'url='=>'string', 'params='=>'array', 'session='=>'bool', 'status='=>'int'], - 'HttpResponse::send' => ['bool', 'clean_ob='=>'bool'], - 'HttpResponse::setBufferSize' => ['bool', 'bytes'=>'int'], - 'HttpResponse::setCache' => ['bool', 'cache'=>'bool'], - 'HttpResponse::setCacheControl' => ['bool', 'control'=>'string', 'max_age='=>'int', 'must_revalidate='=>'bool'], - 'HttpResponse::setContentDisposition' => ['bool', 'filename'=>'string', 'inline='=>'bool'], - 'HttpResponse::setContentType' => ['bool', 'content_type'=>'string'], - 'HttpResponse::setData' => ['bool', 'data'=>'mixed'], - 'HttpResponse::setETag' => ['bool', 'etag'=>'string'], - 'HttpResponse::setFile' => ['bool', 'file'=>'string'], - 'HttpResponse::setGzip' => ['bool', 'gzip'=>'bool'], - 'HttpResponse::setHeader' => ['bool', 'name'=>'string', 'value='=>'mixed', 'replace='=>'bool'], - 'HttpResponse::setLastModified' => ['bool', 'timestamp'=>'int'], - 'HttpResponse::setStream' => ['bool', 'stream'=>'resource'], - 'HttpResponse::setThrottleDelay' => ['bool', 'seconds'=>'float'], - 'HttpResponse::status' => ['bool', 'status'=>'int'], - 'HttpUtil::buildCookie' => ['', 'cookie_array'=>''], - 'HttpUtil::buildStr' => ['', 'query'=>'', 'prefix'=>'', 'arg_sep'=>''], - 'HttpUtil::buildUrl' => ['', 'url'=>'', 'parts'=>'', 'flags'=>'', '&composed'=>''], - 'HttpUtil::chunkedDecode' => ['', 'encoded_string'=>''], - 'HttpUtil::date' => ['', 'timestamp'=>''], - 'HttpUtil::deflate' => ['', 'plain'=>'', 'flags'=>''], - 'HttpUtil::inflate' => ['', 'encoded'=>''], - 'HttpUtil::matchEtag' => ['', 'plain_etag'=>'', 'for_range'=>''], - 'HttpUtil::matchModified' => ['', 'last_modified'=>'', 'for_range'=>''], - 'HttpUtil::matchRequestHeader' => ['', 'header_name'=>'', 'header_value'=>'', 'case_sensitive'=>''], - 'HttpUtil::negotiateCharset' => ['', 'supported'=>'', '&result'=>''], - 'HttpUtil::negotiateContentType' => ['', 'supported'=>'', '&result'=>''], - 'HttpUtil::negotiateLanguage' => ['', 'supported'=>'', '&result'=>''], - 'HttpUtil::parseCookie' => ['', 'cookie_string'=>''], - 'HttpUtil::parseHeaders' => ['', 'headers_string'=>''], - 'HttpUtil::parseMessage' => ['', 'message_string'=>''], - 'HttpUtil::parseParams' => ['', 'param_string'=>'', 'flags'=>''], - 'HttpUtil::support' => ['', 'feature'=>''], - 'Imagick::__construct' => ['void', 'files='=>'string|string[]'], - 'Imagick::__toString' => ['string'], - 'Imagick::adaptiveBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Imagick::adaptiveResizeImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'bestfit='=>'bool'], - 'Imagick::adaptiveSharpenImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Imagick::adaptiveThresholdImage' => ['bool', 'width'=>'int', 'height'=>'int', 'offset'=>'int'], - 'Imagick::addImage' => ['bool', 'source'=>'Imagick'], - 'Imagick::addNoiseImage' => ['bool', 'noise_type'=>'int', 'channel='=>'int'], - 'Imagick::affineTransformImage' => ['bool', 'matrix'=>'ImagickDraw'], - 'Imagick::animateImages' => ['bool', 'x_server'=>'string'], - 'Imagick::annotateImage' => ['bool', 'draw_settings'=>'ImagickDraw', 'x'=>'float', 'y'=>'float', 'angle'=>'float', 'text'=>'string'], - 'Imagick::appendImages' => ['Imagick', 'stack'=>'bool'], - 'Imagick::autoGammaImage' => ['bool', 'channel='=>'int'], - 'Imagick::autoLevelImage' => ['void', 'CHANNEL='=>'string'], - 'Imagick::autoOrient' => ['bool'], - 'Imagick::averageImages' => ['Imagick'], - 'Imagick::blackThresholdImage' => ['bool', 'threshold'=>'mixed'], - 'Imagick::blueShiftImage' => ['void', 'factor='=>'float'], - 'Imagick::blurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Imagick::borderImage' => ['bool', 'bordercolor'=>'mixed', 'width'=>'int', 'height'=>'int'], - 'Imagick::brightnessContrastImage' => ['void', 'brightness'=>'string', 'contrast'=>'string', 'CHANNEL='=>'string'], - 'Imagick::charcoalImage' => ['bool', 'radius'=>'float', 'sigma'=>'float'], - 'Imagick::chopImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::clampImage' => ['void', 'CHANNEL='=>'string'], - 'Imagick::clear' => ['bool'], - 'Imagick::clipImage' => ['bool'], - 'Imagick::clipImagePath' => ['void', 'pathname'=>'string', 'inside'=>'string'], - 'Imagick::clipPathImage' => ['bool', 'pathname'=>'string', 'inside'=>'bool'], - 'Imagick::clone' => ['Imagick'], - 'Imagick::clutImage' => ['bool', 'lookup_table'=>'Imagick', 'channel='=>'float'], - 'Imagick::coalesceImages' => ['Imagick'], - 'Imagick::colorFloodfillImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int'], - 'Imagick::colorMatrixImage' => ['void', 'color_matrix'=>'string'], - 'Imagick::colorizeImage' => ['bool', 'colorize'=>'mixed', 'opacity'=>'mixed'], - 'Imagick::combineImages' => ['Imagick', 'channeltype'=>'int'], - 'Imagick::commentImage' => ['bool', 'comment'=>'string'], - 'Imagick::compareImageChannels' => ['array{Imagick, float}', 'image'=>'Imagick', 'channeltype'=>'int', 'metrictype'=>'int'], - 'Imagick::compareImageLayers' => ['Imagick', 'method'=>'int'], - 'Imagick::compareImages' => ['array{Imagick, float}', 'compare'=>'Imagick', 'metric'=>'int'], - 'Imagick::compositeImage' => ['bool', 'composite_object'=>'Imagick', 'composite'=>'int', 'x'=>'int', 'y'=>'int', 'channel='=>'int'], - 'Imagick::compositeImageGravity' => ['bool', 'Imagick'=>'Imagick', 'COMPOSITE_CONSTANT'=>'int', 'GRAVITY_CONSTANT'=>'int'], - 'Imagick::contrastImage' => ['bool', 'sharpen'=>'bool'], - 'Imagick::contrastStretchImage' => ['bool', 'black_point'=>'float', 'white_point'=>'float', 'channel='=>'int'], - 'Imagick::convolveImage' => ['bool', 'kernel'=>'array', 'channel='=>'int'], - 'Imagick::count' => ['void', 'mode='=>'string'], - 'Imagick::cropImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::cropThumbnailImage' => ['bool', 'width'=>'int', 'height'=>'int', 'legacy='=>'bool'], - 'Imagick::current' => ['Imagick'], - 'Imagick::cycleColormapImage' => ['bool', 'displace'=>'int'], - 'Imagick::decipherImage' => ['bool', 'passphrase'=>'string'], - 'Imagick::deconstructImages' => ['Imagick'], - 'Imagick::deleteImageArtifact' => ['bool', 'artifact'=>'string'], - 'Imagick::deleteImageProperty' => ['void', 'name'=>'string'], - 'Imagick::deskewImage' => ['bool', 'threshold'=>'float'], - 'Imagick::despeckleImage' => ['bool'], - 'Imagick::destroy' => ['bool'], - 'Imagick::displayImage' => ['bool', 'servername'=>'string'], - 'Imagick::displayImages' => ['bool', 'servername'=>'string'], - 'Imagick::distortImage' => ['bool', 'method'=>'int', 'arguments'=>'array', 'bestfit'=>'bool'], - 'Imagick::drawImage' => ['bool', 'draw'=>'ImagickDraw'], - 'Imagick::edgeImage' => ['bool', 'radius'=>'float'], - 'Imagick::embossImage' => ['bool', 'radius'=>'float', 'sigma'=>'float'], - 'Imagick::encipherImage' => ['bool', 'passphrase'=>'string'], - 'Imagick::enhanceImage' => ['bool'], - 'Imagick::equalizeImage' => ['bool'], - 'Imagick::evaluateImage' => ['bool', 'op'=>'int', 'constant'=>'float', 'channel='=>'int'], - 'Imagick::evaluateImages' => ['bool', 'EVALUATE_CONSTANT'=>'int'], - 'Imagick::exportImagePixels' => ['list', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int', 'map'=>'string', 'storage'=>'int'], - 'Imagick::extentImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::filter' => ['void', 'ImagickKernel'=>'ImagickKernel', 'CHANNEL='=>'int'], - 'Imagick::flattenImages' => ['Imagick'], - 'Imagick::flipImage' => ['bool'], - 'Imagick::floodFillPaintImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'target'=>'mixed', 'x'=>'int', 'y'=>'int', 'invert'=>'bool', 'channel='=>'int'], - 'Imagick::flopImage' => ['bool'], - 'Imagick::forwardFourierTransformimage' => ['void', 'magnitude'=>'bool'], - 'Imagick::frameImage' => ['bool', 'matte_color'=>'mixed', 'width'=>'int', 'height'=>'int', 'inner_bevel'=>'int', 'outer_bevel'=>'int'], - 'Imagick::functionImage' => ['bool', 'function'=>'int', 'arguments'=>'array', 'channel='=>'int'], - 'Imagick::fxImage' => ['Imagick', 'expression'=>'string', 'channel='=>'int'], - 'Imagick::gammaImage' => ['bool', 'gamma'=>'float', 'channel='=>'int'], - 'Imagick::gaussianBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Imagick::getColorspace' => ['int'], - 'Imagick::getCompression' => ['int'], - 'Imagick::getCompressionQuality' => ['int'], - 'Imagick::getConfigureOptions' => ['string'], - 'Imagick::getCopyright' => ['string'], - 'Imagick::getFeatures' => ['string'], - 'Imagick::getFilename' => ['string'], - 'Imagick::getFont' => ['string|false'], - 'Imagick::getFormat' => ['string'], - 'Imagick::getGravity' => ['int'], - 'Imagick::getHDRIEnabled' => ['int'], - 'Imagick::getHomeURL' => ['string'], - 'Imagick::getImage' => ['Imagick'], - 'Imagick::getImageAlphaChannel' => ['int'], - 'Imagick::getImageArtifact' => ['string', 'artifact'=>'string'], - 'Imagick::getImageAttribute' => ['string', 'key'=>'string'], - 'Imagick::getImageBackgroundColor' => ['ImagickPixel'], - 'Imagick::getImageBlob' => ['string'], - 'Imagick::getImageBluePrimary' => ['array{x:float, y:float}'], - 'Imagick::getImageBorderColor' => ['ImagickPixel'], - 'Imagick::getImageChannelDepth' => ['int', 'channel'=>'int'], - 'Imagick::getImageChannelDistortion' => ['float', 'reference'=>'Imagick', 'channel'=>'int', 'metric'=>'int'], - 'Imagick::getImageChannelDistortions' => ['float', 'reference'=>'Imagick', 'metric'=>'int', 'channel='=>'int'], - 'Imagick::getImageChannelExtrema' => ['array{minima:int, maxima:int}', 'channel'=>'int'], - 'Imagick::getImageChannelKurtosis' => ['array{kurtosis:float, skewness:float}', 'channel='=>'int'], - 'Imagick::getImageChannelMean' => ['array{mean:float, standardDeviation:float}', 'channel'=>'int'], - 'Imagick::getImageChannelRange' => ['array{minima:float, maxima:float}', 'channel'=>'int'], - 'Imagick::getImageChannelStatistics' => ['array'], - 'Imagick::getImageClipMask' => ['Imagick'], - 'Imagick::getImageColormapColor' => ['ImagickPixel', 'index'=>'int'], - 'Imagick::getImageColors' => ['int'], - 'Imagick::getImageColorspace' => ['int'], - 'Imagick::getImageCompose' => ['int'], - 'Imagick::getImageCompression' => ['int'], - 'Imagick::getImageCompressionQuality' => ['int'], - 'Imagick::getImageDelay' => ['int'], - 'Imagick::getImageDepth' => ['int'], - 'Imagick::getImageDispose' => ['int'], - 'Imagick::getImageDistortion' => ['float', 'reference'=>'magickwand', 'metric'=>'int'], - 'Imagick::getImageExtrema' => ['array{min:int, max:int}'], - 'Imagick::getImageFilename' => ['string'], - 'Imagick::getImageFormat' => ['string'], - 'Imagick::getImageGamma' => ['float'], - 'Imagick::getImageGeometry' => ['array{width:int, height:int}'], - 'Imagick::getImageGravity' => ['int'], - 'Imagick::getImageGreenPrimary' => ['array{x:float, y:float}'], - 'Imagick::getImageHeight' => ['int'], - 'Imagick::getImageHistogram' => ['list'], - 'Imagick::getImageIndex' => ['int'], - 'Imagick::getImageInterlaceScheme' => ['int'], - 'Imagick::getImageInterpolateMethod' => ['int'], - 'Imagick::getImageIterations' => ['int'], - 'Imagick::getImageLength' => ['int'], - 'Imagick::getImageMagickLicense' => ['string'], - 'Imagick::getImageMatte' => ['bool'], - 'Imagick::getImageMatteColor' => ['ImagickPixel'], - 'Imagick::getImageMimeType' => ['string'], - 'Imagick::getImageOrientation' => ['int'], - 'Imagick::getImagePage' => ['array{width:int, height:int, x:int, y:int}'], - 'Imagick::getImagePixelColor' => ['ImagickPixel', 'x'=>'int', 'y'=>'int'], - 'Imagick::getImageProfile' => ['string', 'name'=>'string'], - 'Imagick::getImageProfiles' => ['array', 'pattern='=>'string', 'only_names='=>'bool'], - 'Imagick::getImageProperties' => ['array', 'pattern='=>'string', 'only_names='=>'bool'], - 'Imagick::getImageProperty' => ['string|false', 'name'=>'string'], - 'Imagick::getImageRedPrimary' => ['array{x:float, y:float}'], - 'Imagick::getImageRegion' => ['Imagick', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::getImageRenderingIntent' => ['int'], - 'Imagick::getImageResolution' => ['array{x:float, y:float}'], - 'Imagick::getImageScene' => ['int'], - 'Imagick::getImageSignature' => ['string'], - 'Imagick::getImageSize' => ['int'], - 'Imagick::getImageTicksPerSecond' => ['int'], - 'Imagick::getImageTotalInkDensity' => ['float'], - 'Imagick::getImageType' => ['int'], - 'Imagick::getImageUnits' => ['int'], - 'Imagick::getImageVirtualPixelMethod' => ['int'], - 'Imagick::getImageWhitePoint' => ['array{x:float, y:float}'], - 'Imagick::getImageWidth' => ['int'], - 'Imagick::getImagesBlob' => ['string'], - 'Imagick::getInterlaceScheme' => ['int'], - 'Imagick::getIteratorIndex' => ['int'], - 'Imagick::getNumberImages' => ['int'], - 'Imagick::getOption' => ['string', 'key'=>'string'], - 'Imagick::getPackageName' => ['string'], - 'Imagick::getPage' => ['array{width:int, height:int, x:int, y:int}'], - 'Imagick::getPixelIterator' => ['ImagickPixelIterator'], - 'Imagick::getPixelRegionIterator' => ['ImagickPixelIterator', 'x'=>'int', 'y'=>'int', 'columns'=>'int', 'rows'=>'int'], - 'Imagick::getPointSize' => ['float'], - 'Imagick::getQuantum' => ['int'], - 'Imagick::getQuantumDepth' => ['array{quantumDepthLong:int, quantumDepthString:string}'], - 'Imagick::getQuantumRange' => ['array{quantumRangeLong:int, quantumRangeString:string}'], - 'Imagick::getRegistry' => ['string|false', 'key'=>'string'], - 'Imagick::getReleaseDate' => ['string'], - 'Imagick::getResource' => ['int', 'type'=>'int'], - 'Imagick::getResourceLimit' => ['int', 'type'=>'int'], - 'Imagick::getSamplingFactors' => ['array'], - 'Imagick::getSize' => ['array{columns:int, rows: int}'], - 'Imagick::getSizeOffset' => ['int'], - 'Imagick::getVersion' => ['array{versionNumber: int, versionString:string}'], - 'Imagick::haldClutImage' => ['bool', 'clut'=>'Imagick', 'channel='=>'int'], - 'Imagick::hasNextImage' => ['bool'], - 'Imagick::hasPreviousImage' => ['bool'], - 'Imagick::identifyFormat' => ['string|false', 'embedText'=>'string'], - 'Imagick::identifyImage' => ['array', 'appendrawoutput='=>'bool'], - 'Imagick::identifyImageType' => ['int'], - 'Imagick::implodeImage' => ['bool', 'radius'=>'float'], - 'Imagick::importImagePixels' => ['bool', 'x'=>'int', 'y'=>'int', 'width'=>'int', 'height'=>'int', 'map'=>'string', 'storage'=>'int', 'pixels'=>'list'], - 'Imagick::inverseFourierTransformImage' => ['void', 'complement'=>'string', 'magnitude'=>'string'], - 'Imagick::key' => ['int|string'], - 'Imagick::labelImage' => ['bool', 'label'=>'string'], - 'Imagick::levelImage' => ['bool', 'blackpoint'=>'float', 'gamma'=>'float', 'whitepoint'=>'float', 'channel='=>'int'], - 'Imagick::linearStretchImage' => ['bool', 'blackpoint'=>'float', 'whitepoint'=>'float'], - 'Imagick::liquidRescaleImage' => ['bool', 'width'=>'int', 'height'=>'int', 'delta_x'=>'float', 'rigidity'=>'float'], - 'Imagick::listRegistry' => ['array'], - 'Imagick::localContrastImage' => ['bool', 'radius'=>'float', 'strength'=>'float'], - 'Imagick::magnifyImage' => ['bool'], - 'Imagick::mapImage' => ['bool', 'map'=>'Imagick', 'dither'=>'bool'], - 'Imagick::matteFloodfillImage' => ['bool', 'alpha'=>'float', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int'], - 'Imagick::medianFilterImage' => ['bool', 'radius'=>'float'], - 'Imagick::mergeImageLayers' => ['Imagick', 'layer_method'=>'int'], - 'Imagick::minifyImage' => ['bool'], - 'Imagick::modulateImage' => ['bool', 'brightness'=>'float', 'saturation'=>'float', 'hue'=>'float'], - 'Imagick::montageImage' => ['Imagick', 'draw'=>'ImagickDraw', 'tile_geometry'=>'string', 'thumbnail_geometry'=>'string', 'mode'=>'int', 'frame'=>'string'], - 'Imagick::morphImages' => ['Imagick', 'number_frames'=>'int'], - 'Imagick::morphology' => ['void', 'morphologyMethod'=>'int', 'iterations'=>'int', 'ImagickKernel'=>'ImagickKernel', 'CHANNEL='=>'string'], - 'Imagick::mosaicImages' => ['Imagick'], - 'Imagick::motionBlurImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float', 'channel='=>'int'], - 'Imagick::negateImage' => ['bool', 'gray'=>'bool', 'channel='=>'int'], - 'Imagick::newImage' => ['bool', 'cols'=>'int', 'rows'=>'int', 'background'=>'mixed', 'format='=>'string'], - 'Imagick::newPseudoImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'pseudostring'=>'string'], - 'Imagick::next' => ['void'], - 'Imagick::nextImage' => ['bool'], - 'Imagick::normalizeImage' => ['bool', 'channel='=>'int'], - 'Imagick::oilPaintImage' => ['bool', 'radius'=>'float'], - 'Imagick::opaquePaintImage' => ['bool', 'target'=>'mixed', 'fill'=>'mixed', 'fuzz'=>'float', 'invert'=>'bool', 'channel='=>'int'], - 'Imagick::optimizeImageLayers' => ['bool'], - 'Imagick::orderedPosterizeImage' => ['bool', 'threshold_map'=>'string', 'channel='=>'int'], - 'Imagick::paintFloodfillImage' => ['bool', 'fill'=>'mixed', 'fuzz'=>'float', 'bordercolor'=>'mixed', 'x'=>'int', 'y'=>'int', 'channel='=>'int'], - 'Imagick::paintOpaqueImage' => ['bool', 'target'=>'mixed', 'fill'=>'mixed', 'fuzz'=>'float', 'channel='=>'int'], - 'Imagick::paintTransparentImage' => ['bool', 'target'=>'mixed', 'alpha'=>'float', 'fuzz'=>'float'], - 'Imagick::pingImage' => ['bool', 'filename'=>'string'], - 'Imagick::pingImageBlob' => ['bool', 'image'=>'string'], - 'Imagick::pingImageFile' => ['bool', 'filehandle'=>'resource', 'filename='=>'string'], - 'Imagick::polaroidImage' => ['bool', 'properties'=>'ImagickDraw', 'angle'=>'float'], - 'Imagick::posterizeImage' => ['bool', 'levels'=>'int', 'dither'=>'bool'], - 'Imagick::previewImages' => ['bool', 'preview'=>'int'], - 'Imagick::previousImage' => ['bool'], - 'Imagick::profileImage' => ['bool', 'name'=>'string', 'profile'=>'string'], - 'Imagick::quantizeImage' => ['bool', 'numbercolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], - 'Imagick::quantizeImages' => ['bool', 'numbercolors'=>'int', 'colorspace'=>'int', 'treedepth'=>'int', 'dither'=>'bool', 'measureerror'=>'bool'], - 'Imagick::queryFontMetrics' => ['array', 'properties'=>'ImagickDraw', 'text'=>'string', 'multiline='=>'bool'], - 'Imagick::queryFonts' => ['array', 'pattern='=>'string'], - 'Imagick::queryFormats' => ['list', 'pattern='=>'string'], - 'Imagick::radialBlurImage' => ['bool', 'angle'=>'float', 'channel='=>'int'], - 'Imagick::raiseImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int', 'raise'=>'bool'], - 'Imagick::randomThresholdImage' => ['bool', 'low'=>'float', 'high'=>'float', 'channel='=>'int'], - 'Imagick::readImage' => ['bool', 'filename'=>'string'], - 'Imagick::readImageBlob' => ['bool', 'image'=>'string', 'filename='=>'string'], - 'Imagick::readImageFile' => ['bool', 'filehandle'=>'resource', 'filename='=>'string'], - 'Imagick::readImages' => ['Imagick', 'filenames'=>'string'], - 'Imagick::recolorImage' => ['bool', 'matrix'=>'list'], - 'Imagick::reduceNoiseImage' => ['bool', 'radius'=>'float'], - 'Imagick::remapImage' => ['bool', 'replacement'=>'Imagick', 'dither'=>'int'], - 'Imagick::removeImage' => ['bool'], - 'Imagick::removeImageProfile' => ['string', 'name'=>'string'], - 'Imagick::render' => ['bool'], - 'Imagick::resampleImage' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float', 'filter'=>'int', 'blur'=>'float'], - 'Imagick::resetImagePage' => ['bool', 'page'=>'string'], - 'Imagick::resetIterator' => [''], - 'Imagick::resizeImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'filter'=>'int', 'blur'=>'float', 'bestfit='=>'bool'], - 'Imagick::rewind' => ['void'], - 'Imagick::rollImage' => ['bool', 'x'=>'int', 'y'=>'int'], - 'Imagick::rotateImage' => ['bool', 'background'=>'mixed', 'degrees'=>'float'], - 'Imagick::rotationalBlurImage' => ['void', 'angle'=>'string', 'CHANNEL='=>'string'], - 'Imagick::roundCorners' => ['bool', 'x_rounding'=>'float', 'y_rounding'=>'float', 'stroke_width='=>'float', 'displace='=>'float', 'size_correction='=>'float'], - 'Imagick::roundCornersImage' => ['', 'xRounding'=>'', 'yRounding'=>'', 'strokeWidth'=>'', 'displace'=>'', 'sizeCorrection'=>''], - 'Imagick::sampleImage' => ['bool', 'columns'=>'int', 'rows'=>'int'], - 'Imagick::scaleImage' => ['bool', 'cols'=>'int', 'rows'=>'int', 'bestfit='=>'bool'], - 'Imagick::segmentImage' => ['bool', 'colorspace'=>'int', 'cluster_threshold'=>'float', 'smooth_threshold'=>'float', 'verbose='=>'bool'], - 'Imagick::selectiveBlurImage' => ['void', 'radius'=>'float', 'sigma'=>'float', 'threshold'=>'float', 'CHANNEL'=>'int'], - 'Imagick::separateImageChannel' => ['bool', 'channel'=>'int'], - 'Imagick::sepiaToneImage' => ['bool', 'threshold'=>'float'], - 'Imagick::setAntiAlias' => ['int', 'antialias'=>'bool'], - 'Imagick::setBackgroundColor' => ['bool', 'background'=>'mixed'], - 'Imagick::setColorspace' => ['bool', 'colorspace'=>'int'], - 'Imagick::setCompression' => ['bool', 'compression'=>'int'], - 'Imagick::setCompressionQuality' => ['bool', 'quality'=>'int'], - 'Imagick::setFilename' => ['bool', 'filename'=>'string'], - 'Imagick::setFirstIterator' => ['bool'], - 'Imagick::setFont' => ['bool', 'font'=>'string'], - 'Imagick::setFormat' => ['bool', 'format'=>'string'], - 'Imagick::setGravity' => ['bool', 'gravity'=>'int'], - 'Imagick::setImage' => ['bool', 'replace'=>'Imagick'], - 'Imagick::setImageAlpha' => ['bool', 'alpha'=>'float'], - 'Imagick::setImageAlphaChannel' => ['bool', 'mode'=>'int'], - 'Imagick::setImageArtifact' => ['bool', 'artifact'=>'string', 'value'=>'string'], - 'Imagick::setImageAttribute' => ['void', 'key'=>'string', 'value'=>'string'], - 'Imagick::setImageBackgroundColor' => ['bool', 'background'=>'mixed'], - 'Imagick::setImageBias' => ['bool', 'bias'=>'float'], - 'Imagick::setImageBiasQuantum' => ['void', 'bias'=>'string'], - 'Imagick::setImageBluePrimary' => ['bool', 'x'=>'float', 'y'=>'float'], - 'Imagick::setImageBorderColor' => ['bool', 'border'=>'mixed'], - 'Imagick::setImageChannelDepth' => ['bool', 'channel'=>'int', 'depth'=>'int'], - 'Imagick::setImageChannelMask' => ['', 'channel'=>'int'], - 'Imagick::setImageClipMask' => ['bool', 'clip_mask'=>'Imagick'], - 'Imagick::setImageColormapColor' => ['bool', 'index'=>'int', 'color'=>'ImagickPixel'], - 'Imagick::setImageColorspace' => ['bool', 'colorspace'=>'int'], - 'Imagick::setImageCompose' => ['bool', 'compose'=>'int'], - 'Imagick::setImageCompression' => ['bool', 'compression'=>'int'], - 'Imagick::setImageCompressionQuality' => ['bool', 'quality'=>'int'], - 'Imagick::setImageDelay' => ['bool', 'delay'=>'int'], - 'Imagick::setImageDepth' => ['bool', 'depth'=>'int'], - 'Imagick::setImageDispose' => ['bool', 'dispose'=>'int'], - 'Imagick::setImageExtent' => ['bool', 'columns'=>'int', 'rows'=>'int'], - 'Imagick::setImageFilename' => ['bool', 'filename'=>'string'], - 'Imagick::setImageFormat' => ['bool', 'format'=>'string'], - 'Imagick::setImageGamma' => ['bool', 'gamma'=>'float'], - 'Imagick::setImageGravity' => ['bool', 'gravity'=>'int'], - 'Imagick::setImageGreenPrimary' => ['bool', 'x'=>'float', 'y'=>'float'], - 'Imagick::setImageIndex' => ['bool', 'index'=>'int'], - 'Imagick::setImageInterlaceScheme' => ['bool', 'interlace_scheme'=>'int'], - 'Imagick::setImageInterpolateMethod' => ['bool', 'method'=>'int'], - 'Imagick::setImageIterations' => ['bool', 'iterations'=>'int'], - 'Imagick::setImageMatte' => ['bool', 'matte'=>'bool'], - 'Imagick::setImageMatteColor' => ['bool', 'matte'=>'mixed'], - 'Imagick::setImageOpacity' => ['bool', 'opacity'=>'float'], - 'Imagick::setImageOrientation' => ['bool', 'orientation'=>'int'], - 'Imagick::setImagePage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::setImageProfile' => ['bool', 'name'=>'string', 'profile'=>'string'], - 'Imagick::setImageProgressMonitor' => ['', 'filename'=>''], - 'Imagick::setImageProperty' => ['bool', 'name'=>'string', 'value'=>'string'], - 'Imagick::setImageRedPrimary' => ['bool', 'x'=>'float', 'y'=>'float'], - 'Imagick::setImageRenderingIntent' => ['bool', 'rendering_intent'=>'int'], - 'Imagick::setImageResolution' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float'], - 'Imagick::setImageScene' => ['bool', 'scene'=>'int'], - 'Imagick::setImageTicksPerSecond' => ['bool', 'ticks_per_second'=>'int'], - 'Imagick::setImageType' => ['bool', 'image_type'=>'int'], - 'Imagick::setImageUnits' => ['bool', 'units'=>'int'], - 'Imagick::setImageVirtualPixelMethod' => ['bool', 'method'=>'int'], - 'Imagick::setImageWhitePoint' => ['bool', 'x'=>'float', 'y'=>'float'], - 'Imagick::setInterlaceScheme' => ['bool', 'interlace_scheme'=>'int'], - 'Imagick::setIteratorIndex' => ['bool', 'index'=>'int'], - 'Imagick::setLastIterator' => ['bool'], - 'Imagick::setOption' => ['bool', 'key'=>'string', 'value'=>'string'], - 'Imagick::setPage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::setPointSize' => ['bool', 'point_size'=>'float'], - 'Imagick::setProgressMonitor' => ['void', 'callback'=>'callable'], - 'Imagick::setRegistry' => ['void', 'key'=>'string', 'value'=>'string'], - 'Imagick::setResolution' => ['bool', 'x_resolution'=>'float', 'y_resolution'=>'float'], - 'Imagick::setResourceLimit' => ['bool', 'type'=>'int', 'limit'=>'int'], - 'Imagick::setSamplingFactors' => ['bool', 'factors'=>'list'], - 'Imagick::setSize' => ['bool', 'columns'=>'int', 'rows'=>'int'], - 'Imagick::setSizeOffset' => ['bool', 'columns'=>'int', 'rows'=>'int', 'offset'=>'int'], - 'Imagick::setType' => ['bool', 'image_type'=>'int'], - 'Imagick::shadeImage' => ['bool', 'gray'=>'bool', 'azimuth'=>'float', 'elevation'=>'float'], - 'Imagick::shadowImage' => ['bool', 'opacity'=>'float', 'sigma'=>'float', 'x'=>'int', 'y'=>'int'], - 'Imagick::sharpenImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'channel='=>'int'], - 'Imagick::shaveImage' => ['bool', 'columns'=>'int', 'rows'=>'int'], - 'Imagick::shearImage' => ['bool', 'background'=>'mixed', 'x_shear'=>'float', 'y_shear'=>'float'], - 'Imagick::sigmoidalContrastImage' => ['bool', 'sharpen'=>'bool', 'alpha'=>'float', 'beta'=>'float', 'channel='=>'int'], - 'Imagick::similarityImage' => ['Imagick', 'Imagick'=>'Imagick', '&bestMatch'=>'array', '&similarity'=>'float', 'similarity_threshold'=>'float', 'metric'=>'int'], - 'Imagick::sketchImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'angle'=>'float'], - 'Imagick::smushImages' => ['Imagick', 'stack'=>'string', 'offset'=>'string'], - 'Imagick::solarizeImage' => ['bool', 'threshold'=>'int'], - 'Imagick::sparseColorImage' => ['bool', 'sparse_method'=>'int', 'arguments'=>'array', 'channel='=>'int'], - 'Imagick::spliceImage' => ['bool', 'width'=>'int', 'height'=>'int', 'x'=>'int', 'y'=>'int'], - 'Imagick::spreadImage' => ['bool', 'radius'=>'float'], - 'Imagick::statisticImage' => ['void', 'type'=>'int', 'width'=>'int', 'height'=>'int', 'CHANNEL='=>'string'], - 'Imagick::steganoImage' => ['Imagick', 'watermark_wand'=>'Imagick', 'offset'=>'int'], - 'Imagick::stereoImage' => ['bool', 'offset_wand'=>'Imagick'], - 'Imagick::stripImage' => ['bool'], - 'Imagick::subImageMatch' => ['Imagick', 'Imagick'=>'Imagick', '&w_offset='=>'array', '&w_similarity='=>'float'], - 'Imagick::swirlImage' => ['bool', 'degrees'=>'float'], - 'Imagick::textureImage' => ['bool', 'texture_wand'=>'Imagick'], - 'Imagick::thresholdImage' => ['bool', 'threshold'=>'float', 'channel='=>'int'], - 'Imagick::thumbnailImage' => ['bool', 'columns'=>'int', 'rows'=>'int', 'bestfit='=>'bool', 'fill='=>'bool', 'legacy='=>'bool'], - 'Imagick::tintImage' => ['bool', 'tint'=>'mixed', 'opacity'=>'mixed'], - 'Imagick::transformImage' => ['Imagick', 'crop'=>'string', 'geometry'=>'string'], - 'Imagick::transformImageColorspace' => ['bool', 'colorspace'=>'int'], - 'Imagick::transparentPaintImage' => ['bool', 'target'=>'mixed', 'alpha'=>'float', 'fuzz'=>'float', 'invert'=>'bool'], - 'Imagick::transposeImage' => ['bool'], - 'Imagick::transverseImage' => ['bool'], - 'Imagick::trimImage' => ['bool', 'fuzz'=>'float'], - 'Imagick::uniqueImageColors' => ['bool'], - 'Imagick::unsharpMaskImage' => ['bool', 'radius'=>'float', 'sigma'=>'float', 'amount'=>'float', 'threshold'=>'float', 'channel='=>'int'], - 'Imagick::valid' => ['bool'], - 'Imagick::vignetteImage' => ['bool', 'blackpoint'=>'float', 'whitepoint'=>'float', 'x'=>'int', 'y'=>'int'], - 'Imagick::waveImage' => ['bool', 'amplitude'=>'float', 'length'=>'float'], - 'Imagick::whiteThresholdImage' => ['bool', 'threshold'=>'mixed'], - 'Imagick::writeImage' => ['bool', 'filename='=>'string'], - 'Imagick::writeImageFile' => ['bool', 'filehandle'=>'resource'], - 'Imagick::writeImages' => ['bool', 'filename'=>'string', 'adjoin'=>'bool'], - 'Imagick::writeImagesFile' => ['bool', 'filehandle'=>'resource'], - 'ImagickDraw::__construct' => ['void'], - 'ImagickDraw::affine' => ['bool', 'affine'=>'array'], - 'ImagickDraw::annotation' => ['bool', 'x'=>'float', 'y'=>'float', 'text'=>'string'], - 'ImagickDraw::arc' => ['bool', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float', 'sd'=>'float', 'ed'=>'float'], - 'ImagickDraw::bezier' => ['bool', 'coordinates'=>'list'], - 'ImagickDraw::circle' => ['bool', 'ox'=>'float', 'oy'=>'float', 'px'=>'float', 'py'=>'float'], - 'ImagickDraw::clear' => ['bool'], - 'ImagickDraw::clone' => ['ImagickDraw'], - 'ImagickDraw::color' => ['bool', 'x'=>'float', 'y'=>'float', 'paintmethod'=>'int'], - 'ImagickDraw::comment' => ['bool', 'comment'=>'string'], - 'ImagickDraw::composite' => ['bool', 'compose'=>'int', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float', 'compositewand'=>'Imagick'], - 'ImagickDraw::destroy' => ['bool'], - 'ImagickDraw::ellipse' => ['bool', 'ox'=>'float', 'oy'=>'float', 'rx'=>'float', 'ry'=>'float', 'start'=>'float', 'end'=>'float'], - 'ImagickDraw::getBorderColor' => ['ImagickPixel'], - 'ImagickDraw::getClipPath' => ['string|false'], - 'ImagickDraw::getClipRule' => ['int'], - 'ImagickDraw::getClipUnits' => ['int'], - 'ImagickDraw::getDensity' => ['?string'], - 'ImagickDraw::getFillColor' => ['ImagickPixel'], - 'ImagickDraw::getFillOpacity' => ['float'], - 'ImagickDraw::getFillRule' => ['int'], - 'ImagickDraw::getFont' => ['string|false'], - 'ImagickDraw::getFontFamily' => ['string|false'], - 'ImagickDraw::getFontResolution' => ['array'], - 'ImagickDraw::getFontSize' => ['float'], - 'ImagickDraw::getFontStretch' => ['int'], - 'ImagickDraw::getFontStyle' => ['int'], - 'ImagickDraw::getFontWeight' => ['int'], - 'ImagickDraw::getGravity' => ['int'], - 'ImagickDraw::getOpacity' => ['float'], - 'ImagickDraw::getStrokeAntialias' => ['bool'], - 'ImagickDraw::getStrokeColor' => ['ImagickPixel'], - 'ImagickDraw::getStrokeDashArray' => ['array'], - 'ImagickDraw::getStrokeDashOffset' => ['float'], - 'ImagickDraw::getStrokeLineCap' => ['int'], - 'ImagickDraw::getStrokeLineJoin' => ['int'], - 'ImagickDraw::getStrokeMiterLimit' => ['int'], - 'ImagickDraw::getStrokeOpacity' => ['float'], - 'ImagickDraw::getStrokeWidth' => ['float'], - 'ImagickDraw::getTextAlignment' => ['int'], - 'ImagickDraw::getTextAntialias' => ['bool'], - 'ImagickDraw::getTextDecoration' => ['int'], - 'ImagickDraw::getTextDirection' => ['bool'], - 'ImagickDraw::getTextEncoding' => ['string'], - 'ImagickDraw::getTextInterlineSpacing' => ['float'], - 'ImagickDraw::getTextInterwordSpacing' => ['float'], - 'ImagickDraw::getTextKerning' => ['float'], - 'ImagickDraw::getTextUnderColor' => ['ImagickPixel'], - 'ImagickDraw::getVectorGraphics' => ['string'], - 'ImagickDraw::line' => ['bool', 'sx'=>'float', 'sy'=>'float', 'ex'=>'float', 'ey'=>'float'], - 'ImagickDraw::matte' => ['bool', 'x'=>'float', 'y'=>'float', 'paintmethod'=>'int'], - 'ImagickDraw::pathClose' => ['bool'], - 'ImagickDraw::pathCurveToAbsolute' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToQuadraticBezierRelative' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToRelative' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToSmoothAbsolute' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathCurveToSmoothRelative' => ['bool', 'x2'=>'float', 'y2'=>'float', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathEllipticArcAbsolute' => ['bool', 'rx'=>'float', 'ry'=>'float', 'x_axis_rotation'=>'float', 'large_arc_flag'=>'bool', 'sweep_flag'=>'bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathEllipticArcRelative' => ['bool', 'rx'=>'float', 'ry'=>'float', 'x_axis_rotation'=>'float', 'large_arc_flag'=>'bool', 'sweep_flag'=>'bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathFinish' => ['bool'], - 'ImagickDraw::pathLineToAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathLineToHorizontalAbsolute' => ['bool', 'x'=>'float'], - 'ImagickDraw::pathLineToHorizontalRelative' => ['bool', 'x'=>'float'], - 'ImagickDraw::pathLineToRelative' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathLineToVerticalAbsolute' => ['bool', 'y'=>'float'], - 'ImagickDraw::pathLineToVerticalRelative' => ['bool', 'y'=>'float'], - 'ImagickDraw::pathMoveToAbsolute' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathMoveToRelative' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::pathStart' => ['bool'], - 'ImagickDraw::point' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::polygon' => ['bool', 'coordinates'=>'list'], - 'ImagickDraw::polyline' => ['bool', 'coordinates'=>'list'], - 'ImagickDraw::pop' => ['bool'], - 'ImagickDraw::popClipPath' => ['bool'], - 'ImagickDraw::popDefs' => ['bool'], - 'ImagickDraw::popPattern' => ['bool'], - 'ImagickDraw::push' => ['bool'], - 'ImagickDraw::pushClipPath' => ['bool', 'clip_mask_id'=>'string'], - 'ImagickDraw::pushDefs' => ['bool'], - 'ImagickDraw::pushPattern' => ['bool', 'pattern_id'=>'string', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'ImagickDraw::rectangle' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], - 'ImagickDraw::render' => ['bool'], - 'ImagickDraw::resetVectorGraphics' => ['void'], - 'ImagickDraw::rotate' => ['bool', 'degrees'=>'float'], - 'ImagickDraw::roundRectangle' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'rx'=>'float', 'ry'=>'float'], - 'ImagickDraw::scale' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::setBorderColor' => ['bool', 'color'=>'ImagickPixel|string'], - 'ImagickDraw::setClipPath' => ['bool', 'clip_mask'=>'string'], - 'ImagickDraw::setClipRule' => ['bool', 'fill_rule'=>'int'], - 'ImagickDraw::setClipUnits' => ['bool', 'clip_units'=>'int'], - 'ImagickDraw::setDensity' => ['bool', 'density_string'=>'string'], - 'ImagickDraw::setFillAlpha' => ['bool', 'opacity'=>'float'], - 'ImagickDraw::setFillColor' => ['bool', 'fill_pixel'=>'ImagickPixel|string'], - 'ImagickDraw::setFillOpacity' => ['bool', 'fillopacity'=>'float'], - 'ImagickDraw::setFillPatternURL' => ['bool', 'fill_url'=>'string'], - 'ImagickDraw::setFillRule' => ['bool', 'fill_rule'=>'int'], - 'ImagickDraw::setFont' => ['bool', 'font_name'=>'string'], - 'ImagickDraw::setFontFamily' => ['bool', 'font_family'=>'string'], - 'ImagickDraw::setFontResolution' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickDraw::setFontSize' => ['bool', 'pointsize'=>'float'], - 'ImagickDraw::setFontStretch' => ['bool', 'fontstretch'=>'int'], - 'ImagickDraw::setFontStyle' => ['bool', 'style'=>'int'], - 'ImagickDraw::setFontWeight' => ['bool', 'font_weight'=>'int'], - 'ImagickDraw::setGravity' => ['bool', 'gravity'=>'int'], - 'ImagickDraw::setOpacity' => ['void', 'opacity'=>'float'], - 'ImagickDraw::setResolution' => ['void', 'x_resolution'=>'float', 'y_resolution'=>'float'], - 'ImagickDraw::setStrokeAlpha' => ['bool', 'opacity'=>'float'], - 'ImagickDraw::setStrokeAntialias' => ['bool', 'stroke_antialias'=>'bool'], - 'ImagickDraw::setStrokeColor' => ['bool', 'stroke_pixel'=>'ImagickPixel|string'], - 'ImagickDraw::setStrokeDashArray' => ['bool', 'dasharray'=>'list'], - 'ImagickDraw::setStrokeDashOffset' => ['bool', 'dash_offset'=>'float'], - 'ImagickDraw::setStrokeLineCap' => ['bool', 'linecap'=>'int'], - 'ImagickDraw::setStrokeLineJoin' => ['bool', 'linejoin'=>'int'], - 'ImagickDraw::setStrokeMiterLimit' => ['bool', 'miterlimit'=>'int'], - 'ImagickDraw::setStrokeOpacity' => ['bool', 'stroke_opacity'=>'float'], - 'ImagickDraw::setStrokePatternURL' => ['bool', 'stroke_url'=>'string'], - 'ImagickDraw::setStrokeWidth' => ['bool', 'stroke_width'=>'float'], - 'ImagickDraw::setTextAlignment' => ['bool', 'alignment'=>'int'], - 'ImagickDraw::setTextAntialias' => ['bool', 'antialias'=>'bool'], - 'ImagickDraw::setTextDecoration' => ['bool', 'decoration'=>'int'], - 'ImagickDraw::setTextDirection' => ['bool', 'direction'=>'int'], - 'ImagickDraw::setTextEncoding' => ['bool', 'encoding'=>'string'], - 'ImagickDraw::setTextInterlineSpacing' => ['void', 'spacing'=>'float'], - 'ImagickDraw::setTextInterwordSpacing' => ['void', 'spacing'=>'float'], - 'ImagickDraw::setTextKerning' => ['void', 'kerning'=>'float'], - 'ImagickDraw::setTextUnderColor' => ['bool', 'under_color'=>'ImagickPixel|string'], - 'ImagickDraw::setVectorGraphics' => ['bool', 'xml'=>'string'], - 'ImagickDraw::setViewbox' => ['bool', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int'], - 'ImagickDraw::skewX' => ['bool', 'degrees'=>'float'], - 'ImagickDraw::skewY' => ['bool', 'degrees'=>'float'], - 'ImagickDraw::translate' => ['bool', 'x'=>'float', 'y'=>'float'], - 'ImagickKernel::addKernel' => ['void', 'ImagickKernel'=>'ImagickKernel'], - 'ImagickKernel::addUnityKernel' => ['void'], - 'ImagickKernel::fromBuiltin' => ['ImagickKernel', 'kernelType'=>'string', 'kernelString'=>'string'], - 'ImagickKernel::fromMatrix' => ['ImagickKernel', 'matrix'=>'list>', 'origin='=>'array'], - 'ImagickKernel::getMatrix' => ['list>'], - 'ImagickKernel::scale' => ['void'], - 'ImagickKernel::separate' => ['ImagickKernel[]'], - 'ImagickKernel::seperate' => ['void'], - 'ImagickPixel::__construct' => ['void', 'color='=>'string'], - 'ImagickPixel::clear' => ['bool'], - 'ImagickPixel::clone' => ['void'], - 'ImagickPixel::destroy' => ['bool'], - 'ImagickPixel::getColor' => ['array{r: int|float, g: int|float, b: int|float, a: int|float}', 'normalized='=>'0|1|2'], - 'ImagickPixel::getColorAsString' => ['string'], - 'ImagickPixel::getColorCount' => ['int'], - 'ImagickPixel::getColorQuantum' => ['mixed'], - 'ImagickPixel::getColorValue' => ['float', 'color'=>'int'], - 'ImagickPixel::getColorValueQuantum' => ['mixed'], - 'ImagickPixel::getHSL' => ['array{hue: float, saturation: float, luminosity: float}'], - 'ImagickPixel::getIndex' => ['int'], - 'ImagickPixel::isPixelSimilar' => ['bool', 'color'=>'ImagickPixel', 'fuzz'=>'float'], - 'ImagickPixel::isPixelSimilarQuantum' => ['bool', 'color'=>'string', 'fuzz='=>'string'], - 'ImagickPixel::isSimilar' => ['bool', 'color'=>'ImagickPixel', 'fuzz'=>'float'], - 'ImagickPixel::setColor' => ['bool', 'color'=>'string'], - 'ImagickPixel::setColorFromPixel' => ['bool', 'srcPixel'=>'ImagickPixel'], - 'ImagickPixel::setColorValue' => ['bool', 'color'=>'int', 'value'=>'float'], - 'ImagickPixel::setColorValueQuantum' => ['void', 'color'=>'int', 'value'=>'mixed'], - 'ImagickPixel::setHSL' => ['bool', 'hue'=>'float', 'saturation'=>'float', 'luminosity'=>'float'], - 'ImagickPixel::setIndex' => ['void', 'index'=>'int'], - 'ImagickPixel::setcolorcount' => ['void', 'colorCount'=>'string'], - 'ImagickPixelIterator::__construct' => ['void', 'wand'=>'Imagick'], - 'ImagickPixelIterator::clear' => ['bool'], - 'ImagickPixelIterator::current' => ['mixed'], - 'ImagickPixelIterator::destroy' => ['bool'], - 'ImagickPixelIterator::getCurrentIteratorRow' => ['array'], - 'ImagickPixelIterator::getIteratorRow' => ['int'], - 'ImagickPixelIterator::getNextIteratorRow' => ['array'], - 'ImagickPixelIterator::getPreviousIteratorRow' => ['array'], - 'ImagickPixelIterator::getpixeliterator' => ['', 'Imagick'=>'Imagick'], - 'ImagickPixelIterator::getpixelregioniterator' => ['', 'Imagick'=>'Imagick', 'x'=>'', 'y'=>'', 'columns'=>'', 'rows'=>''], - 'ImagickPixelIterator::key' => ['int|string'], - 'ImagickPixelIterator::newPixelIterator' => ['bool', 'wand'=>'Imagick'], - 'ImagickPixelIterator::newPixelRegionIterator' => ['bool', 'wand'=>'Imagick', 'x'=>'int', 'y'=>'int', 'columns'=>'int', 'rows'=>'int'], - 'ImagickPixelIterator::next' => ['void'], - 'ImagickPixelIterator::resetIterator' => ['bool'], - 'ImagickPixelIterator::rewind' => ['void'], - 'ImagickPixelIterator::setIteratorFirstRow' => ['bool'], - 'ImagickPixelIterator::setIteratorLastRow' => ['bool'], - 'ImagickPixelIterator::setIteratorRow' => ['bool', 'row'=>'int'], - 'ImagickPixelIterator::syncIterator' => ['bool'], - 'ImagickPixelIterator::valid' => ['bool'], - 'InfiniteIterator::__construct' => ['void', 'iterator'=>'Iterator'], - 'InfiniteIterator::current' => ['mixed'], - 'InfiniteIterator::getInnerIterator' => ['Iterator'], - 'InfiniteIterator::key' => ['bool|float|int|string'], - 'InfiniteIterator::next' => ['void'], - 'InfiniteIterator::rewind' => ['void'], - 'InfiniteIterator::valid' => ['bool'], - 'IntlBreakIterator::__construct' => ['void'], - 'IntlBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], - 'IntlBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlBreakIterator::current' => ['int'], - 'IntlBreakIterator::first' => ['int'], - 'IntlBreakIterator::following' => ['int', 'offset'=>'int'], - 'IntlBreakIterator::getErrorCode' => ['int'], - 'IntlBreakIterator::getErrorMessage' => ['string'], - 'IntlBreakIterator::getLocale' => ['string|false', 'type'=>'int'], - 'IntlBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], - 'IntlBreakIterator::getText' => ['?string'], - 'IntlBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], - 'IntlBreakIterator::last' => ['int'], - 'IntlBreakIterator::next' => ['int', 'offset='=>'?int'], - 'IntlBreakIterator::preceding' => ['int', 'offset'=>'int'], - 'IntlBreakIterator::previous' => ['int'], - 'IntlBreakIterator::setText' => ['?bool', 'text'=>'string'], - 'IntlCalendar::__construct' => ['void'], - 'IntlCalendar::add' => ['bool', 'field'=>'int', 'value'=>'int'], - 'IntlCalendar::after' => ['bool', 'other'=>'IntlCalendar'], - 'IntlCalendar::before' => ['bool', 'other'=>'IntlCalendar'], - 'IntlCalendar::clear' => ['bool', 'field='=>'?int'], - 'IntlCalendar::createInstance' => ['?IntlCalendar', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'locale='=>'?string'], - 'IntlCalendar::equals' => ['bool', 'other'=>'IntlCalendar'], - 'IntlCalendar::fieldDifference' => ['int|false', 'timestamp'=>'float', 'field'=>'int'], - 'IntlCalendar::fromDateTime' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], - 'IntlCalendar::get' => ['int', 'field'=>'int'], - 'IntlCalendar::getActualMaximum' => ['int', 'field'=>'int'], - 'IntlCalendar::getActualMinimum' => ['int', 'field'=>'int'], - 'IntlCalendar::getAvailableLocales' => ['array'], - 'IntlCalendar::getDayOfWeekType' => ['int', 'dayOfWeek'=>'int'], - 'IntlCalendar::getErrorCode' => ['int'], - 'IntlCalendar::getErrorMessage' => ['string'], - 'IntlCalendar::getFirstDayOfWeek' => ['int'], - 'IntlCalendar::getGreatestMinimum' => ['int', 'field'=>'int'], - 'IntlCalendar::getKeywordValuesForLocale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], - 'IntlCalendar::getLeastMaximum' => ['int', 'field'=>'int'], - 'IntlCalendar::getLocale' => ['string|false', 'type'=>'int'], - 'IntlCalendar::getMaximum' => ['int|false', 'field'=>'int'], - 'IntlCalendar::getMinimalDaysInFirstWeek' => ['int'], - 'IntlCalendar::getMinimum' => ['int', 'field'=>'int'], - 'IntlCalendar::getNow' => ['float'], - 'IntlCalendar::getRepeatedWallTimeOption' => ['int'], - 'IntlCalendar::getSkippedWallTimeOption' => ['int'], - 'IntlCalendar::getTime' => ['float'], - 'IntlCalendar::getTimeZone' => ['IntlTimeZone'], - 'IntlCalendar::getType' => ['string'], - 'IntlCalendar::getWeekendTransition' => ['int|false', 'dayOfWeek'=>'int'], - 'IntlCalendar::inDaylightTime' => ['bool'], - 'IntlCalendar::isEquivalentTo' => ['bool', 'other'=>'IntlCalendar'], - 'IntlCalendar::isLenient' => ['bool'], - 'IntlCalendar::isSet' => ['bool', 'field'=>'int'], - 'IntlCalendar::isWeekend' => ['bool', 'timestamp='=>'?float'], - 'IntlCalendar::roll' => ['bool', 'field'=>'int', 'value'=>'int|bool'], - 'IntlCalendar::set' => ['bool', 'field'=>'int', 'value'=>'int'], - 'IntlCalendar::set\'1' => ['bool', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], - 'IntlCalendar::setFirstDayOfWeek' => ['bool', 'dayOfWeek'=>'int'], - 'IntlCalendar::setLenient' => ['true', 'lenient'=>'bool'], - 'IntlCalendar::setMinimalDaysInFirstWeek' => ['bool', 'days'=>'int'], - 'IntlCalendar::setRepeatedWallTimeOption' => ['true', 'option'=>'int'], - 'IntlCalendar::setSkippedWallTimeOption' => ['true', 'option'=>'int'], - 'IntlCalendar::setTime' => ['bool', 'timestamp'=>'float'], - 'IntlCalendar::setTimeZone' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'IntlCalendar::toDateTime' => ['DateTime|false'], - 'IntlChar::charAge' => ['?array', 'codepoint'=>'int|string'], - 'IntlChar::charDigitValue' => ['?int', 'codepoint'=>'int|string'], - 'IntlChar::charDirection' => ['?int', 'codepoint'=>'int|string'], - 'IntlChar::charFromName' => ['?int', 'name'=>'string', 'type='=>'int'], - 'IntlChar::charMirror' => ['int|string|null', 'codepoint'=>'int|string'], - 'IntlChar::charName' => ['?string', 'codepoint'=>'int|string', 'type='=>'int'], - 'IntlChar::charType' => ['?int', 'codepoint'=>'int|string'], - 'IntlChar::chr' => ['?string', 'codepoint'=>'int|string'], - 'IntlChar::digit' => ['int|false|null', 'codepoint'=>'int|string', 'base='=>'int'], - 'IntlChar::enumCharNames' => ['?bool', 'start'=>'string|int', 'end'=>'string|int', 'callback'=>'callable(int,int,int):void', 'type='=>'int'], - 'IntlChar::enumCharTypes' => ['void', 'callback'=>'callable(int,int,int):void'], - 'IntlChar::foldCase' => ['int|string|null', 'codepoint'=>'int|string', 'options='=>'int'], - 'IntlChar::forDigit' => ['int', 'digit'=>'int', 'base='=>'int'], - 'IntlChar::getBidiPairedBracket' => ['int|string|null', 'codepoint'=>'int|string'], - 'IntlChar::getBlockCode' => ['?int', 'codepoint'=>'int|string'], - 'IntlChar::getCombiningClass' => ['?int', 'codepoint'=>'int|string'], - 'IntlChar::getFC_NFKC_Closure' => ['?string', 'codepoint'=>'int|string'], - 'IntlChar::getIntPropertyMaxValue' => ['int', 'property'=>'int'], - 'IntlChar::getIntPropertyMinValue' => ['int', 'property'=>'int'], - 'IntlChar::getIntPropertyValue' => ['?int', 'codepoint'=>'int|string', 'property'=>'int'], - 'IntlChar::getNumericValue' => ['?float', 'codepoint'=>'int|string'], - 'IntlChar::getPropertyEnum' => ['int', 'alias'=>'string'], - 'IntlChar::getPropertyName' => ['string|false', 'property'=>'int', 'type='=>'int'], - 'IntlChar::getPropertyValueEnum' => ['int', 'property'=>'int', 'name'=>'string'], - 'IntlChar::getPropertyValueName' => ['string|false', 'property'=>'int', 'value'=>'int', 'type='=>'int'], - 'IntlChar::getUnicodeVersion' => ['array'], - 'IntlChar::hasBinaryProperty' => ['?bool', 'codepoint'=>'int|string', 'property'=>'int'], - 'IntlChar::isIDIgnorable' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isIDPart' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isIDStart' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isISOControl' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isJavaIDPart' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isJavaIDStart' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isJavaSpaceChar' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isMirrored' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isUAlphabetic' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isULowercase' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isUUppercase' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isUWhiteSpace' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isWhitespace' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isalnum' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isalpha' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isbase' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isblank' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::iscntrl' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isdefined' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isdigit' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isgraph' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::islower' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isprint' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::ispunct' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isspace' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::istitle' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isupper' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::isxdigit' => ['?bool', 'codepoint'=>'int|string'], - 'IntlChar::ord' => ['?int', 'character'=>'int|string'], - 'IntlChar::tolower' => ['int|string|null', 'codepoint'=>'int|string'], - 'IntlChar::totitle' => ['int|string|null', 'codepoint'=>'int|string'], - 'IntlChar::toupper' => ['int|string|null', 'codepoint'=>'int|string'], - 'IntlCodePointBreakIterator::__construct' => ['void'], - 'IntlCodePointBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlCodePointBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], - 'IntlCodePointBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlCodePointBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlCodePointBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlCodePointBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlCodePointBreakIterator::current' => ['int'], - 'IntlCodePointBreakIterator::first' => ['int'], - 'IntlCodePointBreakIterator::following' => ['int', 'offset'=>'int'], - 'IntlCodePointBreakIterator::getErrorCode' => ['int'], - 'IntlCodePointBreakIterator::getErrorMessage' => ['string'], - 'IntlCodePointBreakIterator::getLastCodePoint' => ['int'], - 'IntlCodePointBreakIterator::getLocale' => ['string|false', 'type'=>'int'], - 'IntlCodePointBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], - 'IntlCodePointBreakIterator::getText' => ['?string'], - 'IntlCodePointBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], - 'IntlCodePointBreakIterator::last' => ['int'], - 'IntlCodePointBreakIterator::next' => ['int', 'offset='=>'?int'], - 'IntlCodePointBreakIterator::preceding' => ['int', 'offset'=>'int'], - 'IntlCodePointBreakIterator::previous' => ['int'], - 'IntlCodePointBreakIterator::setText' => ['?bool', 'text'=>'string'], - 'IntlDateFormatter::__construct' => ['void', 'locale'=>'?string', 'datetype'=>'null|int', 'timetype'=>'null|int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'IntlDateFormatter::create' => ['?IntlDateFormatter', 'locale'=>'?string', 'datetype'=>'null|int', 'timetype'=>'null|int', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'?string'], - 'IntlDateFormatter::format' => ['string|false', 'value'=>'IntlCalendar|DateTime|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'], - 'IntlDateFormatter::formatObject' => ['string|false', 'object'=>'IntlCalendar|DateTime', 'format='=>'array{0: int, 1: int}|int|string|null', 'locale='=>'?string'], - 'IntlDateFormatter::getCalendar' => ['int'], - 'IntlDateFormatter::getCalendarObject' => ['IntlCalendar'], - 'IntlDateFormatter::getDateType' => ['int'], - 'IntlDateFormatter::getErrorCode' => ['int'], - 'IntlDateFormatter::getErrorMessage' => ['string'], - 'IntlDateFormatter::getLocale' => ['string', 'which='=>'int'], - 'IntlDateFormatter::getPattern' => ['string'], - 'IntlDateFormatter::getTimeType' => ['int'], - 'IntlDateFormatter::getTimeZone' => ['IntlTimeZone|false'], - 'IntlDateFormatter::getTimeZoneId' => ['string'], - 'IntlDateFormatter::isLenient' => ['bool'], - 'IntlDateFormatter::localtime' => ['array', 'value'=>'string', '&rw_position='=>'int'], - 'IntlDateFormatter::parse' => ['int|float', 'value'=>'string', '&rw_position='=>'int'], - 'IntlDateFormatter::setCalendar' => ['bool', 'which'=>'IntlCalendar|int|null'], - 'IntlDateFormatter::setLenient' => ['bool', 'lenient'=>'bool'], - 'IntlDateFormatter::setPattern' => ['bool', 'pattern'=>'string'], - 'IntlDateFormatter::setTimeZone' => ['null|false', 'zone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'IntlException::__clone' => ['void'], - 'IntlException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'IntlException::__toString' => ['string'], - 'IntlException::__wakeup' => ['void'], - 'IntlException::getCode' => ['int'], - 'IntlException::getFile' => ['string'], - 'IntlException::getLine' => ['int'], - 'IntlException::getMessage' => ['string'], - 'IntlException::getPrevious' => ['?Throwable'], - 'IntlException::getTrace' => ['list\',args?:array}>'], - 'IntlException::getTraceAsString' => ['string'], - 'IntlGregorianCalendar::__construct' => ['void'], - 'IntlGregorianCalendar::add' => ['bool', 'field'=>'int', 'value'=>'int'], - 'IntlGregorianCalendar::after' => ['bool', 'other'=>'IntlCalendar'], - 'IntlGregorianCalendar::before' => ['bool', 'other'=>'IntlCalendar'], - 'IntlGregorianCalendar::clear' => ['bool', 'field='=>'?int'], - 'IntlGregorianCalendar::createInstance' => ['?IntlGregorianCalendar', 'timezone='=>'IntlTimeZone|DateTimeZone|string|null', 'locale='=>'?string'], - 'IntlGregorianCalendar::equals' => ['bool', 'other'=>'IntlCalendar'], - 'IntlGregorianCalendar::fieldDifference' => ['int|false', 'timestamp'=>'float', 'field'=>'int'], - 'IntlGregorianCalendar::fromDateTime' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], - 'IntlGregorianCalendar::get' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getActualMaximum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getActualMinimum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getAvailableLocales' => ['array'], - 'IntlGregorianCalendar::getDayOfWeekType' => ['int', 'dayOfWeek'=>'int'], - 'IntlGregorianCalendar::getErrorCode' => ['int'], - 'IntlGregorianCalendar::getErrorMessage' => ['string'], - 'IntlGregorianCalendar::getFirstDayOfWeek' => ['int'], - 'IntlGregorianCalendar::getGreatestMinimum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getGregorianChange' => ['float'], - 'IntlGregorianCalendar::getKeywordValuesForLocale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], - 'IntlGregorianCalendar::getLeastMaximum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getLocale' => ['string|false', 'type'=>'int'], - 'IntlGregorianCalendar::getMaximum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => ['int'], - 'IntlGregorianCalendar::getMinimum' => ['int', 'field'=>'int'], - 'IntlGregorianCalendar::getNow' => ['float'], - 'IntlGregorianCalendar::getRepeatedWallTimeOption' => ['int'], - 'IntlGregorianCalendar::getSkippedWallTimeOption' => ['int'], - 'IntlGregorianCalendar::getTime' => ['float'], - 'IntlGregorianCalendar::getTimeZone' => ['IntlTimeZone'], - 'IntlGregorianCalendar::getType' => ['string'], - 'IntlGregorianCalendar::getWeekendTransition' => ['int|false', 'dayOfWeek'=>'int'], - 'IntlGregorianCalendar::inDaylightTime' => ['bool'], - 'IntlGregorianCalendar::isEquivalentTo' => ['bool', 'other'=>'IntlCalendar'], - 'IntlGregorianCalendar::isLeapYear' => ['bool', 'year'=>'int'], - 'IntlGregorianCalendar::isLenient' => ['bool'], - 'IntlGregorianCalendar::isSet' => ['bool', 'field'=>'int'], - 'IntlGregorianCalendar::isWeekend' => ['bool', 'timestamp='=>'?float'], - 'IntlGregorianCalendar::roll' => ['bool', 'field'=>'int', 'value'=>'int|bool'], - 'IntlGregorianCalendar::set' => ['bool', 'field'=>'int', 'value'=>'int'], - 'IntlGregorianCalendar::set\'1' => ['bool', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], - 'IntlGregorianCalendar::setFirstDayOfWeek' => ['bool', 'dayOfWeek'=>'int'], - 'IntlGregorianCalendar::setGregorianChange' => ['bool', 'timestamp'=>'float'], - 'IntlGregorianCalendar::setLenient' => ['true', 'lenient'=>'bool'], - 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => ['bool', 'days'=>'int'], - 'IntlGregorianCalendar::setRepeatedWallTimeOption' => ['true', 'option'=>'int'], - 'IntlGregorianCalendar::setSkippedWallTimeOption' => ['true', 'option'=>'int'], - 'IntlGregorianCalendar::setTime' => ['bool', 'timestamp'=>'float'], - 'IntlGregorianCalendar::setTimeZone' => ['bool', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'IntlGregorianCalendar::toDateTime' => ['DateTime'], - 'IntlIterator::__construct' => ['void'], - 'IntlIterator::current' => ['mixed'], - 'IntlIterator::key' => ['string'], - 'IntlIterator::next' => ['void'], - 'IntlIterator::rewind' => ['void'], - 'IntlIterator::valid' => ['bool'], - 'IntlPartsIterator::getBreakIterator' => ['IntlBreakIterator'], - 'IntlRuleBasedBreakIterator::__construct' => ['void', 'rules'=>'string', 'compiled='=>'bool'], - 'IntlRuleBasedBreakIterator::createCharacterInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlRuleBasedBreakIterator::createCodePointInstance' => ['IntlCodePointBreakIterator'], - 'IntlRuleBasedBreakIterator::createLineInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlRuleBasedBreakIterator::createSentenceInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlRuleBasedBreakIterator::createTitleInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlRuleBasedBreakIterator::createWordInstance' => ['?IntlRuleBasedBreakIterator', 'locale='=>'?string'], - 'IntlRuleBasedBreakIterator::current' => ['int'], - 'IntlRuleBasedBreakIterator::first' => ['int'], - 'IntlRuleBasedBreakIterator::following' => ['int', 'offset'=>'int'], - 'IntlRuleBasedBreakIterator::getBinaryRules' => ['string'], - 'IntlRuleBasedBreakIterator::getErrorCode' => ['int'], - 'IntlRuleBasedBreakIterator::getErrorMessage' => ['string'], - 'IntlRuleBasedBreakIterator::getLocale' => ['string|false', 'type'=>'int'], - 'IntlRuleBasedBreakIterator::getPartsIterator' => ['IntlPartsIterator', 'type='=>'string'], - 'IntlRuleBasedBreakIterator::getRuleStatus' => ['int'], - 'IntlRuleBasedBreakIterator::getRuleStatusVec' => ['array'], - 'IntlRuleBasedBreakIterator::getRules' => ['string'], - 'IntlRuleBasedBreakIterator::getText' => ['?string'], - 'IntlRuleBasedBreakIterator::isBoundary' => ['bool', 'offset'=>'int'], - 'IntlRuleBasedBreakIterator::last' => ['int'], - 'IntlRuleBasedBreakIterator::next' => ['int', 'offset='=>'?int'], - 'IntlRuleBasedBreakIterator::preceding' => ['int', 'offset'=>'int'], - 'IntlRuleBasedBreakIterator::previous' => ['int'], - 'IntlRuleBasedBreakIterator::setText' => ['?bool', 'text'=>'string'], - 'IntlTimeZone::countEquivalentIDs' => ['int|false', 'timezoneId'=>'string'], - 'IntlTimeZone::createDefault' => ['IntlTimeZone'], - 'IntlTimeZone::createEnumeration' => ['IntlIterator|false', 'countryOrRawOffset='=>'IntlTimeZone|string|int|float|null'], - 'IntlTimeZone::createTimeZone' => ['?IntlTimeZone', 'timezoneId'=>'string'], - 'IntlTimeZone::createTimeZoneIDEnumeration' => ['IntlIterator|false', 'type'=>'int', 'region='=>'?string', 'rawOffset='=>'?int'], - 'IntlTimeZone::fromDateTimeZone' => ['?IntlTimeZone', 'timezone'=>'DateTimeZone'], - 'IntlTimeZone::getCanonicalID' => ['string|false', 'timezoneId'=>'string', '&w_isSystemId='=>'bool'], - 'IntlTimeZone::getDSTSavings' => ['int'], - 'IntlTimeZone::getDisplayName' => ['string|false', 'dst='=>'bool', 'style='=>'int', 'locale='=>'?string'], - 'IntlTimeZone::getEquivalentID' => ['string|false', 'timezoneId'=>'string', 'offset'=>'int'], - 'IntlTimeZone::getErrorCode' => ['int'], - 'IntlTimeZone::getErrorMessage' => ['string'], - 'IntlTimeZone::getGMT' => ['IntlTimeZone'], - 'IntlTimeZone::getID' => ['string'], - 'IntlTimeZone::getIDForWindowsID' => ['string|false', 'timezoneId'=>'string', 'region='=>'string'], - 'IntlTimeZone::getOffset' => ['bool', 'timestamp'=>'float', 'local'=>'bool', '&w_rawOffset'=>'int', '&w_dstOffset'=>'int'], - 'IntlTimeZone::getRawOffset' => ['int'], - 'IntlTimeZone::getRegion' => ['string|false', 'timezoneId'=>'string'], - 'IntlTimeZone::getTZDataVersion' => ['string'], - 'IntlTimeZone::getUnknown' => ['IntlTimeZone'], - 'IntlTimeZone::getWindowsID' => ['string|false', 'timezoneId'=>'string'], - 'IntlTimeZone::hasSameRules' => ['bool', 'other'=>'IntlTimeZone'], - 'IntlTimeZone::toDateTimeZone' => ['DateTimeZone|false'], - 'IntlTimeZone::useDaylightTime' => ['bool'], - 'InvalidArgumentException::__clone' => ['void'], - 'InvalidArgumentException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'InvalidArgumentException::__toString' => ['string'], - 'InvalidArgumentException::getCode' => ['int'], - 'InvalidArgumentException::getFile' => ['string'], - 'InvalidArgumentException::getLine' => ['int'], - 'InvalidArgumentException::getMessage' => ['string'], - 'InvalidArgumentException::getPrevious' => ['?Throwable'], - 'InvalidArgumentException::getTrace' => ['list\',args?:array}>'], - 'InvalidArgumentException::getTraceAsString' => ['string'], - 'Iterator::current' => ['mixed'], - 'Iterator::key' => ['mixed'], - 'Iterator::next' => ['void'], - 'Iterator::rewind' => ['void'], - 'Iterator::valid' => ['bool'], - 'IteratorAggregate::getIterator' => ['Traversable'], - 'IteratorIterator::__construct' => ['void', 'iterator'=>'Traversable', 'class='=>'?string'], - 'IteratorIterator::current' => ['mixed'], - 'IteratorIterator::getInnerIterator' => ['Iterator'], - 'IteratorIterator::key' => ['mixed'], - 'IteratorIterator::next' => ['void'], - 'IteratorIterator::rewind' => ['void'], - 'IteratorIterator::valid' => ['bool'], - 'JavaException::getCause' => ['object'], - 'JsonIncrementalParser::__construct' => ['void', 'depth'=>'', 'options'=>''], - 'JsonIncrementalParser::get' => ['', 'options'=>''], - 'JsonIncrementalParser::getError' => [''], - 'JsonIncrementalParser::parse' => ['', 'json'=>''], - 'JsonIncrementalParser::parseFile' => ['', 'filename'=>''], - 'JsonIncrementalParser::reset' => [''], - 'JsonSerializable::jsonSerialize' => ['mixed'], - 'Judy::__construct' => ['void', 'judy_type'=>'int'], - 'Judy::__destruct' => ['void'], - 'Judy::byCount' => ['int', 'nth_index'=>'int'], - 'Judy::count' => ['int', 'index_start='=>'int', 'index_end='=>'int'], - 'Judy::first' => ['mixed', 'index='=>'mixed'], - 'Judy::firstEmpty' => ['mixed', 'index='=>'mixed'], - 'Judy::free' => ['int'], - 'Judy::getType' => ['int'], - 'Judy::last' => ['mixed', 'index='=>'string'], - 'Judy::lastEmpty' => ['mixed', 'index='=>'int'], - 'Judy::memoryUsage' => ['int'], - 'Judy::next' => ['mixed', 'index'=>'mixed'], - 'Judy::nextEmpty' => ['mixed', 'index'=>'mixed'], - 'Judy::offsetExists' => ['bool', 'offset'=>'int|string'], - 'Judy::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'Judy::offsetSet' => ['bool', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'Judy::offsetUnset' => ['bool', 'offset'=>'int|string'], - 'Judy::prev' => ['mixed', 'index'=>'mixed'], - 'Judy::prevEmpty' => ['mixed', 'index'=>'mixed'], - 'Judy::size' => ['int'], - 'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => ['string'], - 'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => ['string'], - 'KTaglib_ID3v2_AttachedPictureFrame::getType' => ['int'], - 'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => ['bool', 'filename'=>'string'], - 'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => ['string', 'type'=>'string'], - 'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => ['', 'filename'=>'string'], - 'KTaglib_ID3v2_AttachedPictureFrame::setType' => ['', 'type'=>'int'], - 'KTaglib_ID3v2_Frame::__toString' => ['string'], - 'KTaglib_ID3v2_Frame::getDescription' => ['string'], - 'KTaglib_ID3v2_Frame::getMimeType' => ['string'], - 'KTaglib_ID3v2_Frame::getSize' => ['int'], - 'KTaglib_ID3v2_Frame::getType' => ['int'], - 'KTaglib_ID3v2_Frame::savePicture' => ['bool', 'filename'=>'string'], - 'KTaglib_ID3v2_Frame::setMimeType' => ['string', 'type'=>'string'], - 'KTaglib_ID3v2_Frame::setPicture' => ['void', 'filename'=>'string'], - 'KTaglib_ID3v2_Frame::setType' => ['void', 'type'=>'int'], - 'KTaglib_ID3v2_Tag::addFrame' => ['bool', 'frame'=>'KTaglib_ID3v2_Frame'], - 'KTaglib_ID3v2_Tag::getFrameList' => ['array'], - 'KTaglib_MPEG_AudioProperties::getBitrate' => ['int'], - 'KTaglib_MPEG_AudioProperties::getChannels' => ['int'], - 'KTaglib_MPEG_AudioProperties::getLayer' => ['int'], - 'KTaglib_MPEG_AudioProperties::getLength' => ['int'], - 'KTaglib_MPEG_AudioProperties::getSampleBitrate' => ['int'], - 'KTaglib_MPEG_AudioProperties::getVersion' => ['int'], - 'KTaglib_MPEG_AudioProperties::isCopyrighted' => ['bool'], - 'KTaglib_MPEG_AudioProperties::isOriginal' => ['bool'], - 'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => ['bool'], - 'KTaglib_MPEG_File::getAudioProperties' => ['KTaglib_MPEG_File'], - 'KTaglib_MPEG_File::getID3v1Tag' => ['KTaglib_ID3v1_Tag', 'create='=>'bool'], - 'KTaglib_MPEG_File::getID3v2Tag' => ['KTaglib_ID3v2_Tag', 'create='=>'bool'], - 'KTaglib_Tag::getAlbum' => ['string'], - 'KTaglib_Tag::getArtist' => ['string'], - 'KTaglib_Tag::getComment' => ['string'], - 'KTaglib_Tag::getGenre' => ['string'], - 'KTaglib_Tag::getTitle' => ['string'], - 'KTaglib_Tag::getTrack' => ['int'], - 'KTaglib_Tag::getYear' => ['int'], - 'KTaglib_Tag::isEmpty' => ['bool'], - 'Lapack::eigenValues' => ['array', 'a'=>'array', 'left='=>'array', 'right='=>'array'], - 'Lapack::identity' => ['array', 'n'=>'int'], - 'Lapack::leastSquaresByFactorisation' => ['array', 'a'=>'array', 'b'=>'array'], - 'Lapack::leastSquaresBySVD' => ['array', 'a'=>'array', 'b'=>'array'], - 'Lapack::pseudoInverse' => ['array', 'a'=>'array'], - 'Lapack::singularValues' => ['array', 'a'=>'array'], - 'Lapack::solveLinearEquation' => ['array', 'a'=>'array', 'b'=>'array'], - 'LengthException::__clone' => ['void'], - 'LengthException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'LengthException::__toString' => ['string'], - 'LengthException::getCode' => ['int'], - 'LengthException::getFile' => ['string'], - 'LengthException::getLine' => ['int'], - 'LengthException::getMessage' => ['string'], - 'LengthException::getPrevious' => ['?Throwable'], - 'LengthException::getTrace' => ['list\',args?:array}>'], - 'LengthException::getTraceAsString' => ['string'], - 'LevelDB::__construct' => ['void', 'name'=>'string', 'options='=>'array', 'read_options='=>'array', 'write_options='=>'array'], - 'LevelDB::close' => [''], - 'LevelDB::compactRange' => ['', 'start'=>'', 'limit'=>''], - 'LevelDB::delete' => ['bool', 'key'=>'string', 'write_options='=>'array'], - 'LevelDB::destroy' => ['', 'name'=>'', 'options='=>'array'], - 'LevelDB::get' => ['bool|string', 'key'=>'string', 'read_options='=>'array'], - 'LevelDB::getApproximateSizes' => ['', 'start'=>'', 'limit'=>''], - 'LevelDB::getIterator' => ['LevelDBIterator', 'options='=>'array'], - 'LevelDB::getProperty' => ['mixed', 'name'=>'string'], - 'LevelDB::getSnapshot' => ['LevelDBSnapshot'], - 'LevelDB::put' => ['', 'key'=>'string', 'value'=>'string', 'write_options='=>'array'], - 'LevelDB::repair' => ['', 'name'=>'', 'options='=>'array'], - 'LevelDB::set' => ['', 'key'=>'string', 'value'=>'string', 'write_options='=>'array'], - 'LevelDB::write' => ['', 'batch'=>'LevelDBWriteBatch', 'write_options='=>'array'], - 'LevelDBIterator::__construct' => ['void', 'db'=>'LevelDB', 'read_options='=>'array'], - 'LevelDBIterator::current' => ['mixed'], - 'LevelDBIterator::destroy' => [''], - 'LevelDBIterator::getError' => [''], - 'LevelDBIterator::key' => ['int|string'], - 'LevelDBIterator::last' => [''], - 'LevelDBIterator::next' => ['void'], - 'LevelDBIterator::prev' => [''], - 'LevelDBIterator::rewind' => ['void'], - 'LevelDBIterator::seek' => ['', 'key'=>''], - 'LevelDBIterator::valid' => ['bool'], - 'LevelDBSnapshot::__construct' => ['void', 'db'=>'LevelDB'], - 'LevelDBSnapshot::release' => [''], - 'LevelDBWriteBatch::__construct' => ['void', 'name'=>'', 'options='=>'array', 'read_options='=>'array', 'write_options='=>'array'], - 'LevelDBWriteBatch::clear' => [''], - 'LevelDBWriteBatch::delete' => ['', 'key'=>'', 'write_options='=>'array'], - 'LevelDBWriteBatch::put' => ['', 'key'=>'', 'value'=>'', 'write_options='=>'array'], - 'LevelDBWriteBatch::set' => ['', 'key'=>'', 'value'=>'', 'write_options='=>'array'], - 'LimitIterator::__construct' => ['void', 'iterator'=>'Iterator', 'offset='=>'int', 'limit='=>'int'], - 'LimitIterator::current' => ['mixed'], - 'LimitIterator::getInnerIterator' => ['Iterator'], - 'LimitIterator::getPosition' => ['int'], - 'LimitIterator::key' => ['mixed'], - 'LimitIterator::next' => ['void'], - 'LimitIterator::rewind' => ['void'], - 'LimitIterator::seek' => ['int', 'offset'=>'int'], - 'LimitIterator::valid' => ['bool'], - 'Locale::acceptFromHttp' => ['string|false', 'header'=>'string'], - 'Locale::canonicalize' => ['?string', 'locale'=>'string'], - 'Locale::composeLocale' => ['string', 'subtags'=>'array'], - 'Locale::filterMatches' => ['?bool', 'languageTag'=>'string', 'locale'=>'string', 'canonicalize='=>'bool'], - 'Locale::getAllVariants' => ['array', 'locale'=>'string'], - 'Locale::getDefault' => ['string'], - 'Locale::getDisplayLanguage' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'Locale::getDisplayName' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'Locale::getDisplayRegion' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'Locale::getDisplayScript' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'Locale::getDisplayVariant' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'Locale::getKeywords' => ['array|false', 'locale'=>'string'], - 'Locale::getPrimaryLanguage' => ['string', 'locale'=>'string'], - 'Locale::getRegion' => ['string', 'locale'=>'string'], - 'Locale::getScript' => ['string', 'locale'=>'string'], - 'Locale::lookup' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'string'], - 'Locale::parseLocale' => ['array', 'locale'=>'string'], - 'Locale::setDefault' => ['bool', 'locale'=>'string'], - 'LogicException::__clone' => ['void'], - 'LogicException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'LogicException::__toString' => ['string'], - 'LogicException::getCode' => ['int'], - 'LogicException::getFile' => ['string'], - 'LogicException::getLine' => ['int'], - 'LogicException::getMessage' => ['string'], - 'LogicException::getPrevious' => ['?Throwable'], - 'LogicException::getTrace' => ['list\',args?:array}>'], - 'LogicException::getTraceAsString' => ['string'], - 'Lua::__call' => ['mixed', 'lua_func'=>'callable', 'args='=>'array', 'use_self='=>'int'], - 'Lua::__construct' => ['void', 'lua_script_file'=>'string'], - 'Lua::assign' => ['?Lua', 'name'=>'string', 'value'=>'mixed'], - 'Lua::call' => ['mixed', 'lua_func'=>'callable', 'args='=>'array', 'use_self='=>'int'], - 'Lua::eval' => ['mixed', 'statements'=>'string'], - 'Lua::getVersion' => ['string'], - 'Lua::include' => ['mixed', 'file'=>'string'], - 'Lua::registerCallback' => ['Lua|null|false', 'name'=>'string', 'function'=>'callable'], - 'LuaClosure::__invoke' => ['void', 'arg'=>'mixed', '...args='=>'mixed'], - 'Memcache::add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'Memcache::addServer' => ['bool', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable', 'timeoutms='=>'int'], - 'Memcache::append' => [''], - 'Memcache::cas' => [''], - 'Memcache::close' => ['bool'], - 'Memcache::connect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'Memcache::decrement' => ['int', 'key'=>'string', 'value='=>'int'], - 'Memcache::delete' => ['bool', 'key'=>'string', 'timeout='=>'int'], - 'Memcache::findServer' => [''], - 'Memcache::flush' => ['bool'], - 'Memcache::get' => ['string|array|false', 'key'=>'string', 'flags='=>'array', 'keys='=>'array'], - 'Memcache::get\'1' => ['array', 'key'=>'string[]', 'flags='=>'int[]'], - 'Memcache::getExtendedStats' => ['false|array>', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'Memcache::getServerStatus' => ['int', 'host'=>'string', 'port='=>'int'], - 'Memcache::getStats' => ['array', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'Memcache::getVersion' => ['string'], - 'Memcache::increment' => ['int', 'key'=>'string', 'value='=>'int'], - 'Memcache::pconnect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'Memcache::prepend' => ['string'], - 'Memcache::replace' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'Memcache::set' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'Memcache::setCompressThreshold' => ['bool', 'threshold'=>'int', 'min_savings='=>'float'], - 'Memcache::setFailureCallback' => [''], - 'Memcache::setServerParams' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable'], - 'MemcachePool::add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'MemcachePool::addServer' => ['bool', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'?callable', 'timeoutms='=>'int'], - 'MemcachePool::append' => [''], - 'MemcachePool::cas' => [''], - 'MemcachePool::close' => ['bool'], - 'MemcachePool::connect' => ['bool', 'host'=>'string', 'port'=>'int', 'timeout='=>'int'], - 'MemcachePool::decrement' => ['int|false', 'key'=>'', 'value='=>'int|mixed'], - 'MemcachePool::delete' => ['bool', 'key'=>'', 'timeout='=>'int|mixed'], - 'MemcachePool::findServer' => [''], - 'MemcachePool::flush' => ['bool'], - 'MemcachePool::get' => ['array|string|false', 'key'=>'array|string', '&flags='=>'array|int'], - 'MemcachePool::getExtendedStats' => ['false|array>', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'MemcachePool::getServerStatus' => ['int', 'host'=>'string', 'port='=>'int'], - 'MemcachePool::getStats' => ['array|false', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'MemcachePool::getVersion' => ['string|false'], - 'MemcachePool::increment' => ['int|false', 'key'=>'', 'value='=>'int|mixed'], - 'MemcachePool::prepend' => ['string'], - 'MemcachePool::replace' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'MemcachePool::set' => ['bool', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'MemcachePool::setCompressThreshold' => ['bool', 'thresold'=>'int', 'min_saving='=>'float'], - 'MemcachePool::setFailureCallback' => [''], - 'MemcachePool::setServerParams' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'?callable'], - 'Memcached::__construct' => ['void', 'persistent_id='=>'?string', 'callback='=>'?callable', 'connection_str='=>'?string'], - 'Memcached::add' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::addByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::addServer' => ['bool', 'host'=>'string', 'port'=>'int', 'weight='=>'int'], - 'Memcached::addServers' => ['bool', 'servers'=>'array'], - 'Memcached::append' => ['?bool', 'key'=>'string', 'value'=>'string'], - 'Memcached::appendByKey' => ['?bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'string'], - 'Memcached::cas' => ['bool', 'cas_token'=>'string|int|float', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::casByKey' => ['bool', 'cas_token'=>'string|int|float', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::decrement' => ['int|false', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], - 'Memcached::decrementByKey' => ['int|false', 'server_key'=>'string', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], - 'Memcached::delete' => ['bool', 'key'=>'string', 'time='=>'int'], - 'Memcached::deleteByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'time='=>'int'], - 'Memcached::deleteMulti' => ['array', 'keys'=>'array', 'time='=>'int'], - 'Memcached::deleteMultiByKey' => ['array', 'server_key'=>'string', 'keys'=>'array', 'time='=>'int'], - 'Memcached::fetch' => ['array|false'], - 'Memcached::fetchAll' => ['array|false'], - 'Memcached::flush' => ['bool', 'delay='=>'int'], - 'Memcached::flushBuffers' => ['bool'], - 'Memcached::get' => ['mixed|false', 'key'=>'string', 'cache_cb='=>'?callable', 'get_flags='=>'int'], - 'Memcached::getAllKeys' => ['array|false'], - 'Memcached::getByKey' => ['mixed|false', 'server_key'=>'string', 'key'=>'string', 'cache_cb='=>'?callable', 'get_flags='=>'int'], - 'Memcached::getDelayed' => ['bool', 'keys'=>'array', 'with_cas='=>'bool', 'value_cb='=>'?callable'], - 'Memcached::getDelayedByKey' => ['bool', 'server_key'=>'string', 'keys'=>'array', 'with_cas='=>'bool', 'value_cb='=>'?callable'], - 'Memcached::getLastDisconnectedServer' => ['array|false'], - 'Memcached::getLastErrorCode' => ['int'], - 'Memcached::getLastErrorErrno' => ['int'], - 'Memcached::getLastErrorMessage' => ['string'], - 'Memcached::getMulti' => ['array|false', 'keys'=>'array', 'get_flags='=>'int'], - 'Memcached::getMultiByKey' => ['array|false', 'server_key'=>'string', 'keys'=>'array', 'get_flags='=>'int'], - 'Memcached::getOption' => ['mixed|false', 'option'=>'int'], - 'Memcached::getResultCode' => ['int'], - 'Memcached::getResultMessage' => ['string'], - 'Memcached::getServerByKey' => ['array', 'server_key'=>'string'], - 'Memcached::getServerList' => ['array'], - 'Memcached::getStats' => ['false|array>', 'type='=>'?string'], - 'Memcached::getVersion' => ['array'], - 'Memcached::increment' => ['int|false', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], - 'Memcached::incrementByKey' => ['int|false', 'server_key'=>'string', 'key'=>'string', 'offset='=>'int', 'initial_value='=>'int', 'expiry='=>'int'], - 'Memcached::isPersistent' => ['bool'], - 'Memcached::isPristine' => ['bool'], - 'Memcached::prepend' => ['?bool', 'key'=>'string', 'value'=>'string'], - 'Memcached::prependByKey' => ['?bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'string'], - 'Memcached::quit' => ['bool'], - 'Memcached::replace' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::replaceByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::resetServerList' => ['bool'], - 'Memcached::set' => ['bool', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::setBucket' => ['bool', 'host_map'=>'array', 'forward_map'=>'?array', 'replicas'=>'int'], - 'Memcached::setByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'value'=>'mixed', 'expiration='=>'int'], - 'Memcached::setEncodingKey' => ['bool', 'key'=>'string'], - 'Memcached::setMulti' => ['bool', 'items'=>'array', 'expiration='=>'int'], - 'Memcached::setMultiByKey' => ['bool', 'server_key'=>'string', 'items'=>'array', 'expiration='=>'int'], - 'Memcached::setOption' => ['bool', 'option'=>'int', 'value'=>'mixed'], - 'Memcached::setOptions' => ['bool', 'options'=>'array'], - 'Memcached::setSaslAuthData' => ['bool', 'username'=>'string', 'password'=>'string'], - 'Memcached::touch' => ['bool', 'key'=>'string', 'expiration='=>'int'], - 'Memcached::touchByKey' => ['bool', 'server_key'=>'string', 'key'=>'string', 'expiration='=>'int'], - 'MessageFormatter::__construct' => ['void', 'locale'=>'string', 'pattern'=>'string'], - 'MessageFormatter::create' => ['MessageFormatter', 'locale'=>'string', 'pattern'=>'string'], - 'MessageFormatter::format' => ['false|string', 'values'=>'array'], - 'MessageFormatter::formatMessage' => ['false|string', 'locale'=>'string', 'pattern'=>'string', 'values'=>'array'], - 'MessageFormatter::getErrorCode' => ['int'], - 'MessageFormatter::getErrorMessage' => ['string'], - 'MessageFormatter::getLocale' => ['string'], - 'MessageFormatter::getPattern' => ['string'], - 'MessageFormatter::parse' => ['array|false', 'string'=>'string'], - 'MessageFormatter::parseMessage' => ['array|false', 'locale'=>'string', 'pattern'=>'string', 'message'=>'string'], - 'MessageFormatter::setPattern' => ['bool', 'pattern'=>'string'], - 'Mongo::__construct' => ['void', 'server='=>'string', 'options='=>'array', 'driver_options='=>'array'], - 'Mongo::__get' => ['MongoDB', 'dbname'=>'string'], - 'Mongo::__toString' => ['string'], - 'Mongo::close' => ['bool'], - 'Mongo::connect' => ['bool'], - 'Mongo::connectUtil' => ['bool'], - 'Mongo::dropDB' => ['array', 'db'=>'mixed'], - 'Mongo::forceError' => ['bool'], - 'Mongo::getConnections' => ['array'], - 'Mongo::getHosts' => ['array'], - 'Mongo::getPoolSize' => ['int'], - 'Mongo::getReadPreference' => ['array'], - 'Mongo::getSlave' => ['?string'], - 'Mongo::getSlaveOkay' => ['bool'], - 'Mongo::getWriteConcern' => ['array'], - 'Mongo::killCursor' => ['', 'server_hash'=>'string', 'id'=>'MongoInt64|int'], - 'Mongo::lastError' => ['?array'], - 'Mongo::listDBs' => ['array'], - 'Mongo::pairConnect' => ['bool'], - 'Mongo::pairPersistConnect' => ['bool', 'username='=>'string', 'password='=>'string'], - 'Mongo::persistConnect' => ['bool', 'username='=>'string', 'password='=>'string'], - 'Mongo::poolDebug' => ['array'], - 'Mongo::prevError' => ['array'], - 'Mongo::resetError' => ['array'], - 'Mongo::selectCollection' => ['MongoCollection', 'db'=>'string', 'collection'=>'string'], - 'Mongo::selectDB' => ['MongoDB', 'name'=>'string'], - 'Mongo::setPoolSize' => ['bool', 'size'=>'int'], - 'Mongo::setReadPreference' => ['bool', 'readPreference'=>'string', 'tags='=>'array'], - 'Mongo::setSlaveOkay' => ['bool', 'ok='=>'bool'], - 'Mongo::switchSlave' => ['string'], - 'MongoBinData::__construct' => ['void', 'data'=>'string', 'type='=>'int'], - 'MongoBinData::__toString' => ['string'], - 'MongoClient::__construct' => ['void', 'server='=>'string', 'options='=>'array', 'driver_options='=>'array'], - 'MongoClient::__get' => ['MongoDB', 'dbname'=>'string'], - 'MongoClient::__toString' => ['string'], - 'MongoClient::close' => ['bool', 'connection='=>'bool|string'], - 'MongoClient::connect' => ['bool'], - 'MongoClient::dropDB' => ['array', 'db'=>'mixed'], - 'MongoClient::getConnections' => ['array'], - 'MongoClient::getHosts' => ['array'], - 'MongoClient::getReadPreference' => ['array'], - 'MongoClient::getWriteConcern' => ['array'], - 'MongoClient::killCursor' => ['bool', 'server_hash'=>'string', 'id'=>'int|MongoInt64'], - 'MongoClient::listDBs' => ['array'], - 'MongoClient::selectCollection' => ['MongoCollection', 'db'=>'string', 'collection'=>'string'], - 'MongoClient::selectDB' => ['MongoDB', 'name'=>'string'], - 'MongoClient::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoClient::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], - 'MongoClient::switchSlave' => ['string'], - 'MongoCode::__construct' => ['void', 'code'=>'string', 'scope='=>'array'], - 'MongoCode::__toString' => ['string'], - 'MongoCollection::__construct' => ['void', 'db'=>'MongoDB', 'name'=>'string'], - 'MongoCollection::__get' => ['MongoCollection', 'name'=>'string'], - 'MongoCollection::__toString' => ['string'], - 'MongoCollection::aggregate' => ['array', 'op'=>'array', 'op='=>'array', '...args='=>'array'], - 'MongoCollection::aggregate\'1' => ['array', 'pipeline'=>'array', 'options='=>'array'], - 'MongoCollection::aggregateCursor' => ['MongoCommandCursor', 'command'=>'array', 'options='=>'array'], - 'MongoCollection::batchInsert' => ['array|bool', 'a'=>'array', 'options='=>'array'], - 'MongoCollection::count' => ['int', 'query='=>'array', 'limit='=>'int', 'skip='=>'int'], - 'MongoCollection::createDBRef' => ['array', 'a'=>'array'], - 'MongoCollection::createIndex' => ['array', 'keys'=>'array', 'options='=>'array'], - 'MongoCollection::deleteIndex' => ['array', 'keys'=>'string|array'], - 'MongoCollection::deleteIndexes' => ['array'], - 'MongoCollection::distinct' => ['array|false', 'key'=>'string', 'query='=>'array'], - 'MongoCollection::drop' => ['array'], - 'MongoCollection::ensureIndex' => ['bool', 'keys'=>'array', 'options='=>'array'], - 'MongoCollection::find' => ['MongoCursor', 'query='=>'array', 'fields='=>'array'], - 'MongoCollection::findAndModify' => ['array', 'query'=>'array', 'update='=>'array', 'fields='=>'array', 'options='=>'array'], - 'MongoCollection::findOne' => ['?array', 'query='=>'array', 'fields='=>'array'], - 'MongoCollection::getDBRef' => ['array', 'ref'=>'array'], - 'MongoCollection::getIndexInfo' => ['array'], - 'MongoCollection::getName' => ['string'], - 'MongoCollection::getReadPreference' => ['array'], - 'MongoCollection::getSlaveOkay' => ['bool'], - 'MongoCollection::getWriteConcern' => ['array'], - 'MongoCollection::group' => ['array', 'keys'=>'mixed', 'initial'=>'array', 'reduce'=>'MongoCode', 'options='=>'array'], - 'MongoCollection::insert' => ['bool|array', 'a'=>'array|object', 'options='=>'array'], - 'MongoCollection::parallelCollectionScan' => ['MongoCommandCursor[]', 'num_cursors'=>'int'], - 'MongoCollection::remove' => ['bool|array', 'criteria='=>'array', 'options='=>'array'], - 'MongoCollection::save' => ['bool|array', 'a'=>'array|object', 'options='=>'array'], - 'MongoCollection::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoCollection::setSlaveOkay' => ['bool', 'ok='=>'bool'], - 'MongoCollection::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], - 'MongoCollection::toIndexString' => ['string', 'keys'=>'mixed'], - 'MongoCollection::update' => ['bool', 'criteria'=>'array', 'newobj'=>'array', 'options='=>'array'], - 'MongoCollection::validate' => ['array', 'scan_data='=>'bool'], - 'MongoCommandCursor::__construct' => ['void', 'connection'=>'MongoClient', 'ns'=>'string', 'command'=>'array'], - 'MongoCommandCursor::batchSize' => ['MongoCommandCursor', 'batchSize'=>'int'], - 'MongoCommandCursor::createFromDocument' => ['MongoCommandCursor', 'connection'=>'MongoClient', 'hash'=>'string', 'document'=>'array'], - 'MongoCommandCursor::current' => ['array'], - 'MongoCommandCursor::dead' => ['bool'], - 'MongoCommandCursor::getReadPreference' => ['array'], - 'MongoCommandCursor::info' => ['array'], - 'MongoCommandCursor::key' => ['int'], - 'MongoCommandCursor::next' => ['void'], - 'MongoCommandCursor::rewind' => ['array'], - 'MongoCommandCursor::setReadPreference' => ['MongoCommandCursor', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoCommandCursor::timeout' => ['MongoCommandCursor', 'ms'=>'int'], - 'MongoCommandCursor::valid' => ['bool'], - 'MongoCursor::__construct' => ['void', 'connection'=>'MongoClient', 'ns'=>'string', 'query='=>'array', 'fields='=>'array'], - 'MongoCursor::addOption' => ['MongoCursor', 'key'=>'string', 'value'=>'mixed'], - 'MongoCursor::awaitData' => ['MongoCursor', 'wait='=>'bool'], - 'MongoCursor::batchSize' => ['MongoCursor', 'num'=>'int'], - 'MongoCursor::count' => ['int', 'foundonly='=>'bool'], - 'MongoCursor::current' => ['array'], - 'MongoCursor::dead' => ['bool'], - 'MongoCursor::doQuery' => ['void'], - 'MongoCursor::explain' => ['array'], - 'MongoCursor::fields' => ['MongoCursor', 'f'=>'array'], - 'MongoCursor::getNext' => ['array'], - 'MongoCursor::getReadPreference' => ['array'], - 'MongoCursor::hasNext' => ['bool'], - 'MongoCursor::hint' => ['MongoCursor', 'key_pattern'=>'string|array|object'], - 'MongoCursor::immortal' => ['MongoCursor', 'liveforever='=>'bool'], - 'MongoCursor::info' => ['array'], - 'MongoCursor::key' => ['string'], - 'MongoCursor::limit' => ['MongoCursor', 'num'=>'int'], - 'MongoCursor::maxTimeMS' => ['MongoCursor', 'ms'=>'int'], - 'MongoCursor::next' => ['array'], - 'MongoCursor::partial' => ['MongoCursor', 'okay='=>'bool'], - 'MongoCursor::reset' => ['void'], - 'MongoCursor::rewind' => ['void'], - 'MongoCursor::setFlag' => ['MongoCursor', 'flag'=>'int', 'set='=>'bool'], - 'MongoCursor::setReadPreference' => ['MongoCursor', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoCursor::skip' => ['MongoCursor', 'num'=>'int'], - 'MongoCursor::slaveOkay' => ['MongoCursor', 'okay='=>'bool'], - 'MongoCursor::snapshot' => ['MongoCursor'], - 'MongoCursor::sort' => ['MongoCursor', 'fields'=>'array'], - 'MongoCursor::tailable' => ['MongoCursor', 'tail='=>'bool'], - 'MongoCursor::timeout' => ['MongoCursor', 'ms'=>'int'], - 'MongoCursor::valid' => ['bool'], - 'MongoCursorException::__clone' => ['void'], - 'MongoCursorException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'MongoCursorException::__toString' => ['string'], - 'MongoCursorException::__wakeup' => ['void'], - 'MongoCursorException::getCode' => ['int'], - 'MongoCursorException::getFile' => ['string'], - 'MongoCursorException::getHost' => ['string'], - 'MongoCursorException::getLine' => ['int'], - 'MongoCursorException::getMessage' => ['string'], - 'MongoCursorException::getPrevious' => ['Exception|Throwable'], - 'MongoCursorException::getTrace' => ['list\',args?:array}>'], - 'MongoCursorException::getTraceAsString' => ['string'], - 'MongoCursorInterface::__construct' => ['void'], - 'MongoCursorInterface::batchSize' => ['MongoCursorInterface', 'batchSize'=>'int'], - 'MongoCursorInterface::current' => ['mixed'], - 'MongoCursorInterface::dead' => ['bool'], - 'MongoCursorInterface::getReadPreference' => ['array'], - 'MongoCursorInterface::info' => ['array'], - 'MongoCursorInterface::key' => ['int|string'], - 'MongoCursorInterface::next' => ['void'], - 'MongoCursorInterface::rewind' => ['void'], - 'MongoCursorInterface::setReadPreference' => ['MongoCursorInterface', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoCursorInterface::timeout' => ['MongoCursorInterface', 'ms'=>'int'], - 'MongoCursorInterface::valid' => ['bool'], - 'MongoDB::__construct' => ['void', 'conn'=>'MongoClient', 'name'=>'string'], - 'MongoDB::__get' => ['MongoCollection', 'name'=>'string'], - 'MongoDB::__toString' => ['string'], - 'MongoDB::authenticate' => ['array', 'username'=>'string', 'password'=>'string'], - 'MongoDB::command' => ['array', 'command'=>'array'], - 'MongoDB::createCollection' => ['MongoCollection', 'name'=>'string', 'capped='=>'bool', 'size='=>'int', 'max='=>'int'], - 'MongoDB::createDBRef' => ['array', 'collection'=>'string', 'a'=>'mixed'], - 'MongoDB::drop' => ['array'], - 'MongoDB::dropCollection' => ['array', 'coll'=>'MongoCollection|string'], - 'MongoDB::execute' => ['array', 'code'=>'MongoCode|string', 'args='=>'array'], - 'MongoDB::forceError' => ['bool'], - 'MongoDB::getCollectionInfo' => ['array', 'options='=>'array'], - 'MongoDB::getCollectionNames' => ['array', 'options='=>'array'], - 'MongoDB::getDBRef' => ['array', 'ref'=>'array'], - 'MongoDB::getGridFS' => ['MongoGridFS', 'prefix='=>'string'], - 'MongoDB::getProfilingLevel' => ['int'], - 'MongoDB::getReadPreference' => ['array'], - 'MongoDB::getSlaveOkay' => ['bool'], - 'MongoDB::getWriteConcern' => ['array'], - 'MongoDB::lastError' => ['array'], - 'MongoDB::listCollections' => ['array'], - 'MongoDB::prevError' => ['array'], - 'MongoDB::repair' => ['array', 'preserve_cloned_files='=>'bool', 'backup_original_files='=>'bool'], - 'MongoDB::resetError' => ['array'], - 'MongoDB::selectCollection' => ['MongoCollection', 'name'=>'string'], - 'MongoDB::setProfilingLevel' => ['int', 'level'=>'int'], - 'MongoDB::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags='=>'array'], - 'MongoDB::setSlaveOkay' => ['bool', 'ok='=>'bool'], - 'MongoDB::setWriteConcern' => ['bool', 'w'=>'mixed', 'wtimeout='=>'int'], - 'MongoDBRef::create' => ['array', 'collection'=>'string', 'id'=>'mixed', 'database='=>'string'], - 'MongoDBRef::get' => ['?array', 'db'=>'MongoDB', 'ref'=>'array'], - 'MongoDBRef::isRef' => ['bool', 'ref'=>'mixed'], - 'MongoDB\BSON\fromJSON' => ['string', 'json' => 'string'], - 'MongoDB\BSON\fromPHP' => ['string', 'value' => 'object|array'], - 'MongoDB\BSON\toCanonicalExtendedJSON' => ['string', 'bson' => 'string'], - 'MongoDB\BSON\toJSON' => ['string', 'bson' => 'string'], - 'MongoDB\BSON\toPHP' => ['object|array', 'bson' => 'string', 'typemap=' => '?array'], - 'MongoDB\BSON\toRelaxedExtendedJSON' => ['string', 'bson' => 'string'], - 'MongoDB\Driver\Monitoring\addSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], - 'MongoDB\Driver\Monitoring\removeSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], - 'MongoDB\BSON\Binary::__construct' => ['void', 'data' => 'string', 'type=' => 'int'], - 'MongoDB\BSON\Binary::getData' => ['string'], - 'MongoDB\BSON\Binary::getType' => ['int'], - 'MongoDB\BSON\Binary::__toString' => ['string'], - 'MongoDB\BSON\Binary::serialize' => ['string'], - 'MongoDB\BSON\Binary::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Binary::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\BinaryInterface::getData' => ['string'], - 'MongoDB\BSON\BinaryInterface::getType' => ['int'], - 'MongoDB\BSON\BinaryInterface::__toString' => ['string'], - 'MongoDB\BSON\DBPointer::__toString' => ['string'], - 'MongoDB\BSON\DBPointer::serialize' => ['string'], - 'MongoDB\BSON\DBPointer::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\DBPointer::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\Decimal128::__construct' => ['void', 'value' => 'string'], - 'MongoDB\BSON\Decimal128::__toString' => ['string'], - 'MongoDB\BSON\Decimal128::serialize' => ['string'], - 'MongoDB\BSON\Decimal128::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Decimal128::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\Decimal128Interface::__toString' => ['string'], - 'MongoDB\BSON\Document::fromBSON' => ['MongoDB\BSON\Document', 'bson' => 'string'], - 'MongoDB\BSON\Document::fromJSON' => ['MongoDB\BSON\Document', 'json' => 'string'], - 'MongoDB\BSON\Document::fromPHP' => ['MongoDB\BSON\Document', 'value' => 'object|array'], - 'MongoDB\BSON\Document::get' => ['mixed', 'key' => 'string'], - 'MongoDB\BSON\Document::getIterator' => ['MongoDB\BSON\Iterator'], - 'MongoDB\BSON\Document::has' => ['bool', 'key' => 'string'], - 'MongoDB\BSON\Document::toPHP' => ['object|array', 'typeMap=' => '?array'], - 'MongoDB\BSON\Document::toCanonicalExtendedJSON' => ['string'], - 'MongoDB\BSON\Document::toRelaxedExtendedJSON' => ['string'], - 'MongoDB\BSON\Document::offsetExists' => ['bool', 'offset' => 'mixed'], - 'MongoDB\BSON\Document::offsetGet' => ['mixed', 'offset' => 'mixed'], - 'MongoDB\BSON\Document::offsetSet' => ['void', 'offset' => 'mixed', 'value' => 'mixed'], - 'MongoDB\BSON\Document::offsetUnset' => ['void', 'offset' => 'mixed'], - 'MongoDB\BSON\Document::__toString' => ['string'], - 'MongoDB\BSON\Document::serialize' => ['string'], - 'MongoDB\BSON\Document::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Int64::__construct' => ['void', 'value' => 'string|int'], - 'MongoDB\BSON\Int64::__toString' => ['string'], - 'MongoDB\BSON\Int64::serialize' => ['string'], - 'MongoDB\BSON\Int64::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Int64::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\Iterator::current' => ['mixed'], - 'MongoDB\BSON\Iterator::key' => ['string|int'], - 'MongoDB\BSON\Iterator::next' => ['void'], - 'MongoDB\BSON\Iterator::rewind' => ['void'], - 'MongoDB\BSON\Iterator::valid' => ['bool'], - 'MongoDB\BSON\Javascript::__construct' => ['void', 'code' => 'string', 'scope=' => 'object|array|null'], - 'MongoDB\BSON\Javascript::getCode' => ['string'], - 'MongoDB\BSON\Javascript::getScope' => ['?object'], - 'MongoDB\BSON\Javascript::__toString' => ['string'], - 'MongoDB\BSON\Javascript::serialize' => ['string'], - 'MongoDB\BSON\Javascript::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Javascript::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\JavascriptInterface::getCode' => ['string'], - 'MongoDB\BSON\JavascriptInterface::getScope' => ['?object'], - 'MongoDB\BSON\JavascriptInterface::__toString' => ['string'], - 'MongoDB\BSON\MaxKey::serialize' => ['string'], - 'MongoDB\BSON\MaxKey::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\MaxKey::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\MinKey::serialize' => ['string'], - 'MongoDB\BSON\MinKey::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\MinKey::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\ObjectId::__construct' => ['void', 'id=' => '?string'], - 'MongoDB\BSON\ObjectId::getTimestamp' => ['int'], - 'MongoDB\BSON\ObjectId::__toString' => ['string'], - 'MongoDB\BSON\ObjectId::serialize' => ['string'], - 'MongoDB\BSON\ObjectId::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\ObjectId::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\ObjectIdInterface::getTimestamp' => ['int'], - 'MongoDB\BSON\ObjectIdInterface::__toString' => ['string'], - 'MongoDB\BSON\PackedArray::fromPHP' => ['MongoDB\BSON\PackedArray', 'value' => 'array'], - 'MongoDB\BSON\PackedArray::get' => ['mixed', 'index' => 'int'], - 'MongoDB\BSON\PackedArray::getIterator' => ['MongoDB\BSON\Iterator'], - 'MongoDB\BSON\PackedArray::has' => ['bool', 'index' => 'int'], - 'MongoDB\BSON\PackedArray::toPHP' => ['object|array', 'typeMap=' => '?array'], - 'MongoDB\BSON\PackedArray::offsetExists' => ['bool', 'offset' => 'mixed'], - 'MongoDB\BSON\PackedArray::offsetGet' => ['mixed', 'offset' => 'mixed'], - 'MongoDB\BSON\PackedArray::offsetSet' => ['void', 'offset' => 'mixed', 'value' => 'mixed'], - 'MongoDB\BSON\PackedArray::offsetUnset' => ['void', 'offset' => 'mixed'], - 'MongoDB\BSON\PackedArray::__toString' => ['string'], - 'MongoDB\BSON\PackedArray::serialize' => ['string'], - 'MongoDB\BSON\PackedArray::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Persistable::bsonSerialize' => ['stdClass|MongoDB\BSON\Document|array'], - 'MongoDB\BSON\Regex::__construct' => ['void', 'pattern' => 'string', 'flags=' => 'string'], - 'MongoDB\BSON\Regex::getPattern' => ['string'], - 'MongoDB\BSON\Regex::getFlags' => ['string'], - 'MongoDB\BSON\Regex::__toString' => ['string'], - 'MongoDB\BSON\Regex::serialize' => ['string'], - 'MongoDB\BSON\Regex::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Regex::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\RegexInterface::getPattern' => ['string'], - 'MongoDB\BSON\RegexInterface::getFlags' => ['string'], - 'MongoDB\BSON\RegexInterface::__toString' => ['string'], - 'MongoDB\BSON\Serializable::bsonSerialize' => ['stdClass|MongoDB\BSON\Document|MongoDB\BSON\PackedArray|array'], - 'MongoDB\BSON\Symbol::__toString' => ['string'], - 'MongoDB\BSON\Symbol::serialize' => ['string'], - 'MongoDB\BSON\Symbol::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Symbol::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\Timestamp::__construct' => ['void', 'increment' => 'string|int', 'timestamp' => 'string|int'], - 'MongoDB\BSON\Timestamp::getTimestamp' => ['int'], - 'MongoDB\BSON\Timestamp::getIncrement' => ['int'], - 'MongoDB\BSON\Timestamp::__toString' => ['string'], - 'MongoDB\BSON\Timestamp::serialize' => ['string'], - 'MongoDB\BSON\Timestamp::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Timestamp::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\TimestampInterface::getTimestamp' => ['int'], - 'MongoDB\BSON\TimestampInterface::getIncrement' => ['int'], - 'MongoDB\BSON\TimestampInterface::__toString' => ['string'], - 'MongoDB\BSON\UTCDateTime::__construct' => ['void', 'milliseconds=' => 'DateTimeInterface|string|int|float|null'], - 'MongoDB\BSON\UTCDateTime::toDateTime' => ['DateTime'], - 'MongoDB\BSON\UTCDateTime::__toString' => ['string'], - 'MongoDB\BSON\UTCDateTime::serialize' => ['string'], - 'MongoDB\BSON\UTCDateTime::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\UTCDateTime::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\UTCDateTimeInterface::toDateTime' => ['DateTime'], - 'MongoDB\BSON\UTCDateTimeInterface::__toString' => ['string'], - 'MongoDB\BSON\Undefined::__toString' => ['string'], - 'MongoDB\BSON\Undefined::serialize' => ['string'], - 'MongoDB\BSON\Undefined::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\BSON\Undefined::jsonSerialize' => ['mixed'], - 'MongoDB\BSON\Unserializable::bsonUnserialize' => ['void', 'data' => 'array'], - 'MongoDB\Driver\BulkWrite::__construct' => ['void', 'options=' => '?array'], - 'MongoDB\Driver\BulkWrite::count' => ['int'], - 'MongoDB\Driver\BulkWrite::delete' => ['void', 'filter' => 'object|array', 'deleteOptions=' => '?array'], - 'MongoDB\Driver\BulkWrite::insert' => ['mixed', 'document' => 'object|array'], - 'MongoDB\Driver\BulkWrite::update' => ['void', 'filter' => 'object|array', 'newObj' => 'object|array', 'updateOptions=' => '?array'], - 'MongoDB\Driver\ClientEncryption::__construct' => ['void', 'options' => 'array'], - 'MongoDB\Driver\ClientEncryption::addKeyAltName' => ['?object', 'keyId' => 'MongoDB\BSON\Binary', 'keyAltName' => 'string'], - 'MongoDB\Driver\ClientEncryption::createDataKey' => ['MongoDB\BSON\Binary', 'kmsProvider' => 'string', 'options=' => '?array'], - 'MongoDB\Driver\ClientEncryption::decrypt' => ['mixed', 'value' => 'MongoDB\BSON\Binary'], - 'MongoDB\Driver\ClientEncryption::deleteKey' => ['object', 'keyId' => 'MongoDB\BSON\Binary'], - 'MongoDB\Driver\ClientEncryption::encrypt' => ['MongoDB\BSON\Binary', 'value' => 'mixed', 'options=' => '?array'], - 'MongoDB\Driver\ClientEncryption::encryptExpression' => ['object', 'expr' => 'object|array', 'options=' => '?array'], - 'MongoDB\Driver\ClientEncryption::getKey' => ['?object', 'keyId' => 'MongoDB\BSON\Binary'], - 'MongoDB\Driver\ClientEncryption::getKeyByAltName' => ['?object', 'keyAltName' => 'string'], - 'MongoDB\Driver\ClientEncryption::getKeys' => ['MongoDB\Driver\Cursor'], - 'MongoDB\Driver\ClientEncryption::removeKeyAltName' => ['?object', 'keyId' => 'MongoDB\BSON\Binary', 'keyAltName' => 'string'], - 'MongoDB\Driver\ClientEncryption::rewrapManyDataKey' => ['object', 'filter' => 'object|array', 'options=' => '?array'], - 'MongoDB\Driver\Command::__construct' => ['void', 'document' => 'object|array', 'commandOptions=' => '?array'], - 'MongoDB\Driver\Cursor::current' => ['object|array|null'], - 'MongoDB\Driver\Cursor::getId' => ['MongoDB\Driver\CursorId'], - 'MongoDB\Driver\Cursor::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\Cursor::isDead' => ['bool'], - 'MongoDB\Driver\Cursor::key' => ['?int'], - 'MongoDB\Driver\Cursor::next' => ['void'], - 'MongoDB\Driver\Cursor::rewind' => ['void'], - 'MongoDB\Driver\Cursor::setTypeMap' => ['void', 'typemap' => 'array'], - 'MongoDB\Driver\Cursor::toArray' => ['array'], - 'MongoDB\Driver\Cursor::valid' => ['bool'], - 'MongoDB\Driver\CursorId::__toString' => ['string'], - 'MongoDB\Driver\CursorId::serialize' => ['string'], - 'MongoDB\Driver\CursorId::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\Driver\CursorInterface::getId' => ['MongoDB\Driver\CursorId'], - 'MongoDB\Driver\CursorInterface::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\CursorInterface::isDead' => ['bool'], - 'MongoDB\Driver\CursorInterface::setTypeMap' => ['void', 'typemap' => 'array'], - 'MongoDB\Driver\CursorInterface::toArray' => ['array'], - 'MongoDB\Driver\Exception\AuthenticationException::__toString' => ['string'], - 'MongoDB\Driver\Exception\BulkWriteException::__toString' => ['string'], - 'MongoDB\Driver\Exception\CommandException::getResultDocument' => ['object'], - 'MongoDB\Driver\Exception\CommandException::__toString' => ['string'], - 'MongoDB\Driver\Exception\ConnectionException::__toString' => ['string'], - 'MongoDB\Driver\Exception\ConnectionTimeoutException::__toString' => ['string'], - 'MongoDB\Driver\Exception\EncryptionException::__toString' => ['string'], - 'MongoDB\Driver\Exception\Exception::__toString' => ['string'], - 'MongoDB\Driver\Exception\ExecutionTimeoutException::__toString' => ['string'], - 'MongoDB\Driver\Exception\InvalidArgumentException::__toString' => ['string'], - 'MongoDB\Driver\Exception\LogicException::__toString' => ['string'], - 'MongoDB\Driver\Exception\RuntimeException::hasErrorLabel' => ['bool', 'errorLabel' => 'string'], - 'MongoDB\Driver\Exception\RuntimeException::__toString' => ['string'], - 'MongoDB\Driver\Exception\SSLConnectionException::__toString' => ['string'], - 'MongoDB\Driver\Exception\ServerException::__toString' => ['string'], - 'MongoDB\Driver\Exception\UnexpectedValueException::__toString' => ['string'], - 'MongoDB\Driver\Exception\WriteException::getWriteResult' => ['MongoDB\Driver\WriteResult'], - 'MongoDB\Driver\Exception\WriteException::__toString' => ['string'], - 'MongoDB\Driver\Manager::__construct' => ['void', 'uri=' => '?string', 'uriOptions=' => '?array', 'driverOptions=' => '?array'], - 'MongoDB\Driver\Manager::addSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], - 'MongoDB\Driver\Manager::createClientEncryption' => ['MongoDB\Driver\ClientEncryption', 'options' => 'array'], - 'MongoDB\Driver\Manager::executeBulkWrite' => ['MongoDB\Driver\WriteResult', 'namespace' => 'string', 'bulk' => 'MongoDB\Driver\BulkWrite', 'options=' => 'MongoDB\Driver\WriteConcern|array|null'], - 'MongoDB\Driver\Manager::executeCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], - 'MongoDB\Driver\Manager::executeQuery' => ['MongoDB\Driver\Cursor', 'namespace' => 'string', 'query' => 'MongoDB\Driver\Query', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], - 'MongoDB\Driver\Manager::executeReadCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Manager::executeReadWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Manager::executeWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Manager::getEncryptedFieldsMap' => ['object|array|null'], - 'MongoDB\Driver\Manager::getReadConcern' => ['MongoDB\Driver\ReadConcern'], - 'MongoDB\Driver\Manager::getReadPreference' => ['MongoDB\Driver\ReadPreference'], - 'MongoDB\Driver\Manager::getServers' => ['array'], - 'MongoDB\Driver\Manager::getWriteConcern' => ['MongoDB\Driver\WriteConcern'], - 'MongoDB\Driver\Manager::removeSubscriber' => ['void', 'subscriber' => 'MongoDB\Driver\Monitoring\Subscriber'], - 'MongoDB\Driver\Manager::selectServer' => ['MongoDB\Driver\Server', 'readPreference=' => '?MongoDB\Driver\ReadPreference'], - 'MongoDB\Driver\Manager::startSession' => ['MongoDB\Driver\Session', 'options=' => '?array'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getCommandName' => ['string'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getDurationMicros' => ['int'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getError' => ['Exception'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getOperationId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getReply' => ['object'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getRequestId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\CommandFailedEvent::getServerConnectionId' => ['?int'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getCommand' => ['object'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getCommandName' => ['string'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getDatabaseName' => ['string'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getOperationId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getRequestId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\CommandStartedEvent::getServerConnectionId' => ['?int'], - 'MongoDB\Driver\Monitoring\CommandSubscriber::commandStarted' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandStartedEvent'], - 'MongoDB\Driver\Monitoring\CommandSubscriber::commandSucceeded' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandSucceededEvent'], - 'MongoDB\Driver\Monitoring\CommandSubscriber::commandFailed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\CommandFailedEvent'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getCommandName' => ['string'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getDurationMicros' => ['int'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getReply' => ['object'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId' => ['string'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServiceId' => ['?MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\CommandSucceededEvent::getServerConnectionId' => ['?int'], - 'MongoDB\Driver\Monitoring\LogSubscriber::log' => ['void', 'level' => 'int', 'domain' => 'string', 'message' => 'string'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverChanged' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerChangedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverClosed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerClosedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverOpening' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerOpeningEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatFailed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatStarted' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::serverHeartbeatSucceeded' => ['void', 'event' => 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyChanged' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyChangedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyClosed' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyClosedEvent'], - 'MongoDB\Driver\Monitoring\SDAMSubscriber::topologyOpening' => ['void', 'event' => 'MongoDB\Driver\Monitoring\TopologyOpeningEvent'], - 'MongoDB\Driver\Monitoring\ServerChangedEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerChangedEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerChangedEvent::getNewDescription' => ['MongoDB\Driver\ServerDescription'], - 'MongoDB\Driver\Monitoring\ServerChangedEvent::getPreviousDescription' => ['MongoDB\Driver\ServerDescription'], - 'MongoDB\Driver\Monitoring\ServerChangedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\ServerClosedEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerClosedEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerClosedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getDurationMicros' => ['int'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getError' => ['Exception'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatFailedEvent::isAwaited' => ['bool'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent::isAwaited' => ['bool'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getDurationMicros' => ['int'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getReply' => ['object'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent::isAwaited' => ['bool'], - 'MongoDB\Driver\Monitoring\ServerOpeningEvent::getPort' => ['int'], - 'MongoDB\Driver\Monitoring\ServerOpeningEvent::getHost' => ['string'], - 'MongoDB\Driver\Monitoring\ServerOpeningEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\TopologyChangedEvent::getNewDescription' => ['MongoDB\Driver\TopologyDescription'], - 'MongoDB\Driver\Monitoring\TopologyChangedEvent::getPreviousDescription' => ['MongoDB\Driver\TopologyDescription'], - 'MongoDB\Driver\Monitoring\TopologyChangedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\TopologyClosedEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Monitoring\TopologyOpeningEvent::getTopologyId' => ['MongoDB\BSON\ObjectId'], - 'MongoDB\Driver\Query::__construct' => ['void', 'filter' => 'object|array', 'queryOptions=' => '?array'], - 'MongoDB\Driver\ReadConcern::__construct' => ['void', 'level=' => '?string'], - 'MongoDB\Driver\ReadConcern::getLevel' => ['?string'], - 'MongoDB\Driver\ReadConcern::isDefault' => ['bool'], - 'MongoDB\Driver\ReadConcern::bsonSerialize' => ['stdClass'], - 'MongoDB\Driver\ReadConcern::serialize' => ['string'], - 'MongoDB\Driver\ReadConcern::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\Driver\ReadPreference::__construct' => ['void', 'mode' => 'string|int', 'tagSets=' => '?array', 'options=' => '?array'], - 'MongoDB\Driver\ReadPreference::getHedge' => ['?object'], - 'MongoDB\Driver\ReadPreference::getMaxStalenessSeconds' => ['int'], - 'MongoDB\Driver\ReadPreference::getMode' => ['int'], - 'MongoDB\Driver\ReadPreference::getModeString' => ['string'], - 'MongoDB\Driver\ReadPreference::getTagSets' => ['array'], - 'MongoDB\Driver\ReadPreference::bsonSerialize' => ['stdClass'], - 'MongoDB\Driver\ReadPreference::serialize' => ['string'], - 'MongoDB\Driver\ReadPreference::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\Driver\Server::executeBulkWrite' => ['MongoDB\Driver\WriteResult', 'namespace' => 'string', 'bulkWrite' => 'MongoDB\Driver\BulkWrite', 'options=' => 'MongoDB\Driver\WriteConcern|array|null'], - 'MongoDB\Driver\Server::executeCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], - 'MongoDB\Driver\Server::executeQuery' => ['MongoDB\Driver\Cursor', 'namespace' => 'string', 'query' => 'MongoDB\Driver\Query', 'options=' => 'MongoDB\Driver\ReadPreference|array|null'], - 'MongoDB\Driver\Server::executeReadCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Server::executeReadWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Server::executeWriteCommand' => ['MongoDB\Driver\Cursor', 'db' => 'string', 'command' => 'MongoDB\Driver\Command', 'options=' => '?array'], - 'MongoDB\Driver\Server::getHost' => ['string'], - 'MongoDB\Driver\Server::getInfo' => ['array'], - 'MongoDB\Driver\Server::getLatency' => ['?int'], - 'MongoDB\Driver\Server::getPort' => ['int'], - 'MongoDB\Driver\Server::getServerDescription' => ['MongoDB\Driver\ServerDescription'], - 'MongoDB\Driver\Server::getTags' => ['array'], - 'MongoDB\Driver\Server::getType' => ['int'], - 'MongoDB\Driver\Server::isArbiter' => ['bool'], - 'MongoDB\Driver\Server::isHidden' => ['bool'], - 'MongoDB\Driver\Server::isPassive' => ['bool'], - 'MongoDB\Driver\Server::isPrimary' => ['bool'], - 'MongoDB\Driver\Server::isSecondary' => ['bool'], - 'MongoDB\Driver\ServerApi::__construct' => ['void', 'version' => 'string', 'strict=' => '?bool', 'deprecationErrors=' => '?bool'], - 'MongoDB\Driver\ServerApi::bsonSerialize' => ['stdClass'], - 'MongoDB\Driver\ServerApi::serialize' => ['string'], - 'MongoDB\Driver\ServerApi::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\Driver\ServerDescription::getHelloResponse' => ['array'], - 'MongoDB\Driver\ServerDescription::getHost' => ['string'], - 'MongoDB\Driver\ServerDescription::getLastUpdateTime' => ['int'], - 'MongoDB\Driver\ServerDescription::getPort' => ['int'], - 'MongoDB\Driver\ServerDescription::getRoundTripTime' => ['?int'], - 'MongoDB\Driver\ServerDescription::getType' => ['string'], - 'MongoDB\Driver\Session::abortTransaction' => ['void'], - 'MongoDB\Driver\Session::advanceClusterTime' => ['void', 'clusterTime' => 'object|array'], - 'MongoDB\Driver\Session::advanceOperationTime' => ['void', 'operationTime' => 'MongoDB\BSON\TimestampInterface'], - 'MongoDB\Driver\Session::commitTransaction' => ['void'], - 'MongoDB\Driver\Session::endSession' => ['void'], - 'MongoDB\Driver\Session::getClusterTime' => ['?object'], - 'MongoDB\Driver\Session::getLogicalSessionId' => ['object'], - 'MongoDB\Driver\Session::getOperationTime' => ['?MongoDB\BSON\Timestamp'], - 'MongoDB\Driver\Session::getServer' => ['?MongoDB\Driver\Server'], - 'MongoDB\Driver\Session::getTransactionOptions' => ['?array'], - 'MongoDB\Driver\Session::getTransactionState' => ['string'], - 'MongoDB\Driver\Session::isDirty' => ['bool'], - 'MongoDB\Driver\Session::isInTransaction' => ['bool'], - 'MongoDB\Driver\Session::startTransaction' => ['void', 'options=' => '?array'], - 'MongoDB\Driver\TopologyDescription::getServers' => ['array'], - 'MongoDB\Driver\TopologyDescription::getType' => ['string'], - 'MongoDB\Driver\TopologyDescription::hasReadableServer' => ['bool', 'readPreference=' => '?MongoDB\Driver\ReadPreference'], - 'MongoDB\Driver\TopologyDescription::hasWritableServer' => ['bool'], - 'MongoDB\Driver\WriteConcern::__construct' => ['void', 'w' => 'string|int', 'wtimeout=' => '?int', 'journal=' => '?bool'], - 'MongoDB\Driver\WriteConcern::getJournal' => ['?bool'], - 'MongoDB\Driver\WriteConcern::getW' => ['string|int|null'], - 'MongoDB\Driver\WriteConcern::getWtimeout' => ['int'], - 'MongoDB\Driver\WriteConcern::isDefault' => ['bool'], - 'MongoDB\Driver\WriteConcern::bsonSerialize' => ['stdClass'], - 'MongoDB\Driver\WriteConcern::serialize' => ['string'], - 'MongoDB\Driver\WriteConcern::unserialize' => ['void', 'data' => 'string'], - 'MongoDB\Driver\WriteConcernError::getCode' => ['int'], - 'MongoDB\Driver\WriteConcernError::getInfo' => ['?object'], - 'MongoDB\Driver\WriteConcernError::getMessage' => ['string'], - 'MongoDB\Driver\WriteError::getCode' => ['int'], - 'MongoDB\Driver\WriteError::getIndex' => ['int'], - 'MongoDB\Driver\WriteError::getInfo' => ['?object'], - 'MongoDB\Driver\WriteError::getMessage' => ['string'], - 'MongoDB\Driver\WriteResult::getInsertedCount' => ['?int'], - 'MongoDB\Driver\WriteResult::getMatchedCount' => ['?int'], - 'MongoDB\Driver\WriteResult::getModifiedCount' => ['?int'], - 'MongoDB\Driver\WriteResult::getDeletedCount' => ['?int'], - 'MongoDB\Driver\WriteResult::getUpsertedCount' => ['?int'], - 'MongoDB\Driver\WriteResult::getServer' => ['MongoDB\Driver\Server'], - 'MongoDB\Driver\WriteResult::getUpsertedIds' => ['array'], - 'MongoDB\Driver\WriteResult::getWriteConcernError' => ['?MongoDB\Driver\WriteConcernError'], - 'MongoDB\Driver\WriteResult::getWriteErrors' => ['array'], - 'MongoDB\Driver\WriteResult::getErrorReplies' => ['array'], - 'MongoDB\Driver\WriteResult::isAcknowledged' => ['bool'], - 'MongoDate::__construct' => ['void', 'second='=>'int', 'usecond='=>'int'], - 'MongoDate::__toString' => ['string'], - 'MongoDate::toDateTime' => ['DateTime'], - 'MongoDeleteBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], - 'MongoException::__clone' => ['void'], - 'MongoException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'MongoException::__toString' => ['string'], - 'MongoException::__wakeup' => ['void'], - 'MongoException::getCode' => ['int'], - 'MongoException::getFile' => ['string'], - 'MongoException::getLine' => ['int'], - 'MongoException::getMessage' => ['string'], - 'MongoException::getPrevious' => ['Exception|Throwable'], - 'MongoException::getTrace' => ['list\',args?:array}>'], - 'MongoException::getTraceAsString' => ['string'], - 'MongoGridFS::__construct' => ['void', 'db'=>'MongoDB', 'prefix='=>'string', 'chunks='=>'mixed'], - 'MongoGridFS::__get' => ['MongoCollection', 'name'=>'string'], - 'MongoGridFS::__toString' => ['string'], - 'MongoGridFS::aggregate' => ['array', 'pipeline'=>'array', 'op'=>'array', 'pipelineOperators'=>'array'], - 'MongoGridFS::aggregateCursor' => ['MongoCommandCursor', 'pipeline'=>'array', 'options'=>'array'], - 'MongoGridFS::batchInsert' => ['mixed', 'a'=>'array', 'options='=>'array'], - 'MongoGridFS::count' => ['int', 'query='=>'stdClass|array'], - 'MongoGridFS::createDBRef' => ['array', 'a'=>'array'], - 'MongoGridFS::createIndex' => ['array', 'keys'=>'array', 'options='=>'array'], - 'MongoGridFS::delete' => ['bool', 'id'=>'mixed'], - 'MongoGridFS::deleteIndex' => ['array', 'keys'=>'array|string'], - 'MongoGridFS::deleteIndexes' => ['array'], - 'MongoGridFS::distinct' => ['array|bool', 'key'=>'string', 'query='=>'?array'], - 'MongoGridFS::drop' => ['array'], - 'MongoGridFS::ensureIndex' => ['bool', 'keys'=>'array', 'options='=>'array'], - 'MongoGridFS::find' => ['MongoGridFSCursor', 'query='=>'array', 'fields='=>'array'], - 'MongoGridFS::findAndModify' => ['array', 'query'=>'array', 'update='=>'?array', 'fields='=>'?array', 'options='=>'?array'], - 'MongoGridFS::findOne' => ['?MongoGridFSFile', 'query='=>'mixed', 'fields='=>'mixed'], - 'MongoGridFS::get' => ['?MongoGridFSFile', 'id'=>'mixed'], - 'MongoGridFS::getDBRef' => ['array', 'ref'=>'array'], - 'MongoGridFS::getIndexInfo' => ['array'], - 'MongoGridFS::getName' => ['string'], - 'MongoGridFS::getReadPreference' => ['array'], - 'MongoGridFS::getSlaveOkay' => ['bool'], - 'MongoGridFS::group' => ['array', 'keys'=>'mixed', 'initial'=>'array', 'reduce'=>'MongoCode', 'condition='=>'array'], - 'MongoGridFS::insert' => ['array|bool', 'a'=>'array|object', 'options='=>'array'], - 'MongoGridFS::put' => ['mixed', 'filename'=>'string', 'extra='=>'array'], - 'MongoGridFS::remove' => ['bool', 'criteria='=>'array', 'options='=>'array'], - 'MongoGridFS::save' => ['array|bool', 'a'=>'array|object', 'options='=>'array'], - 'MongoGridFS::setReadPreference' => ['bool', 'read_preference'=>'string', 'tags'=>'array'], - 'MongoGridFS::setSlaveOkay' => ['bool', 'ok='=>'bool'], - 'MongoGridFS::storeBytes' => ['mixed', 'bytes'=>'string', 'extra='=>'array', 'options='=>'array'], - 'MongoGridFS::storeFile' => ['mixed', 'filename'=>'string', 'extra='=>'array', 'options='=>'array'], - 'MongoGridFS::storeUpload' => ['mixed', 'name'=>'string', 'filename='=>'string'], - 'MongoGridFS::toIndexString' => ['string', 'keys'=>'mixed'], - 'MongoGridFS::update' => ['bool', 'criteria'=>'array', 'newobj'=>'array', 'options='=>'array'], - 'MongoGridFS::validate' => ['array', 'scan_data='=>'bool'], - 'MongoGridFSCursor::__construct' => ['void', 'gridfs'=>'MongoGridFS', 'connection'=>'resource', 'ns'=>'string', 'query'=>'array', 'fields'=>'array'], - 'MongoGridFSCursor::addOption' => ['MongoCursor', 'key'=>'string', 'value'=>'mixed'], - 'MongoGridFSCursor::awaitData' => ['MongoCursor', 'wait='=>'bool'], - 'MongoGridFSCursor::batchSize' => ['MongoCursor', 'batchSize'=>'int'], - 'MongoGridFSCursor::count' => ['int', 'all='=>'bool'], - 'MongoGridFSCursor::current' => ['MongoGridFSFile'], - 'MongoGridFSCursor::dead' => ['bool'], - 'MongoGridFSCursor::doQuery' => ['void'], - 'MongoGridFSCursor::explain' => ['array'], - 'MongoGridFSCursor::fields' => ['MongoCursor', 'f'=>'array'], - 'MongoGridFSCursor::getNext' => ['MongoGridFSFile'], - 'MongoGridFSCursor::getReadPreference' => ['array'], - 'MongoGridFSCursor::hasNext' => ['bool'], - 'MongoGridFSCursor::hint' => ['MongoCursor', 'key_pattern'=>'mixed'], - 'MongoGridFSCursor::immortal' => ['MongoCursor', 'liveForever='=>'bool'], - 'MongoGridFSCursor::info' => ['array'], - 'MongoGridFSCursor::key' => ['string'], - 'MongoGridFSCursor::limit' => ['MongoCursor', 'num'=>'int'], - 'MongoGridFSCursor::maxTimeMS' => ['MongoCursor', 'ms'=>'int'], - 'MongoGridFSCursor::next' => ['void'], - 'MongoGridFSCursor::partial' => ['MongoCursor', 'okay='=>'bool'], - 'MongoGridFSCursor::reset' => ['void'], - 'MongoGridFSCursor::rewind' => ['void'], - 'MongoGridFSCursor::setFlag' => ['MongoCursor', 'flag'=>'int', 'set='=>'bool'], - 'MongoGridFSCursor::setReadPreference' => ['MongoCursor', 'read_preference'=>'string', 'tags'=>'array'], - 'MongoGridFSCursor::skip' => ['MongoCursor', 'num'=>'int'], - 'MongoGridFSCursor::slaveOkay' => ['MongoCursor', 'okay='=>'bool'], - 'MongoGridFSCursor::snapshot' => ['MongoCursor'], - 'MongoGridFSCursor::sort' => ['MongoCursor', 'fields'=>'array'], - 'MongoGridFSCursor::tailable' => ['MongoCursor', 'tail='=>'bool'], - 'MongoGridFSCursor::timeout' => ['MongoCursor', 'ms'=>'int'], - 'MongoGridFSCursor::valid' => ['bool'], - 'MongoGridFSFile::getBytes' => ['string'], - 'MongoGridFSFile::getFilename' => ['string'], - 'MongoGridFSFile::getResource' => ['resource'], - 'MongoGridFSFile::getSize' => ['int'], - 'MongoGridFSFile::write' => ['int', 'filename='=>'string'], - 'MongoGridfsFile::__construct' => ['void', 'gridfs'=>'MongoGridFS', 'file'=>'array'], - 'MongoId::__construct' => ['void', 'id='=>'string|MongoId'], - 'MongoId::__set_state' => ['MongoId', 'props'=>'array'], - 'MongoId::__toString' => ['string'], - 'MongoId::getHostname' => ['string'], - 'MongoId::getInc' => ['int'], - 'MongoId::getPID' => ['int'], - 'MongoId::getTimestamp' => ['int'], - 'MongoId::isValid' => ['bool', 'value'=>'mixed'], - 'MongoInsertBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], - 'MongoInt32::__construct' => ['void', 'value'=>'string'], - 'MongoInt32::__toString' => ['string'], - 'MongoInt64::__construct' => ['void', 'value'=>'string'], - 'MongoInt64::__toString' => ['string'], - 'MongoLog::getCallback' => ['callable'], - 'MongoLog::getLevel' => ['int'], - 'MongoLog::getModule' => ['int'], - 'MongoLog::setCallback' => ['void', 'log_function'=>'callable'], - 'MongoLog::setLevel' => ['void', 'level'=>'int'], - 'MongoLog::setModule' => ['void', 'module'=>'int'], - 'MongoPool::getSize' => ['int'], - 'MongoPool::info' => ['array'], - 'MongoPool::setSize' => ['bool', 'size'=>'int'], - 'MongoRegex::__construct' => ['void', 'regex'=>'string'], - 'MongoRegex::__toString' => ['string'], - 'MongoResultException::__clone' => ['void'], - 'MongoResultException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'MongoResultException::__toString' => ['string'], - 'MongoResultException::__wakeup' => ['void'], - 'MongoResultException::getCode' => ['int'], - 'MongoResultException::getDocument' => ['array'], - 'MongoResultException::getFile' => ['string'], - 'MongoResultException::getLine' => ['int'], - 'MongoResultException::getMessage' => ['string'], - 'MongoResultException::getPrevious' => ['Exception|Throwable'], - 'MongoResultException::getTrace' => ['list\',args?:array}>'], - 'MongoResultException::getTraceAsString' => ['string'], - 'MongoTimestamp::__construct' => ['void', 'second='=>'int', 'inc='=>'int'], - 'MongoTimestamp::__toString' => ['string'], - 'MongoUpdateBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'write_options='=>'array'], - 'MongoUpdateBatch::add' => ['bool', 'item'=>'array'], - 'MongoUpdateBatch::execute' => ['array', 'write_options'=>'array'], - 'MongoWriteBatch::__construct' => ['void', 'collection'=>'MongoCollection', 'batch_type'=>'string', 'write_options'=>'array'], - 'MongoWriteBatch::add' => ['bool', 'item'=>'array'], - 'MongoWriteBatch::execute' => ['array', 'write_options'=>'array'], - 'MongoWriteConcernException::__clone' => ['void'], - 'MongoWriteConcernException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'MongoWriteConcernException::__toString' => ['string'], - 'MongoWriteConcernException::__wakeup' => ['void'], - 'MongoWriteConcernException::getCode' => ['int'], - 'MongoWriteConcernException::getDocument' => ['array'], - 'MongoWriteConcernException::getFile' => ['string'], - 'MongoWriteConcernException::getLine' => ['int'], - 'MongoWriteConcernException::getMessage' => ['string'], - 'MongoWriteConcernException::getPrevious' => ['Exception|Throwable'], - 'MongoWriteConcernException::getTrace' => ['list\',args?:array}>'], - 'MongoWriteConcernException::getTraceAsString' => ['string'], - 'MultipleIterator::__construct' => ['void', 'flags='=>'int'], - 'MultipleIterator::attachIterator' => ['void', 'iterator'=>'Iterator', 'info='=>'string|int|null'], - 'MultipleIterator::containsIterator' => ['bool', 'iterator'=>'Iterator'], - 'MultipleIterator::countIterators' => ['int'], - 'MultipleIterator::current' => ['array|false'], - 'MultipleIterator::detachIterator' => ['void', 'iterator'=>'Iterator'], - 'MultipleIterator::getFlags' => ['int'], - 'MultipleIterator::key' => ['array'], - 'MultipleIterator::next' => ['void'], - 'MultipleIterator::rewind' => ['void'], - 'MultipleIterator::setFlags' => ['void', 'flags'=>'int'], - 'MultipleIterator::valid' => ['bool'], - 'Mutex::create' => ['long', 'lock='=>'bool'], - 'Mutex::destroy' => ['bool', 'mutex'=>'long'], - 'Mutex::lock' => ['bool', 'mutex'=>'long'], - 'Mutex::trylock' => ['bool', 'mutex'=>'long'], - 'Mutex::unlock' => ['bool', 'mutex'=>'long', 'destroy='=>'bool'], - 'MysqlndUhConnection::__construct' => ['void'], - 'MysqlndUhConnection::changeUser' => ['bool', 'connection'=>'mysqlnd_connection', 'user'=>'string', 'password'=>'string', 'database'=>'string', 'silent'=>'bool', 'passwd_len'=>'int'], - 'MysqlndUhConnection::charsetName' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::close' => ['bool', 'connection'=>'mysqlnd_connection', 'close_type'=>'int'], - 'MysqlndUhConnection::connect' => ['bool', 'connection'=>'mysqlnd_connection', 'host'=>'string', 'use'=>'string', 'password'=>'string', 'database'=>'string', 'port'=>'int', 'socket'=>'string', 'mysql_flags'=>'int'], - 'MysqlndUhConnection::endPSession' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::escapeString' => ['string', 'connection'=>'mysqlnd_connection', 'escape_string'=>'string'], - 'MysqlndUhConnection::getAffectedRows' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getErrorNumber' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getErrorString' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getFieldCount' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getHostInformation' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getLastInsertId' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getLastMessage' => ['void', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getProtocolInformation' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getServerInformation' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getServerStatistics' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getServerVersion' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getSqlstate' => ['string', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getStatistics' => ['array', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getThreadId' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::getWarningCount' => ['int', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::init' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::killConnection' => ['bool', 'connection'=>'mysqlnd_connection', 'pid'=>'int'], - 'MysqlndUhConnection::listFields' => ['array', 'connection'=>'mysqlnd_connection', 'table'=>'string', 'achtung_wild'=>'string'], - 'MysqlndUhConnection::listMethod' => ['void', 'connection'=>'mysqlnd_connection', 'query'=>'string', 'achtung_wild'=>'string', 'par1'=>'string'], - 'MysqlndUhConnection::moreResults' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::nextResult' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::ping' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::query' => ['bool', 'connection'=>'mysqlnd_connection', 'query'=>'string'], - 'MysqlndUhConnection::queryReadResultsetHeader' => ['bool', 'connection'=>'mysqlnd_connection', 'mysqlnd_stmt'=>'mysqlnd_statement'], - 'MysqlndUhConnection::reapQuery' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::refreshServer' => ['bool', 'connection'=>'mysqlnd_connection', 'options'=>'int'], - 'MysqlndUhConnection::restartPSession' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::selectDb' => ['bool', 'connection'=>'mysqlnd_connection', 'database'=>'string'], - 'MysqlndUhConnection::sendClose' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::sendQuery' => ['bool', 'connection'=>'mysqlnd_connection', 'query'=>'string'], - 'MysqlndUhConnection::serverDumpDebugInformation' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::setAutocommit' => ['bool', 'connection'=>'mysqlnd_connection', 'mode'=>'int'], - 'MysqlndUhConnection::setCharset' => ['bool', 'connection'=>'mysqlnd_connection', 'charset'=>'string'], - 'MysqlndUhConnection::setClientOption' => ['bool', 'connection'=>'mysqlnd_connection', 'option'=>'int', 'value'=>'int'], - 'MysqlndUhConnection::setServerOption' => ['void', 'connection'=>'mysqlnd_connection', 'option'=>'int'], - 'MysqlndUhConnection::shutdownServer' => ['void', 'MYSQLND_UH_RES_MYSQLND_NAME'=>'string', 'level'=>'string'], - 'MysqlndUhConnection::simpleCommand' => ['bool', 'connection'=>'mysqlnd_connection', 'command'=>'int', 'arg'=>'string', 'ok_packet'=>'int', 'silent'=>'bool', 'ignore_upsert_status'=>'bool'], - 'MysqlndUhConnection::simpleCommandHandleResponse' => ['bool', 'connection'=>'mysqlnd_connection', 'ok_packet'=>'int', 'silent'=>'bool', 'command'=>'int', 'ignore_upsert_status'=>'bool'], - 'MysqlndUhConnection::sslSet' => ['bool', 'connection'=>'mysqlnd_connection', 'key'=>'string', 'cert'=>'string', 'ca'=>'string', 'capath'=>'string', 'cipher'=>'string'], - 'MysqlndUhConnection::stmtInit' => ['resource', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::storeResult' => ['resource', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::txCommit' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::txRollback' => ['bool', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhConnection::useResult' => ['resource', 'connection'=>'mysqlnd_connection'], - 'MysqlndUhPreparedStatement::__construct' => ['void'], - 'MysqlndUhPreparedStatement::execute' => ['bool', 'statement'=>'mysqlnd_prepared_statement'], - 'MysqlndUhPreparedStatement::prepare' => ['bool', 'statement'=>'mysqlnd_prepared_statement', 'query'=>'string'], - 'NoRewindIterator::__construct' => ['void', 'iterator'=>'Iterator'], - 'NoRewindIterator::current' => ['mixed'], - 'NoRewindIterator::getInnerIterator' => ['Iterator'], - 'NoRewindIterator::key' => ['mixed'], - 'NoRewindIterator::next' => ['void'], - 'NoRewindIterator::rewind' => ['void'], - 'NoRewindIterator::valid' => ['bool'], - 'Normalizer::isNormalized' => ['bool', 'string'=>'string', 'form='=>'int'], - 'Normalizer::normalize' => ['string|false', 'string'=>'string', 'form='=>'int'], - 'NumberFormatter::__construct' => ['void', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'NumberFormatter::create' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'NumberFormatter::format' => ['string|false', 'num'=>'', 'type='=>'int'], - 'NumberFormatter::formatCurrency' => ['string|false', 'amount'=>'float', 'currency'=>'string'], - 'NumberFormatter::getAttribute' => ['int|float|false', 'attribute'=>'int'], - 'NumberFormatter::getErrorCode' => ['int'], - 'NumberFormatter::getErrorMessage' => ['string'], - 'NumberFormatter::getLocale' => ['string', 'type='=>'int'], - 'NumberFormatter::getPattern' => ['string|false'], - 'NumberFormatter::getSymbol' => ['string|false', 'symbol'=>'int'], - 'NumberFormatter::getTextAttribute' => ['string|false', 'attribute'=>'int'], - 'NumberFormatter::parse' => ['int|float|false', 'string'=>'string', 'type='=>'int', '&rw_offset='=>'int'], - 'NumberFormatter::parseCurrency' => ['float|false', 'string'=>'string', '&w_currency'=>'string', '&rw_offset='=>'int'], - 'NumberFormatter::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'int|float'], - 'NumberFormatter::setPattern' => ['bool', 'pattern'=>'string'], - 'NumberFormatter::setSymbol' => ['bool', 'symbol'=>'int', 'value'=>'string'], - 'NumberFormatter::setTextAttribute' => ['bool', 'attribute'=>'int', 'value'=>'string'], - 'OAuth::__construct' => ['void', 'consumer_key'=>'string', 'consumer_secret'=>'string', 'signature_method='=>'string', 'auth_type='=>'int'], - 'OAuth::disableDebug' => ['bool'], - 'OAuth::disableRedirects' => ['bool'], - 'OAuth::disableSSLChecks' => ['bool'], - 'OAuth::enableDebug' => ['bool'], - 'OAuth::enableRedirects' => ['bool'], - 'OAuth::enableSSLChecks' => ['bool'], - 'OAuth::fetch' => ['mixed', 'protected_resource_url'=>'string', 'extra_parameters='=>'array', 'http_method='=>'string', 'http_headers='=>'array'], - 'OAuth::generateSignature' => ['string', 'http_method'=>'string', 'url'=>'string', 'extra_parameters='=>'mixed'], - 'OAuth::getAccessToken' => ['array|false', 'access_token_url'=>'string', 'auth_session_handle='=>'string', 'verifier_token='=>'string', 'http_method='=>'string'], - 'OAuth::getCAPath' => ['array'], - 'OAuth::getLastResponse' => ['string'], - 'OAuth::getLastResponseHeaders' => ['string|false'], - 'OAuth::getLastResponseInfo' => ['array'], - 'OAuth::getRequestHeader' => ['string|false', 'http_method'=>'string', 'url'=>'string', 'extra_parameters='=>'mixed'], - 'OAuth::getRequestToken' => ['array|false', 'request_token_url'=>'string', 'callback_url='=>'string', 'http_method='=>'string'], - 'OAuth::setAuthType' => ['bool', 'auth_type'=>'int'], - 'OAuth::setCAPath' => ['mixed', 'ca_path='=>'string', 'ca_info='=>'string'], - 'OAuth::setNonce' => ['mixed', 'nonce'=>'string'], - 'OAuth::setRSACertificate' => ['mixed', 'cert'=>'string'], - 'OAuth::setRequestEngine' => ['void', 'reqengine'=>'int'], - 'OAuth::setSSLChecks' => ['bool', 'sslcheck'=>'int'], - 'OAuth::setTimeout' => ['void', 'timeout'=>'int'], - 'OAuth::setTimestamp' => ['mixed', 'timestamp'=>'string'], - 'OAuth::setToken' => ['bool', 'token'=>'string', 'token_secret'=>'string'], - 'OAuth::setVersion' => ['bool', 'version'=>'string'], - 'OAuthProvider::__construct' => ['void', 'params_array='=>'array'], - 'OAuthProvider::addRequiredParameter' => ['bool', 'req_params'=>'string'], - 'OAuthProvider::callTimestampNonceHandler' => ['void'], - 'OAuthProvider::callconsumerHandler' => ['void'], - 'OAuthProvider::calltokenHandler' => ['void'], - 'OAuthProvider::checkOAuthRequest' => ['void', 'uri='=>'string', 'method='=>'string'], - 'OAuthProvider::consumerHandler' => ['void', 'callback_function'=>'callable'], - 'OAuthProvider::generateToken' => ['string', 'size'=>'int', 'strong='=>'bool'], - 'OAuthProvider::is2LeggedEndpoint' => ['void', 'params_array'=>'mixed'], - 'OAuthProvider::isRequestTokenEndpoint' => ['void', 'will_issue_request_token'=>'bool'], - 'OAuthProvider::removeRequiredParameter' => ['bool', 'req_params'=>'string'], - 'OAuthProvider::reportProblem' => ['string', 'oauthexception'=>'string', 'send_headers='=>'bool'], - 'OAuthProvider::setParam' => ['bool', 'param_key'=>'string', 'param_val='=>'mixed'], - 'OAuthProvider::setRequestTokenPath' => ['bool', 'path'=>'string'], - 'OAuthProvider::timestampNonceHandler' => ['void', 'callback_function'=>'callable'], - 'OAuthProvider::tokenHandler' => ['void', 'callback_function'=>'callable'], - 'OCICollection::append' => ['bool', 'value'=>'mixed'], - 'OCICollection::assign' => ['bool', 'from'=>'OCI_Collection'], - 'OCICollection::assignElem' => ['bool', 'index'=>'int', 'value'=>'mixed'], - 'OCICollection::free' => ['bool'], - 'OCICollection::getElem' => ['mixed', 'index'=>'int'], - 'OCICollection::max' => ['int|false'], - 'OCICollection::size' => ['int|false'], - 'OCICollection::trim' => ['bool', 'num'=>'int'], - 'OCILob::append' => ['bool', 'lob_from'=>'OCILob'], - 'OCILob::close' => ['bool'], - 'OCILob::eof' => ['bool'], - 'OCILob::erase' => ['int|false', 'offset='=>'int', 'length='=>'int'], - 'OCILob::export' => ['bool', 'filename'=>'string', 'start='=>'int', 'length='=>'int'], - 'OCILob::flush' => ['bool', 'flag='=>'int'], - 'OCILob::free' => ['bool'], - 'OCILob::getbuffering' => ['bool'], - 'OCILob::import' => ['bool', 'filename'=>'string'], - 'OCILob::load' => ['string|false'], - 'OCILob::read' => ['string|false', 'length'=>'int'], - 'OCILob::rewind' => ['bool'], - 'OCILob::save' => ['bool', 'data'=>'string', 'offset='=>'int'], - 'OCILob::savefile' => ['bool', 'filename'=>''], - 'OCILob::seek' => ['bool', 'offset'=>'int', 'whence='=>'int'], - 'OCILob::setbuffering' => ['bool', 'on_off'=>'bool'], - 'OCILob::size' => ['int|false'], - 'OCILob::tell' => ['int|false'], - 'OCILob::truncate' => ['bool', 'length='=>'int'], - 'OCILob::write' => ['int|false', 'data'=>'string', 'length='=>'int'], - 'OCILob::writeTemporary' => ['bool', 'data'=>'string', 'lob_type='=>'int'], - 'OCILob::writetofile' => ['bool', 'filename'=>'', 'start'=>'', 'length'=>''], - 'OutOfBoundsException::__clone' => ['void'], - 'OutOfBoundsException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'OutOfBoundsException::__toString' => ['string'], - 'OutOfBoundsException::getCode' => ['int'], - 'OutOfBoundsException::getFile' => ['string'], - 'OutOfBoundsException::getLine' => ['int'], - 'OutOfBoundsException::getMessage' => ['string'], - 'OutOfBoundsException::getPrevious' => ['?Throwable'], - 'OutOfBoundsException::getTrace' => ['list\',args?:array}>'], - 'OutOfBoundsException::getTraceAsString' => ['string'], - 'OutOfRangeException::__clone' => ['void'], - 'OutOfRangeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'OutOfRangeException::__toString' => ['string'], - 'OutOfRangeException::getCode' => ['int'], - 'OutOfRangeException::getFile' => ['string'], - 'OutOfRangeException::getLine' => ['int'], - 'OutOfRangeException::getMessage' => ['string'], - 'OutOfRangeException::getPrevious' => ['?Throwable'], - 'OutOfRangeException::getTrace' => ['list\',args?:array}>'], - 'OutOfRangeException::getTraceAsString' => ['string'], - 'OuterIterator::current' => ['mixed'], - 'OuterIterator::getInnerIterator' => ['Iterator'], - 'OuterIterator::key' => ['int|string'], - 'OuterIterator::next' => ['void'], - 'OuterIterator::rewind' => ['void'], - 'OuterIterator::valid' => ['bool'], - 'OverflowException::__clone' => ['void'], - 'OverflowException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'OverflowException::__toString' => ['string'], - 'OverflowException::getCode' => ['int'], - 'OverflowException::getFile' => ['string'], - 'OverflowException::getLine' => ['int'], - 'OverflowException::getMessage' => ['string'], - 'OverflowException::getPrevious' => ['?Throwable'], - 'OverflowException::getTrace' => ['list\',args?:array}>'], - 'OverflowException::getTraceAsString' => ['string'], - 'OwsrequestObj::__construct' => ['void'], - 'OwsrequestObj::addParameter' => ['int', 'name'=>'string', 'value'=>'string'], - 'OwsrequestObj::getName' => ['string', 'index'=>'int'], - 'OwsrequestObj::getValue' => ['string', 'index'=>'int'], - 'OwsrequestObj::getValueByName' => ['string', 'name'=>'string'], - 'OwsrequestObj::loadParams' => ['int'], - 'OwsrequestObj::setParameter' => ['int', 'name'=>'string', 'value'=>'string'], - 'PDF_activate_item' => ['bool', 'pdfdoc'=>'resource', 'id'=>'int'], - 'PDF_add_launchlink' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], - 'PDF_add_locallink' => ['bool', 'pdfdoc'=>'resource', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'page'=>'int', 'dest'=>'string'], - 'PDF_add_nameddest' => ['bool', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], - 'PDF_add_note' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], - 'PDF_add_pdflink' => ['bool', 'pdfdoc'=>'resource', 'bottom_left_x'=>'float', 'bottom_left_y'=>'float', 'up_right_x'=>'float', 'up_right_y'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], - 'PDF_add_table_cell' => ['int', 'pdfdoc'=>'resource', 'table'=>'int', 'column'=>'int', 'row'=>'int', 'text'=>'string', 'optlist'=>'string'], - 'PDF_add_textflow' => ['int', 'pdfdoc'=>'resource', 'textflow'=>'int', 'text'=>'string', 'optlist'=>'string'], - 'PDF_add_thumbnail' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int'], - 'PDF_add_weblink' => ['bool', 'pdfdoc'=>'resource', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'url'=>'string'], - 'PDF_arc' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'PDF_arcn' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'PDF_attach_file' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'description'=>'string', 'author'=>'string', 'mimetype'=>'string', 'icon'=>'string'], - 'PDF_begin_document' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string'], - 'PDF_begin_font' => ['bool', 'pdfdoc'=>'resource', 'filename'=>'string', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float', 'optlist'=>'string'], - 'PDF_begin_glyph' => ['bool', 'pdfdoc'=>'resource', 'glyphname'=>'string', 'wx'=>'float', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float'], - 'PDF_begin_item' => ['int', 'pdfdoc'=>'resource', 'tag'=>'string', 'optlist'=>'string'], - 'PDF_begin_layer' => ['bool', 'pdfdoc'=>'resource', 'layer'=>'int'], - 'PDF_begin_page' => ['bool', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float'], - 'PDF_begin_page_ext' => ['bool', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], - 'PDF_begin_pattern' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], - 'PDF_begin_template' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float'], - 'PDF_begin_template_ext' => ['int', 'pdfdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], - 'PDF_circle' => ['bool', 'pdfdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'r'=>'float'], - 'PDF_clip' => ['bool', 'p'=>'resource'], - 'PDF_close' => ['bool', 'p'=>'resource'], - 'PDF_close_image' => ['bool', 'p'=>'resource', 'image'=>'int'], - 'PDF_close_pdi' => ['bool', 'p'=>'resource', 'doc'=>'int'], - 'PDF_close_pdi_page' => ['bool', 'p'=>'resource', 'page'=>'int'], - 'PDF_closepath' => ['bool', 'p'=>'resource'], - 'PDF_closepath_fill_stroke' => ['bool', 'p'=>'resource'], - 'PDF_closepath_stroke' => ['bool', 'p'=>'resource'], - 'PDF_concat' => ['bool', 'p'=>'resource', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], - 'PDF_continue_text' => ['bool', 'p'=>'resource', 'text'=>'string'], - 'PDF_create_3dview' => ['int', 'pdfdoc'=>'resource', 'username'=>'string', 'optlist'=>'string'], - 'PDF_create_action' => ['int', 'pdfdoc'=>'resource', 'type'=>'string', 'optlist'=>'string'], - 'PDF_create_annotation' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'type'=>'string', 'optlist'=>'string'], - 'PDF_create_bookmark' => ['int', 'pdfdoc'=>'resource', 'text'=>'string', 'optlist'=>'string'], - 'PDF_create_field' => ['bool', 'pdfdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'name'=>'string', 'type'=>'string', 'optlist'=>'string'], - 'PDF_create_fieldgroup' => ['bool', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], - 'PDF_create_gstate' => ['int', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_create_pvf' => ['bool', 'pdfdoc'=>'resource', 'filename'=>'string', 'data'=>'string', 'optlist'=>'string'], - 'PDF_create_textflow' => ['int', 'pdfdoc'=>'resource', 'text'=>'string', 'optlist'=>'string'], - 'PDF_curveto' => ['bool', 'p'=>'resource', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'PDF_define_layer' => ['int', 'pdfdoc'=>'resource', 'name'=>'string', 'optlist'=>'string'], - 'PDF_delete' => ['bool', 'pdfdoc'=>'resource'], - 'PDF_delete_pvf' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string'], - 'PDF_delete_table' => ['bool', 'pdfdoc'=>'resource', 'table'=>'int', 'optlist'=>'string'], - 'PDF_delete_textflow' => ['bool', 'pdfdoc'=>'resource', 'textflow'=>'int'], - 'PDF_encoding_set_char' => ['bool', 'pdfdoc'=>'resource', 'encoding'=>'string', 'slot'=>'int', 'glyphname'=>'string', 'uv'=>'int'], - 'PDF_end_document' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_end_font' => ['bool', 'pdfdoc'=>'resource'], - 'PDF_end_glyph' => ['bool', 'pdfdoc'=>'resource'], - 'PDF_end_item' => ['bool', 'pdfdoc'=>'resource', 'id'=>'int'], - 'PDF_end_layer' => ['bool', 'pdfdoc'=>'resource'], - 'PDF_end_page' => ['bool', 'p'=>'resource'], - 'PDF_end_page_ext' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_end_pattern' => ['bool', 'p'=>'resource'], - 'PDF_end_template' => ['bool', 'p'=>'resource'], - 'PDF_endpath' => ['bool', 'p'=>'resource'], - 'PDF_fill' => ['bool', 'p'=>'resource'], - 'PDF_fill_imageblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'image'=>'int', 'optlist'=>'string'], - 'PDF_fill_pdfblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'contents'=>'int', 'optlist'=>'string'], - 'PDF_fill_stroke' => ['bool', 'p'=>'resource'], - 'PDF_fill_textblock' => ['int', 'pdfdoc'=>'resource', 'page'=>'int', 'blockname'=>'string', 'text'=>'string', 'optlist'=>'string'], - 'PDF_findfont' => ['int', 'p'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'embed'=>'int'], - 'PDF_fit_image' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDF_fit_pdi_page' => ['bool', 'pdfdoc'=>'resource', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDF_fit_table' => ['string', 'pdfdoc'=>'resource', 'table'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], - 'PDF_fit_textflow' => ['string', 'pdfdoc'=>'resource', 'textflow'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], - 'PDF_fit_textline' => ['bool', 'pdfdoc'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDF_get_apiname' => ['string', 'pdfdoc'=>'resource'], - 'PDF_get_buffer' => ['string', 'p'=>'resource'], - 'PDF_get_errmsg' => ['string', 'pdfdoc'=>'resource'], - 'PDF_get_errnum' => ['int', 'pdfdoc'=>'resource'], - 'PDF_get_majorversion' => ['int'], - 'PDF_get_minorversion' => ['int'], - 'PDF_get_parameter' => ['string', 'p'=>'resource', 'key'=>'string', 'modifier'=>'float'], - 'PDF_get_pdi_parameter' => ['string', 'p'=>'resource', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], - 'PDF_get_pdi_value' => ['float', 'p'=>'resource', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], - 'PDF_get_value' => ['float', 'p'=>'resource', 'key'=>'string', 'modifier'=>'float'], - 'PDF_info_font' => ['float', 'pdfdoc'=>'resource', 'font'=>'int', 'keyword'=>'string', 'optlist'=>'string'], - 'PDF_info_matchbox' => ['float', 'pdfdoc'=>'resource', 'boxname'=>'string', 'num'=>'int', 'keyword'=>'string'], - 'PDF_info_table' => ['float', 'pdfdoc'=>'resource', 'table'=>'int', 'keyword'=>'string'], - 'PDF_info_textflow' => ['float', 'pdfdoc'=>'resource', 'textflow'=>'int', 'keyword'=>'string'], - 'PDF_info_textline' => ['float', 'pdfdoc'=>'resource', 'text'=>'string', 'keyword'=>'string', 'optlist'=>'string'], - 'PDF_initgraphics' => ['bool', 'p'=>'resource'], - 'PDF_lineto' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], - 'PDF_load_3ddata' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string'], - 'PDF_load_font' => ['int', 'pdfdoc'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'optlist'=>'string'], - 'PDF_load_iccprofile' => ['int', 'pdfdoc'=>'resource', 'profilename'=>'string', 'optlist'=>'string'], - 'PDF_load_image' => ['int', 'pdfdoc'=>'resource', 'imagetype'=>'string', 'filename'=>'string', 'optlist'=>'string'], - 'PDF_makespotcolor' => ['int', 'p'=>'resource', 'spotname'=>'string'], - 'PDF_moveto' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], - 'PDF_new' => ['resource'], - 'PDF_open_ccitt' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'bitreverse'=>'int', 'k'=>'int', 'blackls1'=>'int'], - 'PDF_open_file' => ['bool', 'p'=>'resource', 'filename'=>'string'], - 'PDF_open_image' => ['int', 'p'=>'resource', 'imagetype'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], - 'PDF_open_image_file' => ['int', 'p'=>'resource', 'imagetype'=>'string', 'filename'=>'string', 'stringparam'=>'string', 'intparam'=>'int'], - 'PDF_open_memory_image' => ['int', 'p'=>'resource', 'image'=>'resource'], - 'PDF_open_pdi' => ['int', 'pdfdoc'=>'resource', 'filename'=>'string', 'optlist'=>'string', 'length'=>'int'], - 'PDF_open_pdi_document' => ['int', 'p'=>'resource', 'filename'=>'string', 'optlist'=>'string'], - 'PDF_open_pdi_page' => ['int', 'p'=>'resource', 'doc'=>'int', 'pagenumber'=>'int', 'optlist'=>'string'], - 'PDF_pcos_get_number' => ['float', 'p'=>'resource', 'doc'=>'int', 'path'=>'string'], - 'PDF_pcos_get_stream' => ['string', 'p'=>'resource', 'doc'=>'int', 'optlist'=>'string', 'path'=>'string'], - 'PDF_pcos_get_string' => ['string', 'p'=>'resource', 'doc'=>'int', 'path'=>'string'], - 'PDF_place_image' => ['bool', 'pdfdoc'=>'resource', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], - 'PDF_place_pdi_page' => ['bool', 'pdfdoc'=>'resource', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'sx'=>'float', 'sy'=>'float'], - 'PDF_process_pdi' => ['int', 'pdfdoc'=>'resource', 'doc'=>'int', 'page'=>'int', 'optlist'=>'string'], - 'PDF_rect' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'PDF_restore' => ['bool', 'p'=>'resource'], - 'PDF_resume_page' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_rotate' => ['bool', 'p'=>'resource', 'phi'=>'float'], - 'PDF_save' => ['bool', 'p'=>'resource'], - 'PDF_scale' => ['bool', 'p'=>'resource', 'sx'=>'float', 'sy'=>'float'], - 'PDF_set_border_color' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDF_set_border_dash' => ['bool', 'pdfdoc'=>'resource', 'black'=>'float', 'white'=>'float'], - 'PDF_set_border_style' => ['bool', 'pdfdoc'=>'resource', 'style'=>'string', 'width'=>'float'], - 'PDF_set_gstate' => ['bool', 'pdfdoc'=>'resource', 'gstate'=>'int'], - 'PDF_set_info' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], - 'PDF_set_layer_dependency' => ['bool', 'pdfdoc'=>'resource', 'type'=>'string', 'optlist'=>'string'], - 'PDF_set_parameter' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], - 'PDF_set_text_pos' => ['bool', 'p'=>'resource', 'x'=>'float', 'y'=>'float'], - 'PDF_set_value' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'float'], - 'PDF_setcolor' => ['bool', 'p'=>'resource', 'fstype'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], - 'PDF_setdash' => ['bool', 'pdfdoc'=>'resource', 'b'=>'float', 'w'=>'float'], - 'PDF_setdashpattern' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_setflat' => ['bool', 'pdfdoc'=>'resource', 'flatness'=>'float'], - 'PDF_setfont' => ['bool', 'pdfdoc'=>'resource', 'font'=>'int', 'fontsize'=>'float'], - 'PDF_setgray' => ['bool', 'p'=>'resource', 'g'=>'float'], - 'PDF_setgray_fill' => ['bool', 'p'=>'resource', 'g'=>'float'], - 'PDF_setgray_stroke' => ['bool', 'p'=>'resource', 'g'=>'float'], - 'PDF_setlinecap' => ['bool', 'p'=>'resource', 'linecap'=>'int'], - 'PDF_setlinejoin' => ['bool', 'p'=>'resource', 'value'=>'int'], - 'PDF_setlinewidth' => ['bool', 'p'=>'resource', 'width'=>'float'], - 'PDF_setmatrix' => ['bool', 'p'=>'resource', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], - 'PDF_setmiterlimit' => ['bool', 'pdfdoc'=>'resource', 'miter'=>'float'], - 'PDF_setrgbcolor' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDF_setrgbcolor_fill' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDF_setrgbcolor_stroke' => ['bool', 'p'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDF_shading' => ['int', 'pdfdoc'=>'resource', 'shtype'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], - 'PDF_shading_pattern' => ['int', 'pdfdoc'=>'resource', 'shading'=>'int', 'optlist'=>'string'], - 'PDF_shfill' => ['bool', 'pdfdoc'=>'resource', 'shading'=>'int'], - 'PDF_show' => ['bool', 'pdfdoc'=>'resource', 'text'=>'string'], - 'PDF_show_boxed' => ['int', 'p'=>'resource', 'text'=>'string', 'left'=>'float', 'top'=>'float', 'width'=>'float', 'height'=>'float', 'mode'=>'string', 'feature'=>'string'], - 'PDF_show_xy' => ['bool', 'p'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float'], - 'PDF_skew' => ['bool', 'p'=>'resource', 'alpha'=>'float', 'beta'=>'float'], - 'PDF_stringwidth' => ['float', 'p'=>'resource', 'text'=>'string', 'font'=>'int', 'fontsize'=>'float'], - 'PDF_stroke' => ['bool', 'p'=>'resource'], - 'PDF_suspend_page' => ['bool', 'pdfdoc'=>'resource', 'optlist'=>'string'], - 'PDF_translate' => ['bool', 'p'=>'resource', 'tx'=>'float', 'ty'=>'float'], - 'PDF_utf16_to_utf8' => ['string', 'pdfdoc'=>'resource', 'utf16string'=>'string'], - 'PDF_utf32_to_utf16' => ['string', 'pdfdoc'=>'resource', 'utf32string'=>'string', 'ordering'=>'string'], - 'PDF_utf8_to_utf16' => ['string', 'pdfdoc'=>'resource', 'utf8string'=>'string', 'ordering'=>'string'], - 'PDFlib::activate_item' => ['bool', 'id'=>''], - 'PDFlib::add_launchlink' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], - 'PDFlib::add_locallink' => ['bool', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'page'=>'int', 'dest'=>'string'], - 'PDFlib::add_nameddest' => ['bool', 'name'=>'string', 'optlist'=>'string'], - 'PDFlib::add_note' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], - 'PDFlib::add_pdflink' => ['bool', 'bottom_left_x'=>'float', 'bottom_left_y'=>'float', 'up_right_x'=>'float', 'up_right_y'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], - 'PDFlib::add_table_cell' => ['int', 'table'=>'int', 'column'=>'int', 'row'=>'int', 'text'=>'string', 'optlist'=>'string'], - 'PDFlib::add_textflow' => ['int', 'textflow'=>'int', 'text'=>'string', 'optlist'=>'string'], - 'PDFlib::add_thumbnail' => ['bool', 'image'=>'int'], - 'PDFlib::add_weblink' => ['bool', 'lowerleftx'=>'float', 'lowerlefty'=>'float', 'upperrightx'=>'float', 'upperrighty'=>'float', 'url'=>'string'], - 'PDFlib::arc' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'PDFlib::arcn' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'PDFlib::attach_file' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'description'=>'string', 'author'=>'string', 'mimetype'=>'string', 'icon'=>'string'], - 'PDFlib::begin_document' => ['int', 'filename'=>'string', 'optlist'=>'string'], - 'PDFlib::begin_font' => ['bool', 'filename'=>'string', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float', 'optlist'=>'string'], - 'PDFlib::begin_glyph' => ['bool', 'glyphname'=>'string', 'wx'=>'float', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float'], - 'PDFlib::begin_item' => ['int', 'tag'=>'string', 'optlist'=>'string'], - 'PDFlib::begin_layer' => ['bool', 'layer'=>'int'], - 'PDFlib::begin_page' => ['bool', 'width'=>'float', 'height'=>'float'], - 'PDFlib::begin_page_ext' => ['bool', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], - 'PDFlib::begin_pattern' => ['int', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], - 'PDFlib::begin_template' => ['int', 'width'=>'float', 'height'=>'float'], - 'PDFlib::begin_template_ext' => ['int', 'width'=>'float', 'height'=>'float', 'optlist'=>'string'], - 'PDFlib::circle' => ['bool', 'x'=>'float', 'y'=>'float', 'r'=>'float'], - 'PDFlib::clip' => ['bool'], - 'PDFlib::close' => ['bool'], - 'PDFlib::close_image' => ['bool', 'image'=>'int'], - 'PDFlib::close_pdi' => ['bool', 'doc'=>'int'], - 'PDFlib::close_pdi_page' => ['bool', 'page'=>'int'], - 'PDFlib::closepath' => ['bool'], - 'PDFlib::closepath_fill_stroke' => ['bool'], - 'PDFlib::closepath_stroke' => ['bool'], - 'PDFlib::concat' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], - 'PDFlib::continue_text' => ['bool', 'text'=>'string'], - 'PDFlib::create_3dview' => ['int', 'username'=>'string', 'optlist'=>'string'], - 'PDFlib::create_action' => ['int', 'type'=>'string', 'optlist'=>'string'], - 'PDFlib::create_annotation' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'type'=>'string', 'optlist'=>'string'], - 'PDFlib::create_bookmark' => ['int', 'text'=>'string', 'optlist'=>'string'], - 'PDFlib::create_field' => ['bool', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'name'=>'string', 'type'=>'string', 'optlist'=>'string'], - 'PDFlib::create_fieldgroup' => ['bool', 'name'=>'string', 'optlist'=>'string'], - 'PDFlib::create_gstate' => ['int', 'optlist'=>'string'], - 'PDFlib::create_pvf' => ['bool', 'filename'=>'string', 'data'=>'string', 'optlist'=>'string'], - 'PDFlib::create_textflow' => ['int', 'text'=>'string', 'optlist'=>'string'], - 'PDFlib::curveto' => ['bool', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'PDFlib::define_layer' => ['int', 'name'=>'string', 'optlist'=>'string'], - 'PDFlib::delete' => ['bool'], - 'PDFlib::delete_pvf' => ['int', 'filename'=>'string'], - 'PDFlib::delete_table' => ['bool', 'table'=>'int', 'optlist'=>'string'], - 'PDFlib::delete_textflow' => ['bool', 'textflow'=>'int'], - 'PDFlib::encoding_set_char' => ['bool', 'encoding'=>'string', 'slot'=>'int', 'glyphname'=>'string', 'uv'=>'int'], - 'PDFlib::end_document' => ['bool', 'optlist'=>'string'], - 'PDFlib::end_font' => ['bool'], - 'PDFlib::end_glyph' => ['bool'], - 'PDFlib::end_item' => ['bool', 'id'=>'int'], - 'PDFlib::end_layer' => ['bool'], - 'PDFlib::end_page' => ['bool', 'p'=>''], - 'PDFlib::end_page_ext' => ['bool', 'optlist'=>'string'], - 'PDFlib::end_pattern' => ['bool', 'p'=>''], - 'PDFlib::end_template' => ['bool', 'p'=>''], - 'PDFlib::endpath' => ['bool', 'p'=>''], - 'PDFlib::fill' => ['bool'], - 'PDFlib::fill_imageblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'image'=>'int', 'optlist'=>'string'], - 'PDFlib::fill_pdfblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'contents'=>'int', 'optlist'=>'string'], - 'PDFlib::fill_stroke' => ['bool'], - 'PDFlib::fill_textblock' => ['int', 'page'=>'int', 'blockname'=>'string', 'text'=>'string', 'optlist'=>'string'], - 'PDFlib::findfont' => ['int', 'fontname'=>'string', 'encoding'=>'string', 'embed'=>'int'], - 'PDFlib::fit_image' => ['bool', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDFlib::fit_pdi_page' => ['bool', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDFlib::fit_table' => ['string', 'table'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], - 'PDFlib::fit_textflow' => ['string', 'textflow'=>'int', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'optlist'=>'string'], - 'PDFlib::fit_textline' => ['bool', 'text'=>'string', 'x'=>'float', 'y'=>'float', 'optlist'=>'string'], - 'PDFlib::get_apiname' => ['string'], - 'PDFlib::get_buffer' => ['string'], - 'PDFlib::get_errmsg' => ['string'], - 'PDFlib::get_errnum' => ['int'], - 'PDFlib::get_majorversion' => ['int'], - 'PDFlib::get_minorversion' => ['int'], - 'PDFlib::get_parameter' => ['string', 'key'=>'string', 'modifier'=>'float'], - 'PDFlib::get_pdi_parameter' => ['string', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], - 'PDFlib::get_pdi_value' => ['float', 'key'=>'string', 'doc'=>'int', 'page'=>'int', 'reserved'=>'int'], - 'PDFlib::get_value' => ['float', 'key'=>'string', 'modifier'=>'float'], - 'PDFlib::info_font' => ['float', 'font'=>'int', 'keyword'=>'string', 'optlist'=>'string'], - 'PDFlib::info_matchbox' => ['float', 'boxname'=>'string', 'num'=>'int', 'keyword'=>'string'], - 'PDFlib::info_table' => ['float', 'table'=>'int', 'keyword'=>'string'], - 'PDFlib::info_textflow' => ['float', 'textflow'=>'int', 'keyword'=>'string'], - 'PDFlib::info_textline' => ['float', 'text'=>'string', 'keyword'=>'string', 'optlist'=>'string'], - 'PDFlib::initgraphics' => ['bool'], - 'PDFlib::lineto' => ['bool', 'x'=>'float', 'y'=>'float'], - 'PDFlib::load_3ddata' => ['int', 'filename'=>'string', 'optlist'=>'string'], - 'PDFlib::load_font' => ['int', 'fontname'=>'string', 'encoding'=>'string', 'optlist'=>'string'], - 'PDFlib::load_iccprofile' => ['int', 'profilename'=>'string', 'optlist'=>'string'], - 'PDFlib::load_image' => ['int', 'imagetype'=>'string', 'filename'=>'string', 'optlist'=>'string'], - 'PDFlib::makespotcolor' => ['int', 'spotname'=>'string'], - 'PDFlib::moveto' => ['bool', 'x'=>'float', 'y'=>'float'], - 'PDFlib::open_ccitt' => ['int', 'filename'=>'string', 'width'=>'int', 'height'=>'int', 'BitReverse'=>'int', 'k'=>'int', 'Blackls1'=>'int'], - 'PDFlib::open_file' => ['bool', 'filename'=>'string'], - 'PDFlib::open_image' => ['int', 'imagetype'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], - 'PDFlib::open_image_file' => ['int', 'imagetype'=>'string', 'filename'=>'string', 'stringparam'=>'string', 'intparam'=>'int'], - 'PDFlib::open_memory_image' => ['int', 'image'=>'resource'], - 'PDFlib::open_pdi' => ['int', 'filename'=>'string', 'optlist'=>'string', 'length'=>'int'], - 'PDFlib::open_pdi_document' => ['int', 'filename'=>'string', 'optlist'=>'string'], - 'PDFlib::open_pdi_page' => ['int', 'doc'=>'int', 'pagenumber'=>'int', 'optlist'=>'string'], - 'PDFlib::pcos_get_number' => ['float', 'doc'=>'int', 'path'=>'string'], - 'PDFlib::pcos_get_stream' => ['string', 'doc'=>'int', 'optlist'=>'string', 'path'=>'string'], - 'PDFlib::pcos_get_string' => ['string', 'doc'=>'int', 'path'=>'string'], - 'PDFlib::place_image' => ['bool', 'image'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], - 'PDFlib::place_pdi_page' => ['bool', 'page'=>'int', 'x'=>'float', 'y'=>'float', 'sx'=>'float', 'sy'=>'float'], - 'PDFlib::process_pdi' => ['int', 'doc'=>'int', 'page'=>'int', 'optlist'=>'string'], - 'PDFlib::rect' => ['bool', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'PDFlib::restore' => ['bool', 'p'=>''], - 'PDFlib::resume_page' => ['bool', 'optlist'=>'string'], - 'PDFlib::rotate' => ['bool', 'phi'=>'float'], - 'PDFlib::save' => ['bool', 'p'=>''], - 'PDFlib::scale' => ['bool', 'sx'=>'float', 'sy'=>'float'], - 'PDFlib::set_border_color' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDFlib::set_border_dash' => ['bool', 'black'=>'float', 'white'=>'float'], - 'PDFlib::set_border_style' => ['bool', 'style'=>'string', 'width'=>'float'], - 'PDFlib::set_gstate' => ['bool', 'gstate'=>'int'], - 'PDFlib::set_info' => ['bool', 'key'=>'string', 'value'=>'string'], - 'PDFlib::set_layer_dependency' => ['bool', 'type'=>'string', 'optlist'=>'string'], - 'PDFlib::set_parameter' => ['bool', 'key'=>'string', 'value'=>'string'], - 'PDFlib::set_text_pos' => ['bool', 'x'=>'float', 'y'=>'float'], - 'PDFlib::set_value' => ['bool', 'key'=>'string', 'value'=>'float'], - 'PDFlib::setcolor' => ['bool', 'fstype'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], - 'PDFlib::setdash' => ['bool', 'b'=>'float', 'w'=>'float'], - 'PDFlib::setdashpattern' => ['bool', 'optlist'=>'string'], - 'PDFlib::setflat' => ['bool', 'flatness'=>'float'], - 'PDFlib::setfont' => ['bool', 'font'=>'int', 'fontsize'=>'float'], - 'PDFlib::setgray' => ['bool', 'g'=>'float'], - 'PDFlib::setgray_fill' => ['bool', 'g'=>'float'], - 'PDFlib::setgray_stroke' => ['bool', 'g'=>'float'], - 'PDFlib::setlinecap' => ['bool', 'linecap'=>'int'], - 'PDFlib::setlinejoin' => ['bool', 'value'=>'int'], - 'PDFlib::setlinewidth' => ['bool', 'width'=>'float'], - 'PDFlib::setmatrix' => ['bool', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'e'=>'float', 'f'=>'float'], - 'PDFlib::setmiterlimit' => ['bool', 'miter'=>'float'], - 'PDFlib::setrgbcolor' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDFlib::setrgbcolor_fill' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDFlib::setrgbcolor_stroke' => ['bool', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'PDFlib::shading' => ['int', 'shtype'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], - 'PDFlib::shading_pattern' => ['int', 'shading'=>'int', 'optlist'=>'string'], - 'PDFlib::shfill' => ['bool', 'shading'=>'int'], - 'PDFlib::show' => ['bool', 'text'=>'string'], - 'PDFlib::show_boxed' => ['int', 'text'=>'string', 'left'=>'float', 'top'=>'float', 'width'=>'float', 'height'=>'float', 'mode'=>'string', 'feature'=>'string'], - 'PDFlib::show_xy' => ['bool', 'text'=>'string', 'x'=>'float', 'y'=>'float'], - 'PDFlib::skew' => ['bool', 'alpha'=>'float', 'beta'=>'float'], - 'PDFlib::stringwidth' => ['float', 'text'=>'string', 'font'=>'int', 'fontsize'=>'float'], - 'PDFlib::stroke' => ['bool', 'p'=>''], - 'PDFlib::suspend_page' => ['bool', 'optlist'=>'string'], - 'PDFlib::translate' => ['bool', 'tx'=>'float', 'ty'=>'float'], - 'PDFlib::utf16_to_utf8' => ['string', 'utf16string'=>'string'], - 'PDFlib::utf32_to_utf16' => ['string', 'utf32string'=>'string', 'ordering'=>'string'], - 'PDFlib::utf8_to_utf16' => ['string', 'utf8string'=>'string', 'ordering'=>'string'], - 'PDO::__construct' => ['void', 'dsn'=>'string', 'username='=>'?string', 'password='=>'?string', 'options='=>'?array'], - 'PDO::beginTransaction' => ['bool'], - 'PDO::commit' => ['bool'], - 'PDO::cubrid_schema' => ['array', 'schema_type'=>'int', 'table_name='=>'string', 'col_name='=>'string'], - 'PDO::errorCode' => ['?string'], - 'PDO::errorInfo' => ['array{0: ?string, 1: ?int, 2: ?string, 3?: mixed, 4?: mixed}'], - 'PDO::exec' => ['int|false', 'statement'=>'string'], - 'PDO::getAttribute' => ['mixed', 'attribute'=>'int'], - 'PDO::getAvailableDrivers' => ['array'], - 'PDO::inTransaction' => ['bool'], - 'PDO::lastInsertId' => ['string', 'name='=>'string|null'], - 'PDO::pgsqlCopyFromArray' => ['bool', 'table_name'=>'string', 'rows'=>'array', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], - 'PDO::pgsqlCopyFromFile' => ['bool', 'table_name'=>'string', 'filename'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], - 'PDO::pgsqlCopyToArray' => ['array', 'table_name'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], - 'PDO::pgsqlCopyToFile' => ['bool', 'table_name'=>'string', 'filename'=>'string', 'delimiter'=>'string', 'null_as'=>'string', 'fields'=>'string'], - 'PDO::pgsqlGetNotify' => ['array{message:string,pid:int,payload?:string}|false', 'result_type='=>'PDO::FETCH_*', 'ms_timeout='=>'int'], - 'PDO::pgsqlGetPid' => ['int'], - 'PDO::pgsqlLOBCreate' => ['string'], - 'PDO::pgsqlLOBOpen' => ['resource', 'oid'=>'string', 'mode='=>'string'], - 'PDO::pgsqlLOBUnlink' => ['bool', 'oid'=>'string'], - 'PDO::prepare' => ['PDOStatement|false', 'query'=>'string', 'options='=>'array'], - 'PDO::query' => ['PDOStatement|false', 'query'=>'string'], - 'PDO::query\'1' => ['PDOStatement|false', 'query'=>'string', 'fetch_column'=>'int', 'colno='=>'int'], - 'PDO::query\'2' => ['PDOStatement|false', 'query'=>'string', 'fetch_class'=>'int', 'classname'=>'string', 'constructorArgs'=>'array'], - 'PDO::query\'3' => ['PDOStatement|false', 'query'=>'string', 'fetch_into'=>'int', 'object'=>'object'], - 'PDO::quote' => ['string|false', 'string'=>'string', 'type='=>'int'], - 'PDO::rollBack' => ['bool'], - 'PDO::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>''], - 'PDO::sqliteCreateAggregate' => ['bool', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], - 'PDO::sqliteCreateCollation' => ['bool', 'name'=>'string', 'callback'=>'callable'], - 'PDO::sqliteCreateFunction' => ['bool', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], - 'PDOException::getCode' => ['int|string'], - 'PDOException::getFile' => ['string'], - 'PDOException::getLine' => ['int'], - 'PDOException::getMessage' => ['string'], - 'PDOException::getPrevious' => ['?Throwable'], - 'PDOException::getTrace' => ['list\',args?:array}>'], - 'PDOException::getTraceAsString' => ['string'], - 'PDOStatement::bindColumn' => ['bool', 'column'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int', 'maxLength='=>'int', 'driverOptions='=>'mixed'], - 'PDOStatement::bindParam' => ['bool', 'param'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int', 'maxLength='=>'int', 'driverOptions='=>'mixed'], - 'PDOStatement::bindValue' => ['bool', 'param'=>'string|int', 'value'=>'mixed', 'type='=>'int'], - 'PDOStatement::closeCursor' => ['bool'], - 'PDOStatement::columnCount' => ['int'], - 'PDOStatement::debugDumpParams' => ['void'], - 'PDOStatement::errorCode' => ['string'], - 'PDOStatement::errorInfo' => ['array{0: ?string, 1: ?int, 2: ?string, 3?: mixed, 4?: mixed}'], - 'PDOStatement::execute' => ['bool', 'bound_input_params='=>'?array'], - 'PDOStatement::fetch' => ['mixed', 'how='=>'int', 'orientation='=>'int', 'offset='=>'int'], - 'PDOStatement::fetchAll' => ['array|false', 'how='=>'int', 'fetch_argument='=>'int|string|callable', 'ctor_args='=>'?array'], - 'PDOStatement::fetchColumn' => ['string|int|float|bool|null', 'column_number='=>'int'], - 'PDOStatement::fetchObject' => ['object|false', 'class='=>'?class-string', 'constructorArgs='=>'array'], - 'PDOStatement::getAttribute' => ['mixed', 'name'=>'int'], - 'PDOStatement::getColumnMeta' => ['array|false', 'column'=>'int'], - 'PDOStatement::nextRowset' => ['bool'], - 'PDOStatement::rowCount' => ['int'], - 'PDOStatement::setAttribute' => ['bool', 'attribute'=>'int', 'value'=>'mixed'], - 'PDOStatement::setFetchMode' => ['bool', 'mode'=>'int'], - 'PDOStatement::setFetchMode\'1' => ['bool', 'fetch_column'=>'int', 'colno'=>'int'], - 'PDOStatement::setFetchMode\'2' => ['bool', 'fetch_class'=>'int', 'classname'=>'string', 'ctorargs'=>'array'], - 'PDOStatement::setFetchMode\'3' => ['bool', 'fetch_into'=>'int', 'object'=>'object'], - 'ParentIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator'], - 'ParentIterator::accept' => ['bool'], - 'ParentIterator::getChildren' => ['?ParentIterator'], - 'ParentIterator::hasChildren' => ['bool'], - 'ParentIterator::next' => ['void'], - 'ParentIterator::rewind' => ['void'], - 'ParentIterator::valid' => ['bool'], - 'Parle\Lexer::advance' => ['void'], - 'Parle\Lexer::build' => ['void'], - 'Parle\Lexer::callout' => ['void', 'id'=>'int', 'callback'=>'callable'], - 'Parle\Lexer::consume' => ['void', 'data'=>'string'], - 'Parle\Lexer::dump' => ['void'], - 'Parle\Lexer::getToken' => ['Parle\Token'], - 'Parle\Lexer::insertMacro' => ['void', 'name'=>'string', 'regex'=>'string'], - 'Parle\Lexer::push' => ['void', 'regex'=>'string', 'id'=>'int'], - 'Parle\Lexer::reset' => ['void', 'pos'=>'int'], - 'Parle\Parser::advance' => ['void'], - 'Parle\Parser::build' => ['void'], - 'Parle\Parser::consume' => ['void', 'data'=>'string', 'lexer'=>'Parle\Lexer'], - 'Parle\Parser::dump' => ['void'], - 'Parle\Parser::errorInfo' => ['Parle\ErrorInfo'], - 'Parle\Parser::left' => ['void', 'token'=>'string'], - 'Parle\Parser::nonassoc' => ['void', 'token'=>'string'], - 'Parle\Parser::precedence' => ['void', 'token'=>'string'], - 'Parle\Parser::push' => ['int', 'name'=>'string', 'rule'=>'string'], - 'Parle\Parser::reset' => ['void', 'tokenId'=>'int'], - 'Parle\Parser::right' => ['void', 'token'=>'string'], - 'Parle\Parser::sigil' => ['string', 'idx'=>'array'], - 'Parle\Parser::token' => ['void', 'token'=>'string'], - 'Parle\Parser::tokenId' => ['int', 'token'=>'string'], - 'Parle\Parser::trace' => ['string'], - 'Parle\Parser::validate' => ['bool', 'data'=>'string', 'lexer'=>'Parle\Lexer'], - 'Parle\RLexer::advance' => ['void'], - 'Parle\RLexer::build' => ['void'], - 'Parle\RLexer::callout' => ['void', 'id'=>'int', 'callback'=>'callable'], - 'Parle\RLexer::consume' => ['void', 'data'=>'string'], - 'Parle\RLexer::dump' => ['void'], - 'Parle\RLexer::getToken' => ['Parle\Token'], - 'Parle\RLexer::push' => ['void', 'state'=>'string', 'regex'=>'string', 'newState'=>'string'], - 'Parle\RLexer::pushState' => ['int', 'state'=>'string'], - 'Parle\RLexer::reset' => ['void', 'pos'=>'int'], - 'Parle\RParser::advance' => ['void'], - 'Parle\RParser::build' => ['void'], - 'Parle\RParser::consume' => ['void', 'data'=>'string', 'lexer'=>'Parle\Lexer'], - 'Parle\RParser::dump' => ['void'], - 'Parle\RParser::errorInfo' => ['Parle\ErrorInfo'], - 'Parle\RParser::left' => ['void', 'token'=>'string'], - 'Parle\RParser::nonassoc' => ['void', 'token'=>'string'], - 'Parle\RParser::precedence' => ['void', 'token'=>'string'], - 'Parle\RParser::push' => ['int', 'name'=>'string', 'rule'=>'string'], - 'Parle\RParser::reset' => ['void', 'tokenId'=>'int'], - 'Parle\RParser::right' => ['void', 'token'=>'string'], - 'Parle\RParser::sigil' => ['string', 'idx'=>'array'], - 'Parle\RParser::token' => ['void', 'token'=>'string'], - 'Parle\RParser::tokenId' => ['int', 'token'=>'string'], - 'Parle\RParser::trace' => ['string'], - 'Parle\RParser::validate' => ['bool', 'data'=>'string', 'lexer'=>'Parle\Lexer'], - 'Parle\Stack::pop' => ['void'], - 'Parle\Stack::push' => ['void', 'item'=>'mixed'], - 'ParseError::__clone' => ['void'], - 'ParseError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'ParseError::__toString' => ['string'], - 'ParseError::getCode' => ['int'], - 'ParseError::getFile' => ['string'], - 'ParseError::getLine' => ['int'], - 'ParseError::getMessage' => ['string'], - 'ParseError::getPrevious' => ['?Throwable'], - 'ParseError::getTrace' => ['list\',args?:array}>'], - 'ParseError::getTraceAsString' => ['string'], - 'Phar::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'alias='=>'?string'], - 'Phar::addEmptyDir' => ['void', 'directory'=>'string'], - 'Phar::addFile' => ['void', 'filename'=>'string', 'localName='=>'string'], - 'Phar::addFromString' => ['void', 'localName'=>'string', 'contents'=>'string'], - 'Phar::apiVersion' => ['string'], - 'Phar::buildFromDirectory' => ['array|false', 'directory'=>'string', 'pattern='=>'string'], - 'Phar::buildFromIterator' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'string'], - 'Phar::canCompress' => ['bool', 'compression='=>'int'], - 'Phar::canWrite' => ['bool'], - 'Phar::compress' => ['?Phar', 'compression'=>'int', 'extension='=>'string'], - 'Phar::compressFiles' => ['void', 'compression'=>'int'], - 'Phar::convertToData' => ['?PharData', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'Phar::convertToExecutable' => ['?Phar', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'Phar::copy' => ['bool', 'from'=>'string', 'to'=>'string'], - 'Phar::count' => ['int', 'mode='=>'int'], - 'Phar::createDefaultStub' => ['string', 'index='=>'string', 'webIndex='=>'string'], - 'Phar::decompress' => ['?Phar', 'extension='=>'string'], - 'Phar::decompressFiles' => ['bool'], - 'Phar::delMetadata' => ['bool'], - 'Phar::delete' => ['bool', 'localName'=>'string'], - 'Phar::extractTo' => ['bool', 'directory'=>'string', 'files='=>'string|array|null', 'overwrite='=>'bool'], - 'Phar::getAlias' => ['?string'], - 'Phar::getMetadata' => ['mixed'], - 'Phar::getModified' => ['bool'], - 'Phar::getPath' => ['string'], - 'Phar::getSignature' => ['array{hash:string, hash_type:string}'], - 'Phar::getStub' => ['string'], - 'Phar::getSupportedCompression' => ['array'], - 'Phar::getSupportedSignatures' => ['array'], - 'Phar::getVersion' => ['string'], - 'Phar::hasMetadata' => ['bool'], - 'Phar::interceptFileFuncs' => ['void'], - 'Phar::isBuffering' => ['bool'], - 'Phar::isCompressed' => ['int|false'], - 'Phar::isFileFormat' => ['bool', 'format'=>'int'], - 'Phar::isValidPharFilename' => ['bool', 'filename'=>'string', 'executable='=>'bool'], - 'Phar::isWritable' => ['bool'], - 'Phar::loadPhar' => ['bool', 'filename'=>'string', 'alias='=>'?string'], - 'Phar::mapPhar' => ['bool', 'alias='=>'?string', 'offset='=>'int'], - 'Phar::mount' => ['void', 'pharPath'=>'string', 'externalPath'=>'string'], - 'Phar::mungServer' => ['void', 'variables'=>'list'], - 'Phar::offsetExists' => ['bool', 'localName'=>'string'], - 'Phar::offsetGet' => ['PharFileInfo', 'localName'=>'string'], - 'Phar::offsetSet' => ['void', 'localName'=>'string', 'value'=>'resource|string'], - 'Phar::offsetUnset' => ['void', 'localName'=>'string'], - 'Phar::running' => ['string', 'returnPhar='=>'bool'], - 'Phar::setAlias' => ['bool', 'alias'=>'string'], - 'Phar::setDefaultStub' => ['bool', 'index='=>'?string', 'webIndex='=>'string'], - 'Phar::setMetadata' => ['void', 'metadata'=>''], - 'Phar::setSignatureAlgorithm' => ['void', 'algo'=>'int', 'privateKey='=>'string'], - 'Phar::setStub' => ['bool', 'stub'=>'string', 'length='=>'int'], - 'Phar::startBuffering' => ['void'], - 'Phar::stopBuffering' => ['void'], - 'Phar::unlinkArchive' => ['bool', 'filename'=>'string'], - 'Phar::webPhar' => ['void', 'alias='=>'?string', 'index='=>'?string', 'fileNotFoundScript='=>'string', 'mimeTypes='=>'array', 'rewrite='=>'callable'], - 'PharData::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'alias='=>'?string', 'format='=>'int'], - 'PharData::addEmptyDir' => ['void', 'directory'=>'string'], - 'PharData::addFile' => ['void', 'filename'=>'string', 'localName='=>'string'], - 'PharData::addFromString' => ['void', 'localName'=>'string', 'contents'=>'string'], - 'PharData::buildFromDirectory' => ['array|false', 'directory'=>'string', 'pattern='=>'string'], - 'PharData::buildFromIterator' => ['array|false', 'iterator'=>'Traversable', 'baseDirectory='=>'string'], - 'PharData::compress' => ['?PharData', 'compression'=>'int', 'extension='=>'string'], - 'PharData::compressFiles' => ['void', 'compression'=>'int'], - 'PharData::convertToData' => ['?PharData', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'PharData::convertToExecutable' => ['?Phar', 'format='=>'int', 'compression='=>'int', 'extension='=>'string'], - 'PharData::copy' => ['bool', 'from'=>'string', 'to'=>'string'], - 'PharData::decompress' => ['?PharData', 'extension='=>'string'], - 'PharData::decompressFiles' => ['bool'], - 'PharData::delMetadata' => ['bool'], - 'PharData::delete' => ['bool', 'localName'=>'string'], - 'PharData::extractTo' => ['bool', 'directory'=>'string', 'files='=>'string|array|null', 'overwrite='=>'bool'], - 'PharData::isWritable' => ['bool'], - 'PharData::offsetExists' => ['bool', 'localName'=>'string'], - 'PharData::offsetGet' => ['PharFileInfo', 'localName'=>'string'], - 'PharData::offsetSet' => ['void', 'localName'=>'string', 'value'=>'string'], - 'PharData::offsetUnset' => ['void', 'localName'=>'string'], - 'PharData::setAlias' => ['bool', 'alias'=>'string'], - 'PharData::setDefaultStub' => ['bool', 'index='=>'?string', 'webIndex='=>'string'], - 'PharData::setMetadata' => ['void', 'metadata'=>'mixed'], - 'PharData::setSignatureAlgorithm' => ['void', 'algo'=>'int', 'privateKey='=>'string'], - 'PharData::setStub' => ['bool', 'stub'=>'string', 'length='=>'int'], - 'PharFileInfo::__construct' => ['void', 'filename'=>'string'], - 'PharFileInfo::chmod' => ['void', 'perms'=>'int'], - 'PharFileInfo::compress' => ['bool', 'compression'=>'int'], - 'PharFileInfo::decompress' => ['bool'], - 'PharFileInfo::delMetadata' => ['bool'], - 'PharFileInfo::getCRC32' => ['int'], - 'PharFileInfo::getCompressedSize' => ['int'], - 'PharFileInfo::getContent' => ['string'], - 'PharFileInfo::getMetadata' => ['mixed'], - 'PharFileInfo::getPharFlags' => ['int'], - 'PharFileInfo::hasMetadata' => ['bool'], - 'PharFileInfo::isCRCChecked' => ['bool'], - 'PharFileInfo::isCompressed' => ['bool', 'compression='=>'int'], - 'PharFileInfo::setMetadata' => ['void', 'metadata'=>'mixed'], - 'Pool::__construct' => ['void', 'size'=>'int', 'class'=>'string', 'ctor='=>'array'], - 'Pool::collect' => ['int', 'collector='=>'Callable'], - 'Pool::resize' => ['void', 'size'=>'int'], - 'Pool::shutdown' => ['void'], - 'Pool::submit' => ['int', 'task'=>'Threaded'], - 'Pool::submitTo' => ['int', 'worker'=>'int', 'task'=>'Threaded'], - 'Postal\Expand::expand_address' => ['string[]', 'address'=>'string', 'options='=>'array'], - 'Postal\Parser::parse_address' => ['array', 'address'=>'string', 'options='=>'array'], - 'QuickHashIntHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], - 'QuickHashIntHash::add' => ['bool', 'key'=>'int', 'value='=>'int'], - 'QuickHashIntHash::delete' => ['bool', 'key'=>'int'], - 'QuickHashIntHash::exists' => ['bool', 'key'=>'int'], - 'QuickHashIntHash::get' => ['int', 'key'=>'int'], - 'QuickHashIntHash::getSize' => ['int'], - 'QuickHashIntHash::loadFromFile' => ['QuickHashIntHash', 'filename'=>'string', 'options='=>'int'], - 'QuickHashIntHash::loadFromString' => ['QuickHashIntHash', 'contents'=>'string', 'options='=>'int'], - 'QuickHashIntHash::saveToFile' => ['void', 'filename'=>'string'], - 'QuickHashIntHash::saveToString' => ['string'], - 'QuickHashIntHash::set' => ['bool', 'key'=>'int', 'value'=>'int'], - 'QuickHashIntHash::update' => ['bool', 'key'=>'int', 'value'=>'int'], - 'QuickHashIntSet::__construct' => ['void', 'size'=>'int', 'options='=>'int'], - 'QuickHashIntSet::add' => ['bool', 'key'=>'int'], - 'QuickHashIntSet::delete' => ['bool', 'key'=>'int'], - 'QuickHashIntSet::exists' => ['bool', 'key'=>'int'], - 'QuickHashIntSet::getSize' => ['int'], - 'QuickHashIntSet::loadFromFile' => ['QuickHashIntSet', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashIntSet::loadFromString' => ['QuickHashIntSet', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashIntSet::saveToFile' => ['void', 'filename'=>'string'], - 'QuickHashIntSet::saveToString' => ['string'], - 'QuickHashIntStringHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], - 'QuickHashIntStringHash::add' => ['bool', 'key'=>'int', 'value'=>'string'], - 'QuickHashIntStringHash::delete' => ['bool', 'key'=>'int'], - 'QuickHashIntStringHash::exists' => ['bool', 'key'=>'int'], - 'QuickHashIntStringHash::get' => ['mixed', 'key'=>'int'], - 'QuickHashIntStringHash::getSize' => ['int'], - 'QuickHashIntStringHash::loadFromFile' => ['QuickHashIntStringHash', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashIntStringHash::loadFromString' => ['QuickHashIntStringHash', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashIntStringHash::saveToFile' => ['void', 'filename'=>'string'], - 'QuickHashIntStringHash::saveToString' => ['string'], - 'QuickHashIntStringHash::set' => ['int', 'key'=>'int', 'value'=>'string'], - 'QuickHashIntStringHash::update' => ['bool', 'key'=>'int', 'value'=>'string'], - 'QuickHashStringIntHash::__construct' => ['void', 'size'=>'int', 'options='=>'int'], - 'QuickHashStringIntHash::add' => ['bool', 'key'=>'string', 'value'=>'int'], - 'QuickHashStringIntHash::delete' => ['bool', 'key'=>'string'], - 'QuickHashStringIntHash::exists' => ['bool', 'key'=>'string'], - 'QuickHashStringIntHash::get' => ['mixed', 'key'=>'string'], - 'QuickHashStringIntHash::getSize' => ['int'], - 'QuickHashStringIntHash::loadFromFile' => ['QuickHashStringIntHash', 'filename'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashStringIntHash::loadFromString' => ['QuickHashStringIntHash', 'contents'=>'string', 'size='=>'int', 'options='=>'int'], - 'QuickHashStringIntHash::saveToFile' => ['void', 'filename'=>'string'], - 'QuickHashStringIntHash::saveToString' => ['string'], - 'QuickHashStringIntHash::set' => ['int', 'key'=>'string', 'value'=>'int'], - 'QuickHashStringIntHash::update' => ['bool', 'key'=>'string', 'value'=>'int'], - 'RRDCreator::__construct' => ['void', 'path'=>'string', 'starttime='=>'string', 'step='=>'int'], - 'RRDCreator::addArchive' => ['void', 'description'=>'string'], - 'RRDCreator::addDataSource' => ['void', 'description'=>'string'], - 'RRDCreator::save' => ['bool'], - 'RRDGraph::__construct' => ['void', 'path'=>'string'], - 'RRDGraph::save' => ['array|false'], - 'RRDGraph::saveVerbose' => ['array|false'], - 'RRDGraph::setOptions' => ['void', 'options'=>'array'], - 'RRDUpdater::__construct' => ['void', 'path'=>'string'], - 'RRDUpdater::update' => ['bool', 'values'=>'array', 'time='=>'string'], - 'RangeException::__clone' => ['void'], - 'RangeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'RangeException::__toString' => ['string'], - 'RangeException::getCode' => ['int'], - 'RangeException::getFile' => ['string'], - 'RangeException::getLine' => ['int'], - 'RangeException::getMessage' => ['string'], - 'RangeException::getPrevious' => ['?Throwable'], - 'RangeException::getTrace' => ['list\',args?:array}>'], - 'RangeException::getTraceAsString' => ['string'], - 'RarArchive::__toString' => ['string'], - 'RarArchive::close' => ['bool'], - 'RarArchive::getComment' => ['string|null'], - 'RarArchive::getEntries' => ['RarEntry[]|false'], - 'RarArchive::getEntry' => ['RarEntry|false', 'entryname'=>'string'], - 'RarArchive::isBroken' => ['bool'], - 'RarArchive::isSolid' => ['bool'], - 'RarArchive::open' => ['RarArchive|false', 'filename'=>'string', 'password='=>'string', 'volume_callback='=>'callable'], - 'RarArchive::setAllowBroken' => ['bool', 'allow_broken'=>'bool'], - 'RarEntry::__toString' => ['string'], - 'RarEntry::extract' => ['bool', 'dir'=>'string', 'filepath='=>'string', 'password='=>'string', 'extended_data='=>'bool'], - 'RarEntry::getAttr' => ['int|false'], - 'RarEntry::getCrc' => ['string|false'], - 'RarEntry::getFileTime' => ['string|false'], - 'RarEntry::getHostOs' => ['int|false'], - 'RarEntry::getMethod' => ['int|false'], - 'RarEntry::getName' => ['string|false'], - 'RarEntry::getPackedSize' => ['int|false'], - 'RarEntry::getStream' => ['resource|false', 'password='=>'string'], - 'RarEntry::getUnpackedSize' => ['int|false'], - 'RarEntry::getVersion' => ['int|false'], - 'RarEntry::isDirectory' => ['bool'], - 'RarEntry::isEncrypted' => ['bool'], - 'RarException::getCode' => ['int'], - 'RarException::getFile' => ['string'], - 'RarException::getLine' => ['int'], - 'RarException::getMessage' => ['string'], - 'RarException::getPrevious' => ['Exception|Throwable'], - 'RarException::getTrace' => ['list\',args?:array}>'], - 'RarException::getTraceAsString' => ['string'], - 'RarException::isUsingExceptions' => ['bool'], - 'RarException::setUsingExceptions' => ['RarEntry', 'using_exceptions'=>'bool'], - 'RecursiveArrayIterator::__construct' => ['void', 'array='=>'array|object', 'flags='=>'int'], - 'RecursiveArrayIterator::append' => ['void', 'value'=>'mixed'], - 'RecursiveArrayIterator::asort' => ['true', 'flags='=>'int'], - 'RecursiveArrayIterator::count' => ['int'], - 'RecursiveArrayIterator::current' => ['mixed'], - 'RecursiveArrayIterator::getArrayCopy' => ['array'], - 'RecursiveArrayIterator::getChildren' => ['?RecursiveArrayIterator'], - 'RecursiveArrayIterator::getFlags' => ['int'], - 'RecursiveArrayIterator::hasChildren' => ['bool'], - 'RecursiveArrayIterator::key' => ['string|int|null'], - 'RecursiveArrayIterator::ksort' => ['true', 'flags='=>'int'], - 'RecursiveArrayIterator::natcasesort' => ['true'], - 'RecursiveArrayIterator::natsort' => ['true'], - 'RecursiveArrayIterator::next' => ['void'], - 'RecursiveArrayIterator::offsetExists' => ['bool', 'key'=>'string|int'], - 'RecursiveArrayIterator::offsetGet' => ['mixed', 'key'=>'string|int'], - 'RecursiveArrayIterator::offsetSet' => ['void', 'key'=>'string|int|null', 'value'=>'string'], - 'RecursiveArrayIterator::offsetUnset' => ['void', 'key'=>'string|int'], - 'RecursiveArrayIterator::rewind' => ['void'], - 'RecursiveArrayIterator::seek' => ['void', 'offset'=>'int'], - 'RecursiveArrayIterator::serialize' => ['string'], - 'RecursiveArrayIterator::setFlags' => ['void', 'flags'=>'int'], - 'RecursiveArrayIterator::uasort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'RecursiveArrayIterator::uksort' => ['true', 'callback'=>'callable(mixed,mixed):int'], - 'RecursiveArrayIterator::unserialize' => ['void', 'data'=>'string'], - 'RecursiveArrayIterator::valid' => ['bool'], - 'RecursiveCachingIterator::__construct' => ['void', 'iterator'=>'Iterator', 'flags='=>'int'], - 'RecursiveCachingIterator::__toString' => ['string'], - 'RecursiveCachingIterator::count' => ['int'], - 'RecursiveCachingIterator::current' => ['void'], - 'RecursiveCachingIterator::getCache' => ['array'], - 'RecursiveCachingIterator::getChildren' => ['?RecursiveCachingIterator'], - 'RecursiveCachingIterator::getFlags' => ['int'], - 'RecursiveCachingIterator::getInnerIterator' => ['Iterator'], - 'RecursiveCachingIterator::hasChildren' => ['bool'], - 'RecursiveCachingIterator::hasNext' => ['bool'], - 'RecursiveCachingIterator::key' => ['bool|float|int|string'], - 'RecursiveCachingIterator::next' => ['void'], - 'RecursiveCachingIterator::offsetExists' => ['bool', 'key'=>'string'], - 'RecursiveCachingIterator::offsetGet' => ['string', 'key'=>'string'], - 'RecursiveCachingIterator::offsetSet' => ['void', 'key'=>'string', 'value'=>'string'], - 'RecursiveCachingIterator::offsetUnset' => ['void', 'key'=>'string'], - 'RecursiveCachingIterator::rewind' => ['void'], - 'RecursiveCachingIterator::setFlags' => ['void', 'flags'=>'int'], - 'RecursiveCachingIterator::valid' => ['bool'], - 'RecursiveCallbackFilterIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator', 'callback'=>'callable(mixed,mixed=,mixed=):bool'], - 'RecursiveCallbackFilterIterator::accept' => ['bool'], - 'RecursiveCallbackFilterIterator::current' => ['mixed'], - 'RecursiveCallbackFilterIterator::getChildren' => ['RecursiveCallbackFilterIterator'], - 'RecursiveCallbackFilterIterator::getInnerIterator' => ['Iterator'], - 'RecursiveCallbackFilterIterator::hasChildren' => ['bool'], - 'RecursiveCallbackFilterIterator::key' => ['bool|float|int|string'], - 'RecursiveCallbackFilterIterator::next' => ['void'], - 'RecursiveCallbackFilterIterator::rewind' => ['void'], - 'RecursiveCallbackFilterIterator::valid' => ['bool'], - 'RecursiveDirectoryIterator::__construct' => ['void', 'directory'=>'string', 'flags='=>'int'], - 'RecursiveDirectoryIterator::__toString' => ['string'], - 'RecursiveDirectoryIterator::current' => ['string|SplFileInfo|FilesystemIterator'], - 'RecursiveDirectoryIterator::getATime' => ['int'], - 'RecursiveDirectoryIterator::getBasename' => ['string', 'suffix='=>'string'], - 'RecursiveDirectoryIterator::getCTime' => ['int'], - 'RecursiveDirectoryIterator::getChildren' => ['RecursiveDirectoryIterator'], - 'RecursiveDirectoryIterator::getExtension' => ['string'], - 'RecursiveDirectoryIterator::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'RecursiveDirectoryIterator::getFilename' => ['string'], - 'RecursiveDirectoryIterator::getFlags' => ['int'], - 'RecursiveDirectoryIterator::getGroup' => ['int'], - 'RecursiveDirectoryIterator::getInode' => ['int'], - 'RecursiveDirectoryIterator::getLinkTarget' => ['string'], - 'RecursiveDirectoryIterator::getMTime' => ['int'], - 'RecursiveDirectoryIterator::getOwner' => ['int'], - 'RecursiveDirectoryIterator::getPath' => ['string'], - 'RecursiveDirectoryIterator::getPathInfo' => ['?SplFileInfo', 'class='=>'class-string'], - 'RecursiveDirectoryIterator::getPathname' => ['string'], - 'RecursiveDirectoryIterator::getPerms' => ['int'], - 'RecursiveDirectoryIterator::getRealPath' => ['non-falsy-string'], - 'RecursiveDirectoryIterator::getSize' => ['int'], - 'RecursiveDirectoryIterator::getSubPath' => ['string'], - 'RecursiveDirectoryIterator::getSubPathname' => ['string'], - 'RecursiveDirectoryIterator::getType' => ['string'], - 'RecursiveDirectoryIterator::hasChildren' => ['bool', 'allowLinks='=>'bool'], - 'RecursiveDirectoryIterator::isDir' => ['bool'], - 'RecursiveDirectoryIterator::isDot' => ['bool'], - 'RecursiveDirectoryIterator::isExecutable' => ['bool'], - 'RecursiveDirectoryIterator::isFile' => ['bool'], - 'RecursiveDirectoryIterator::isLink' => ['bool'], - 'RecursiveDirectoryIterator::isReadable' => ['bool'], - 'RecursiveDirectoryIterator::isWritable' => ['bool'], - 'RecursiveDirectoryIterator::key' => ['string'], - 'RecursiveDirectoryIterator::next' => ['void'], - 'RecursiveDirectoryIterator::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'RecursiveDirectoryIterator::rewind' => ['void'], - 'RecursiveDirectoryIterator::seek' => ['void', 'offset'=>'int'], - 'RecursiveDirectoryIterator::setFileClass' => ['void', 'class='=>'class-string'], - 'RecursiveDirectoryIterator::setFlags' => ['void', 'flags'=>'int'], - 'RecursiveDirectoryIterator::setInfoClass' => ['void', 'class='=>'class-string'], - 'RecursiveDirectoryIterator::valid' => ['bool'], - 'RecursiveFilterIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator'], - 'RecursiveFilterIterator::accept' => ['bool'], - 'RecursiveFilterIterator::current' => ['mixed'], - 'RecursiveFilterIterator::getChildren' => ['?RecursiveFilterIterator'], - 'RecursiveFilterIterator::getInnerIterator' => ['Iterator'], - 'RecursiveFilterIterator::hasChildren' => ['bool'], - 'RecursiveFilterIterator::key' => ['mixed'], - 'RecursiveFilterIterator::next' => ['void'], - 'RecursiveFilterIterator::rewind' => ['void'], - 'RecursiveFilterIterator::valid' => ['bool'], - 'RecursiveIterator::__construct' => ['void'], - 'RecursiveIterator::current' => ['mixed'], - 'RecursiveIterator::getChildren' => ['?RecursiveIterator'], - 'RecursiveIterator::hasChildren' => ['bool'], - 'RecursiveIterator::key' => ['int|string'], - 'RecursiveIterator::next' => ['void'], - 'RecursiveIterator::rewind' => ['void'], - 'RecursiveIterator::valid' => ['bool'], - 'RecursiveIteratorIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator|IteratorAggregate', 'mode='=>'int', 'flags='=>'int'], - 'RecursiveIteratorIterator::beginChildren' => ['void'], - 'RecursiveIteratorIterator::beginIteration' => ['void'], - 'RecursiveIteratorIterator::callGetChildren' => ['?RecursiveIterator'], - 'RecursiveIteratorIterator::callHasChildren' => ['bool'], - 'RecursiveIteratorIterator::current' => ['mixed'], - 'RecursiveIteratorIterator::endChildren' => ['void'], - 'RecursiveIteratorIterator::endIteration' => ['void'], - 'RecursiveIteratorIterator::getDepth' => ['int'], - 'RecursiveIteratorIterator::getInnerIterator' => ['RecursiveIterator'], - 'RecursiveIteratorIterator::getMaxDepth' => ['int|false'], - 'RecursiveIteratorIterator::getSubIterator' => ['?RecursiveIterator', 'level='=>'int'], - 'RecursiveIteratorIterator::key' => ['mixed'], - 'RecursiveIteratorIterator::next' => ['void'], - 'RecursiveIteratorIterator::nextElement' => ['void'], - 'RecursiveIteratorIterator::rewind' => ['void'], - 'RecursiveIteratorIterator::setMaxDepth' => ['void', 'maxDepth='=>'int'], - 'RecursiveIteratorIterator::valid' => ['bool'], - 'RecursiveRegexIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator', 'pattern'=>'string', 'mode='=>'int', 'flags='=>'int', 'pregFlags='=>'int'], - 'RecursiveRegexIterator::accept' => ['bool'], - 'RecursiveRegexIterator::current' => ['mixed'], - 'RecursiveRegexIterator::getChildren' => ['RecursiveRegexIterator'], - 'RecursiveRegexIterator::getFlags' => ['int'], - 'RecursiveRegexIterator::getInnerIterator' => ['Iterator'], - 'RecursiveRegexIterator::getMode' => ['int'], - 'RecursiveRegexIterator::getPregFlags' => ['int'], - 'RecursiveRegexIterator::getRegex' => ['string'], - 'RecursiveRegexIterator::hasChildren' => ['bool'], - 'RecursiveRegexIterator::key' => ['mixed'], - 'RecursiveRegexIterator::next' => ['void'], - 'RecursiveRegexIterator::rewind' => ['void'], - 'RecursiveRegexIterator::setFlags' => ['void', 'flags'=>'int'], - 'RecursiveRegexIterator::setMode' => ['void', 'mode'=>'int'], - 'RecursiveRegexIterator::setPregFlags' => ['void', 'pregFlags'=>'int'], - 'RecursiveRegexIterator::valid' => ['bool'], - 'RecursiveTreeIterator::__construct' => ['void', 'iterator'=>'RecursiveIterator|IteratorAggregate', 'flags='=>'int', 'cachingIteratorFlags='=>'int', 'mode='=>'int'], - 'RecursiveTreeIterator::beginChildren' => ['void'], - 'RecursiveTreeIterator::beginIteration' => ['void'], - 'RecursiveTreeIterator::callGetChildren' => ['?RecursiveIterator'], - 'RecursiveTreeIterator::callHasChildren' => ['bool'], - 'RecursiveTreeIterator::current' => ['string'], - 'RecursiveTreeIterator::endChildren' => ['void'], - 'RecursiveTreeIterator::endIteration' => ['void'], - 'RecursiveTreeIterator::getDepth' => ['int'], - 'RecursiveTreeIterator::getEntry' => ['string'], - 'RecursiveTreeIterator::getInnerIterator' => ['RecursiveIterator'], - 'RecursiveTreeIterator::getMaxDepth' => ['false|int'], - 'RecursiveTreeIterator::getPostfix' => ['string'], - 'RecursiveTreeIterator::getPrefix' => ['string'], - 'RecursiveTreeIterator::getSubIterator' => ['?RecursiveIterator', 'level='=>'int'], - 'RecursiveTreeIterator::key' => ['string'], - 'RecursiveTreeIterator::next' => ['void'], - 'RecursiveTreeIterator::nextElement' => ['void'], - 'RecursiveTreeIterator::rewind' => ['void'], - 'RecursiveTreeIterator::setMaxDepth' => ['void', 'maxDepth='=>'int'], - 'RecursiveTreeIterator::setPostfix' => ['void', 'postfix'=>'string'], - 'RecursiveTreeIterator::setPrefixPart' => ['void', 'part'=>'int', 'value'=>'string'], - 'RecursiveTreeIterator::valid' => ['bool'], - 'Redis::__construct' => ['void'], - 'Redis::__destruct' => ['void'], - 'Redis::_prefix' => ['string', 'value'=>'mixed'], - 'Redis::_serialize' => ['mixed', 'value'=>'mixed'], - 'Redis::_unserialize' => ['mixed', 'value'=>'string'], - 'Redis::append' => ['int', 'key'=>'string', 'value'=>'string'], - 'Redis::auth' => ['bool', 'password'=>'string'], - 'Redis::bgRewriteAOF' => ['bool'], - 'Redis::bgSave' => ['bool'], - 'Redis::bitCount' => ['int', 'key'=>'string'], - 'Redis::bitOp' => ['int', 'operation'=>'string', 'ret_key'=>'string', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::bitpos' => ['int', 'key'=>'string', 'bit'=>'int', 'start='=>'int', 'end='=>'int'], - 'Redis::blPop' => ['array', 'keys'=>'string[]', 'timeout'=>'int'], - 'Redis::blPop\'1' => ['array', 'key'=>'string', 'timeout_or_key'=>'int|string', '...extra_args'=>'int|string'], - 'Redis::brPop' => ['array', 'keys'=>'string[]', 'timeout'=>'int'], - 'Redis::brPop\'1' => ['array', 'key'=>'string', 'timeout_or_key'=>'int|string', '...extra_args'=>'int|string'], - 'Redis::brpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string', 'timeout'=>'int'], - 'Redis::clearLastError' => ['bool'], - 'Redis::client' => ['mixed', 'command'=>'string', 'arg='=>'string'], - 'Redis::close' => ['bool'], - 'Redis::command' => ['', '...args'=>''], - 'Redis::config' => ['string', 'operation'=>'string', 'key'=>'string', 'value='=>'string'], - 'Redis::connect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'reserved='=>'null', 'retry_interval='=>'?int', 'read_timeout='=>'float'], - 'Redis::dbSize' => ['int'], - 'Redis::debug' => ['', 'key'=>''], - 'Redis::decr' => ['int', 'key'=>'string'], - 'Redis::decrBy' => ['int', 'key'=>'string', 'value'=>'int'], - 'Redis::decrByFloat' => ['float', 'key'=>'string', 'value'=>'float'], - 'Redis::del' => ['int', 'key'=>'string', '...args'=>'string'], - 'Redis::del\'1' => ['int', 'key'=>'string[]'], - 'Redis::delete' => ['int', 'key'=>'string', '...args'=>'string'], - 'Redis::delete\'1' => ['int', 'key'=>'string[]'], - 'Redis::discard' => [''], - 'Redis::dump' => ['string|false', 'key'=>'string'], - 'Redis::echo' => ['string', 'message'=>'string'], - 'Redis::eval' => ['mixed', 'script'=>'', 'args='=>'', 'numKeys='=>''], - 'Redis::evalSha' => ['mixed', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], - 'Redis::evaluate' => ['mixed', 'script'=>'string', 'args='=>'array', 'numKeys='=>'int'], - 'Redis::evaluateSha' => ['', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], - 'Redis::exec' => ['array'], - 'Redis::exists' => ['int', 'keys'=>'string|string[]'], - 'Redis::exists\'1' => ['int', '...keys'=>'string'], - 'Redis::expire' => ['bool', 'key'=>'string', 'ttl'=>'int'], - 'Redis::expireAt' => ['bool', 'key'=>'string', 'expiry'=>'int'], - 'Redis::flushAll' => ['bool', 'async='=>'bool'], - 'Redis::flushDb' => ['bool', 'async='=>'bool'], - 'Redis::geoAdd' => ['int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'member'=>'string', '...other_triples='=>'string|int|float'], - 'Redis::geoDist' => ['float', 'key'=>'string', 'member1'=>'string', 'member2'=>'string', 'unit='=>'string'], - 'Redis::geoHash' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'Redis::geoPos' => ['array', 'key'=>'string', 'member'=>'string', '...members='=>'string'], - 'Redis::geoRadius' => ['array|int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'radius'=>'float', 'unit'=>'float', 'options='=>'array'], - 'Redis::geoRadiusByMember' => ['array|int', 'key'=>'string', 'member'=>'string', 'radius'=>'float', 'units'=>'string', 'options='=>'array'], - 'Redis::get' => ['string|false', 'key'=>'string'], - 'Redis::getAuth' => ['string|false|null'], - 'Redis::getBit' => ['int', 'key'=>'string', 'offset'=>'int'], - 'Redis::getDBNum' => ['int|false'], - 'Redis::getHost' => ['string|false'], - 'Redis::getKeys' => ['array', 'pattern'=>'string'], - 'Redis::getLastError' => ['?string'], - 'Redis::getMode' => ['int'], - 'Redis::getMultiple' => ['array', 'keys'=>'string[]'], - 'Redis::getOption' => ['int', 'name'=>'int'], - 'Redis::getPersistentID' => ['string|false|null'], - 'Redis::getPort' => ['int|false'], - 'Redis::getRange' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::getReadTimeout' => ['float|false'], - 'Redis::getSet' => ['string', 'key'=>'string', 'string'=>'string'], - 'Redis::getTimeout' => ['float|false'], - 'Redis::hDel' => ['int|false', 'key'=>'string', 'hashKey1'=>'string', '...otherHashKeys='=>'string'], - 'Redis::hExists' => ['bool', 'key'=>'string', 'hashKey'=>'string'], - 'Redis::hGet' => ['string|false', 'key'=>'string', 'hashKey'=>'string'], - 'Redis::hGetAll' => ['array', 'key'=>'string'], - 'Redis::hIncrBy' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'int'], - 'Redis::hIncrByFloat' => ['float', 'key'=>'string', 'field'=>'string', 'increment'=>'float'], - 'Redis::hKeys' => ['array', 'key'=>'string'], - 'Redis::hLen' => ['int|false', 'key'=>'string'], - 'Redis::hMGet' => ['array', 'key'=>'string', 'hashKeys'=>'array'], - 'Redis::hMSet' => ['bool', 'key'=>'string', 'hashKeys'=>'array'], - 'Redis::hScan' => ['array', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], - 'Redis::hSet' => ['int|false', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], - 'Redis::hSetNx' => ['bool', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], - 'Redis::hStrLen' => ['', 'key'=>'', 'member'=>''], - 'Redis::hVals' => ['array', 'key'=>'string'], - 'Redis::incr' => ['int', 'key'=>'string'], - 'Redis::incrBy' => ['int', 'key'=>'string', 'value'=>'int'], - 'Redis::incrByFloat' => ['float', 'key'=>'string', 'value'=>'float'], - 'Redis::info' => ['array', 'option='=>'string'], - 'Redis::isConnected' => ['bool'], - 'Redis::keys' => ['array', 'pattern'=>'string'], - 'Redis::lGet' => ['string', 'key'=>'string', 'index'=>'int'], - 'Redis::lGetRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::lIndex' => ['string|false', 'key'=>'string', 'index'=>'int'], - 'Redis::lInsert' => ['int', 'key'=>'string', 'position'=>'int', 'pivot'=>'string', 'value'=>'string'], - 'Redis::lLen' => ['int|false', 'key'=>'string'], - 'Redis::lPop' => ['string|false', 'key'=>'string'], - 'Redis::lPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'Redis::lPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], - 'Redis::lRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::lRem' => ['int|false', 'key'=>'string', 'value'=>'string', 'count'=>'int'], - 'Redis::lRemove' => ['int', 'key'=>'string', 'value'=>'string', 'count'=>'int'], - 'Redis::lSet' => ['bool', 'key'=>'string', 'index'=>'int', 'value'=>'string'], - 'Redis::lSize' => ['int', 'key'=>'string'], - 'Redis::lTrim' => ['array|false', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], - 'Redis::lastSave' => ['int'], - 'Redis::listTrim' => ['', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], - 'Redis::mGet' => ['array', 'keys'=>'string[]'], - 'Redis::mSet' => ['bool', 'pairs'=>'array'], - 'Redis::mSetNx' => ['bool', 'pairs'=>'array'], - 'Redis::migrate' => ['bool', 'host'=>'string', 'port'=>'int', 'key'=>'string|string[]', 'db'=>'int', 'timeout'=>'int', 'copy='=>'bool', 'replace='=>'bool'], - 'Redis::move' => ['bool', 'key'=>'string', 'dbindex'=>'int'], - 'Redis::multi' => ['Redis', 'mode='=>'int'], - 'Redis::object' => ['string|long|false', 'info'=>'string', 'key'=>'string'], - 'Redis::open' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'reserved='=>'null', 'retry_interval='=>'?int', 'read_timeout='=>'float'], - 'Redis::pExpire' => ['bool', 'key'=>'string', 'ttl'=>'int'], - 'Redis::pconnect' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'persistent_id='=>'string', 'retry_interval='=>'?int'], - 'Redis::persist' => ['bool', 'key'=>'string'], - 'Redis::pexpireAt' => ['bool', 'key'=>'string', 'expiry'=>'int'], - 'Redis::pfAdd' => ['bool', 'key'=>'string', 'elements'=>'array'], - 'Redis::pfCount' => ['int', 'key'=>'array|string'], - 'Redis::pfMerge' => ['bool', 'destkey'=>'string', 'sourcekeys'=>'array'], - 'Redis::ping' => ['string'], - 'Redis::pipeline' => ['Redis'], - 'Redis::popen' => ['bool', 'host'=>'string', 'port='=>'int', 'timeout='=>'float', 'persistent_id='=>'string', 'retry_interval='=>'?int'], - 'Redis::psetex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'Redis::psubscribe' => ['', 'patterns'=>'array', 'callback'=>'array|string'], - 'Redis::pttl' => ['int|false', 'key'=>'string'], - 'Redis::publish' => ['int', 'channel'=>'string', 'message'=>'string'], - 'Redis::pubsub' => ['array|int', 'keyword'=>'string', 'argument='=>'array|string'], - 'Redis::punsubscribe' => ['', 'pattern'=>'string', '...other_patterns='=>'string'], - 'Redis::rPop' => ['string|false', 'key'=>'string'], - 'Redis::rPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'Redis::rPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], - 'Redis::randomKey' => ['string'], - 'Redis::rawCommand' => ['mixed', 'command'=>'string', '...arguments='=>'mixed'], - 'Redis::rename' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], - 'Redis::renameKey' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], - 'Redis::renameNx' => ['bool', 'srckey'=>'string', 'dstkey'=>'string'], - 'Redis::resetStat' => ['bool'], - 'Redis::restore' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'Redis::role' => ['array', 'nodeParams'=>'string|array{0:string,1:int}'], - 'Redis::rpoplpush' => ['string', 'srcKey'=>'string', 'dstKey'=>'string'], - 'Redis::sAdd' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'Redis::sAddArray' => ['bool', 'key'=>'string', 'values'=>'array'], - 'Redis::sCard' => ['int', 'key'=>'string'], - 'Redis::sContains' => ['', 'key'=>'string', 'value'=>'string'], - 'Redis::sDiff' => ['array', 'key1'=>'string', '...other_keys='=>'string'], - 'Redis::sDiffStore' => ['int|false', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::sGetMembers' => ['', 'key'=>'string'], - 'Redis::sInter' => ['array|false', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::sInterStore' => ['int|false', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::sIsMember' => ['bool', 'key'=>'string', 'value'=>'string'], - 'Redis::sMembers' => ['array', 'key'=>'string'], - 'Redis::sMove' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string', 'member'=>'string'], - 'Redis::sPop' => ['string|false', 'key'=>'string'], - 'Redis::sRandMember' => ['array|string|false', 'key'=>'string', 'count='=>'int'], - 'Redis::sRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], - 'Redis::sRemove' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], - 'Redis::sScan' => ['array|bool', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], - 'Redis::sSize' => ['int', 'key'=>'string'], - 'Redis::sUnion' => ['array', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::sUnionStore' => ['int', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::save' => ['bool'], - 'Redis::scan' => ['array|false', '&rw_iterator'=>'?int', 'pattern='=>'?string', 'count='=>'?int'], - 'Redis::script' => ['mixed', 'command'=>'string', '...args='=>'mixed'], - 'Redis::select' => ['bool', 'dbindex'=>'int'], - 'Redis::sendEcho' => ['string', 'msg'=>'string'], - 'Redis::set' => ['bool', 'key'=>'string', 'value'=>'mixed', 'options='=>'array'], - 'Redis::set\'1' => ['bool', 'key'=>'string', 'value'=>'mixed', 'timeout='=>'int'], - 'Redis::setBit' => ['int', 'key'=>'string', 'offset'=>'int', 'value'=>'int'], - 'Redis::setEx' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'Redis::setNx' => ['bool', 'key'=>'string', 'value'=>'string'], - 'Redis::setOption' => ['bool', 'name'=>'int', 'value'=>'mixed'], - 'Redis::setRange' => ['int', 'key'=>'string', 'offset'=>'int', 'end'=>'int'], - 'Redis::setTimeout' => ['', 'key'=>'string', 'ttl'=>'int'], - 'Redis::slave' => ['bool', 'host'=>'string', 'port'=>'int'], - 'Redis::slave\'1' => ['bool', 'host'=>'string', 'port'=>'int'], - 'Redis::slaveof' => ['bool', 'host='=>'string', 'port='=>'int'], - 'Redis::slowLog' => ['mixed', 'operation'=>'string', 'length='=>'int'], - 'Redis::sort' => ['array|int', 'key'=>'string', 'options='=>'array'], - 'Redis::sortAsc' => ['array', 'key'=>'string', 'pattern='=>'string', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], - 'Redis::sortAscAlpha' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], - 'Redis::sortDesc' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], - 'Redis::sortDescAlpha' => ['array', 'key'=>'string', 'pattern='=>'', 'get='=>'string', 'start='=>'int', 'end='=>'int', 'getList='=>'bool'], - 'Redis::strLen' => ['int', 'key'=>'string'], - 'Redis::subscribe' => ['mixed|null', 'channels'=>'array', 'callback'=>'string|array'], - 'Redis::substr' => ['', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::swapdb' => ['bool', 'srcdb'=>'int', 'dstdb'=>'int'], - 'Redis::time' => ['array'], - 'Redis::ttl' => ['int|false', 'key'=>'string'], - 'Redis::type' => ['int', 'key'=>'string'], - 'Redis::unlink' => ['int', 'key'=>'string', '...args'=>'string'], - 'Redis::unlink\'1' => ['int', 'key'=>'string[]'], - 'Redis::unsubscribe' => ['', 'channel'=>'string', '...other_channels='=>'string'], - 'Redis::unwatch' => [''], - 'Redis::wait' => ['int', 'numSlaves'=>'int', 'timeout'=>'int'], - 'Redis::watch' => ['void', 'key'=>'string', '...other_keys='=>'string'], - 'Redis::xack' => ['', 'str_key'=>'string', 'str_group'=>'string', 'arr_ids'=>'array'], - 'Redis::xadd' => ['', 'str_key'=>'string', 'str_id'=>'string', 'arr_fields'=>'array', 'i_maxlen='=>'', 'boo_approximate='=>''], - 'Redis::xclaim' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_consumer'=>'string', 'i_min_idle'=>'', 'arr_ids'=>'array', 'arr_opts='=>'array'], - 'Redis::xdel' => ['', 'str_key'=>'string', 'arr_ids'=>'array'], - 'Redis::xgroup' => ['', 'str_operation'=>'string', 'str_key='=>'string', 'str_arg1='=>'', 'str_arg2='=>'', 'str_arg3='=>''], - 'Redis::xinfo' => ['', 'str_cmd'=>'string', 'str_key='=>'string', 'str_group='=>'string'], - 'Redis::xlen' => ['', 'key'=>''], - 'Redis::xpending' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_start='=>'', 'str_end='=>'', 'i_count='=>'', 'str_consumer='=>'string'], - 'Redis::xrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], - 'Redis::xread' => ['', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], - 'Redis::xreadgroup' => ['', 'str_group'=>'string', 'str_consumer'=>'string', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], - 'Redis::xrevrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], - 'Redis::xtrim' => ['', 'str_key'=>'string', 'i_maxlen'=>'', 'boo_approximate='=>''], - 'Redis::zAdd' => ['int', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], - 'Redis::zAdd\'1' => ['int', 'options'=>'array', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], - 'Redis::zCard' => ['int', 'key'=>'string'], - 'Redis::zCount' => ['int', 'key'=>'string', 'start'=>'string', 'end'=>'string'], - 'Redis::zDelete' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'Redis::zDeleteRangeByRank' => ['', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::zDeleteRangeByScore' => ['', 'key'=>'string', 'start'=>'float', 'end'=>'float'], - 'Redis::zIncrBy' => ['float', 'key'=>'string', 'value'=>'float', 'member'=>'string'], - 'Redis::zInter' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'Redis::zInterStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'Redis::zLexCount' => ['int', 'key'=>'string', 'min'=>'string', 'max'=>'string'], - 'Redis::zRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscores='=>'bool'], - 'Redis::zRangeByLex' => ['array|false', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], - 'Redis::zRangeByScore' => ['array', 'key'=>'string', 'start'=>'int|string', 'end'=>'int|string', 'options='=>'array'], - 'Redis::zRank' => ['int', 'key'=>'string', 'member'=>'string'], - 'Redis::zRem' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'Redis::zRemRangeByLex' => ['int', 'key'=>'string', 'min'=>'string', 'max'=>'string'], - 'Redis::zRemRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::zRemRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], - 'Redis::zRemove' => ['int', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'Redis::zRemoveRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'Redis::zRemoveRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], - 'Redis::zRevRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], - 'Redis::zRevRangeByLex' => ['array', 'key'=>'string', 'min'=>'string', 'max'=>'string', 'offset='=>'int', 'limit='=>'int'], - 'Redis::zRevRangeByScore' => ['array', 'key'=>'string', 'start'=>'string', 'end'=>'string', 'options='=>'array'], - 'Redis::zRevRank' => ['int', 'key'=>'string', 'member'=>'string'], - 'Redis::zReverseRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], - 'Redis::zScan' => ['array|bool', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], - 'Redis::zScore' => ['float|false', 'key'=>'string', 'member'=>'string'], - 'Redis::zSize' => ['', 'key'=>'string'], - 'Redis::zUnion' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'Redis::zUnionStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'RedisArray::__call' => ['mixed', 'function_name'=>'string', 'arguments'=>'array'], - 'RedisArray::__construct' => ['void', 'name='=>'string', 'hosts='=>'?array', 'opts='=>'?array'], - 'RedisArray::_continuum' => [''], - 'RedisArray::_distributor' => [''], - 'RedisArray::_function' => ['string'], - 'RedisArray::_hosts' => ['array'], - 'RedisArray::_instance' => ['', 'host'=>''], - 'RedisArray::_rehash' => ['', 'callable='=>'callable'], - 'RedisArray::_target' => ['string', 'key'=>'string'], - 'RedisArray::bgsave' => [''], - 'RedisArray::del' => ['bool', 'key'=>'string', '...args'=>'string'], - 'RedisArray::delete' => ['bool', 'key'=>'string', '...args'=>'string'], - 'RedisArray::delete\'1' => ['bool', 'key'=>'string[]'], - 'RedisArray::discard' => [''], - 'RedisArray::exec' => ['array'], - 'RedisArray::flushAll' => ['bool', 'async='=>'bool'], - 'RedisArray::flushDb' => ['bool', 'async='=>'bool'], - 'RedisArray::getMultiple' => ['', 'keys'=>''], - 'RedisArray::getOption' => ['', 'opt'=>''], - 'RedisArray::info' => ['array'], - 'RedisArray::keys' => ['array', 'pattern'=>''], - 'RedisArray::mGet' => ['array', 'keys'=>'string[]'], - 'RedisArray::mSet' => ['bool', 'pairs'=>'array'], - 'RedisArray::multi' => ['RedisArray', 'host'=>'string', 'mode='=>'int'], - 'RedisArray::ping' => ['string'], - 'RedisArray::save' => ['bool'], - 'RedisArray::select' => ['', 'index'=>''], - 'RedisArray::setOption' => ['', 'opt'=>'', 'value'=>''], - 'RedisArray::unlink' => ['int', 'key'=>'string', '...other_keys='=>'string'], - 'RedisArray::unlink\'1' => ['int', 'key'=>'string[]'], - 'RedisArray::unwatch' => [''], - 'RedisCluster::__construct' => ['void', 'name'=>'?string', 'seeds='=>'string[]', 'timeout='=>'float', 'readTimeout='=>'float', 'persistent='=>'bool', 'auth='=>'?string'], - 'RedisCluster::_masters' => ['array'], - 'RedisCluster::_prefix' => ['string', 'value'=>'mixed'], - 'RedisCluster::_redir' => [''], - 'RedisCluster::_serialize' => ['mixed', 'value'=>'mixed'], - 'RedisCluster::_unserialize' => ['mixed', 'value'=>'string'], - 'RedisCluster::append' => ['int', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::bgrewriteaof' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::bgsave' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::bitCount' => ['int', 'key'=>'string'], - 'RedisCluster::bitOp' => ['int', 'operation'=>'string', 'retKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], - 'RedisCluster::bitpos' => ['int', 'key'=>'string', 'bit'=>'int', 'start='=>'int', 'end='=>'int'], - 'RedisCluster::blPop' => ['array', 'keys'=>'array', 'timeout'=>'int'], - 'RedisCluster::brPop' => ['array', 'keys'=>'array', 'timeout'=>'int'], - 'RedisCluster::brpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string', 'timeout'=>'int'], - 'RedisCluster::clearLastError' => ['bool'], - 'RedisCluster::client' => ['', 'nodeParams'=>'string|array{0:string,1:int}', 'subCmd='=>'string', '...args='=>''], - 'RedisCluster::close' => [''], - 'RedisCluster::cluster' => ['mixed', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'arguments='=>'mixed'], - 'RedisCluster::command' => ['array|bool'], - 'RedisCluster::config' => ['array|bool', 'nodeParams'=>'string|array{0:string,1:int}', 'operation'=>'string', 'key'=>'string', 'value='=>'string'], - 'RedisCluster::dbSize' => ['int', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::decr' => ['int', 'key'=>'string'], - 'RedisCluster::decrBy' => ['int', 'key'=>'string', 'value'=>'int'], - 'RedisCluster::del' => ['int', 'key'=>'string', '...other_keys='=>'string'], - 'RedisCluster::del\'1' => ['int', 'key'=>'string[]'], - 'RedisCluster::discard' => [''], - 'RedisCluster::dump' => ['string|false', 'key'=>'string'], - 'RedisCluster::echo' => ['string', 'nodeParams'=>'string|array{0:string,1:int}', 'msg'=>'string'], - 'RedisCluster::eval' => ['mixed', 'script'=>'', 'args='=>'', 'numKeys='=>''], - 'RedisCluster::evalSha' => ['mixed', 'scriptSha'=>'string', 'args='=>'array', 'numKeys='=>'int'], - 'RedisCluster::exec' => ['array|void'], - 'RedisCluster::exists' => ['bool', 'key'=>'string'], - 'RedisCluster::expire' => ['bool', 'key'=>'string', 'ttl'=>'int'], - 'RedisCluster::expireAt' => ['bool', 'key'=>'string', 'timestamp'=>'int'], - 'RedisCluster::flushAll' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}', 'async='=>'bool'], - 'RedisCluster::flushDB' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}', 'async='=>'bool'], - 'RedisCluster::geoAdd' => ['int', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'member'=>'string', '...other_members='=>'float|string'], - 'RedisCluster::geoDist' => ['', 'key'=>'string', 'member1'=>'string', 'member2'=>'string', 'unit='=>'string'], - 'RedisCluster::geoRadius' => ['', 'key'=>'string', 'longitude'=>'float', 'latitude'=>'float', 'radius'=>'float', 'radiusUnit'=>'string', 'options='=>'array'], - 'RedisCluster::geoRadiusByMember' => ['string[]', 'key'=>'string', 'member'=>'string', 'radius'=>'float', 'radiusUnit'=>'string', 'options='=>'array'], - 'RedisCluster::geohash' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'RedisCluster::geopos' => ['array', 'key'=>'string', 'member'=>'string', '...other_members='=>'string'], - 'RedisCluster::get' => ['string|false', 'key'=>'string'], - 'RedisCluster::getBit' => ['int', 'key'=>'string', 'offset'=>'int'], - 'RedisCluster::getLastError' => ['?string'], - 'RedisCluster::getMode' => ['int'], - 'RedisCluster::getOption' => ['int', 'option'=>'int'], - 'RedisCluster::getRange' => ['string', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'RedisCluster::getSet' => ['string', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::hDel' => ['int|false', 'key'=>'string', 'hashKey'=>'string', '...other_hashKeys='=>'string[]'], - 'RedisCluster::hExists' => ['bool', 'key'=>'string', 'hashKey'=>'string'], - 'RedisCluster::hGet' => ['string|false', 'key'=>'string', 'hashKey'=>'string'], - 'RedisCluster::hGetAll' => ['array', 'key'=>'string'], - 'RedisCluster::hIncrBy' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'int'], - 'RedisCluster::hIncrByFloat' => ['float', 'key'=>'string', 'field'=>'string', 'increment'=>'float'], - 'RedisCluster::hKeys' => ['array', 'key'=>'string'], - 'RedisCluster::hLen' => ['int|false', 'key'=>'string'], - 'RedisCluster::hMGet' => ['array', 'key'=>'string', 'hashKeys'=>'array'], - 'RedisCluster::hMSet' => ['bool', 'key'=>'string', 'hashKeys'=>'array'], - 'RedisCluster::hScan' => ['array', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], - 'RedisCluster::hSet' => ['int', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], - 'RedisCluster::hSetNx' => ['bool', 'key'=>'string', 'hashKey'=>'string', 'value'=>'string'], - 'RedisCluster::hStrlen' => ['int', 'key'=>'string', 'member'=>'string'], - 'RedisCluster::hVals' => ['array', 'key'=>'string'], - 'RedisCluster::incr' => ['int', 'key'=>'string'], - 'RedisCluster::incrBy' => ['int', 'key'=>'string', 'value'=>'int'], - 'RedisCluster::incrByFloat' => ['float', 'key'=>'string', 'increment'=>'float'], - 'RedisCluster::info' => ['array', 'nodeParams'=>'string|array{0:string,1:int}', 'option='=>'string'], - 'RedisCluster::keys' => ['array', 'pattern'=>'string'], - 'RedisCluster::lGet' => ['', 'key'=>'string', 'index'=>'int'], - 'RedisCluster::lIndex' => ['string|false', 'key'=>'string', 'index'=>'int'], - 'RedisCluster::lInsert' => ['int', 'key'=>'string', 'position'=>'int', 'pivot'=>'string', 'value'=>'string'], - 'RedisCluster::lLen' => ['int', 'key'=>'string'], - 'RedisCluster::lPop' => ['string|false', 'key'=>'string'], - 'RedisCluster::lPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'RedisCluster::lPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::lRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'RedisCluster::lRem' => ['int|false', 'key'=>'string', 'value'=>'string', 'count'=>'int'], - 'RedisCluster::lSet' => ['bool', 'key'=>'string', 'index'=>'int', 'value'=>'string'], - 'RedisCluster::lTrim' => ['array|false', 'key'=>'string', 'start'=>'int', 'stop'=>'int'], - 'RedisCluster::lastSave' => ['int', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::mget' => ['array', 'array'=>'array'], - 'RedisCluster::mset' => ['bool', 'array'=>'array'], - 'RedisCluster::msetnx' => ['int', 'array'=>'array'], - 'RedisCluster::multi' => ['Redis', 'mode='=>'int'], - 'RedisCluster::object' => ['string|int|false', 'string'=>'string', 'key'=>'string'], - 'RedisCluster::pExpire' => ['bool', 'key'=>'string', 'ttl'=>'int'], - 'RedisCluster::pExpireAt' => ['bool', 'key'=>'string', 'timestamp'=>'int'], - 'RedisCluster::persist' => ['bool', 'key'=>'string'], - 'RedisCluster::pfAdd' => ['bool', 'key'=>'string', 'elements'=>'array'], - 'RedisCluster::pfCount' => ['int', 'key'=>'string'], - 'RedisCluster::pfMerge' => ['bool', 'destKey'=>'string', 'sourceKeys'=>'array'], - 'RedisCluster::ping' => ['string', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::psetex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'RedisCluster::psubscribe' => ['mixed', 'patterns'=>'array', 'callback'=>'string'], - 'RedisCluster::pttl' => ['int', 'key'=>'string'], - 'RedisCluster::publish' => ['int', 'channel'=>'string', 'message'=>'string'], - 'RedisCluster::pubsub' => ['array', 'nodeParams'=>'string', 'keyword'=>'string', '...argument='=>'string'], - 'RedisCluster::punSubscribe' => ['', 'channels'=>'', 'callback'=>''], - 'RedisCluster::rPop' => ['string|false', 'key'=>'string'], - 'RedisCluster::rPush' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'RedisCluster::rPushx' => ['int|false', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::randomKey' => ['string', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::rawCommand' => ['mixed', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'arguments='=>'mixed'], - 'RedisCluster::rename' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string'], - 'RedisCluster::renameNx' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string'], - 'RedisCluster::restore' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'RedisCluster::role' => ['array'], - 'RedisCluster::rpoplpush' => ['string|false', 'srcKey'=>'string', 'dstKey'=>'string'], - 'RedisCluster::sAdd' => ['int|false', 'key'=>'string', 'value1'=>'string', 'value2='=>'string', 'valueN='=>'string'], - 'RedisCluster::sAddArray' => ['int|false', 'key'=>'string', 'valueArray'=>'array'], - 'RedisCluster::sCard' => ['int', 'key'=>'string'], - 'RedisCluster::sDiff' => ['list', 'key1'=>'string', 'key2'=>'string', '...other_keys='=>'string'], - 'RedisCluster::sDiffStore' => ['int', 'dstKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], - 'RedisCluster::sInter' => ['list', 'key'=>'string', '...other_keys='=>'string'], - 'RedisCluster::sInterStore' => ['int', 'dstKey'=>'string', 'key'=>'string', '...other_keys='=>'string'], - 'RedisCluster::sIsMember' => ['bool', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::sMembers' => ['list', 'key'=>'string'], - 'RedisCluster::sMove' => ['bool', 'srcKey'=>'string', 'dstKey'=>'string', 'member'=>'string'], - 'RedisCluster::sPop' => ['string', 'key'=>'string'], - 'RedisCluster::sRandMember' => ['array|string', 'key'=>'string', 'count='=>'int'], - 'RedisCluster::sRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], - 'RedisCluster::sScan' => ['array|false', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'null', 'count='=>'int'], - 'RedisCluster::sUnion' => ['list', 'key1'=>'string', '...other_keys='=>'string'], - 'RedisCluster::sUnion\'1' => ['list', 'keys'=>'string[]'], - 'RedisCluster::sUnionStore' => ['int', 'dstKey'=>'string', 'key1'=>'string', '...other_keys='=>'string'], - 'RedisCluster::save' => ['bool', 'nodeParams'=>'string|array{0:string,1:int}'], - 'RedisCluster::scan' => ['array|false', '&iterator'=>'int', 'nodeParams'=>'string|array{0:string,1:int}', 'pattern='=>'string', 'count='=>'int'], - 'RedisCluster::script' => ['string|bool|array', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'script='=>'string', '...other_scripts='=>'string[]'], - 'RedisCluster::set' => ['bool', 'key'=>'string', 'value'=>'string', 'timeout='=>'array|int'], - 'RedisCluster::setBit' => ['int', 'key'=>'string', 'offset'=>'int', 'value'=>'bool|int'], - 'RedisCluster::setOption' => ['bool', 'option'=>'int', 'value'=>'string|int'], - 'RedisCluster::setRange' => ['string', 'key'=>'string', 'offset'=>'int', 'value'=>'string'], - 'RedisCluster::setex' => ['bool', 'key'=>'string', 'ttl'=>'int', 'value'=>'string'], - 'RedisCluster::setnx' => ['bool', 'key'=>'string', 'value'=>'string'], - 'RedisCluster::slowLog' => ['array|int|bool', 'nodeParams'=>'string|array{0:string,1:int}', 'command'=>'string', 'length='=>'int'], - 'RedisCluster::sort' => ['array', 'key'=>'string', 'option='=>'array'], - 'RedisCluster::strlen' => ['int', 'key'=>'string'], - 'RedisCluster::subscribe' => ['mixed', 'channels'=>'array', 'callback'=>'string'], - 'RedisCluster::time' => ['array'], - 'RedisCluster::ttl' => ['int', 'key'=>'string'], - 'RedisCluster::type' => ['int', 'key'=>'string'], - 'RedisCluster::unSubscribe' => ['', 'channels'=>'', '...other_channels='=>''], - 'RedisCluster::unlink' => ['int', 'key'=>'string', '...other_keys='=>'string'], - 'RedisCluster::unwatch' => [''], - 'RedisCluster::watch' => ['void', 'key'=>'string', '...other_keys='=>'string'], - 'RedisCluster::xack' => ['', 'str_key'=>'string', 'str_group'=>'string', 'arr_ids'=>'array'], - 'RedisCluster::xadd' => ['', 'str_key'=>'string', 'str_id'=>'string', 'arr_fields'=>'array', 'i_maxlen='=>'', 'boo_approximate='=>''], - 'RedisCluster::xclaim' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_consumer'=>'string', 'i_min_idle'=>'', 'arr_ids'=>'array', 'arr_opts='=>'array'], - 'RedisCluster::xdel' => ['', 'str_key'=>'string', 'arr_ids'=>'array'], - 'RedisCluster::xgroup' => ['', 'str_operation'=>'string', 'str_key='=>'string', 'str_arg1='=>'', 'str_arg2='=>'', 'str_arg3='=>''], - 'RedisCluster::xinfo' => ['', 'str_cmd'=>'string', 'str_key='=>'string', 'str_group='=>'string'], - 'RedisCluster::xlen' => ['', 'key'=>''], - 'RedisCluster::xpending' => ['', 'str_key'=>'string', 'str_group'=>'string', 'str_start='=>'', 'str_end='=>'', 'i_count='=>'', 'str_consumer='=>'string'], - 'RedisCluster::xrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], - 'RedisCluster::xread' => ['', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], - 'RedisCluster::xreadgroup' => ['', 'str_group'=>'string', 'str_consumer'=>'string', 'arr_streams'=>'array', 'i_count='=>'', 'i_block='=>''], - 'RedisCluster::xrevrange' => ['', 'str_key'=>'string', 'str_start'=>'', 'str_end'=>'', 'i_count='=>''], - 'RedisCluster::xtrim' => ['', 'str_key'=>'string', 'i_maxlen'=>'', 'boo_approximate='=>''], - 'RedisCluster::zAdd' => ['int', 'key'=>'string', 'score1'=>'float', 'value1'=>'string', 'score2='=>'float', 'value2='=>'string', 'scoreN='=>'float', 'valueN='=>'string'], - 'RedisCluster::zCard' => ['int', 'key'=>'string'], - 'RedisCluster::zCount' => ['int', 'key'=>'string', 'start'=>'string', 'end'=>'string'], - 'RedisCluster::zIncrBy' => ['float', 'key'=>'string', 'value'=>'float', 'member'=>'string'], - 'RedisCluster::zInterStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'RedisCluster::zLexCount' => ['int', 'key'=>'string', 'min'=>'int', 'max'=>'int'], - 'RedisCluster::zRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscores='=>'bool'], - 'RedisCluster::zRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], - 'RedisCluster::zRangeByScore' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'options='=>'array'], - 'RedisCluster::zRank' => ['int', 'key'=>'string', 'member'=>'string'], - 'RedisCluster::zRem' => ['int', 'key'=>'string', 'member1'=>'string', '...other_members='=>'string'], - 'RedisCluster::zRemRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int'], - 'RedisCluster::zRemRangeByRank' => ['int', 'key'=>'string', 'start'=>'int', 'end'=>'int'], - 'RedisCluster::zRemRangeByScore' => ['int', 'key'=>'string', 'start'=>'float|string', 'end'=>'float|string'], - 'RedisCluster::zRevRange' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'withscore='=>'bool'], - 'RedisCluster::zRevRangeByLex' => ['array', 'key'=>'string', 'min'=>'int', 'max'=>'int', 'offset='=>'int', 'limit='=>'int'], - 'RedisCluster::zRevRangeByScore' => ['array', 'key'=>'string', 'start'=>'int', 'end'=>'int', 'options='=>'array'], - 'RedisCluster::zRevRank' => ['int', 'key'=>'string', 'member'=>'string'], - 'RedisCluster::zScan' => ['array|false', 'key'=>'string', '&iterator'=>'int', 'pattern='=>'string', 'count='=>'int'], - 'RedisCluster::zScore' => ['float', 'key'=>'string', 'member'=>'string'], - 'RedisCluster::zUnionStore' => ['int', 'Output'=>'string', 'ZSetKeys'=>'array', 'Weights='=>'?array', 'aggregateFunction='=>'string'], - 'Reflection::export' => ['?string', 'r'=>'reflector', 'return='=>'bool'], - 'Reflection::getModifierNames' => ['list', 'modifiers'=>'int'], - 'ReflectionClass::__clone' => ['void'], - 'ReflectionClass::__construct' => ['void', 'objectOrClass'=>'object|class-string'], - 'ReflectionClass::__toString' => ['string'], - 'ReflectionClass::export' => ['?string', 'argument'=>'string|object', 'return='=>'bool'], - 'ReflectionClass::getConstant' => ['mixed', 'name'=>'string'], - 'ReflectionClass::getConstants' => ['array'], - 'ReflectionClass::getConstructor' => ['?ReflectionMethod'], - 'ReflectionClass::getDefaultProperties' => ['array'], - 'ReflectionClass::getDocComment' => ['string|false'], - 'ReflectionClass::getEndLine' => ['int|false'], - 'ReflectionClass::getExtension' => ['?ReflectionExtension'], - 'ReflectionClass::getExtensionName' => ['string|false'], - 'ReflectionClass::getFileName' => ['string|false'], - 'ReflectionClass::getInterfaceNames' => ['list'], - 'ReflectionClass::getInterfaces' => ['array'], - 'ReflectionClass::getMethod' => ['ReflectionMethod', 'name'=>'string'], - 'ReflectionClass::getMethods' => ['list', 'filter='=>'int'], - 'ReflectionClass::getModifiers' => ['int'], - 'ReflectionClass::getName' => ['class-string'], - 'ReflectionClass::getNamespaceName' => ['string'], - 'ReflectionClass::getParentClass' => ['ReflectionClass|false'], - 'ReflectionClass::getProperties' => ['list', 'filter='=>'int'], - 'ReflectionClass::getProperty' => ['ReflectionProperty', 'name'=>'string'], - 'ReflectionClass::getReflectionConstant' => ['ReflectionClassConstant|false', 'name'=>'string'], - 'ReflectionClass::getReflectionConstants' => ['list'], - 'ReflectionClass::getShortName' => ['string'], - 'ReflectionClass::getStartLine' => ['int|false'], - 'ReflectionClass::getStaticProperties' => ['array'], - 'ReflectionClass::getStaticPropertyValue' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'ReflectionClass::getTraitAliases' => ['array'], - 'ReflectionClass::getTraitNames' => ['list'], - 'ReflectionClass::getTraits' => ['array'], - 'ReflectionClass::hasConstant' => ['bool', 'name'=>'string'], - 'ReflectionClass::hasMethod' => ['bool', 'name'=>'string'], - 'ReflectionClass::hasProperty' => ['bool', 'name'=>'string'], - 'ReflectionClass::implementsInterface' => ['bool', 'interface'=>'interface-string|ReflectionClass'], - 'ReflectionClass::inNamespace' => ['bool'], - 'ReflectionClass::isAbstract' => ['bool'], - 'ReflectionClass::isAnonymous' => ['bool'], - 'ReflectionClass::isCloneable' => ['bool'], - 'ReflectionClass::isFinal' => ['bool'], - 'ReflectionClass::isInstance' => ['bool', 'object'=>'object'], - 'ReflectionClass::isInstantiable' => ['bool'], - 'ReflectionClass::isInterface' => ['bool'], - 'ReflectionClass::isInternal' => ['bool'], - 'ReflectionClass::isIterateable' => ['bool'], - 'ReflectionClass::isSubclassOf' => ['bool', 'class'=>'class-string|ReflectionClass'], - 'ReflectionClass::isTrait' => ['bool'], - 'ReflectionClass::isUserDefined' => ['bool'], - 'ReflectionClass::newInstance' => ['object', '...args='=>'mixed'], - 'ReflectionClass::newInstanceArgs' => ['object', 'args='=>'list'], - 'ReflectionClass::newInstanceWithoutConstructor' => ['object'], - 'ReflectionClass::setStaticPropertyValue' => ['void', 'name'=>'string', 'value'=>'mixed'], - 'ReflectionClassConstant::__construct' => ['void', 'class'=>'object|class-string', 'constant'=>'string'], - 'ReflectionClassConstant::__toString' => ['string'], - 'ReflectionClassConstant::export' => ['string', 'class'=>'mixed', 'name'=>'string', 'return='=>'bool'], - 'ReflectionClassConstant::getDeclaringClass' => ['ReflectionClass'], - 'ReflectionClassConstant::getDocComment' => ['string|false'], - 'ReflectionClassConstant::getModifiers' => ['int'], - 'ReflectionClassConstant::getName' => ['string'], - 'ReflectionClassConstant::getValue' => ['scalar|array|null'], - 'ReflectionClassConstant::isPrivate' => ['bool'], - 'ReflectionClassConstant::isProtected' => ['bool'], - 'ReflectionClassConstant::isPublic' => ['bool'], - 'ReflectionExtension::__clone' => ['void'], - 'ReflectionExtension::__construct' => ['void', 'name'=>'string'], - 'ReflectionExtension::__toString' => ['string'], - 'ReflectionExtension::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionExtension::getClassNames' => ['list'], - 'ReflectionExtension::getClasses' => ['array'], - 'ReflectionExtension::getConstants' => ['array'], - 'ReflectionExtension::getDependencies' => ['array'], - 'ReflectionExtension::getFunctions' => ['array'], - 'ReflectionExtension::getINIEntries' => ['array'], - 'ReflectionExtension::getName' => ['string'], - 'ReflectionExtension::getVersion' => ['?string'], - 'ReflectionExtension::info' => ['void'], - 'ReflectionExtension::isPersistent' => ['bool'], - 'ReflectionExtension::isTemporary' => ['bool'], - 'ReflectionFunction::__construct' => ['void', 'function'=>'callable-string|Closure'], - 'ReflectionFunction::__toString' => ['string'], - 'ReflectionFunction::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionFunction::getClosure' => ['Closure'], - 'ReflectionFunction::getClosureScopeClass' => ['ReflectionClass'], - 'ReflectionFunction::getClosureThis' => ['object'], - 'ReflectionFunction::getDocComment' => ['string|false'], - 'ReflectionFunction::getEndLine' => ['int|false'], - 'ReflectionFunction::getExtension' => ['?ReflectionExtension'], - 'ReflectionFunction::getExtensionName' => ['string|false'], - 'ReflectionFunction::getFileName' => ['string|false'], - 'ReflectionFunction::getName' => ['callable-string'], - 'ReflectionFunction::getNamespaceName' => ['string'], - 'ReflectionFunction::getNumberOfParameters' => ['int'], - 'ReflectionFunction::getNumberOfRequiredParameters' => ['int'], - 'ReflectionFunction::getParameters' => ['list'], - 'ReflectionFunction::getReturnType' => ['?ReflectionType'], - 'ReflectionFunction::getShortName' => ['string'], - 'ReflectionFunction::getStartLine' => ['int|false'], - 'ReflectionFunction::getStaticVariables' => ['array'], - 'ReflectionFunction::hasReturnType' => ['bool'], - 'ReflectionFunction::inNamespace' => ['bool'], - 'ReflectionFunction::invoke' => ['mixed', '...args='=>'mixed'], - 'ReflectionFunction::invokeArgs' => ['mixed', 'args'=>'array'], - 'ReflectionFunction::isClosure' => ['bool'], - 'ReflectionFunction::isDeprecated' => ['bool'], - 'ReflectionFunction::isDisabled' => ['bool'], - 'ReflectionFunction::isGenerator' => ['bool'], - 'ReflectionFunction::isInternal' => ['bool'], - 'ReflectionFunction::isUserDefined' => ['bool'], - 'ReflectionFunction::isVariadic' => ['bool'], - 'ReflectionFunction::returnsReference' => ['bool'], - 'ReflectionFunctionAbstract::__clone' => ['void'], - 'ReflectionFunctionAbstract::__toString' => ['string'], - 'ReflectionFunctionAbstract::export' => ['?string'], - 'ReflectionFunctionAbstract::getClosureScopeClass' => ['ReflectionClass|null'], - 'ReflectionFunctionAbstract::getClosureThis' => ['object|null'], - 'ReflectionFunctionAbstract::getDocComment' => ['string|false'], - 'ReflectionFunctionAbstract::getEndLine' => ['int|false'], - 'ReflectionFunctionAbstract::getExtension' => ['?ReflectionExtension'], - 'ReflectionFunctionAbstract::getExtensionName' => ['string|false'], - 'ReflectionFunctionAbstract::getFileName' => ['string|false'], - 'ReflectionFunctionAbstract::getName' => ['string'], - 'ReflectionFunctionAbstract::getNamespaceName' => ['string'], - 'ReflectionFunctionAbstract::getNumberOfParameters' => ['int'], - 'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => ['int'], - 'ReflectionFunctionAbstract::getParameters' => ['list'], - 'ReflectionFunctionAbstract::getReturnType' => ['?ReflectionType'], - 'ReflectionFunctionAbstract::getShortName' => ['string'], - 'ReflectionFunctionAbstract::getStartLine' => ['int|false'], - 'ReflectionFunctionAbstract::getStaticVariables' => ['array'], - 'ReflectionFunctionAbstract::hasReturnType' => ['bool'], - 'ReflectionFunctionAbstract::inNamespace' => ['bool'], - 'ReflectionFunctionAbstract::isClosure' => ['bool'], - 'ReflectionFunctionAbstract::isDeprecated' => ['bool'], - 'ReflectionFunctionAbstract::isGenerator' => ['bool'], - 'ReflectionFunctionAbstract::isInternal' => ['bool'], - 'ReflectionFunctionAbstract::isUserDefined' => ['bool'], - 'ReflectionFunctionAbstract::isVariadic' => ['bool'], - 'ReflectionFunctionAbstract::returnsReference' => ['bool'], - 'ReflectionGenerator::__construct' => ['void', 'generator'=>'Generator'], - 'ReflectionGenerator::getExecutingFile' => ['string'], - 'ReflectionGenerator::getExecutingGenerator' => ['Generator'], - 'ReflectionGenerator::getExecutingLine' => ['int'], - 'ReflectionGenerator::getFunction' => ['ReflectionFunctionAbstract'], - 'ReflectionGenerator::getThis' => ['?object'], - 'ReflectionGenerator::getTrace' => ['array', 'options='=>'int'], - 'ReflectionMethod::__construct' => ['void', 'class'=>'class-string|object', 'name'=>'string'], - 'ReflectionMethod::__construct\'1' => ['void', 'class_method'=>'string'], - 'ReflectionMethod::__toString' => ['string'], - 'ReflectionMethod::export' => ['?string', 'class'=>'string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionMethod::getClosure' => ['?Closure', 'object='=>'object'], - 'ReflectionMethod::getClosureScopeClass' => ['ReflectionClass'], - 'ReflectionMethod::getClosureThis' => ['object'], - 'ReflectionMethod::getDeclaringClass' => ['ReflectionClass'], - 'ReflectionMethod::getDocComment' => ['false|string'], - 'ReflectionMethod::getEndLine' => ['false|int'], - 'ReflectionMethod::getExtension' => ['?ReflectionExtension'], - 'ReflectionMethod::getExtensionName' => ['string|false'], - 'ReflectionMethod::getFileName' => ['false|string'], - 'ReflectionMethod::getModifiers' => ['int'], - 'ReflectionMethod::getName' => ['string'], - 'ReflectionMethod::getNamespaceName' => ['string'], - 'ReflectionMethod::getNumberOfParameters' => ['int'], - 'ReflectionMethod::getNumberOfRequiredParameters' => ['int'], - 'ReflectionMethod::getParameters' => ['list<\ReflectionParameter>'], - 'ReflectionMethod::getPrototype' => ['ReflectionMethod'], - 'ReflectionMethod::getReturnType' => ['?ReflectionType'], - 'ReflectionMethod::getShortName' => ['string'], - 'ReflectionMethod::getStartLine' => ['false|int'], - 'ReflectionMethod::getStaticVariables' => ['array'], - 'ReflectionMethod::hasReturnType' => ['bool'], - 'ReflectionMethod::inNamespace' => ['bool'], - 'ReflectionMethod::invoke' => ['mixed', 'object'=>'?object', '...args='=>'mixed'], - 'ReflectionMethod::invokeArgs' => ['mixed', 'object'=>'?object', 'args'=>'array'], - 'ReflectionMethod::isAbstract' => ['bool'], - 'ReflectionMethod::isClosure' => ['bool'], - 'ReflectionMethod::isConstructor' => ['bool'], - 'ReflectionMethod::isDeprecated' => ['bool'], - 'ReflectionMethod::isDestructor' => ['bool'], - 'ReflectionMethod::isFinal' => ['bool'], - 'ReflectionMethod::isGenerator' => ['bool'], - 'ReflectionMethod::isInternal' => ['bool'], - 'ReflectionMethod::isPrivate' => ['bool'], - 'ReflectionMethod::isProtected' => ['bool'], - 'ReflectionMethod::isPublic' => ['bool'], - 'ReflectionMethod::isStatic' => ['bool'], - 'ReflectionMethod::isUserDefined' => ['bool'], - 'ReflectionMethod::isVariadic' => ['bool'], - 'ReflectionMethod::returnsReference' => ['bool'], - 'ReflectionMethod::setAccessible' => ['void', 'accessible'=>'bool'], - 'ReflectionNamedType::__clone' => ['void'], - 'ReflectionNamedType::__toString' => ['string'], - 'ReflectionNamedType::allowsNull' => ['bool'], - 'ReflectionNamedType::getName' => ['string'], - 'ReflectionNamedType::isBuiltin' => ['bool'], - 'ReflectionObject::__clone' => ['void'], - 'ReflectionObject::__construct' => ['void', 'object'=>'object'], - 'ReflectionObject::__toString' => ['string'], - 'ReflectionObject::export' => ['?string', 'argument'=>'object', 'return='=>'bool'], - 'ReflectionObject::getConstant' => ['mixed', 'name'=>'string'], - 'ReflectionObject::getConstants' => ['array'], - 'ReflectionObject::getConstructor' => ['?ReflectionMethod'], - 'ReflectionObject::getDefaultProperties' => ['array'], - 'ReflectionObject::getDocComment' => ['false|string'], - 'ReflectionObject::getEndLine' => ['false|int'], - 'ReflectionObject::getExtension' => ['?ReflectionExtension'], - 'ReflectionObject::getExtensionName' => ['false|string'], - 'ReflectionObject::getFileName' => ['false|string'], - 'ReflectionObject::getInterfaceNames' => ['class-string[]'], - 'ReflectionObject::getInterfaces' => ['array'], - 'ReflectionObject::getMethod' => ['ReflectionMethod', 'name'=>'string'], - 'ReflectionObject::getMethods' => ['ReflectionMethod[]', 'filter='=>'int'], - 'ReflectionObject::getModifiers' => ['int'], - 'ReflectionObject::getName' => ['string'], - 'ReflectionObject::getNamespaceName' => ['string'], - 'ReflectionObject::getParentClass' => ['ReflectionClass|false'], - 'ReflectionObject::getProperties' => ['ReflectionProperty[]', 'filter='=>'int'], - 'ReflectionObject::getProperty' => ['ReflectionProperty', 'name'=>'string'], - 'ReflectionObject::getReflectionConstant' => ['ReflectionClassConstant', 'name'=>'string'], - 'ReflectionObject::getReflectionConstants' => ['list<\ReflectionClassConstant>'], - 'ReflectionObject::getShortName' => ['string'], - 'ReflectionObject::getStartLine' => ['false|int'], - 'ReflectionObject::getStaticProperties' => ['ReflectionProperty[]'], - 'ReflectionObject::getStaticPropertyValue' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'ReflectionObject::getTraitAliases' => ['array'], - 'ReflectionObject::getTraitNames' => ['list'], - 'ReflectionObject::getTraits' => ['array'], - 'ReflectionObject::hasConstant' => ['bool', 'name'=>'string'], - 'ReflectionObject::hasMethod' => ['bool', 'name'=>'string'], - 'ReflectionObject::hasProperty' => ['bool', 'name'=>'string'], - 'ReflectionObject::implementsInterface' => ['bool', 'interface'=>'ReflectionClass|interface-string'], - 'ReflectionObject::inNamespace' => ['bool'], - 'ReflectionObject::isAbstract' => ['bool'], - 'ReflectionObject::isAnonymous' => ['bool'], - 'ReflectionObject::isCloneable' => ['bool'], - 'ReflectionObject::isFinal' => ['bool'], - 'ReflectionObject::isInstance' => ['bool', 'object'=>'object'], - 'ReflectionObject::isInstantiable' => ['bool'], - 'ReflectionObject::isInterface' => ['bool'], - 'ReflectionObject::isInternal' => ['bool'], - 'ReflectionObject::isIterable' => ['bool'], - 'ReflectionObject::isIterateable' => ['bool'], - 'ReflectionObject::isSubclassOf' => ['bool', 'class'=>'ReflectionClass|string'], - 'ReflectionObject::isTrait' => ['bool'], - 'ReflectionObject::isUserDefined' => ['bool'], - 'ReflectionObject::newInstance' => ['object', 'args='=>'mixed', '...args='=>'array'], - 'ReflectionObject::newInstanceArgs' => ['object', 'args='=>'list'], - 'ReflectionObject::newInstanceWithoutConstructor' => ['object'], - 'ReflectionObject::setStaticPropertyValue' => ['void', 'name'=>'string', 'value'=>'string'], - 'ReflectionParameter::__clone' => ['void'], - 'ReflectionParameter::__construct' => ['void', 'function'=>'string|array|object', 'param'=>'int|string'], - 'ReflectionParameter::__toString' => ['string'], - 'ReflectionParameter::allowsNull' => ['bool'], - 'ReflectionParameter::canBePassedByValue' => ['bool'], - 'ReflectionParameter::export' => ['?string', 'function'=>'string', 'parameter'=>'string', 'return='=>'bool'], - 'ReflectionParameter::getClass' => ['?ReflectionClass'], - 'ReflectionParameter::getDeclaringClass' => ['?ReflectionClass'], - 'ReflectionParameter::getDeclaringFunction' => ['ReflectionFunctionAbstract'], - 'ReflectionParameter::getDefaultValue' => ['mixed'], - 'ReflectionParameter::getDefaultValueConstantName' => ['?string'], - 'ReflectionParameter::getName' => ['non-empty-string'], - 'ReflectionParameter::getPosition' => ['int<0, max>'], - 'ReflectionParameter::getType' => ['?ReflectionType'], - 'ReflectionParameter::hasType' => ['bool'], - 'ReflectionParameter::isArray' => ['bool'], - 'ReflectionParameter::isCallable' => ['bool'], - 'ReflectionParameter::isDefaultValueAvailable' => ['bool'], - 'ReflectionParameter::isDefaultValueConstant' => ['bool'], - 'ReflectionParameter::isOptional' => ['bool'], - 'ReflectionParameter::isPassedByReference' => ['bool'], - 'ReflectionParameter::isVariadic' => ['bool'], - 'ReflectionProperty::__clone' => ['void'], - 'ReflectionProperty::__construct' => ['void', 'class'=>'object|class-string', 'property'=>'string'], - 'ReflectionProperty::__toString' => ['string'], - 'ReflectionProperty::export' => ['?string', 'class'=>'mixed', 'name'=>'string', 'return='=>'bool'], - 'ReflectionProperty::getDeclaringClass' => ['ReflectionClass'], - 'ReflectionProperty::getDocComment' => ['string|false'], - 'ReflectionProperty::getModifiers' => ['int'], - 'ReflectionProperty::getName' => ['string'], - 'ReflectionProperty::getValue' => ['mixed', 'object='=>'object'], - 'ReflectionProperty::hasType' => ['bool'], - 'ReflectionProperty::isDefault' => ['bool'], - 'ReflectionProperty::isPrivate' => ['bool'], - 'ReflectionProperty::isProtected' => ['bool'], - 'ReflectionProperty::isPublic' => ['bool'], - 'ReflectionProperty::isStatic' => ['bool'], - 'ReflectionProperty::setAccessible' => ['void', 'accessible'=>'bool'], - 'ReflectionProperty::setValue' => ['void', 'object'=>'null|object', 'value'=>''], - 'ReflectionProperty::setValue\'1' => ['void', 'value'=>''], - 'ReflectionType::__clone' => ['void'], - 'ReflectionType::__toString' => ['string'], - 'ReflectionType::allowsNull' => ['bool'], - 'ReflectionType::isBuiltin' => ['bool'], - 'ReflectionZendExtension::__clone' => ['void'], - 'ReflectionZendExtension::__construct' => ['void', 'name'=>'string'], - 'ReflectionZendExtension::__toString' => ['string'], - 'ReflectionZendExtension::export' => ['?string', 'name'=>'string', 'return='=>'bool'], - 'ReflectionZendExtension::getAuthor' => ['string'], - 'ReflectionZendExtension::getCopyright' => ['string'], - 'ReflectionZendExtension::getName' => ['string'], - 'ReflectionZendExtension::getURL' => ['string'], - 'ReflectionZendExtension::getVersion' => ['string'], - 'Reflector::__toString' => ['string'], - 'Reflector::export' => ['?string'], - 'RegexIterator::__construct' => ['void', 'iterator'=>'Iterator', 'pattern'=>'string', 'mode='=>'int', 'flags='=>'int', 'pregFlags='=>'int'], - 'RegexIterator::accept' => ['bool'], - 'RegexIterator::current' => ['mixed'], - 'RegexIterator::getFlags' => ['int'], - 'RegexIterator::getInnerIterator' => ['Iterator'], - 'RegexIterator::getMode' => ['int'], - 'RegexIterator::getPregFlags' => ['int'], - 'RegexIterator::getRegex' => ['string'], - 'RegexIterator::key' => ['mixed'], - 'RegexIterator::next' => ['void'], - 'RegexIterator::rewind' => ['void'], - 'RegexIterator::setFlags' => ['void', 'flags'=>'int'], - 'RegexIterator::setMode' => ['void', 'mode'=>'int'], - 'RegexIterator::setPregFlags' => ['void', 'pregFlags'=>'int'], - 'RegexIterator::valid' => ['bool'], - 'ResourceBundle::__construct' => ['void', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], - 'ResourceBundle::count' => ['int'], - 'ResourceBundle::create' => ['?ResourceBundle', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], - 'ResourceBundle::get' => ['mixed', 'index'=>'string|int', 'fallback='=>'bool'], - 'ResourceBundle::getErrorCode' => ['int'], - 'ResourceBundle::getErrorMessage' => ['string'], - 'ResourceBundle::getLocales' => ['array|false', 'bundle'=>'string'], - 'Runkit_Sandbox::__construct' => ['void', 'options='=>'array'], - 'Runkit_Sandbox_Parent' => [''], - 'Runkit_Sandbox_Parent::__construct' => ['void'], - 'RuntimeException::__clone' => ['void'], - 'RuntimeException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'RuntimeException::__toString' => ['string'], - 'RuntimeException::getCode' => ['int'], - 'RuntimeException::getFile' => ['string'], - 'RuntimeException::getLine' => ['int'], - 'RuntimeException::getMessage' => ['string'], - 'RuntimeException::getPrevious' => ['?Throwable'], - 'RuntimeException::getTrace' => ['list\',args?:array}>'], - 'RuntimeException::getTraceAsString' => ['string'], - 'SAMConnection::commit' => ['bool'], - 'SAMConnection::connect' => ['bool', 'protocol'=>'string', 'properties='=>'array'], - 'SAMConnection::disconnect' => ['bool'], - 'SAMConnection::errno' => ['int'], - 'SAMConnection::error' => ['string'], - 'SAMConnection::isConnected' => ['bool'], - 'SAMConnection::peek' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], - 'SAMConnection::peekAll' => ['array', 'target'=>'string', 'properties='=>'array'], - 'SAMConnection::receive' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], - 'SAMConnection::remove' => ['SAMMessage', 'target'=>'string', 'properties='=>'array'], - 'SAMConnection::rollback' => ['bool'], - 'SAMConnection::send' => ['string', 'target'=>'string', 'msg'=>'sammessage', 'properties='=>'array'], - 'SAMConnection::setDebug' => ['', 'switch'=>'bool'], - 'SAMConnection::subscribe' => ['string', 'targettopic'=>'string'], - 'SAMConnection::unsubscribe' => ['bool', 'subscriptionid'=>'string', 'targettopic='=>'string'], - 'SAMMessage::body' => ['string'], - 'SAMMessage::header' => ['object'], - 'SCA::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], - 'SCA::getService' => ['', 'target'=>'string', 'binding='=>'string', 'config='=>'array'], - 'SCA_LocalProxy::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], - 'SCA_SoapProxy::createDataObject' => ['SDO_DataObject', 'type_namespace_uri'=>'string', 'type_name'=>'string'], - 'SDO_DAS_ChangeSummary::beginLogging' => [''], - 'SDO_DAS_ChangeSummary::endLogging' => [''], - 'SDO_DAS_ChangeSummary::getChangeType' => ['int', 'dataobject'=>'sdo_dataobject'], - 'SDO_DAS_ChangeSummary::getChangedDataObjects' => ['SDO_List'], - 'SDO_DAS_ChangeSummary::getOldContainer' => ['SDO_DataObject', 'data_object'=>'sdo_dataobject'], - 'SDO_DAS_ChangeSummary::getOldValues' => ['SDO_List', 'data_object'=>'sdo_dataobject'], - 'SDO_DAS_ChangeSummary::isLogging' => ['bool'], - 'SDO_DAS_DataFactory::addPropertyToType' => ['', 'parent_type_namespace_uri'=>'string', 'parent_type_name'=>'string', 'property_name'=>'string', 'type_namespace_uri'=>'string', 'type_name'=>'string', 'options='=>'array'], - 'SDO_DAS_DataFactory::addType' => ['', 'type_namespace_uri'=>'string', 'type_name'=>'string', 'options='=>'array'], - 'SDO_DAS_DataFactory::getDataFactory' => ['SDO_DAS_DataFactory'], - 'SDO_DAS_DataObject::getChangeSummary' => ['SDO_DAS_ChangeSummary'], - 'SDO_DAS_Relational::__construct' => ['void', 'database_metadata'=>'array', 'application_root_type='=>'string', 'sdo_containment_references_metadata='=>'array'], - 'SDO_DAS_Relational::applyChanges' => ['', 'database_handle'=>'pdo', 'root_data_object'=>'sdodataobject'], - 'SDO_DAS_Relational::createRootDataObject' => ['SDODataObject'], - 'SDO_DAS_Relational::executePreparedQuery' => ['SDODataObject', 'database_handle'=>'pdo', 'prepared_statement'=>'pdostatement', 'value_list'=>'array', 'column_specifier='=>'array'], - 'SDO_DAS_Relational::executeQuery' => ['SDODataObject', 'database_handle'=>'pdo', 'sql_statement'=>'string', 'column_specifier='=>'array'], - 'SDO_DAS_Setting::getListIndex' => ['int'], - 'SDO_DAS_Setting::getPropertyIndex' => ['int'], - 'SDO_DAS_Setting::getPropertyName' => ['string'], - 'SDO_DAS_Setting::getValue' => [''], - 'SDO_DAS_Setting::isSet' => ['bool'], - 'SDO_DAS_XML::addTypes' => ['', 'xsd_file'=>'string'], - 'SDO_DAS_XML::create' => ['SDO_DAS_XML', 'xsd_file='=>'mixed', 'key='=>'string'], - 'SDO_DAS_XML::createDataObject' => ['SDO_DataObject', 'namespace_uri'=>'string', 'type_name'=>'string'], - 'SDO_DAS_XML::createDocument' => ['SDO_DAS_XML_Document', 'document_element_name'=>'string', 'document_element_namespace_uri'=>'string', 'dataobject='=>'sdo_dataobject'], - 'SDO_DAS_XML::loadFile' => ['SDO_XMLDocument', 'xml_file'=>'string'], - 'SDO_DAS_XML::loadString' => ['SDO_DAS_XML_Document', 'xml_string'=>'string'], - 'SDO_DAS_XML::saveFile' => ['', 'xdoc'=>'sdo_xmldocument', 'xml_file'=>'string', 'indent='=>'int'], - 'SDO_DAS_XML::saveString' => ['string', 'xdoc'=>'sdo_xmldocument', 'indent='=>'int'], - 'SDO_DAS_XML_Document::getRootDataObject' => ['SDO_DataObject'], - 'SDO_DAS_XML_Document::getRootElementName' => ['string'], - 'SDO_DAS_XML_Document::getRootElementURI' => ['string'], - 'SDO_DAS_XML_Document::setEncoding' => ['', 'encoding'=>'string'], - 'SDO_DAS_XML_Document::setXMLDeclaration' => ['', 'xmldeclatation'=>'bool'], - 'SDO_DAS_XML_Document::setXMLVersion' => ['', 'xmlversion'=>'string'], - 'SDO_DataFactory::create' => ['void', 'type_namespace_uri'=>'string', 'type_name'=>'string'], - 'SDO_DataObject::clear' => ['void'], - 'SDO_DataObject::createDataObject' => ['SDO_DataObject', 'identifier'=>''], - 'SDO_DataObject::getContainer' => ['SDO_DataObject'], - 'SDO_DataObject::getSequence' => ['SDO_Sequence'], - 'SDO_DataObject::getTypeName' => ['string'], - 'SDO_DataObject::getTypeNamespaceURI' => ['string'], - 'SDO_Exception::getCause' => [''], - 'SDO_List::insert' => ['void', 'value'=>'mixed', 'index='=>'int'], - 'SDO_Model_Property::getContainingType' => ['SDO_Model_Type'], - 'SDO_Model_Property::getDefault' => [''], - 'SDO_Model_Property::getName' => ['string'], - 'SDO_Model_Property::getType' => ['SDO_Model_Type'], - 'SDO_Model_Property::isContainment' => ['bool'], - 'SDO_Model_Property::isMany' => ['bool'], - 'SDO_Model_ReflectionDataObject::__construct' => ['void', 'data_object'=>'sdo_dataobject'], - 'SDO_Model_ReflectionDataObject::export' => ['mixed', 'rdo'=>'sdo_model_reflectiondataobject', 'return='=>'bool'], - 'SDO_Model_ReflectionDataObject::getContainmentProperty' => ['SDO_Model_Property'], - 'SDO_Model_ReflectionDataObject::getInstanceProperties' => ['array'], - 'SDO_Model_ReflectionDataObject::getType' => ['SDO_Model_Type'], - 'SDO_Model_Type::getBaseType' => ['SDO_Model_Type'], - 'SDO_Model_Type::getName' => ['string'], - 'SDO_Model_Type::getNamespaceURI' => ['string'], - 'SDO_Model_Type::getProperties' => ['array'], - 'SDO_Model_Type::getProperty' => ['SDO_Model_Property', 'identifier'=>''], - 'SDO_Model_Type::isAbstractType' => ['bool'], - 'SDO_Model_Type::isDataType' => ['bool'], - 'SDO_Model_Type::isInstance' => ['bool', 'data_object'=>'sdo_dataobject'], - 'SDO_Model_Type::isOpenType' => ['bool'], - 'SDO_Model_Type::isSequencedType' => ['bool'], - 'SDO_Sequence::getProperty' => ['SDO_Model_Property', 'sequence_index'=>'int'], - 'SDO_Sequence::insert' => ['void', 'value'=>'mixed', 'sequenceindex='=>'int', 'propertyidentifier='=>'mixed'], - 'SDO_Sequence::move' => ['void', 'toindex'=>'int', 'fromindex'=>'int'], - 'SNMP::__construct' => ['void', 'version'=>'int', 'hostname'=>'string', 'community'=>'string', 'timeout='=>'int', 'retries='=>'int'], - 'SNMP::close' => ['bool'], - 'SNMP::get' => ['array|string|false', 'objectId'=>'string|array', 'preserveKeys='=>'bool'], - 'SNMP::getErrno' => ['int'], - 'SNMP::getError' => ['string'], - 'SNMP::getnext' => ['string|array|false', 'objectId'=>'string|array'], - 'SNMP::set' => ['bool', 'objectId'=>'string|array', 'type'=>'string|array', 'value'=>'string|array'], - 'SNMP::setSecurity' => ['bool', 'securityLevel'=>'string', 'authProtocol='=>'string', 'authPassphrase='=>'string', 'privacyProtocol='=>'string', 'privacyPassphrase='=>'string', 'contextName='=>'string', 'contextEngineId='=>'string'], - 'SNMP::walk' => ['array|false', 'objectId'=>'array|string', 'suffixAsKey='=>'bool', 'maxRepetitions='=>'int', 'nonRepeaters='=>'int'], - 'SQLite3::__construct' => ['void', 'filename'=>'string', 'flags='=>'int', 'encryptionKey='=>'string'], - 'SQLite3::busyTimeout' => ['bool', 'milliseconds'=>'int'], - 'SQLite3::changes' => ['int'], - 'SQLite3::close' => ['bool'], - 'SQLite3::createAggregate' => ['bool', 'name'=>'string', 'stepCallback'=>'callable', 'finalCallback'=>'callable', 'argCount='=>'int'], - 'SQLite3::createCollation' => ['bool', 'name'=>'string', 'callback'=>'callable'], - 'SQLite3::createFunction' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int'], - 'SQLite3::enableExceptions' => ['bool', 'enable='=>'bool'], - 'SQLite3::escapeString' => ['string', 'string'=>'string'], - 'SQLite3::exec' => ['bool', 'query'=>'string'], - 'SQLite3::lastErrorCode' => ['int'], - 'SQLite3::lastErrorMsg' => ['string'], - 'SQLite3::lastInsertRowID' => ['int'], - 'SQLite3::loadExtension' => ['bool', 'name'=>'string'], - 'SQLite3::open' => ['void', 'filename'=>'string', 'flags='=>'int', 'encryptionKey='=>'string'], - 'SQLite3::openBlob' => ['resource|false', 'table'=>'string', 'column'=>'string', 'rowid'=>'int', 'dbname='=>'string'], - 'SQLite3::prepare' => ['SQLite3Stmt|false', 'query'=>'string'], - 'SQLite3::query' => ['SQLite3Result|false', 'query'=>'string'], - 'SQLite3::querySingle' => ['array|int|string|bool|float|null|false', 'query'=>'string', 'entireRow='=>'bool'], - 'SQLite3::version' => ['array'], - 'SQLite3Result::__construct' => ['void'], - 'SQLite3Result::columnName' => ['string', 'column'=>'int'], - 'SQLite3Result::columnType' => ['int', 'column'=>'int'], - 'SQLite3Result::fetchArray' => ['array|false', 'mode='=>'int'], - 'SQLite3Result::finalize' => ['bool'], - 'SQLite3Result::numColumns' => ['int'], - 'SQLite3Result::reset' => ['bool'], - 'SQLite3Stmt::__construct' => ['void', 'sqlite3'=>'sqlite3', 'query'=>'string'], - 'SQLite3Stmt::bindParam' => ['bool', 'param'=>'string|int', '&rw_var'=>'mixed', 'type='=>'int'], - 'SQLite3Stmt::bindValue' => ['bool', 'param'=>'string|int', 'value'=>'mixed', 'type='=>'int'], - 'SQLite3Stmt::clear' => ['bool'], - 'SQLite3Stmt::close' => ['bool'], - 'SQLite3Stmt::execute' => ['false|SQLite3Result'], - 'SQLite3Stmt::getSQL' => ['string', 'expand='=>'bool'], - 'SQLite3Stmt::paramCount' => ['int'], - 'SQLite3Stmt::readOnly' => ['bool'], - 'SQLite3Stmt::reset' => ['bool'], - 'SQLiteDatabase::__construct' => ['void', 'filename'=>'', 'mode='=>'int|mixed', '&error_message'=>''], - 'SQLiteDatabase::arrayQuery' => ['array', 'query'=>'string', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteDatabase::busyTimeout' => ['int', 'milliseconds'=>'int'], - 'SQLiteDatabase::changes' => ['int'], - 'SQLiteDatabase::createAggregate' => ['', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], - 'SQLiteDatabase::createFunction' => ['', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], - 'SQLiteDatabase::exec' => ['bool', 'query'=>'string', 'error_msg='=>'string'], - 'SQLiteDatabase::fetchColumnTypes' => ['array', 'table_name'=>'string', 'result_type='=>'int'], - 'SQLiteDatabase::lastError' => ['int'], - 'SQLiteDatabase::lastInsertRowid' => ['int'], - 'SQLiteDatabase::query' => ['SQLiteResult|false', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], - 'SQLiteDatabase::queryExec' => ['bool', 'query'=>'string', '&w_error_msg='=>'string'], - 'SQLiteDatabase::singleQuery' => ['array', 'query'=>'string', 'first_row_only='=>'bool', 'decode_binary='=>'bool'], - 'SQLiteDatabase::unbufferedQuery' => ['SQLiteUnbuffered|false', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], - 'SQLiteException::__clone' => ['void'], - 'SQLiteException::__construct' => ['void', 'message'=>'', 'code'=>'', 'previous'=>''], - 'SQLiteException::__toString' => ['string'], - 'SQLiteException::__wakeup' => ['void'], - 'SQLiteException::getCode' => ['int'], - 'SQLiteException::getFile' => ['string'], - 'SQLiteException::getLine' => ['int'], - 'SQLiteException::getMessage' => ['string'], - 'SQLiteException::getPrevious' => ['RuntimeException|Throwable|null'], - 'SQLiteException::getTrace' => ['list\',args?:array}>'], - 'SQLiteException::getTraceAsString' => ['string'], - 'SQLiteResult::__construct' => ['void'], - 'SQLiteResult::column' => ['mixed', 'index_or_name'=>'', 'decode_binary='=>'bool'], - 'SQLiteResult::count' => ['int'], - 'SQLiteResult::current' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteResult::fetch' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteResult::fetchAll' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteResult::fetchObject' => ['object', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], - 'SQLiteResult::fetchSingle' => ['string', 'decode_binary='=>'bool'], - 'SQLiteResult::fieldName' => ['string', 'field_index'=>'int'], - 'SQLiteResult::hasPrev' => ['bool'], - 'SQLiteResult::key' => ['mixed|null'], - 'SQLiteResult::next' => ['bool'], - 'SQLiteResult::numFields' => ['int'], - 'SQLiteResult::numRows' => ['int'], - 'SQLiteResult::prev' => ['bool'], - 'SQLiteResult::rewind' => ['bool'], - 'SQLiteResult::seek' => ['bool', 'rownum'=>'int'], - 'SQLiteResult::valid' => ['bool'], - 'SQLiteUnbuffered::column' => ['void', 'index_or_name'=>'', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::current' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::fetch' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::fetchAll' => ['array', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::fetchObject' => ['object', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::fetchSingle' => ['string', 'decode_binary='=>'bool'], - 'SQLiteUnbuffered::fieldName' => ['string', 'field_index'=>'int'], - 'SQLiteUnbuffered::next' => ['bool'], - 'SQLiteUnbuffered::numFields' => ['int'], - 'SQLiteUnbuffered::valid' => ['bool'], - 'SVM::__construct' => ['void'], - 'SVM::getOptions' => ['array'], - 'SVM::setOptions' => ['bool', 'params'=>'array'], - 'SVMModel::__construct' => ['void', 'filename='=>'string'], - 'SVMModel::checkProbabilityModel' => ['bool'], - 'SVMModel::getLabels' => ['array'], - 'SVMModel::getNrClass' => ['int'], - 'SVMModel::getSvmType' => ['int'], - 'SVMModel::getSvrProbability' => ['float'], - 'SVMModel::load' => ['bool', 'filename'=>'string'], - 'SVMModel::predict' => ['float', 'data'=>'array'], - 'SVMModel::predict_probability' => ['float', 'data'=>'array'], - 'SVMModel::save' => ['bool', 'filename'=>'string'], - 'SWFAction::__construct' => ['void', 'script'=>'string'], - 'SWFBitmap::__construct' => ['void', 'file'=>'', 'alphafile='=>''], - 'SWFBitmap::getHeight' => ['float'], - 'SWFBitmap::getWidth' => ['float'], - 'SWFButton::__construct' => ['void'], - 'SWFButton::addASound' => ['SWFSoundInstance', 'sound'=>'swfsound', 'flags'=>'int'], - 'SWFButton::addAction' => ['void', 'action'=>'swfaction', 'flags'=>'int'], - 'SWFButton::addShape' => ['void', 'shape'=>'swfshape', 'flags'=>'int'], - 'SWFButton::setAction' => ['void', 'action'=>'swfaction'], - 'SWFButton::setDown' => ['void', 'shape'=>'swfshape'], - 'SWFButton::setHit' => ['void', 'shape'=>'swfshape'], - 'SWFButton::setMenu' => ['void', 'flag'=>'int'], - 'SWFButton::setOver' => ['void', 'shape'=>'swfshape'], - 'SWFButton::setUp' => ['void', 'shape'=>'swfshape'], - 'SWFDisplayItem::addAction' => ['void', 'action'=>'swfaction', 'flags'=>'int'], - 'SWFDisplayItem::addColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFDisplayItem::endMask' => ['void'], - 'SWFDisplayItem::getRot' => ['float'], - 'SWFDisplayItem::getX' => ['float'], - 'SWFDisplayItem::getXScale' => ['float'], - 'SWFDisplayItem::getXSkew' => ['float'], - 'SWFDisplayItem::getY' => ['float'], - 'SWFDisplayItem::getYScale' => ['float'], - 'SWFDisplayItem::getYSkew' => ['float'], - 'SWFDisplayItem::move' => ['void', 'dx'=>'float', 'dy'=>'float'], - 'SWFDisplayItem::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], - 'SWFDisplayItem::multColor' => ['void', 'red'=>'float', 'green'=>'float', 'blue'=>'float', 'a='=>'float'], - 'SWFDisplayItem::remove' => ['void'], - 'SWFDisplayItem::rotate' => ['void', 'angle'=>'float'], - 'SWFDisplayItem::rotateTo' => ['void', 'angle'=>'float'], - 'SWFDisplayItem::scale' => ['void', 'dx'=>'float', 'dy'=>'float'], - 'SWFDisplayItem::scaleTo' => ['void', 'x'=>'float', 'y='=>'float'], - 'SWFDisplayItem::setDepth' => ['void', 'depth'=>'int'], - 'SWFDisplayItem::setMaskLevel' => ['void', 'level'=>'int'], - 'SWFDisplayItem::setMatrix' => ['void', 'a'=>'float', 'b'=>'float', 'c'=>'float', 'd'=>'float', 'x'=>'float', 'y'=>'float'], - 'SWFDisplayItem::setName' => ['void', 'name'=>'string'], - 'SWFDisplayItem::setRatio' => ['void', 'ratio'=>'float'], - 'SWFDisplayItem::skewX' => ['void', 'ddegrees'=>'float'], - 'SWFDisplayItem::skewXTo' => ['void', 'degrees'=>'float'], - 'SWFDisplayItem::skewY' => ['void', 'ddegrees'=>'float'], - 'SWFDisplayItem::skewYTo' => ['void', 'degrees'=>'float'], - 'SWFFill::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], - 'SWFFill::rotateTo' => ['void', 'angle'=>'float'], - 'SWFFill::scaleTo' => ['void', 'x'=>'float', 'y='=>'float'], - 'SWFFill::skewXTo' => ['void', 'x'=>'float'], - 'SWFFill::skewYTo' => ['void', 'y'=>'float'], - 'SWFFont::__construct' => ['void', 'filename'=>'string'], - 'SWFFont::getAscent' => ['float'], - 'SWFFont::getDescent' => ['float'], - 'SWFFont::getLeading' => ['float'], - 'SWFFont::getShape' => ['string', 'code'=>'int'], - 'SWFFont::getUTF8Width' => ['float', 'string'=>'string'], - 'SWFFont::getWidth' => ['float', 'string'=>'string'], - 'SWFFontChar::addChars' => ['void', 'char'=>'string'], - 'SWFFontChar::addUTF8Chars' => ['void', 'char'=>'string'], - 'SWFGradient::__construct' => ['void'], - 'SWFGradient::addEntry' => ['void', 'ratio'=>'float', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], - 'SWFMorph::__construct' => ['void'], - 'SWFMorph::getShape1' => ['SWFShape'], - 'SWFMorph::getShape2' => ['SWFShape'], - 'SWFMovie::__construct' => ['void', 'version='=>'int'], - 'SWFMovie::add' => ['mixed', 'instance'=>'object'], - 'SWFMovie::addExport' => ['void', 'char'=>'swfcharacter', 'name'=>'string'], - 'SWFMovie::addFont' => ['mixed', 'font'=>'swffont'], - 'SWFMovie::importChar' => ['SWFSprite', 'libswf'=>'string', 'name'=>'string'], - 'SWFMovie::importFont' => ['SWFFontChar', 'libswf'=>'string', 'name'=>'string'], - 'SWFMovie::labelFrame' => ['void', 'label'=>'string'], - 'SWFMovie::namedAnchor' => [''], - 'SWFMovie::nextFrame' => ['void'], - 'SWFMovie::output' => ['int', 'compression='=>'int'], - 'SWFMovie::protect' => [''], - 'SWFMovie::remove' => ['void', 'instance'=>'object'], - 'SWFMovie::save' => ['int', 'filename'=>'string', 'compression='=>'int'], - 'SWFMovie::saveToFile' => ['int', 'x'=>'resource', 'compression='=>'int'], - 'SWFMovie::setDimension' => ['void', 'width'=>'float', 'height'=>'float'], - 'SWFMovie::setFrames' => ['void', 'number'=>'int'], - 'SWFMovie::setRate' => ['void', 'rate'=>'float'], - 'SWFMovie::setbackground' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'SWFMovie::startSound' => ['SWFSoundInstance', 'sound'=>'swfsound'], - 'SWFMovie::stopSound' => ['void', 'sound'=>'swfsound'], - 'SWFMovie::streamMP3' => ['int', 'mp3file'=>'mixed', 'skip='=>'float'], - 'SWFMovie::writeExports' => ['void'], - 'SWFPrebuiltClip::__construct' => ['void', 'file'=>''], - 'SWFShape::__construct' => ['void'], - 'SWFShape::addFill' => ['SWFFill', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int', 'bitmap='=>'swfbitmap', 'flags='=>'int', 'gradient='=>'swfgradient'], - 'SWFShape::addFill\'1' => ['SWFFill', 'bitmap'=>'SWFBitmap', 'flags='=>'int'], - 'SWFShape::addFill\'2' => ['SWFFill', 'gradient'=>'SWFGradient', 'flags='=>'int'], - 'SWFShape::drawArc' => ['void', 'r'=>'float', 'startangle'=>'float', 'endangle'=>'float'], - 'SWFShape::drawCircle' => ['void', 'r'=>'float'], - 'SWFShape::drawCubic' => ['int', 'bx'=>'float', 'by'=>'float', 'cx'=>'float', 'cy'=>'float', 'dx'=>'float', 'dy'=>'float'], - 'SWFShape::drawCubicTo' => ['int', 'bx'=>'float', 'by'=>'float', 'cx'=>'float', 'cy'=>'float', 'dx'=>'float', 'dy'=>'float'], - 'SWFShape::drawCurve' => ['int', 'controldx'=>'float', 'controldy'=>'float', 'anchordx'=>'float', 'anchordy'=>'float', 'targetdx='=>'float', 'targetdy='=>'float'], - 'SWFShape::drawCurveTo' => ['int', 'controlx'=>'float', 'controly'=>'float', 'anchorx'=>'float', 'anchory'=>'float', 'targetx='=>'float', 'targety='=>'float'], - 'SWFShape::drawGlyph' => ['void', 'font'=>'swffont', 'character'=>'string', 'size='=>'int'], - 'SWFShape::drawLine' => ['void', 'dx'=>'float', 'dy'=>'float'], - 'SWFShape::drawLineTo' => ['void', 'x'=>'float', 'y'=>'float'], - 'SWFShape::movePen' => ['void', 'dx'=>'float', 'dy'=>'float'], - 'SWFShape::movePenTo' => ['void', 'x'=>'float', 'y'=>'float'], - 'SWFShape::setLeftFill' => ['', 'fill'=>'swfgradient', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFShape::setLine' => ['', 'shape'=>'swfshape', 'width'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFShape::setRightFill' => ['', 'fill'=>'swfgradient', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFSound' => ['SWFSound', 'filename'=>'string', 'flags='=>'int'], - 'SWFSound::__construct' => ['void', 'filename'=>'string', 'flags='=>'int'], - 'SWFSoundInstance::loopCount' => ['void', 'point'=>'int'], - 'SWFSoundInstance::loopInPoint' => ['void', 'point'=>'int'], - 'SWFSoundInstance::loopOutPoint' => ['void', 'point'=>'int'], - 'SWFSoundInstance::noMultiple' => ['void'], - 'SWFSprite::__construct' => ['void'], - 'SWFSprite::add' => ['void', 'object'=>'object'], - 'SWFSprite::labelFrame' => ['void', 'label'=>'string'], - 'SWFSprite::nextFrame' => ['void'], - 'SWFSprite::remove' => ['void', 'object'=>'object'], - 'SWFSprite::setFrames' => ['void', 'number'=>'int'], - 'SWFSprite::startSound' => ['SWFSoundInstance', 'sount'=>'swfsound'], - 'SWFSprite::stopSound' => ['void', 'sount'=>'swfsound'], - 'SWFText::__construct' => ['void'], - 'SWFText::addString' => ['void', 'string'=>'string'], - 'SWFText::addUTF8String' => ['void', 'text'=>'string'], - 'SWFText::getAscent' => ['float'], - 'SWFText::getDescent' => ['float'], - 'SWFText::getLeading' => ['float'], - 'SWFText::getUTF8Width' => ['float', 'string'=>'string'], - 'SWFText::getWidth' => ['float', 'string'=>'string'], - 'SWFText::moveTo' => ['void', 'x'=>'float', 'y'=>'float'], - 'SWFText::setColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFText::setFont' => ['void', 'font'=>'swffont'], - 'SWFText::setHeight' => ['void', 'height'=>'float'], - 'SWFText::setSpacing' => ['void', 'spacing'=>'float'], - 'SWFTextField::__construct' => ['void', 'flags='=>'int'], - 'SWFTextField::addChars' => ['void', 'chars'=>'string'], - 'SWFTextField::addString' => ['void', 'string'=>'string'], - 'SWFTextField::align' => ['void', 'alignement'=>'int'], - 'SWFTextField::setBounds' => ['void', 'width'=>'float', 'height'=>'float'], - 'SWFTextField::setColor' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'SWFTextField::setFont' => ['void', 'font'=>'swffont'], - 'SWFTextField::setHeight' => ['void', 'height'=>'float'], - 'SWFTextField::setIndentation' => ['void', 'width'=>'float'], - 'SWFTextField::setLeftMargin' => ['void', 'width'=>'float'], - 'SWFTextField::setLineSpacing' => ['void', 'height'=>'float'], - 'SWFTextField::setMargins' => ['void', 'left'=>'float', 'right'=>'float'], - 'SWFTextField::setName' => ['void', 'name'=>'string'], - 'SWFTextField::setPadding' => ['void', 'padding'=>'float'], - 'SWFTextField::setRightMargin' => ['void', 'width'=>'float'], - 'SWFVideoStream::__construct' => ['void', 'file='=>'string'], - 'SWFVideoStream::getNumFrames' => ['int'], - 'SWFVideoStream::setDimension' => ['void', 'x'=>'int', 'y'=>'int'], - 'Saxon\SaxonProcessor::__construct' => ['void', 'license='=>'bool', 'cwd='=>'string'], - 'Saxon\SaxonProcessor::createAtomicValue' => ['Saxon\XdmValue', 'primitive_type_val'=>'bool|float|int|string'], - 'Saxon\SaxonProcessor::newSchemaValidator' => ['Saxon\SchemaValidator'], - 'Saxon\SaxonProcessor::newXPathProcessor' => ['Saxon\XPathProcessor'], - 'Saxon\SaxonProcessor::newXQueryProcessor' => ['Saxon\XQueryProcessor'], - 'Saxon\SaxonProcessor::newXsltProcessor' => ['Saxon\XsltProcessor'], - 'Saxon\SaxonProcessor::parseXmlFromFile' => ['Saxon\XdmNode', 'fileName'=>'string'], - 'Saxon\SaxonProcessor::parseXmlFromString' => ['Saxon\XdmNode', 'value'=>'string'], - 'Saxon\SaxonProcessor::registerPHPFunctions' => ['void', 'library'=>'string'], - 'Saxon\SaxonProcessor::setConfigurationProperty' => ['void', 'name'=>'string', 'value'=>'string'], - 'Saxon\SaxonProcessor::setResourceDirectory' => ['void', 'dir'=>'string'], - 'Saxon\SaxonProcessor::setcwd' => ['void', 'cwd'=>'string'], - 'Saxon\SaxonProcessor::version' => ['string'], - 'Saxon\SchemaValidator::clearParameters' => ['void'], - 'Saxon\SchemaValidator::clearProperties' => ['void'], - 'Saxon\SchemaValidator::exceptionClear' => ['void'], - 'Saxon\SchemaValidator::getErrorCode' => ['string', 'i'=>'int'], - 'Saxon\SchemaValidator::getErrorMessage' => ['string', 'i'=>'int'], - 'Saxon\SchemaValidator::getExceptionCount' => ['int'], - 'Saxon\SchemaValidator::getValidationReport' => ['Saxon\XdmNode'], - 'Saxon\SchemaValidator::registerSchemaFromFile' => ['void', 'fileName'=>'string'], - 'Saxon\SchemaValidator::registerSchemaFromString' => ['void', 'schemaStr'=>'string'], - 'Saxon\SchemaValidator::setOutputFile' => ['void', 'fileName'=>'string'], - 'Saxon\SchemaValidator::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], - 'Saxon\SchemaValidator::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], - 'Saxon\SchemaValidator::setSourceNode' => ['void', 'node'=>'Saxon\XdmNode'], - 'Saxon\SchemaValidator::validate' => ['void', 'filename='=>'?string'], - 'Saxon\SchemaValidator::validateToNode' => ['Saxon\XdmNode', 'filename='=>'?string'], - 'Saxon\XPathProcessor::clearParameters' => ['void'], - 'Saxon\XPathProcessor::clearProperties' => ['void'], - 'Saxon\XPathProcessor::declareNamespace' => ['void', 'prefix'=>'', 'namespace'=>''], - 'Saxon\XPathProcessor::effectiveBooleanValue' => ['bool', 'xpathStr'=>'string'], - 'Saxon\XPathProcessor::evaluate' => ['Saxon\XdmValue', 'xpathStr'=>'string'], - 'Saxon\XPathProcessor::evaluateSingle' => ['Saxon\XdmItem', 'xpathStr'=>'string'], - 'Saxon\XPathProcessor::exceptionClear' => ['void'], - 'Saxon\XPathProcessor::getErrorCode' => ['string', 'i'=>'int'], - 'Saxon\XPathProcessor::getErrorMessage' => ['string', 'i'=>'int'], - 'Saxon\XPathProcessor::getExceptionCount' => ['int'], - 'Saxon\XPathProcessor::setBaseURI' => ['void', 'uri'=>'string'], - 'Saxon\XPathProcessor::setContextFile' => ['void', 'fileName'=>'string'], - 'Saxon\XPathProcessor::setContextItem' => ['void', 'item'=>'Saxon\XdmItem'], - 'Saxon\XPathProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], - 'Saxon\XPathProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], - 'Saxon\XQueryProcessor::clearParameters' => ['void'], - 'Saxon\XQueryProcessor::clearProperties' => ['void'], - 'Saxon\XQueryProcessor::declareNamespace' => ['void', 'prefix'=>'string', 'namespace'=>'string'], - 'Saxon\XQueryProcessor::exceptionClear' => ['void'], - 'Saxon\XQueryProcessor::getErrorCode' => ['string', 'i'=>'int'], - 'Saxon\XQueryProcessor::getErrorMessage' => ['string', 'i'=>'int'], - 'Saxon\XQueryProcessor::getExceptionCount' => ['int'], - 'Saxon\XQueryProcessor::runQueryToFile' => ['void', 'outfilename'=>'string'], - 'Saxon\XQueryProcessor::runQueryToString' => ['?string'], - 'Saxon\XQueryProcessor::runQueryToValue' => ['?Saxon\XdmValue'], - 'Saxon\XQueryProcessor::setContextItem' => ['void', 'object'=>'Saxon\XdmAtomicValue|Saxon\XdmItem|Saxon\XdmNode|Saxon\XdmValue'], - 'Saxon\XQueryProcessor::setContextItemFromFile' => ['void', 'fileName'=>'string'], - 'Saxon\XQueryProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], - 'Saxon\XQueryProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], - 'Saxon\XQueryProcessor::setQueryBaseURI' => ['void', 'uri'=>'string'], - 'Saxon\XQueryProcessor::setQueryContent' => ['void', 'string'=>'string'], - 'Saxon\XQueryProcessor::setQueryFile' => ['void', 'filename'=>'string'], - 'Saxon\XQueryProcessor::setQueryItem' => ['void', 'item'=>'Saxon\XdmItem'], - 'Saxon\XdmAtomicValue::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], - 'Saxon\XdmAtomicValue::getAtomicValue' => ['?Saxon\XdmAtomicValue'], - 'Saxon\XdmAtomicValue::getBooleanValue' => ['bool'], - 'Saxon\XdmAtomicValue::getDoubleValue' => ['float'], - 'Saxon\XdmAtomicValue::getHead' => ['Saxon\XdmItem'], - 'Saxon\XdmAtomicValue::getLongValue' => ['int'], - 'Saxon\XdmAtomicValue::getNodeValue' => ['?Saxon\XdmNode'], - 'Saxon\XdmAtomicValue::getStringValue' => ['string'], - 'Saxon\XdmAtomicValue::isAtomic' => ['true'], - 'Saxon\XdmAtomicValue::isNode' => ['bool'], - 'Saxon\XdmAtomicValue::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], - 'Saxon\XdmAtomicValue::size' => ['int'], - 'Saxon\XdmItem::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], - 'Saxon\XdmItem::getAtomicValue' => ['?Saxon\XdmAtomicValue'], - 'Saxon\XdmItem::getHead' => ['Saxon\XdmItem'], - 'Saxon\XdmItem::getNodeValue' => ['?Saxon\XdmNode'], - 'Saxon\XdmItem::getStringValue' => ['string'], - 'Saxon\XdmItem::isAtomic' => ['bool'], - 'Saxon\XdmItem::isNode' => ['bool'], - 'Saxon\XdmItem::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], - 'Saxon\XdmItem::size' => ['int'], - 'Saxon\XdmNode::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], - 'Saxon\XdmNode::getAtomicValue' => ['?Saxon\XdmAtomicValue'], - 'Saxon\XdmNode::getAttributeCount' => ['int'], - 'Saxon\XdmNode::getAttributeNode' => ['?Saxon\XdmNode', 'index'=>'int'], - 'Saxon\XdmNode::getAttributeValue' => ['?string', 'index'=>'int'], - 'Saxon\XdmNode::getChildCount' => ['int'], - 'Saxon\XdmNode::getChildNode' => ['?Saxon\XdmNode', 'index'=>'int'], - 'Saxon\XdmNode::getHead' => ['Saxon\XdmItem'], - 'Saxon\XdmNode::getNodeKind' => ['int'], - 'Saxon\XdmNode::getNodeName' => ['string'], - 'Saxon\XdmNode::getNodeValue' => ['?Saxon\XdmNode'], - 'Saxon\XdmNode::getParent' => ['?Saxon\XdmNode'], - 'Saxon\XdmNode::getStringValue' => ['string'], - 'Saxon\XdmNode::isAtomic' => ['false'], - 'Saxon\XdmNode::isNode' => ['bool'], - 'Saxon\XdmNode::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], - 'Saxon\XdmNode::size' => ['int'], - 'Saxon\XdmValue::addXdmItem' => ['', 'item'=>'Saxon\XdmItem'], - 'Saxon\XdmValue::getHead' => ['Saxon\XdmItem'], - 'Saxon\XdmValue::itemAt' => ['Saxon\XdmItem', 'index'=>'int'], - 'Saxon\XdmValue::size' => ['int'], - 'Saxon\XsltProcessor::clearParameters' => ['void'], - 'Saxon\XsltProcessor::clearProperties' => ['void'], - 'Saxon\XsltProcessor::compileFromFile' => ['void', 'fileName'=>'string'], - 'Saxon\XsltProcessor::compileFromString' => ['void', 'string'=>'string'], - 'Saxon\XsltProcessor::compileFromValue' => ['void', 'node'=>'Saxon\XdmNode'], - 'Saxon\XsltProcessor::exceptionClear' => ['void'], - 'Saxon\XsltProcessor::getErrorCode' => ['string', 'i'=>'int'], - 'Saxon\XsltProcessor::getErrorMessage' => ['string', 'i'=>'int'], - 'Saxon\XsltProcessor::getExceptionCount' => ['int'], - 'Saxon\XsltProcessor::setOutputFile' => ['void', 'fileName'=>'string'], - 'Saxon\XsltProcessor::setParameter' => ['void', 'name'=>'string', 'value'=>'Saxon\XdmValue'], - 'Saxon\XsltProcessor::setProperty' => ['void', 'name'=>'string', 'value'=>'string'], - 'Saxon\XsltProcessor::setSourceFromFile' => ['void', 'filename'=>'string'], - 'Saxon\XsltProcessor::setSourceFromXdmValue' => ['void', 'value'=>'Saxon\XdmValue'], - 'Saxon\XsltProcessor::transformFileToFile' => ['void', 'sourceFileName'=>'string', 'stylesheetFileName'=>'string', 'outputfileName'=>'string'], - 'Saxon\XsltProcessor::transformFileToString' => ['?string', 'sourceFileName'=>'string', 'stylesheetFileName'=>'string'], - 'Saxon\XsltProcessor::transformFileToValue' => ['Saxon\XdmValue', 'fileName'=>'string'], - 'Saxon\XsltProcessor::transformToFile' => ['void'], - 'Saxon\XsltProcessor::transformToString' => ['string'], - 'Saxon\XsltProcessor::transformToValue' => ['?Saxon\XdmValue'], - 'SeasLog::__destruct' => ['void'], - 'SeasLog::alert' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::analyzerCount' => ['mixed', 'level'=>'string', 'log_path='=>'string', 'key_word='=>'string'], - 'SeasLog::analyzerDetail' => ['mixed', 'level'=>'string', 'log_path='=>'string', 'key_word='=>'string', 'start='=>'int', 'limit='=>'int', 'order='=>'int'], - 'SeasLog::closeLoggerStream' => ['bool', 'model'=>'int', 'logger'=>'string'], - 'SeasLog::critical' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::debug' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::emergency' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::error' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::flushBuffer' => ['bool'], - 'SeasLog::getBasePath' => ['string'], - 'SeasLog::getBuffer' => ['array'], - 'SeasLog::getBufferEnabled' => ['bool'], - 'SeasLog::getDatetimeFormat' => ['string'], - 'SeasLog::getLastLogger' => ['string'], - 'SeasLog::getRequestID' => ['string'], - 'SeasLog::getRequestVariable' => ['bool', 'key'=>'int'], - 'SeasLog::info' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::log' => ['bool', 'level'=>'string', 'message='=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::notice' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeasLog::setBasePath' => ['bool', 'base_path'=>'string'], - 'SeasLog::setDatetimeFormat' => ['bool', 'format'=>'string'], - 'SeasLog::setLogger' => ['bool', 'logger'=>'string'], - 'SeasLog::setRequestID' => ['bool', 'request_id'=>'string'], - 'SeasLog::setRequestVariable' => ['bool', 'key'=>'int', 'value'=>'string'], - 'SeasLog::warning' => ['bool', 'message'=>'string', 'content='=>'array', 'logger='=>'string'], - 'SeekableIterator::__construct' => ['void'], - 'SeekableIterator::current' => ['mixed'], - 'SeekableIterator::key' => ['int|string'], - 'SeekableIterator::next' => ['void'], - 'SeekableIterator::rewind' => ['void'], - 'SeekableIterator::seek' => ['void', 'position'=>'int'], - 'SeekableIterator::valid' => ['bool'], - 'Serializable::__construct' => ['void'], - 'Serializable::serialize' => ['?string'], - 'Serializable::unserialize' => ['void', 'serialized'=>'string'], - 'ServerRequest::withInput' => ['ServerRequest', 'input'=>'mixed'], - 'ServerRequest::withParam' => ['ServerRequest', 'key'=>'int|string', 'value'=>'mixed'], - 'ServerRequest::withParams' => ['ServerRequest', 'params'=>'mixed'], - 'ServerRequest::withUrl' => ['ServerRequest', 'url'=>'array'], - 'ServerRequest::withoutParams' => ['ServerRequest', 'params'=>'int|string'], - 'ServerResponse::addHeader' => ['void', 'label'=>'string', 'value'=>'string'], - 'ServerResponse::date' => ['string', 'date'=>'string|DateTimeInterface'], - 'ServerResponse::getHeader' => ['string', 'label'=>'string'], - 'ServerResponse::getHeaders' => ['string[]'], - 'ServerResponse::getStatus' => ['int'], - 'ServerResponse::getVersion' => ['string'], - 'ServerResponse::setHeader' => ['void', 'label'=>'string', 'value'=>'string'], - 'ServerResponse::setStatus' => ['void', 'status'=>'int'], - 'ServerResponse::setVersion' => ['void', 'version'=>'string'], - 'SessionHandler::close' => ['bool'], - 'SessionHandler::create_sid' => ['string'], - 'SessionHandler::destroy' => ['bool', 'id'=>'string'], - 'SessionHandler::gc' => ['bool', 'max_lifetime'=>'int'], - 'SessionHandler::open' => ['bool', 'path'=>'string', 'name'=>'string'], - 'SessionHandler::read' => ['string|false', 'id'=>'string'], - 'SessionHandler::write' => ['bool', 'id'=>'string', 'data'=>'string'], - 'SessionHandlerInterface::close' => ['bool'], - 'SessionHandlerInterface::destroy' => ['bool', 'id'=>'string'], - 'SessionHandlerInterface::gc' => ['int|false', 'max_lifetime'=>'int'], - 'SessionHandlerInterface::open' => ['bool', 'path'=>'string', 'name'=>'string'], - 'SessionHandlerInterface::read' => ['string|false', 'id'=>'string'], - 'SessionHandlerInterface::write' => ['bool', 'id'=>'string', 'data'=>'string'], - 'SessionIdInterface::create_sid' => ['string'], - 'SessionUpdateTimestampHandler::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'], - 'SessionUpdateTimestampHandler::validateId' => ['char', 'id'=>'string'], - 'SessionUpdateTimestampHandlerInterface::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'], - 'SessionUpdateTimestampHandlerInterface::validateId' => ['bool', 'id'=>'string'], - 'SimpleXMLElement::__construct' => ['void', 'data'=>'string', 'options='=>'int', 'dataIsURL='=>'bool', 'namespaceOrPrefix='=>'string', 'isPrefix='=>'bool'], - 'SimpleXMLElement::__get' => ['SimpleXMLElement', 'name'=>'string'], - 'SimpleXMLElement::__toString' => ['string'], - 'SimpleXMLElement::addAttribute' => ['void', 'qualifiedName'=>'string', 'value'=>'string', 'namespace='=>'?string'], - 'SimpleXMLElement::addChild' => ['?SimpleXMLElement', 'qualifiedName'=>'string', 'value='=>'?string', 'namespace='=>'?string'], - 'SimpleXMLElement::asXML' => ['string|bool', 'filename'=>'string'], - 'SimpleXMLElement::asXML\'1' => ['string|false'], - 'SimpleXMLElement::attributes' => ['?SimpleXMLElement', 'namespaceOrPrefix='=>'?string', 'isPrefix='=>'bool'], - 'SimpleXMLElement::children' => ['?SimpleXMLElement', 'namespaceOrPrefix='=>'?string', 'isPrefix='=>'bool'], - 'SimpleXMLElement::count' => ['int'], - 'SimpleXMLElement::getDocNamespaces' => ['array', 'recursive='=>'bool', 'fromRoot='=>'bool'], - 'SimpleXMLElement::getName' => ['string'], - 'SimpleXMLElement::getNamespaces' => ['array', 'recursive='=>'bool'], - 'SimpleXMLElement::offsetExists' => ['bool', 'offset'=>'int|string'], - 'SimpleXMLElement::offsetGet' => ['SimpleXMLElement', 'offset'=>'int|string'], - 'SimpleXMLElement::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'SimpleXMLElement::offsetUnset' => ['void', 'offset'=>'int|string'], - 'SimpleXMLElement::registerXPathNamespace' => ['bool', 'prefix'=>'string', 'namespace'=>'string'], - 'SimpleXMLElement::saveXML' => ['string|bool', 'filename='=>'string'], - 'SimpleXMLElement::xpath' => ['SimpleXMLElement[]|false|null', 'expression'=>'string'], - 'SimpleXMLIterator::current' => ['?SimpleXMLIterator'], - 'SimpleXMLIterator::getChildren' => ['?SimpleXMLIterator'], - 'SimpleXMLIterator::hasChildren' => ['bool'], - 'SimpleXMLIterator::key' => ['string|false'], - 'SimpleXMLIterator::next' => ['void'], - 'SimpleXMLIterator::rewind' => ['void'], - 'SimpleXMLIterator::valid' => ['bool'], - 'SoapClient::SoapClient' => ['object', 'wsdl'=>'mixed', 'options='=>'array|null'], - 'SoapClient::__call' => ['', 'function_name'=>'string', 'arguments'=>'array'], - 'SoapClient::__construct' => ['void', 'wsdl'=>'mixed', 'options='=>'array|null'], - 'SoapClient::__doRequest' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'], - 'SoapClient::__getCookies' => ['array'], - 'SoapClient::__getFunctions' => ['?array'], - 'SoapClient::__getLastRequest' => ['?string'], - 'SoapClient::__getLastRequestHeaders' => ['?string'], - 'SoapClient::__getLastResponse' => ['?string'], - 'SoapClient::__getLastResponseHeaders' => ['?string'], - 'SoapClient::__getTypes' => ['?array'], - 'SoapClient::__setCookie' => ['', 'name'=>'string', 'value='=>'string'], - 'SoapClient::__setLocation' => ['string', 'new_location='=>'string'], - 'SoapClient::__setSoapHeaders' => ['bool', 'soapheaders='=>''], - 'SoapClient::__soapCall' => ['', 'function_name'=>'string', 'arguments'=>'array', 'options='=>'array', 'input_headers='=>'SoapHeader|array', '&w_output_headers='=>'array'], - 'SoapFault::SoapFault' => ['object', 'faultcode'=>'string', 'faultstring'=>'string', 'faultactor='=>'?string', 'detail='=>'?mixed', 'faultname='=>'?string', 'headerfault='=>'?mixed'], - 'SoapFault::__clone' => ['void'], - 'SoapFault::__construct' => ['void', 'code'=>'array|string|null', 'string'=>'string', 'actor='=>'?string', 'details='=>'?mixed', 'name='=>'?string', 'headerFault='=>'?mixed'], - 'SoapFault::__toString' => ['string'], - 'SoapFault::__wakeup' => ['void'], - 'SoapFault::getCode' => ['int'], - 'SoapFault::getFile' => ['string'], - 'SoapFault::getLine' => ['int'], - 'SoapFault::getMessage' => ['string'], - 'SoapFault::getPrevious' => ['?Exception|?Throwable'], - 'SoapFault::getTrace' => ['list\',args?:array}>'], - 'SoapFault::getTraceAsString' => ['string'], - 'SoapHeader::SoapHeader' => ['object', 'namespace'=>'string', 'name'=>'string', 'data='=>'mixed', 'mustunderstand='=>'bool', 'actor='=>'string'], - 'SoapHeader::__construct' => ['void', 'namespace'=>'string', 'name'=>'string', 'data='=>'mixed', 'mustunderstand='=>'bool', 'actor='=>'string'], - 'SoapParam::SoapParam' => ['object', 'data'=>'mixed', 'name'=>'string'], - 'SoapParam::__construct' => ['void', 'data'=>'mixed', 'name'=>'string'], - 'SoapServer::SoapServer' => ['object', 'wsdl'=>'?string', 'options='=>'array'], - 'SoapServer::__construct' => ['void', 'wsdl'=>'?string', 'options='=>'array'], - 'SoapServer::addFunction' => ['void', 'functions'=>'mixed'], - 'SoapServer::addSoapHeader' => ['void', 'object'=>'SoapHeader'], - 'SoapServer::fault' => ['void', 'code'=>'string', 'string'=>'string', 'actor='=>'string', 'details='=>'string', 'name='=>'string'], - 'SoapServer::getFunctions' => ['array'], - 'SoapServer::handle' => ['void', 'soap_request='=>'string'], - 'SoapServer::setClass' => ['void', 'class_name'=>'string', '...args='=>'mixed'], - 'SoapServer::setObject' => ['void', 'object'=>'object'], - 'SoapServer::setPersistence' => ['void', 'mode'=>'int'], - 'SoapVar::SoapVar' => ['object', 'data'=>'mixed', 'encoding'=>'int', 'type_name='=>'string|null', 'type_namespace='=>'string|null', 'node_name='=>'string|null', 'node_namespace='=>'string|null'], - 'SoapVar::__construct' => ['void', 'data'=>'mixed', 'encoding'=>'int', 'type_name='=>'string|null', 'type_namespace='=>'string|null', 'node_name='=>'string|null', 'node_namespace='=>'string|null'], - 'Sodium\add' => ['void', '&left'=>'string', 'right'=>'string'], - 'Sodium\bin2hex' => ['string', 'binary'=>'string'], - 'Sodium\compare' => ['int', 'left'=>'string', 'right'=>'string'], - 'Sodium\crypto_aead_aes256gcm_decrypt' => ['string|false', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_aes256gcm_encrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_aes256gcm_is_available' => ['bool'], - 'Sodium\crypto_aead_chacha20poly1305_decrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_aead_chacha20poly1305_encrypt' => ['string', 'msg'=>'string', 'nonce'=>'string', 'key'=>'string', 'ad='=>'string'], - 'Sodium\crypto_auth' => ['string', 'msg'=>'string', 'key'=>'string'], - 'Sodium\crypto_auth_verify' => ['bool', 'mac'=>'string', 'msg'=>'string', 'key'=>'string'], - 'Sodium\crypto_box' => ['string', 'msg'=>'string', 'nonce'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_keypair' => ['string'], - 'Sodium\crypto_box_keypair_from_secretkey_and_publickey' => ['string', 'secretkey'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_box_open' => ['string', 'msg'=>'string', 'nonce'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_publickey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_box_publickey_from_secretkey' => ['string', 'secretkey'=>'string'], - 'Sodium\crypto_box_seal' => ['string', 'message'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_box_seal_open' => ['string', 'encrypted'=>'string', 'keypair'=>'string'], - 'Sodium\crypto_box_secretkey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_box_seed_keypair' => ['string', 'seed'=>'string'], - 'Sodium\crypto_generichash' => ['string', 'input'=>'string', 'key='=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_final' => ['string', 'state'=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_init' => ['string', 'key='=>'string', 'length='=>'int'], - 'Sodium\crypto_generichash_update' => ['bool', '&hashState'=>'string', 'append'=>'string'], - 'Sodium\crypto_kx' => ['string', 'secretkey'=>'string', 'publickey'=>'string', 'client_publickey'=>'string', 'server_publickey'=>'string'], - 'Sodium\crypto_pwhash' => ['string', 'out_len'=>'int', 'passwd'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256' => ['string', 'out_len'=>'int', 'passwd'=>'string', 'salt'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256_str' => ['string', 'passwd'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_scryptsalsa208sha256_str_verify' => ['bool', 'hash'=>'string', 'passwd'=>'string'], - 'Sodium\crypto_pwhash_str' => ['string', 'passwd'=>'string', 'opslimit'=>'int', 'memlimit'=>'int'], - 'Sodium\crypto_pwhash_str_verify' => ['bool', 'hash'=>'string', 'passwd'=>'string'], - 'Sodium\crypto_scalarmult' => ['string', 'ecdhA'=>'string', 'ecdhB'=>'string'], - 'Sodium\crypto_scalarmult_base' => ['string', 'sk'=>'string'], - 'Sodium\crypto_secretbox' => ['string', 'plaintext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_secretbox_open' => ['string', 'ciphertext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_shorthash' => ['string', 'message'=>'string', 'key'=>'string'], - 'Sodium\crypto_sign' => ['string', 'message'=>'string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_detached' => ['string', 'message'=>'string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_ed25519_pk_to_curve25519' => ['string', 'sign_pk'=>'string'], - 'Sodium\crypto_sign_ed25519_sk_to_curve25519' => ['string', 'sign_sk'=>'string'], - 'Sodium\crypto_sign_keypair' => ['string'], - 'Sodium\crypto_sign_keypair_from_secretkey_and_publickey' => ['string', 'secretkey'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_sign_open' => ['string|false', 'signed_message'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_sign_publickey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_sign_publickey_from_secretkey' => ['string', 'secretkey'=>'string'], - 'Sodium\crypto_sign_secretkey' => ['string', 'keypair'=>'string'], - 'Sodium\crypto_sign_seed_keypair' => ['string', 'seed'=>'string'], - 'Sodium\crypto_sign_verify_detached' => ['bool', 'signature'=>'string', 'msg'=>'string', 'publickey'=>'string'], - 'Sodium\crypto_stream' => ['string', 'length'=>'int', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\crypto_stream_xor' => ['string', 'plaintext'=>'string', 'nonce'=>'string', 'key'=>'string'], - 'Sodium\hex2bin' => ['string', 'hex'=>'string'], - 'Sodium\increment' => ['string', '&nonce'=>'string'], - 'Sodium\library_version_major' => ['int'], - 'Sodium\library_version_minor' => ['int'], - 'Sodium\memcmp' => ['int', 'left'=>'string', 'right'=>'string'], - 'Sodium\memzero' => ['void', '&target'=>'string'], - 'Sodium\randombytes_buf' => ['string', 'length'=>'int'], - 'Sodium\randombytes_random16' => ['int|string'], - 'Sodium\randombytes_uniform' => ['int', 'upperBoundNonInclusive'=>'int'], - 'Sodium\version_string' => ['string'], - 'SolrClient::__construct' => ['void', 'clientOptions'=>'array'], - 'SolrClient::__destruct' => ['void'], - 'SolrClient::addDocument' => ['SolrUpdateResponse', 'doc'=>'SolrInputDocument', 'allowdups='=>'bool', 'commitwithin='=>'int'], - 'SolrClient::addDocuments' => ['SolrUpdateResponse', 'docs'=>'array', 'allowdups='=>'bool', 'commitwithin='=>'int'], - 'SolrClient::commit' => ['SolrUpdateResponse', 'maxsegments='=>'int', 'waitflush='=>'bool', 'waitsearcher='=>'bool'], - 'SolrClient::deleteById' => ['SolrUpdateResponse', 'id'=>'string'], - 'SolrClient::deleteByIds' => ['SolrUpdateResponse', 'ids'=>'array'], - 'SolrClient::deleteByQueries' => ['SolrUpdateResponse', 'queries'=>'array'], - 'SolrClient::deleteByQuery' => ['SolrUpdateResponse', 'query'=>'string'], - 'SolrClient::getById' => ['SolrQueryResponse', 'id'=>'string'], - 'SolrClient::getByIds' => ['SolrQueryResponse', 'ids'=>'array'], - 'SolrClient::getDebug' => ['string'], - 'SolrClient::getOptions' => ['array'], - 'SolrClient::optimize' => ['SolrUpdateResponse', 'maxsegments='=>'int', 'waitflush='=>'bool', 'waitsearcher='=>'bool'], - 'SolrClient::ping' => ['SolrPingResponse'], - 'SolrClient::query' => ['SolrQueryResponse', 'query'=>'SolrParams'], - 'SolrClient::request' => ['SolrUpdateResponse', 'raw_request'=>'string'], - 'SolrClient::rollback' => ['SolrUpdateResponse'], - 'SolrClient::setResponseWriter' => ['void', 'responsewriter'=>'string'], - 'SolrClient::setServlet' => ['bool', 'type'=>'int', 'value'=>'string'], - 'SolrClient::system' => ['SolrGenericResponse'], - 'SolrClient::threads' => ['SolrGenericResponse'], - 'SolrClientException::__clone' => ['void'], - 'SolrClientException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'SolrClientException::__toString' => ['string'], - 'SolrClientException::__wakeup' => ['void'], - 'SolrClientException::getCode' => ['int'], - 'SolrClientException::getFile' => ['string'], - 'SolrClientException::getInternalInfo' => ['array'], - 'SolrClientException::getLine' => ['int'], - 'SolrClientException::getMessage' => ['string'], - 'SolrClientException::getPrevious' => ['?Exception|?Throwable'], - 'SolrClientException::getTrace' => ['list\',args?:array}>'], - 'SolrClientException::getTraceAsString' => ['string'], - 'SolrCollapseFunction::__construct' => ['void', 'field'=>'string'], - 'SolrCollapseFunction::__toString' => ['string'], - 'SolrCollapseFunction::getField' => ['string'], - 'SolrCollapseFunction::getHint' => ['string'], - 'SolrCollapseFunction::getMax' => ['string'], - 'SolrCollapseFunction::getMin' => ['string'], - 'SolrCollapseFunction::getNullPolicy' => ['string'], - 'SolrCollapseFunction::getSize' => ['int'], - 'SolrCollapseFunction::setField' => ['SolrCollapseFunction', 'fieldName'=>'string'], - 'SolrCollapseFunction::setHint' => ['SolrCollapseFunction', 'hint'=>'string'], - 'SolrCollapseFunction::setMax' => ['SolrCollapseFunction', 'max'=>'string'], - 'SolrCollapseFunction::setMin' => ['SolrCollapseFunction', 'min'=>'string'], - 'SolrCollapseFunction::setNullPolicy' => ['SolrCollapseFunction', 'nullPolicy'=>'string'], - 'SolrCollapseFunction::setSize' => ['SolrCollapseFunction', 'size'=>'int'], - 'SolrDisMaxQuery::__construct' => ['void', 'q='=>'string'], - 'SolrDisMaxQuery::__destruct' => ['void'], - 'SolrDisMaxQuery::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrDisMaxQuery::addBigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], - 'SolrDisMaxQuery::addBoostQuery' => ['SolrDisMaxQuery', 'field'=>'string', 'value'=>'string', 'boost='=>'string'], - 'SolrDisMaxQuery::addExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrDisMaxQuery::addExpandSortField' => ['SolrQuery', 'field'=>'string', 'order'=>'string'], - 'SolrDisMaxQuery::addFacetDateField' => ['SolrQuery', 'dateField'=>'string'], - 'SolrDisMaxQuery::addFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::addFacetField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addFacetQuery' => ['SolrQuery', 'facetQuery'=>'string'], - 'SolrDisMaxQuery::addField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrDisMaxQuery::addGroupField' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::addGroupFunction' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::addGroupQuery' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::addGroupSortField' => ['SolrQuery', 'field'=>'string', 'order'=>'int'], - 'SolrDisMaxQuery::addHighlightField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addMltField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addMltQueryField' => ['SolrQuery', 'field'=>'string', 'boost'=>'float'], - 'SolrDisMaxQuery::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrDisMaxQuery::addPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], - 'SolrDisMaxQuery::addQueryField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost='=>'string'], - 'SolrDisMaxQuery::addSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], - 'SolrDisMaxQuery::addStatsFacet' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addStatsField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::addTrigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string', 'boost'=>'string', 'slop='=>'string'], - 'SolrDisMaxQuery::addUserField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::collapse' => ['SolrQuery', 'collapseFunction'=>'SolrCollapseFunction'], - 'SolrDisMaxQuery::get' => ['mixed', 'param_name'=>'string'], - 'SolrDisMaxQuery::getExpand' => ['bool'], - 'SolrDisMaxQuery::getExpandFilterQueries' => ['array'], - 'SolrDisMaxQuery::getExpandQuery' => ['array'], - 'SolrDisMaxQuery::getExpandRows' => ['int'], - 'SolrDisMaxQuery::getExpandSortFields' => ['array'], - 'SolrDisMaxQuery::getFacet' => ['bool'], - 'SolrDisMaxQuery::getFacetDateEnd' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetDateFields' => ['array'], - 'SolrDisMaxQuery::getFacetDateGap' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetDateHardEnd' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetDateOther' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetDateStart' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetFields' => ['array'], - 'SolrDisMaxQuery::getFacetLimit' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetMethod' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetMinCount' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetMissing' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetOffset' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetPrefix' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFacetQueries' => ['string'], - 'SolrDisMaxQuery::getFacetSort' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getFields' => ['string'], - 'SolrDisMaxQuery::getFilterQueries' => ['string'], - 'SolrDisMaxQuery::getGroup' => ['bool'], - 'SolrDisMaxQuery::getGroupCachePercent' => ['int'], - 'SolrDisMaxQuery::getGroupFacet' => ['bool'], - 'SolrDisMaxQuery::getGroupFields' => ['array'], - 'SolrDisMaxQuery::getGroupFormat' => ['string'], - 'SolrDisMaxQuery::getGroupFunctions' => ['array'], - 'SolrDisMaxQuery::getGroupLimit' => ['int'], - 'SolrDisMaxQuery::getGroupMain' => ['bool'], - 'SolrDisMaxQuery::getGroupNGroups' => ['bool'], - 'SolrDisMaxQuery::getGroupOffset' => ['bool'], - 'SolrDisMaxQuery::getGroupQueries' => ['array'], - 'SolrDisMaxQuery::getGroupSortFields' => ['array'], - 'SolrDisMaxQuery::getGroupTruncate' => ['bool'], - 'SolrDisMaxQuery::getHighlight' => ['bool'], - 'SolrDisMaxQuery::getHighlightAlternateField' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightFields' => ['array'], - 'SolrDisMaxQuery::getHighlightFormatter' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightFragmenter' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightFragsize' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => ['bool'], - 'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => ['int'], - 'SolrDisMaxQuery::getHighlightMergeContiguous' => ['bool', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => ['int'], - 'SolrDisMaxQuery::getHighlightRegexPattern' => ['string'], - 'SolrDisMaxQuery::getHighlightRegexSlop' => ['float'], - 'SolrDisMaxQuery::getHighlightRequireFieldMatch' => ['bool'], - 'SolrDisMaxQuery::getHighlightSimplePost' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightSimplePre' => ['string', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightSnippets' => ['int', 'field_override'=>'string'], - 'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => ['bool'], - 'SolrDisMaxQuery::getMlt' => ['bool'], - 'SolrDisMaxQuery::getMltBoost' => ['bool'], - 'SolrDisMaxQuery::getMltCount' => ['int'], - 'SolrDisMaxQuery::getMltFields' => ['array'], - 'SolrDisMaxQuery::getMltMaxNumQueryTerms' => ['int'], - 'SolrDisMaxQuery::getMltMaxNumTokens' => ['int'], - 'SolrDisMaxQuery::getMltMaxWordLength' => ['int'], - 'SolrDisMaxQuery::getMltMinDocFrequency' => ['int'], - 'SolrDisMaxQuery::getMltMinTermFrequency' => ['int'], - 'SolrDisMaxQuery::getMltMinWordLength' => ['int'], - 'SolrDisMaxQuery::getMltQueryFields' => ['array'], - 'SolrDisMaxQuery::getParam' => ['mixed', 'param_name'=>'string'], - 'SolrDisMaxQuery::getParams' => ['array'], - 'SolrDisMaxQuery::getPreparedParams' => ['array'], - 'SolrDisMaxQuery::getQuery' => ['string'], - 'SolrDisMaxQuery::getRows' => ['int'], - 'SolrDisMaxQuery::getSortFields' => ['array'], - 'SolrDisMaxQuery::getStart' => ['int'], - 'SolrDisMaxQuery::getStats' => ['bool'], - 'SolrDisMaxQuery::getStatsFacets' => ['array'], - 'SolrDisMaxQuery::getStatsFields' => ['array'], - 'SolrDisMaxQuery::getTerms' => ['bool'], - 'SolrDisMaxQuery::getTermsField' => ['string'], - 'SolrDisMaxQuery::getTermsIncludeLowerBound' => ['bool'], - 'SolrDisMaxQuery::getTermsIncludeUpperBound' => ['bool'], - 'SolrDisMaxQuery::getTermsLimit' => ['int'], - 'SolrDisMaxQuery::getTermsLowerBound' => ['string'], - 'SolrDisMaxQuery::getTermsMaxCount' => ['int'], - 'SolrDisMaxQuery::getTermsMinCount' => ['int'], - 'SolrDisMaxQuery::getTermsPrefix' => ['string'], - 'SolrDisMaxQuery::getTermsReturnRaw' => ['bool'], - 'SolrDisMaxQuery::getTermsSort' => ['int'], - 'SolrDisMaxQuery::getTermsUpperBound' => ['string'], - 'SolrDisMaxQuery::getTimeAllowed' => ['int'], - 'SolrDisMaxQuery::removeBigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeBoostQuery' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrDisMaxQuery::removeExpandSortField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeFacetDateField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::removeFacetField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeFacetQuery' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::removeField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrDisMaxQuery::removeHighlightField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeMltField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeMltQueryField' => ['SolrQuery', 'queryField'=>'string'], - 'SolrDisMaxQuery::removePhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeQueryField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeSortField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeStatsFacet' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::removeStatsField' => ['SolrQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeTrigramPhraseField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::removeUserField' => ['SolrDisMaxQuery', 'field'=>'string'], - 'SolrDisMaxQuery::serialize' => ['string'], - 'SolrDisMaxQuery::set' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrDisMaxQuery::setBigramPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], - 'SolrDisMaxQuery::setBigramPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], - 'SolrDisMaxQuery::setBoostFunction' => ['SolrDisMaxQuery', 'function'=>'string'], - 'SolrDisMaxQuery::setBoostQuery' => ['SolrDisMaxQuery', 'q'=>'string'], - 'SolrDisMaxQuery::setEchoHandler' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setEchoParams' => ['SolrQuery', 'type'=>'string'], - 'SolrDisMaxQuery::setExpand' => ['SolrQuery', 'value'=>'bool'], - 'SolrDisMaxQuery::setExpandQuery' => ['SolrQuery', 'q'=>'string'], - 'SolrDisMaxQuery::setExpandRows' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setExplainOther' => ['SolrQuery', 'query'=>'string'], - 'SolrDisMaxQuery::setFacet' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setFacetDateEnd' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetDateGap' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetDateHardEnd' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetDateStart' => ['SolrQuery', 'value'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => ['SolrQuery', 'frequency'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetLimit' => ['SolrQuery', 'limit'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetMethod' => ['SolrQuery', 'method'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetMinCount' => ['SolrQuery', 'mincount'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetMissing' => ['SolrQuery', 'flag'=>'bool', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetOffset' => ['SolrQuery', 'offset'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetPrefix' => ['SolrQuery', 'prefix'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setFacetSort' => ['SolrQuery', 'facetSort'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setGroup' => ['SolrQuery', 'value'=>'bool'], - 'SolrDisMaxQuery::setGroupCachePercent' => ['SolrQuery', 'percent'=>'int'], - 'SolrDisMaxQuery::setGroupFacet' => ['SolrQuery', 'value'=>'bool'], - 'SolrDisMaxQuery::setGroupFormat' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::setGroupLimit' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setGroupMain' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::setGroupNGroups' => ['SolrQuery', 'value'=>'bool'], - 'SolrDisMaxQuery::setGroupOffset' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setGroupTruncate' => ['SolrQuery', 'value'=>'bool'], - 'SolrDisMaxQuery::setHighlight' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setHighlightAlternateField' => ['SolrQuery', 'field'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightFormatter' => ['SolrQuery', 'formatter'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightFragmenter' => ['SolrQuery', 'fragmenter'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightFragsize' => ['SolrQuery', 'size'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => ['SolrQuery', 'fieldLength'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setHighlightMergeContiguous' => ['SolrQuery', 'flag'=>'bool', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => ['SolrQuery', 'maxAnalyzedChars'=>'int'], - 'SolrDisMaxQuery::setHighlightRegexPattern' => ['SolrQuery', 'value'=>'string'], - 'SolrDisMaxQuery::setHighlightRegexSlop' => ['SolrQuery', 'factor'=>'float'], - 'SolrDisMaxQuery::setHighlightRequireFieldMatch' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setHighlightSimplePost' => ['SolrQuery', 'simplePost'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightSimplePre' => ['SolrQuery', 'simplePre'=>'string', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightSnippets' => ['SolrQuery', 'value'=>'int', 'field_override'=>'string'], - 'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setMinimumMatch' => ['SolrDisMaxQuery', 'value'=>'string'], - 'SolrDisMaxQuery::setMlt' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setMltBoost' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setMltCount' => ['SolrQuery', 'count'=>'int'], - 'SolrDisMaxQuery::setMltMaxNumQueryTerms' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setMltMaxNumTokens' => ['SolrQuery', 'value'=>'int'], - 'SolrDisMaxQuery::setMltMaxWordLength' => ['SolrQuery', 'maxWordLength'=>'int'], - 'SolrDisMaxQuery::setMltMinDocFrequency' => ['SolrQuery', 'minDocFrequency'=>'int'], - 'SolrDisMaxQuery::setMltMinTermFrequency' => ['SolrQuery', 'minTermFrequency'=>'int'], - 'SolrDisMaxQuery::setMltMinWordLength' => ['SolrQuery', 'minWordLength'=>'int'], - 'SolrDisMaxQuery::setOmitHeader' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrDisMaxQuery::setPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], - 'SolrDisMaxQuery::setPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], - 'SolrDisMaxQuery::setQuery' => ['SolrQuery', 'query'=>'string'], - 'SolrDisMaxQuery::setQueryAlt' => ['SolrDisMaxQuery', 'q'=>'string'], - 'SolrDisMaxQuery::setQueryPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], - 'SolrDisMaxQuery::setRows' => ['SolrQuery', 'rows'=>'int'], - 'SolrDisMaxQuery::setShowDebugInfo' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setStart' => ['SolrQuery', 'start'=>'int'], - 'SolrDisMaxQuery::setStats' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setTerms' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setTermsField' => ['SolrQuery', 'fieldname'=>'string'], - 'SolrDisMaxQuery::setTermsIncludeLowerBound' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setTermsIncludeUpperBound' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setTermsLimit' => ['SolrQuery', 'limit'=>'int'], - 'SolrDisMaxQuery::setTermsLowerBound' => ['SolrQuery', 'lowerBound'=>'string'], - 'SolrDisMaxQuery::setTermsMaxCount' => ['SolrQuery', 'frequency'=>'int'], - 'SolrDisMaxQuery::setTermsMinCount' => ['SolrQuery', 'frequency'=>'int'], - 'SolrDisMaxQuery::setTermsPrefix' => ['SolrQuery', 'prefix'=>'string'], - 'SolrDisMaxQuery::setTermsReturnRaw' => ['SolrQuery', 'flag'=>'bool'], - 'SolrDisMaxQuery::setTermsSort' => ['SolrQuery', 'sortType'=>'int'], - 'SolrDisMaxQuery::setTermsUpperBound' => ['SolrQuery', 'upperBound'=>'string'], - 'SolrDisMaxQuery::setTieBreaker' => ['SolrDisMaxQuery', 'tieBreaker'=>'string'], - 'SolrDisMaxQuery::setTimeAllowed' => ['SolrQuery', 'timeAllowed'=>'int'], - 'SolrDisMaxQuery::setTrigramPhraseFields' => ['SolrDisMaxQuery', 'fields'=>'string'], - 'SolrDisMaxQuery::setTrigramPhraseSlop' => ['SolrDisMaxQuery', 'slop'=>'string'], - 'SolrDisMaxQuery::setUserFields' => ['SolrDisMaxQuery', 'fields'=>'string'], - 'SolrDisMaxQuery::toString' => ['string', 'url_encode='=>'bool'], - 'SolrDisMaxQuery::unserialize' => ['void', 'serialized'=>'string'], - 'SolrDisMaxQuery::useDisMaxQueryParser' => ['SolrDisMaxQuery'], - 'SolrDisMaxQuery::useEDisMaxQueryParser' => ['SolrDisMaxQuery'], - 'SolrDocument::__clone' => ['void'], - 'SolrDocument::__construct' => ['void'], - 'SolrDocument::__destruct' => ['void'], - 'SolrDocument::__get' => ['SolrDocumentField', 'fieldname'=>'string'], - 'SolrDocument::__isset' => ['bool', 'fieldname'=>'string'], - 'SolrDocument::__set' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string'], - 'SolrDocument::__unset' => ['bool', 'fieldname'=>'string'], - 'SolrDocument::addField' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string'], - 'SolrDocument::clear' => ['bool'], - 'SolrDocument::current' => ['SolrDocumentField'], - 'SolrDocument::deleteField' => ['bool', 'fieldname'=>'string'], - 'SolrDocument::fieldExists' => ['bool', 'fieldname'=>'string'], - 'SolrDocument::getChildDocuments' => ['SolrInputDocument[]'], - 'SolrDocument::getChildDocumentsCount' => ['int'], - 'SolrDocument::getField' => ['SolrDocumentField|false', 'fieldname'=>'string'], - 'SolrDocument::getFieldCount' => ['int|false'], - 'SolrDocument::getFieldNames' => ['array|false'], - 'SolrDocument::getInputDocument' => ['SolrInputDocument'], - 'SolrDocument::hasChildDocuments' => ['bool'], - 'SolrDocument::key' => ['string'], - 'SolrDocument::merge' => ['bool', 'sourcedoc'=>'solrdocument', 'overwrite='=>'bool'], - 'SolrDocument::next' => ['void'], - 'SolrDocument::offsetExists' => ['bool', 'fieldname'=>'string'], - 'SolrDocument::offsetGet' => ['SolrDocumentField', 'fieldname'=>'string'], - 'SolrDocument::offsetSet' => ['void', 'fieldname'=>'string', 'fieldvalue'=>'string'], - 'SolrDocument::offsetUnset' => ['void', 'fieldname'=>'string'], - 'SolrDocument::reset' => ['bool'], - 'SolrDocument::rewind' => ['void'], - 'SolrDocument::serialize' => ['string'], - 'SolrDocument::sort' => ['bool', 'sortorderby'=>'int', 'sortdirection='=>'int'], - 'SolrDocument::toArray' => ['array'], - 'SolrDocument::unserialize' => ['void', 'serialized'=>'string'], - 'SolrDocument::valid' => ['bool'], - 'SolrDocumentField::__construct' => ['void'], - 'SolrDocumentField::__destruct' => ['void'], - 'SolrException::__clone' => ['void'], - 'SolrException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'SolrException::__toString' => ['string'], - 'SolrException::__wakeup' => ['void'], - 'SolrException::getCode' => ['int'], - 'SolrException::getFile' => ['string'], - 'SolrException::getInternalInfo' => ['array'], - 'SolrException::getLine' => ['int'], - 'SolrException::getMessage' => ['string'], - 'SolrException::getPrevious' => ['Exception|Throwable'], - 'SolrException::getTrace' => ['list\',args?:array}>'], - 'SolrException::getTraceAsString' => ['string'], - 'SolrGenericResponse::__construct' => ['void'], - 'SolrGenericResponse::__destruct' => ['void'], - 'SolrGenericResponse::getDigestedResponse' => ['string'], - 'SolrGenericResponse::getHttpStatus' => ['int'], - 'SolrGenericResponse::getHttpStatusMessage' => ['string'], - 'SolrGenericResponse::getRawRequest' => ['string'], - 'SolrGenericResponse::getRawRequestHeaders' => ['string'], - 'SolrGenericResponse::getRawResponse' => ['string'], - 'SolrGenericResponse::getRawResponseHeaders' => ['string'], - 'SolrGenericResponse::getRequestUrl' => ['string'], - 'SolrGenericResponse::getResponse' => ['SolrObject'], - 'SolrGenericResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], - 'SolrGenericResponse::success' => ['bool'], - 'SolrIllegalArgumentException::__clone' => ['void'], - 'SolrIllegalArgumentException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'SolrIllegalArgumentException::__toString' => ['string'], - 'SolrIllegalArgumentException::__wakeup' => ['void'], - 'SolrIllegalArgumentException::getCode' => ['int'], - 'SolrIllegalArgumentException::getFile' => ['string'], - 'SolrIllegalArgumentException::getInternalInfo' => ['array'], - 'SolrIllegalArgumentException::getLine' => ['int'], - 'SolrIllegalArgumentException::getMessage' => ['string'], - 'SolrIllegalArgumentException::getPrevious' => ['Exception|Throwable'], - 'SolrIllegalArgumentException::getTrace' => ['list\',args?:array}>'], - 'SolrIllegalArgumentException::getTraceAsString' => ['string'], - 'SolrIllegalOperationException::__clone' => ['void'], - 'SolrIllegalOperationException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'SolrIllegalOperationException::__toString' => ['string'], - 'SolrIllegalOperationException::__wakeup' => ['void'], - 'SolrIllegalOperationException::getCode' => ['int'], - 'SolrIllegalOperationException::getFile' => ['string'], - 'SolrIllegalOperationException::getInternalInfo' => ['array'], - 'SolrIllegalOperationException::getLine' => ['int'], - 'SolrIllegalOperationException::getMessage' => ['string'], - 'SolrIllegalOperationException::getPrevious' => ['Exception|Throwable'], - 'SolrIllegalOperationException::getTrace' => ['list\',args?:array}>'], - 'SolrIllegalOperationException::getTraceAsString' => ['string'], - 'SolrInputDocument::__clone' => ['void'], - 'SolrInputDocument::__construct' => ['void'], - 'SolrInputDocument::__destruct' => ['void'], - 'SolrInputDocument::addChildDocument' => ['void', 'child'=>'SolrInputDocument'], - 'SolrInputDocument::addChildDocuments' => ['void', 'docs'=>'array'], - 'SolrInputDocument::addField' => ['bool', 'fieldname'=>'string', 'fieldvalue'=>'string', 'fieldboostvalue='=>'float'], - 'SolrInputDocument::clear' => ['bool'], - 'SolrInputDocument::deleteField' => ['bool', 'fieldname'=>'string'], - 'SolrInputDocument::fieldExists' => ['bool', 'fieldname'=>'string'], - 'SolrInputDocument::getBoost' => ['float|false'], - 'SolrInputDocument::getChildDocuments' => ['SolrInputDocument[]'], - 'SolrInputDocument::getChildDocumentsCount' => ['int'], - 'SolrInputDocument::getField' => ['SolrDocumentField|false', 'fieldname'=>'string'], - 'SolrInputDocument::getFieldBoost' => ['float|false', 'fieldname'=>'string'], - 'SolrInputDocument::getFieldCount' => ['int|false'], - 'SolrInputDocument::getFieldNames' => ['array|false'], - 'SolrInputDocument::hasChildDocuments' => ['bool'], - 'SolrInputDocument::merge' => ['bool', 'sourcedoc'=>'SolrInputDocument', 'overwrite='=>'bool'], - 'SolrInputDocument::reset' => ['bool'], - 'SolrInputDocument::setBoost' => ['bool', 'documentboostvalue'=>'float'], - 'SolrInputDocument::setFieldBoost' => ['bool', 'fieldname'=>'string', 'fieldboostvalue'=>'float'], - 'SolrInputDocument::sort' => ['bool', 'sortorderby'=>'int', 'sortdirection='=>'int'], - 'SolrInputDocument::toArray' => ['array|false'], - 'SolrModifiableParams::__construct' => ['void'], - 'SolrModifiableParams::__destruct' => ['void'], - 'SolrModifiableParams::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrModifiableParams::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrModifiableParams::get' => ['mixed', 'param_name'=>'string'], - 'SolrModifiableParams::getParam' => ['mixed', 'param_name'=>'string'], - 'SolrModifiableParams::getParams' => ['array'], - 'SolrModifiableParams::getPreparedParams' => ['array'], - 'SolrModifiableParams::serialize' => ['string'], - 'SolrModifiableParams::set' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrModifiableParams::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrModifiableParams::toString' => ['string', 'url_encode='=>'bool'], - 'SolrModifiableParams::unserialize' => ['void', 'serialized'=>'string'], - 'SolrObject::__construct' => ['void'], - 'SolrObject::__destruct' => ['void'], - 'SolrObject::getPropertyNames' => ['array'], - 'SolrObject::offsetExists' => ['bool', 'property_name'=>'string'], - 'SolrObject::offsetGet' => ['SolrDocumentField', 'property_name'=>'string'], - 'SolrObject::offsetSet' => ['void', 'property_name'=>'string', 'property_value'=>'string'], - 'SolrObject::offsetUnset' => ['void', 'property_name'=>'string'], - 'SolrParams::__construct' => ['void'], - 'SolrParams::add' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], - 'SolrParams::addParam' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], - 'SolrParams::get' => ['mixed', 'param_name'=>'string'], - 'SolrParams::getParam' => ['mixed', 'param_name='=>'string'], - 'SolrParams::getParams' => ['array'], - 'SolrParams::getPreparedParams' => ['array'], - 'SolrParams::serialize' => ['string'], - 'SolrParams::set' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], - 'SolrParams::setParam' => ['SolrParams|false', 'name'=>'string', 'value'=>'string'], - 'SolrParams::toString' => ['string|false', 'url_encode='=>'bool'], - 'SolrParams::unserialize' => ['void', 'serialized'=>'string'], - 'SolrPingResponse::__construct' => ['void'], - 'SolrPingResponse::__destruct' => ['void'], - 'SolrPingResponse::getDigestedResponse' => ['string'], - 'SolrPingResponse::getHttpStatus' => ['int'], - 'SolrPingResponse::getHttpStatusMessage' => ['string'], - 'SolrPingResponse::getRawRequest' => ['string'], - 'SolrPingResponse::getRawRequestHeaders' => ['string'], - 'SolrPingResponse::getRawResponse' => ['string'], - 'SolrPingResponse::getRawResponseHeaders' => ['string'], - 'SolrPingResponse::getRequestUrl' => ['string'], - 'SolrPingResponse::getResponse' => ['string'], - 'SolrPingResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], - 'SolrPingResponse::success' => ['bool'], - 'SolrQuery::__construct' => ['void', 'q='=>'string'], - 'SolrQuery::__destruct' => ['void'], - 'SolrQuery::add' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrQuery::addExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrQuery::addExpandSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'string'], - 'SolrQuery::addFacetDateField' => ['SolrQuery', 'datefield'=>'string'], - 'SolrQuery::addFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], - 'SolrQuery::addFacetField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::addFacetQuery' => ['SolrQuery', 'facetquery'=>'string'], - 'SolrQuery::addField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::addFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrQuery::addGroupField' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::addGroupFunction' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::addGroupQuery' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::addGroupSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], - 'SolrQuery::addHighlightField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::addMltField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::addMltQueryField' => ['SolrQuery', 'field'=>'string', 'boost'=>'float'], - 'SolrQuery::addParam' => ['SolrParams', 'name'=>'string', 'value'=>'string'], - 'SolrQuery::addSortField' => ['SolrQuery', 'field'=>'string', 'order='=>'int'], - 'SolrQuery::addStatsFacet' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::addStatsField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::collapse' => ['SolrQuery', 'collapseFunction'=>'SolrCollapseFunction'], - 'SolrQuery::get' => ['mixed', 'param_name'=>'string'], - 'SolrQuery::getExpand' => ['bool'], - 'SolrQuery::getExpandFilterQueries' => ['array'], - 'SolrQuery::getExpandQuery' => ['array'], - 'SolrQuery::getExpandRows' => ['int'], - 'SolrQuery::getExpandSortFields' => ['array'], - 'SolrQuery::getFacet' => ['?bool'], - 'SolrQuery::getFacetDateEnd' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetDateFields' => ['array'], - 'SolrQuery::getFacetDateGap' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetDateHardEnd' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetDateOther' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetDateStart' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetFields' => ['array'], - 'SolrQuery::getFacetLimit' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getFacetMethod' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetMinCount' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getFacetMissing' => ['?bool', 'field_override='=>'string'], - 'SolrQuery::getFacetOffset' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getFacetPrefix' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getFacetQueries' => ['?array'], - 'SolrQuery::getFacetSort' => ['int', 'field_override='=>'string'], - 'SolrQuery::getFields' => ['?array'], - 'SolrQuery::getFilterQueries' => ['?array'], - 'SolrQuery::getGroup' => ['bool'], - 'SolrQuery::getGroupCachePercent' => ['int'], - 'SolrQuery::getGroupFacet' => ['bool'], - 'SolrQuery::getGroupFields' => ['array'], - 'SolrQuery::getGroupFormat' => ['string'], - 'SolrQuery::getGroupFunctions' => ['array'], - 'SolrQuery::getGroupLimit' => ['int'], - 'SolrQuery::getGroupMain' => ['bool'], - 'SolrQuery::getGroupNGroups' => ['bool'], - 'SolrQuery::getGroupOffset' => ['int'], - 'SolrQuery::getGroupQueries' => ['array'], - 'SolrQuery::getGroupSortFields' => ['array'], - 'SolrQuery::getGroupTruncate' => ['bool'], - 'SolrQuery::getHighlight' => ['bool'], - 'SolrQuery::getHighlightAlternateField' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getHighlightFields' => ['?array'], - 'SolrQuery::getHighlightFormatter' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getHighlightFragmenter' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getHighlightFragsize' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getHighlightHighlightMultiTerm' => ['?bool'], - 'SolrQuery::getHighlightMaxAlternateFieldLength' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getHighlightMaxAnalyzedChars' => ['?int'], - 'SolrQuery::getHighlightMergeContiguous' => ['?bool', 'field_override='=>'string'], - 'SolrQuery::getHighlightRegexMaxAnalyzedChars' => ['?int'], - 'SolrQuery::getHighlightRegexPattern' => ['?string'], - 'SolrQuery::getHighlightRegexSlop' => ['?float'], - 'SolrQuery::getHighlightRequireFieldMatch' => ['?bool'], - 'SolrQuery::getHighlightSimplePost' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getHighlightSimplePre' => ['?string', 'field_override='=>'string'], - 'SolrQuery::getHighlightSnippets' => ['?int', 'field_override='=>'string'], - 'SolrQuery::getHighlightUsePhraseHighlighter' => ['?bool'], - 'SolrQuery::getMlt' => ['?bool'], - 'SolrQuery::getMltBoost' => ['?bool'], - 'SolrQuery::getMltCount' => ['?int'], - 'SolrQuery::getMltFields' => ['?array'], - 'SolrQuery::getMltMaxNumQueryTerms' => ['?int'], - 'SolrQuery::getMltMaxNumTokens' => ['?int'], - 'SolrQuery::getMltMaxWordLength' => ['?int'], - 'SolrQuery::getMltMinDocFrequency' => ['?int'], - 'SolrQuery::getMltMinTermFrequency' => ['?int'], - 'SolrQuery::getMltMinWordLength' => ['?int'], - 'SolrQuery::getMltQueryFields' => ['?array'], - 'SolrQuery::getParam' => ['?mixed', 'param_name'=>'string'], - 'SolrQuery::getParams' => ['?array'], - 'SolrQuery::getPreparedParams' => ['?array'], - 'SolrQuery::getQuery' => ['?string'], - 'SolrQuery::getRows' => ['?int'], - 'SolrQuery::getSortFields' => ['?array'], - 'SolrQuery::getStart' => ['?int'], - 'SolrQuery::getStats' => ['?bool'], - 'SolrQuery::getStatsFacets' => ['?array'], - 'SolrQuery::getStatsFields' => ['?array'], - 'SolrQuery::getTerms' => ['?bool'], - 'SolrQuery::getTermsField' => ['?string'], - 'SolrQuery::getTermsIncludeLowerBound' => ['?bool'], - 'SolrQuery::getTermsIncludeUpperBound' => ['?bool'], - 'SolrQuery::getTermsLimit' => ['?int'], - 'SolrQuery::getTermsLowerBound' => ['?string'], - 'SolrQuery::getTermsMaxCount' => ['?int'], - 'SolrQuery::getTermsMinCount' => ['?int'], - 'SolrQuery::getTermsPrefix' => ['?string'], - 'SolrQuery::getTermsReturnRaw' => ['?bool'], - 'SolrQuery::getTermsSort' => ['?int'], - 'SolrQuery::getTermsUpperBound' => ['?string'], - 'SolrQuery::getTimeAllowed' => ['?int'], - 'SolrQuery::removeExpandFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrQuery::removeExpandSortField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeFacetDateField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeFacetDateOther' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], - 'SolrQuery::removeFacetField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeFacetQuery' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::removeField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeFilterQuery' => ['SolrQuery', 'fq'=>'string'], - 'SolrQuery::removeHighlightField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeMltField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeMltQueryField' => ['SolrQuery', 'queryfield'=>'string'], - 'SolrQuery::removeSortField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::removeStatsFacet' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::removeStatsField' => ['SolrQuery', 'field'=>'string'], - 'SolrQuery::serialize' => ['string'], - 'SolrQuery::set' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrQuery::setEchoHandler' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setEchoParams' => ['SolrQuery', 'type'=>'string'], - 'SolrQuery::setExpand' => ['SolrQuery', 'value'=>'bool'], - 'SolrQuery::setExpandQuery' => ['SolrQuery', 'q'=>'string'], - 'SolrQuery::setExpandRows' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setExplainOther' => ['SolrQuery', 'query'=>'string'], - 'SolrQuery::setFacet' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setFacetDateEnd' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], - 'SolrQuery::setFacetDateGap' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], - 'SolrQuery::setFacetDateHardEnd' => ['SolrQuery', 'value'=>'bool', 'field_override='=>'string'], - 'SolrQuery::setFacetDateStart' => ['SolrQuery', 'value'=>'string', 'field_override='=>'string'], - 'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => ['SolrQuery', 'frequency'=>'int', 'field_override='=>'string'], - 'SolrQuery::setFacetLimit' => ['SolrQuery', 'limit'=>'int', 'field_override='=>'string'], - 'SolrQuery::setFacetMethod' => ['SolrQuery', 'method'=>'string', 'field_override='=>'string'], - 'SolrQuery::setFacetMinCount' => ['SolrQuery', 'mincount'=>'int', 'field_override='=>'string'], - 'SolrQuery::setFacetMissing' => ['SolrQuery', 'flag'=>'bool', 'field_override='=>'string'], - 'SolrQuery::setFacetOffset' => ['SolrQuery', 'offset'=>'int', 'field_override='=>'string'], - 'SolrQuery::setFacetPrefix' => ['SolrQuery', 'prefix'=>'string', 'field_override='=>'string'], - 'SolrQuery::setFacetSort' => ['SolrQuery', 'facetsort'=>'int', 'field_override='=>'string'], - 'SolrQuery::setGroup' => ['SolrQuery', 'value'=>'bool'], - 'SolrQuery::setGroupCachePercent' => ['SolrQuery', 'percent'=>'int'], - 'SolrQuery::setGroupFacet' => ['SolrQuery', 'value'=>'bool'], - 'SolrQuery::setGroupFormat' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::setGroupLimit' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setGroupMain' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::setGroupNGroups' => ['SolrQuery', 'value'=>'bool'], - 'SolrQuery::setGroupOffset' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setGroupTruncate' => ['SolrQuery', 'value'=>'bool'], - 'SolrQuery::setHighlight' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setHighlightAlternateField' => ['SolrQuery', 'field'=>'string', 'field_override='=>'string'], - 'SolrQuery::setHighlightFormatter' => ['SolrQuery', 'formatter'=>'string', 'field_override='=>'string'], - 'SolrQuery::setHighlightFragmenter' => ['SolrQuery', 'fragmenter'=>'string', 'field_override='=>'string'], - 'SolrQuery::setHighlightFragsize' => ['SolrQuery', 'size'=>'int', 'field_override='=>'string'], - 'SolrQuery::setHighlightHighlightMultiTerm' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setHighlightMaxAlternateFieldLength' => ['SolrQuery', 'fieldlength'=>'int', 'field_override='=>'string'], - 'SolrQuery::setHighlightMaxAnalyzedChars' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setHighlightMergeContiguous' => ['SolrQuery', 'flag'=>'bool', 'field_override='=>'string'], - 'SolrQuery::setHighlightRegexMaxAnalyzedChars' => ['SolrQuery', 'maxanalyzedchars'=>'int'], - 'SolrQuery::setHighlightRegexPattern' => ['SolrQuery', 'value'=>'string'], - 'SolrQuery::setHighlightRegexSlop' => ['SolrQuery', 'factor'=>'float'], - 'SolrQuery::setHighlightRequireFieldMatch' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setHighlightSimplePost' => ['SolrQuery', 'simplepost'=>'string', 'field_override='=>'string'], - 'SolrQuery::setHighlightSimplePre' => ['SolrQuery', 'simplepre'=>'string', 'field_override='=>'string'], - 'SolrQuery::setHighlightSnippets' => ['SolrQuery', 'value'=>'int', 'field_override='=>'string'], - 'SolrQuery::setHighlightUsePhraseHighlighter' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setMlt' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setMltBoost' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setMltCount' => ['SolrQuery', 'count'=>'int'], - 'SolrQuery::setMltMaxNumQueryTerms' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setMltMaxNumTokens' => ['SolrQuery', 'value'=>'int'], - 'SolrQuery::setMltMaxWordLength' => ['SolrQuery', 'maxwordlength'=>'int'], - 'SolrQuery::setMltMinDocFrequency' => ['SolrQuery', 'mindocfrequency'=>'int'], - 'SolrQuery::setMltMinTermFrequency' => ['SolrQuery', 'mintermfrequency'=>'int'], - 'SolrQuery::setMltMinWordLength' => ['SolrQuery', 'minwordlength'=>'int'], - 'SolrQuery::setOmitHeader' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setParam' => ['SolrParams', 'name'=>'string', 'value'=>''], - 'SolrQuery::setQuery' => ['SolrQuery', 'query'=>'string'], - 'SolrQuery::setRows' => ['SolrQuery', 'rows'=>'int'], - 'SolrQuery::setShowDebugInfo' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setStart' => ['SolrQuery', 'start'=>'int'], - 'SolrQuery::setStats' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setTerms' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setTermsField' => ['SolrQuery', 'fieldname'=>'string'], - 'SolrQuery::setTermsIncludeLowerBound' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setTermsIncludeUpperBound' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setTermsLimit' => ['SolrQuery', 'limit'=>'int'], - 'SolrQuery::setTermsLowerBound' => ['SolrQuery', 'lowerbound'=>'string'], - 'SolrQuery::setTermsMaxCount' => ['SolrQuery', 'frequency'=>'int'], - 'SolrQuery::setTermsMinCount' => ['SolrQuery', 'frequency'=>'int'], - 'SolrQuery::setTermsPrefix' => ['SolrQuery', 'prefix'=>'string'], - 'SolrQuery::setTermsReturnRaw' => ['SolrQuery', 'flag'=>'bool'], - 'SolrQuery::setTermsSort' => ['SolrQuery', 'sorttype'=>'int'], - 'SolrQuery::setTermsUpperBound' => ['SolrQuery', 'upperbound'=>'string'], - 'SolrQuery::setTimeAllowed' => ['SolrQuery', 'timeallowed'=>'int'], - 'SolrQuery::toString' => ['string', 'url_encode='=>'bool'], - 'SolrQuery::unserialize' => ['void', 'serialized'=>'string'], - 'SolrQueryResponse::__construct' => ['void'], - 'SolrQueryResponse::__destruct' => ['void'], - 'SolrQueryResponse::getDigestedResponse' => ['string'], - 'SolrQueryResponse::getHttpStatus' => ['int'], - 'SolrQueryResponse::getHttpStatusMessage' => ['string'], - 'SolrQueryResponse::getRawRequest' => ['string'], - 'SolrQueryResponse::getRawRequestHeaders' => ['string'], - 'SolrQueryResponse::getRawResponse' => ['string'], - 'SolrQueryResponse::getRawResponseHeaders' => ['string'], - 'SolrQueryResponse::getRequestUrl' => ['string'], - 'SolrQueryResponse::getResponse' => ['SolrObject'], - 'SolrQueryResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], - 'SolrQueryResponse::success' => ['bool'], - 'SolrResponse::getDigestedResponse' => ['string'], - 'SolrResponse::getHttpStatus' => ['int'], - 'SolrResponse::getHttpStatusMessage' => ['string'], - 'SolrResponse::getRawRequest' => ['string'], - 'SolrResponse::getRawRequestHeaders' => ['string'], - 'SolrResponse::getRawResponse' => ['string'], - 'SolrResponse::getRawResponseHeaders' => ['string'], - 'SolrResponse::getRequestUrl' => ['string'], - 'SolrResponse::getResponse' => ['SolrObject'], - 'SolrResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], - 'SolrResponse::success' => ['bool'], - 'SolrServerException::__clone' => ['void'], - 'SolrServerException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'SolrServerException::__toString' => ['string'], - 'SolrServerException::__wakeup' => ['void'], - 'SolrServerException::getCode' => ['int'], - 'SolrServerException::getFile' => ['string'], - 'SolrServerException::getInternalInfo' => ['array'], - 'SolrServerException::getLine' => ['int'], - 'SolrServerException::getMessage' => ['string'], - 'SolrServerException::getPrevious' => ['Exception|Throwable'], - 'SolrServerException::getTrace' => ['list\',args?:array}>'], - 'SolrServerException::getTraceAsString' => ['string'], - 'SolrUpdateResponse::__construct' => ['void'], - 'SolrUpdateResponse::__destruct' => ['void'], - 'SolrUpdateResponse::getDigestedResponse' => ['string'], - 'SolrUpdateResponse::getHttpStatus' => ['int'], - 'SolrUpdateResponse::getHttpStatusMessage' => ['string'], - 'SolrUpdateResponse::getRawRequest' => ['string'], - 'SolrUpdateResponse::getRawRequestHeaders' => ['string'], - 'SolrUpdateResponse::getRawResponse' => ['string'], - 'SolrUpdateResponse::getRawResponseHeaders' => ['string'], - 'SolrUpdateResponse::getRequestUrl' => ['string'], - 'SolrUpdateResponse::getResponse' => ['SolrObject'], - 'SolrUpdateResponse::setParseMode' => ['bool', 'parser_mode='=>'int'], - 'SolrUpdateResponse::success' => ['bool'], - 'SolrUtils::digestXmlResponse' => ['SolrObject', 'xmlresponse'=>'string', 'parse_mode='=>'int'], - 'SolrUtils::escapeQueryChars' => ['string|false', 'string'=>'string'], - 'SolrUtils::getSolrVersion' => ['string'], - 'SolrUtils::queryPhrase' => ['string', 'string'=>'string'], - 'SphinxClient::__construct' => ['void'], - 'SphinxClient::addQuery' => ['int', 'query'=>'string', 'index='=>'string', 'comment='=>'string'], - 'SphinxClient::buildExcerpts' => ['array', 'docs'=>'array', 'index'=>'string', 'words'=>'string', 'opts='=>'array'], - 'SphinxClient::buildKeywords' => ['array', 'query'=>'string', 'index'=>'string', 'hits'=>'bool'], - 'SphinxClient::close' => ['bool'], - 'SphinxClient::escapeString' => ['string', 'string'=>'string'], - 'SphinxClient::getLastError' => ['string'], - 'SphinxClient::getLastWarning' => ['string'], - 'SphinxClient::open' => ['bool'], - 'SphinxClient::query' => ['array', 'query'=>'string', 'index='=>'string', 'comment='=>'string'], - 'SphinxClient::resetFilters' => ['void'], - 'SphinxClient::resetGroupBy' => ['void'], - 'SphinxClient::runQueries' => ['array'], - 'SphinxClient::setArrayResult' => ['bool', 'array_result'=>'bool'], - 'SphinxClient::setConnectTimeout' => ['bool', 'timeout'=>'float'], - 'SphinxClient::setFieldWeights' => ['bool', 'weights'=>'array'], - 'SphinxClient::setFilter' => ['bool', 'attribute'=>'string', 'values'=>'array', 'exclude='=>'bool'], - 'SphinxClient::setFilterFloatRange' => ['bool', 'attribute'=>'string', 'min'=>'float', 'max'=>'float', 'exclude='=>'bool'], - 'SphinxClient::setFilterRange' => ['bool', 'attribute'=>'string', 'min'=>'int', 'max'=>'int', 'exclude='=>'bool'], - 'SphinxClient::setGeoAnchor' => ['bool', 'attrlat'=>'string', 'attrlong'=>'string', 'latitude'=>'float', 'longitude'=>'float'], - 'SphinxClient::setGroupBy' => ['bool', 'attribute'=>'string', 'func'=>'int', 'groupsort='=>'string'], - 'SphinxClient::setGroupDistinct' => ['bool', 'attribute'=>'string'], - 'SphinxClient::setIDRange' => ['bool', 'min'=>'int', 'max'=>'int'], - 'SphinxClient::setIndexWeights' => ['bool', 'weights'=>'array'], - 'SphinxClient::setLimits' => ['bool', 'offset'=>'int', 'limit'=>'int', 'max_matches='=>'int', 'cutoff='=>'int'], - 'SphinxClient::setMatchMode' => ['bool', 'mode'=>'int'], - 'SphinxClient::setMaxQueryTime' => ['bool', 'qtime'=>'int'], - 'SphinxClient::setOverride' => ['bool', 'attribute'=>'string', 'type'=>'int', 'values'=>'array'], - 'SphinxClient::setRankingMode' => ['bool', 'ranker'=>'int'], - 'SphinxClient::setRetries' => ['bool', 'count'=>'int', 'delay='=>'int'], - 'SphinxClient::setSelect' => ['bool', 'clause'=>'string'], - 'SphinxClient::setServer' => ['bool', 'server'=>'string', 'port'=>'int'], - 'SphinxClient::setSortMode' => ['bool', 'mode'=>'int', 'sortby='=>'string'], - 'SphinxClient::status' => ['array'], - 'SphinxClient::updateAttributes' => ['int', 'index'=>'string', 'attributes'=>'array', 'values'=>'array', 'mva='=>'bool'], - 'SplDoublyLinkedList::__construct' => ['void'], - 'SplDoublyLinkedList::add' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'SplDoublyLinkedList::bottom' => ['mixed'], - 'SplDoublyLinkedList::count' => ['int'], - 'SplDoublyLinkedList::current' => ['mixed'], - 'SplDoublyLinkedList::getIteratorMode' => ['int'], - 'SplDoublyLinkedList::isEmpty' => ['bool'], - 'SplDoublyLinkedList::key' => ['int'], - 'SplDoublyLinkedList::next' => ['void'], - 'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'int'], - 'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'int'], - 'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], - 'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'int'], - 'SplDoublyLinkedList::pop' => ['mixed'], - 'SplDoublyLinkedList::prev' => ['void'], - 'SplDoublyLinkedList::push' => ['void', 'value'=>'mixed'], - 'SplDoublyLinkedList::rewind' => ['void'], - 'SplDoublyLinkedList::serialize' => ['string'], - 'SplDoublyLinkedList::setIteratorMode' => ['int', 'mode'=>'int'], - 'SplDoublyLinkedList::shift' => ['mixed'], - 'SplDoublyLinkedList::top' => ['mixed'], - 'SplDoublyLinkedList::unserialize' => ['void', 'data'=>'string'], - 'SplDoublyLinkedList::unshift' => ['void', 'value'=>'mixed'], - 'SplDoublyLinkedList::valid' => ['bool'], - 'SplEnum::__construct' => ['void', 'initial_value='=>'mixed', 'strict='=>'bool'], - 'SplEnum::getConstList' => ['array', 'include_default='=>'bool'], - 'SplFileInfo::__construct' => ['void', 'filename'=>'string'], - 'SplFileInfo::__toString' => ['string'], - 'SplFileInfo::getATime' => ['int|false'], - 'SplFileInfo::getBasename' => ['string', 'suffix='=>'string'], - 'SplFileInfo::getCTime' => ['int|false'], - 'SplFileInfo::getExtension' => ['string'], - 'SplFileInfo::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'SplFileInfo::getFilename' => ['string'], - 'SplFileInfo::getGroup' => ['int|false'], - 'SplFileInfo::getInode' => ['int|false'], - 'SplFileInfo::getLinkTarget' => ['string|false'], - 'SplFileInfo::getMTime' => ['int|false'], - 'SplFileInfo::getOwner' => ['int|false'], - 'SplFileInfo::getPath' => ['string'], - 'SplFileInfo::getPathInfo' => ['SplFileInfo|null', 'class='=>'class-string'], - 'SplFileInfo::getPathname' => ['string'], - 'SplFileInfo::getPerms' => ['int|false'], - 'SplFileInfo::getRealPath' => ['non-falsy-string|false'], - 'SplFileInfo::getSize' => ['int|false'], - 'SplFileInfo::getType' => ['string|false'], - 'SplFileInfo::isDir' => ['bool'], - 'SplFileInfo::isExecutable' => ['bool'], - 'SplFileInfo::isFile' => ['bool'], - 'SplFileInfo::isLink' => ['bool'], - 'SplFileInfo::isReadable' => ['bool'], - 'SplFileInfo::isWritable' => ['bool'], - 'SplFileInfo::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'SplFileInfo::setFileClass' => ['void', 'class='=>'class-string'], - 'SplFileInfo::setInfoClass' => ['void', 'class='=>'class-string'], - 'SplFileObject::__construct' => ['void', 'filename'=>'string', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'?resource'], - 'SplFileObject::__toString' => ['string'], - 'SplFileObject::current' => ['string|array|false'], - 'SplFileObject::eof' => ['bool'], - 'SplFileObject::fflush' => ['bool'], - 'SplFileObject::fgetc' => ['string|false'], - 'SplFileObject::fgetcsv' => ['list|array{0: null}|false', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplFileObject::fgets' => ['string|false'], - 'SplFileObject::fgetss' => ['string|false', 'allowable_tags='=>'string'], - 'SplFileObject::flock' => ['bool', 'operation'=>'int', '&w_wouldBlock='=>'int'], - 'SplFileObject::fpassthru' => ['int'], - 'SplFileObject::fputcsv' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplFileObject::fread' => ['string|false', 'length'=>'int'], - 'SplFileObject::fscanf' => ['array|int', 'format'=>'string', '&...w_vars='=>'string|int|float'], - 'SplFileObject::fseek' => ['int', 'offset'=>'int', 'whence='=>'int'], - 'SplFileObject::fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}'], - 'SplFileObject::ftell' => ['int|false'], - 'SplFileObject::ftruncate' => ['bool', 'size'=>'int'], - 'SplFileObject::fwrite' => ['int', 'data'=>'string', 'length='=>'int'], - 'SplFileObject::getATime' => ['int|false'], - 'SplFileObject::getBasename' => ['string', 'suffix='=>'string'], - 'SplFileObject::getCTime' => ['int|false'], - 'SplFileObject::getChildren' => ['null'], - 'SplFileObject::getCsvControl' => ['array'], - 'SplFileObject::getCurrentLine' => ['string|false'], - 'SplFileObject::getExtension' => ['string'], - 'SplFileObject::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'SplFileObject::getFilename' => ['string'], - 'SplFileObject::getFlags' => ['int'], - 'SplFileObject::getGroup' => ['int|false'], - 'SplFileObject::getInode' => ['int|false'], - 'SplFileObject::getLinkTarget' => ['string|false'], - 'SplFileObject::getMaxLineLen' => ['int'], - 'SplFileObject::getMTime' => ['int|false'], - 'SplFileObject::getOwner' => ['int|false'], - 'SplFileObject::getPath' => ['string'], - 'SplFileObject::getPathInfo' => ['SplFileInfo|null', 'class='=>'class-string'], - 'SplFileObject::getPathname' => ['string'], - 'SplFileObject::getPerms' => ['int|false'], - 'SplFileObject::getRealPath' => ['false|non-falsy-string'], - 'SplFileObject::getSize' => ['int|false'], - 'SplFileObject::getType' => ['string|false'], - 'SplFileObject::hasChildren' => ['false'], - 'SplFileObject::isDir' => ['bool'], - 'SplFileObject::isExecutable' => ['bool'], - 'SplFileObject::isFile' => ['bool'], - 'SplFileObject::isLink' => ['bool'], - 'SplFileObject::isReadable' => ['bool'], - 'SplFileObject::isWritable' => ['bool'], - 'SplFileObject::key' => ['int'], - 'SplFileObject::next' => ['void'], - 'SplFileObject::openFile' => ['SplFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'SplFileObject::rewind' => ['void'], - 'SplFileObject::seek' => ['void', 'line'=>'int'], - 'SplFileObject::setCsvControl' => ['void', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplFileObject::setFileClass' => ['void', 'class='=>'class-string'], - 'SplFileObject::setFlags' => ['void', 'flags'=>'int'], - 'SplFileObject::setInfoClass' => ['void', 'class='=>'class-string'], - 'SplFileObject::setMaxLineLen' => ['void', 'maxLength'=>'int'], - 'SplFileObject::valid' => ['bool'], - 'SplFixedArray::__construct' => ['void', 'size='=>'int'], - 'SplFixedArray::__wakeup' => ['void'], - 'SplFixedArray::count' => ['int'], - 'SplFixedArray::current' => ['mixed'], - 'SplFixedArray::fromArray' => ['SplFixedArray', 'array'=>'array', 'preserveKeys='=>'bool'], - 'SplFixedArray::getSize' => ['int'], - 'SplFixedArray::key' => ['int'], - 'SplFixedArray::next' => ['void'], - 'SplFixedArray::offsetExists' => ['bool', 'index'=>'int'], - 'SplFixedArray::offsetGet' => ['mixed', 'index'=>'int'], - 'SplFixedArray::offsetSet' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'SplFixedArray::offsetUnset' => ['void', 'index'=>'int'], - 'SplFixedArray::rewind' => ['void'], - 'SplFixedArray::setSize' => ['bool', 'size'=>'int'], - 'SplFixedArray::toArray' => ['array'], - 'SplFixedArray::valid' => ['bool'], - 'SplHeap::__construct' => ['void'], - 'SplHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], - 'SplHeap::count' => ['int'], - 'SplHeap::current' => ['mixed'], - 'SplHeap::extract' => ['mixed'], - 'SplHeap::insert' => ['bool', 'value'=>'mixed'], - 'SplHeap::isCorrupted' => ['bool'], - 'SplHeap::isEmpty' => ['bool'], - 'SplHeap::key' => ['int'], - 'SplHeap::next' => ['void'], - 'SplHeap::recoverFromCorruption' => ['true'], - 'SplHeap::rewind' => ['void'], - 'SplHeap::top' => ['mixed'], - 'SplHeap::valid' => ['bool'], - 'SplMaxHeap::__construct' => ['void'], - 'SplMaxHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], - 'SplMinHeap::compare' => ['int', 'value1'=>'mixed', 'value2'=>'mixed'], - 'SplMinHeap::count' => ['int'], - 'SplMinHeap::current' => ['mixed'], - 'SplMinHeap::extract' => ['mixed'], - 'SplMinHeap::insert' => ['true', 'value'=>'mixed'], - 'SplMinHeap::isCorrupted' => ['bool'], - 'SplMinHeap::isEmpty' => ['bool'], - 'SplMinHeap::key' => ['int'], - 'SplMinHeap::next' => ['void'], - 'SplMinHeap::recoverFromCorruption' => ['true'], - 'SplMinHeap::rewind' => ['void'], - 'SplMinHeap::top' => ['mixed'], - 'SplMinHeap::valid' => ['bool'], - 'SplObjectStorage::__construct' => ['void'], - 'SplObjectStorage::addAll' => ['int', 'storage'=>'SplObjectStorage'], - 'SplObjectStorage::attach' => ['void', 'object'=>'object', 'info='=>'mixed'], - 'SplObjectStorage::contains' => ['bool', 'object'=>'object'], - 'SplObjectStorage::count' => ['int', 'mode='=>'int'], - 'SplObjectStorage::current' => ['object'], - 'SplObjectStorage::detach' => ['void', 'object'=>'object'], - 'SplObjectStorage::getHash' => ['string', 'object'=>'object'], - 'SplObjectStorage::getInfo' => ['mixed'], - 'SplObjectStorage::key' => ['int'], - 'SplObjectStorage::next' => ['void'], - 'SplObjectStorage::offsetExists' => ['bool', 'object'=>'object'], - 'SplObjectStorage::offsetGet' => ['mixed', 'object'=>'object'], - 'SplObjectStorage::offsetSet' => ['void', 'object'=>'object', 'info='=>'mixed'], - 'SplObjectStorage::offsetUnset' => ['void', 'object'=>'object'], - 'SplObjectStorage::removeAll' => ['int', 'storage'=>'SplObjectStorage'], - 'SplObjectStorage::removeAllExcept' => ['int', 'storage'=>'SplObjectStorage'], - 'SplObjectStorage::rewind' => ['void'], - 'SplObjectStorage::serialize' => ['string'], - 'SplObjectStorage::setInfo' => ['void', 'info'=>'mixed'], - 'SplObjectStorage::unserialize' => ['void', 'data'=>'string'], - 'SplObjectStorage::valid' => ['bool'], - 'SplObserver::update' => ['void', 'subject'=>'SplSubject'], - 'SplPriorityQueue::__construct' => ['void'], - 'SplPriorityQueue::compare' => ['int', 'priority1'=>'mixed', 'priority2'=>'mixed'], - 'SplPriorityQueue::count' => ['int'], - 'SplPriorityQueue::current' => ['mixed'], - 'SplPriorityQueue::extract' => ['mixed'], - 'SplPriorityQueue::getExtractFlags' => ['int'], - 'SplPriorityQueue::insert' => ['bool', 'value'=>'mixed', 'priority'=>'mixed'], - 'SplPriorityQueue::isEmpty' => ['bool'], - 'SplPriorityQueue::key' => ['int'], - 'SplPriorityQueue::next' => ['void'], - 'SplPriorityQueue::recoverFromCorruption' => ['void'], - 'SplPriorityQueue::rewind' => ['void'], - 'SplPriorityQueue::setExtractFlags' => ['int', 'flags'=>'int'], - 'SplPriorityQueue::top' => ['mixed'], - 'SplPriorityQueue::valid' => ['bool'], - 'SplQueue::dequeue' => ['mixed'], - 'SplQueue::enqueue' => ['void', 'value'=>'mixed'], - 'SplQueue::getIteratorMode' => ['int'], - 'SplQueue::isEmpty' => ['bool'], - 'SplQueue::key' => ['int'], - 'SplQueue::next' => ['void'], - 'SplQueue::offsetExists' => ['bool', 'index'=>'mixed'], - 'SplQueue::offsetGet' => ['mixed', 'index'=>'mixed'], - 'SplQueue::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], - 'SplQueue::offsetUnset' => ['void', 'index'=>'mixed'], - 'SplQueue::pop' => ['mixed'], - 'SplQueue::prev' => ['void'], - 'SplQueue::push' => ['void', 'value'=>'mixed'], - 'SplQueue::rewind' => ['void'], - 'SplQueue::serialize' => ['string'], - 'SplQueue::setIteratorMode' => ['int', 'mode'=>'int'], - 'SplQueue::shift' => ['mixed'], - 'SplQueue::top' => ['mixed'], - 'SplQueue::unserialize' => ['void', 'data'=>'string'], - 'SplQueue::unshift' => ['void', 'value'=>'mixed'], - 'SplQueue::valid' => ['bool'], - 'SplStack::__construct' => ['void'], - 'SplStack::add' => ['void', 'index'=>'int', 'value'=>'mixed'], - 'SplStack::bottom' => ['mixed'], - 'SplStack::count' => ['int'], - 'SplStack::current' => ['mixed'], - 'SplStack::getIteratorMode' => ['int'], - 'SplStack::isEmpty' => ['bool'], - 'SplStack::key' => ['int'], - 'SplStack::next' => ['void'], - 'SplStack::offsetExists' => ['bool', 'index'=>'mixed'], - 'SplStack::offsetGet' => ['mixed', 'index'=>'mixed'], - 'SplStack::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'], - 'SplStack::offsetUnset' => ['void', 'index'=>'mixed'], - 'SplStack::pop' => ['mixed'], - 'SplStack::prev' => ['void'], - 'SplStack::push' => ['void', 'value'=>'mixed'], - 'SplStack::rewind' => ['void'], - 'SplStack::serialize' => ['string'], - 'SplStack::setIteratorMode' => ['int', 'mode'=>'int'], - 'SplStack::shift' => ['mixed'], - 'SplStack::top' => ['mixed'], - 'SplStack::unserialize' => ['void', 'data'=>'string'], - 'SplStack::unshift' => ['void', 'value'=>'mixed'], - 'SplStack::valid' => ['bool'], - 'SplSubject::attach' => ['void', 'observer'=>'SplObserver'], - 'SplSubject::detach' => ['void', 'observer'=>'SplObserver'], - 'SplSubject::notify' => ['void'], - 'SplTempFileObject::__construct' => ['void', 'maxMemory='=>'int'], - 'SplTempFileObject::__toString' => ['string'], - 'SplTempFileObject::current' => ['string|array|false'], - 'SplTempFileObject::eof' => ['bool'], - 'SplTempFileObject::fflush' => ['bool'], - 'SplTempFileObject::fgetc' => ['string|false'], - 'SplTempFileObject::fgetcsv' => ['list|array{0: null}|false', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplTempFileObject::fgets' => ['string'], - 'SplTempFileObject::fgetss' => ['string', 'allowable_tags='=>'string'], - 'SplTempFileObject::flock' => ['bool', 'operation'=>'int', '&w_wouldBlock='=>'int'], - 'SplTempFileObject::fpassthru' => ['int'], - 'SplTempFileObject::fputcsv' => ['int|false', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplTempFileObject::fread' => ['string|false', 'length'=>'int'], - 'SplTempFileObject::fscanf' => ['array|int', 'format'=>'string', '&...w_vars='=>'string|int|float'], - 'SplTempFileObject::fseek' => ['int', 'offset'=>'int', 'whence='=>'int'], - 'SplTempFileObject::fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}'], - 'SplTempFileObject::ftell' => ['int|false'], - 'SplTempFileObject::ftruncate' => ['bool', 'size'=>'int'], - 'SplTempFileObject::fwrite' => ['int', 'data'=>'string', 'length='=>'int'], - 'SplTempFileObject::getATime' => ['int|false'], - 'SplTempFileObject::getBasename' => ['string', 'suffix='=>'string'], - 'SplTempFileObject::getCTime' => ['int|false'], - 'SplTempFileObject::getChildren' => ['null'], - 'SplTempFileObject::getCsvControl' => ['array'], - 'SplTempFileObject::getCurrentLine' => ['string'], - 'SplTempFileObject::getExtension' => ['string'], - 'SplTempFileObject::getFileInfo' => ['SplFileInfo', 'class='=>'class-string'], - 'SplTempFileObject::getFilename' => ['string'], - 'SplTempFileObject::getFlags' => ['int'], - 'SplTempFileObject::getGroup' => ['int|false'], - 'SplTempFileObject::getInode' => ['int|false'], - 'SplTempFileObject::getLinkTarget' => ['string|false'], - 'SplTempFileObject::getMaxLineLen' => ['int'], - 'SplTempFileObject::getMTime' => ['int|false'], - 'SplTempFileObject::getOwner' => ['int|false'], - 'SplTempFileObject::getPath' => ['string'], - 'SplTempFileObject::getPathInfo' => ['SplFileInfo|null', 'class='=>'class-string'], - 'SplTempFileObject::getPathname' => ['string'], - 'SplTempFileObject::getPerms' => ['int|false'], - 'SplTempFileObject::getRealPath' => ['false|non-falsy-string'], - 'SplTempFileObject::getSize' => ['int|false'], - 'SplTempFileObject::getType' => ['string|false'], - 'SplTempFileObject::hasChildren' => ['false'], - 'SplTempFileObject::isDir' => ['bool'], - 'SplTempFileObject::isExecutable' => ['bool'], - 'SplTempFileObject::isFile' => ['bool'], - 'SplTempFileObject::isLink' => ['bool'], - 'SplTempFileObject::isReadable' => ['bool'], - 'SplTempFileObject::isWritable' => ['bool'], - 'SplTempFileObject::key' => ['int'], - 'SplTempFileObject::next' => ['void'], - 'SplTempFileObject::openFile' => ['SplTempFileObject', 'mode='=>'string', 'useIncludePath='=>'bool', 'context='=>'resource'], - 'SplTempFileObject::rewind' => ['void'], - 'SplTempFileObject::seek' => ['void', 'line'=>'int'], - 'SplTempFileObject::setCsvControl' => ['void', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'SplTempFileObject::setFileClass' => ['void', 'class='=>'class-string'], - 'SplTempFileObject::setFlags' => ['void', 'flags'=>'int'], - 'SplTempFileObject::setInfoClass' => ['void', 'class='=>'class-string'], - 'SplTempFileObject::setMaxLineLen' => ['void', 'maxLength'=>'int'], - 'SplTempFileObject::valid' => ['bool'], - 'SplType::__construct' => ['void', 'initial_value='=>'mixed', 'strict='=>'bool'], - 'Spoofchecker::__construct' => ['void'], - 'Spoofchecker::areConfusable' => ['bool', 'string1'=>'string', 'string2'=>'string', '&w_errorCode='=>'int'], - 'Spoofchecker::isSuspicious' => ['bool', 'string'=>'string', '&w_errorCode='=>'int'], - 'Spoofchecker::setAllowedLocales' => ['void', 'locales'=>'string'], - 'Spoofchecker::setChecks' => ['void', 'checks'=>'int'], - 'Spoofchecker::setRestrictionLevel' => ['void', 'level'=>'int'], - 'Stomp::__construct' => ['void', 'broker='=>'string', 'username='=>'string', 'password='=>'string', 'headers='=>'?array'], - 'Stomp::abort' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], - 'Stomp::ack' => ['bool', 'msg'=>'', 'headers='=>'?array'], - 'Stomp::begin' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], - 'Stomp::commit' => ['bool', 'transaction_id'=>'string', 'headers='=>'?array'], - 'Stomp::error' => ['string'], - 'Stomp::getReadTimeout' => ['array'], - 'Stomp::getSessionId' => ['string'], - 'Stomp::hasFrame' => ['bool'], - 'Stomp::readFrame' => ['array', 'class_name='=>'string'], - 'Stomp::send' => ['bool', 'destination'=>'string', 'msg'=>'', 'headers='=>'?array'], - 'Stomp::setReadTimeout' => ['void', 'seconds'=>'int', 'microseconds='=>'?int'], - 'Stomp::subscribe' => ['bool', 'destination'=>'string', 'headers='=>'?array'], - 'Stomp::unsubscribe' => ['bool', 'destination'=>'string', 'headers='=>'?array'], - 'StompException::getDetails' => ['string'], - 'StompFrame::__construct' => ['void', 'command='=>'string', 'headers='=>'?array', 'body='=>'string'], - 'Swish::__construct' => ['void', 'index_names'=>'string'], - 'Swish::getMetaList' => ['array', 'index_name'=>'string'], - 'Swish::getPropertyList' => ['array', 'index_name'=>'string'], - 'Swish::prepare' => ['object', 'query='=>'string'], - 'Swish::query' => ['object', 'query'=>'string'], - 'SwishResult::getMetaList' => ['array'], - 'SwishResult::stem' => ['array', 'word'=>'string'], - 'SwishResults::getParsedWords' => ['array', 'index_name'=>'string'], - 'SwishResults::getRemovedStopwords' => ['array', 'index_name'=>'string'], - 'SwishResults::nextResult' => ['object'], - 'SwishResults::seekResult' => ['int', 'position'=>'int'], - 'SwishSearch::execute' => ['object', 'query='=>'string'], - 'SwishSearch::resetLimit' => [''], - 'SwishSearch::setLimit' => ['', 'property'=>'string', 'low'=>'string', 'high'=>'string'], - 'SwishSearch::setPhraseDelimiter' => ['', 'delimiter'=>'string'], - 'SwishSearch::setSort' => ['', 'sort'=>'string'], - 'SwishSearch::setStructure' => ['', 'structure'=>'int'], - 'SyncEvent::__construct' => ['void', 'name='=>'string', 'manual='=>'bool'], - 'SyncEvent::fire' => ['bool'], - 'SyncEvent::reset' => ['bool'], - 'SyncEvent::wait' => ['bool', 'wait='=>'int'], - 'SyncMutex::__construct' => ['void', 'name='=>'string'], - 'SyncMutex::lock' => ['bool', 'wait='=>'int'], - 'SyncMutex::unlock' => ['bool', 'all='=>'bool'], - 'SyncReaderWriter::__construct' => ['void', 'name='=>'string', 'autounlock='=>'bool'], - 'SyncReaderWriter::readlock' => ['bool', 'wait='=>'int'], - 'SyncReaderWriter::readunlock' => ['bool'], - 'SyncReaderWriter::writelock' => ['bool', 'wait='=>'int'], - 'SyncReaderWriter::writeunlock' => ['bool'], - 'SyncSemaphore::__construct' => ['void', 'name='=>'string', 'initialval='=>'int', 'autounlock='=>'bool'], - 'SyncSemaphore::lock' => ['bool', 'wait='=>'int'], - 'SyncSemaphore::unlock' => ['bool', '&w_prevcount='=>'int'], - 'SyncSharedMemory::__construct' => ['void', 'name'=>'string', 'size'=>'int'], - 'SyncSharedMemory::first' => ['bool'], - 'SyncSharedMemory::read' => ['string', 'start='=>'int', 'length='=>'int'], - 'SyncSharedMemory::size' => ['int'], - 'SyncSharedMemory::write' => ['int', 'string='=>'string', 'start='=>'int'], - 'Thread::__construct' => ['void'], - 'Thread::addRef' => ['void'], - 'Thread::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], - 'Thread::count' => ['int'], - 'Thread::delRef' => ['void'], - 'Thread::detach' => ['void'], - 'Thread::extend' => ['bool', 'class'=>'string'], - 'Thread::getCreatorId' => ['int'], - 'Thread::getCurrentThread' => ['Thread'], - 'Thread::getCurrentThreadId' => ['int'], - 'Thread::getRefCount' => ['int'], - 'Thread::getTerminationInfo' => ['array'], - 'Thread::getThreadId' => ['int'], - 'Thread::globally' => ['mixed'], - 'Thread::isGarbage' => ['bool'], - 'Thread::isJoined' => ['bool'], - 'Thread::isRunning' => ['bool'], - 'Thread::isStarted' => ['bool'], - 'Thread::isTerminated' => ['bool'], - 'Thread::isWaiting' => ['bool'], - 'Thread::join' => ['bool'], - 'Thread::kill' => ['void'], - 'Thread::lock' => ['bool'], - 'Thread::merge' => ['bool', 'from'=>'', 'overwrite='=>'mixed'], - 'Thread::notify' => ['bool'], - 'Thread::notifyOne' => ['bool'], - 'Thread::offsetExists' => ['bool', 'offset'=>'int|string'], - 'Thread::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'Thread::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'Thread::offsetUnset' => ['void', 'offset'=>'int|string'], - 'Thread::pop' => ['bool'], - 'Thread::run' => ['void'], - 'Thread::setGarbage' => ['void'], - 'Thread::shift' => ['bool'], - 'Thread::start' => ['bool', 'options='=>'int'], - 'Thread::synchronized' => ['mixed', 'block'=>'Closure', '_='=>'mixed'], - 'Thread::unlock' => ['bool'], - 'Thread::wait' => ['bool', 'timeout='=>'int'], - 'Threaded::__construct' => ['void'], - 'Threaded::addRef' => ['void'], - 'Threaded::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], - 'Threaded::count' => ['int'], - 'Threaded::delRef' => ['void'], - 'Threaded::extend' => ['bool', 'class'=>'string'], - 'Threaded::from' => ['Threaded', 'run'=>'Closure', 'construct='=>'Closure', 'args='=>'array'], - 'Threaded::getRefCount' => ['int'], - 'Threaded::getTerminationInfo' => ['array'], - 'Threaded::isGarbage' => ['bool'], - 'Threaded::isRunning' => ['bool'], - 'Threaded::isTerminated' => ['bool'], - 'Threaded::isWaiting' => ['bool'], - 'Threaded::lock' => ['bool'], - 'Threaded::merge' => ['bool', 'from'=>'mixed', 'overwrite='=>'bool'], - 'Threaded::notify' => ['bool'], - 'Threaded::notifyOne' => ['bool'], - 'Threaded::offsetExists' => ['bool', 'offset'=>'int|string'], - 'Threaded::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'Threaded::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'Threaded::offsetUnset' => ['void', 'offset'=>'int|string'], - 'Threaded::pop' => ['bool'], - 'Threaded::run' => ['void'], - 'Threaded::setGarbage' => ['void'], - 'Threaded::shift' => ['mixed'], - 'Threaded::synchronized' => ['mixed', 'block'=>'Closure', '...args='=>'mixed'], - 'Threaded::unlock' => ['bool'], - 'Threaded::wait' => ['bool', 'timeout='=>'int'], - 'Throwable::__toString' => ['string'], - 'Throwable::getCode' => ['int|string'], - 'Throwable::getFile' => ['string'], - 'Throwable::getLine' => ['int'], - 'Throwable::getMessage' => ['string'], - 'Throwable::getPrevious' => ['?Throwable'], - 'Throwable::getTrace' => ['list\',args?:array}>'], - 'Throwable::getTraceAsString' => ['string'], - 'TokyoTyrant::__construct' => ['void', 'host='=>'string', 'port='=>'int', 'options='=>'array'], - 'TokyoTyrant::add' => ['int|float', 'key'=>'string', 'increment'=>'float', 'type='=>'int'], - 'TokyoTyrant::connect' => ['TokyoTyrant', 'host'=>'string', 'port='=>'int', 'options='=>'array'], - 'TokyoTyrant::connectUri' => ['TokyoTyrant', 'uri'=>'string'], - 'TokyoTyrant::copy' => ['TokyoTyrant', 'path'=>'string'], - 'TokyoTyrant::ext' => ['string', 'name'=>'string', 'options'=>'int', 'key'=>'string', 'value'=>'string'], - 'TokyoTyrant::fwmKeys' => ['array', 'prefix'=>'string', 'max_recs'=>'int'], - 'TokyoTyrant::get' => ['array', 'keys'=>'mixed'], - 'TokyoTyrant::getIterator' => ['TokyoTyrantIterator'], - 'TokyoTyrant::num' => ['int'], - 'TokyoTyrant::out' => ['string', 'keys'=>'mixed'], - 'TokyoTyrant::put' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], - 'TokyoTyrant::putCat' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], - 'TokyoTyrant::putKeep' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], - 'TokyoTyrant::putNr' => ['TokyoTyrant', 'keys'=>'mixed', 'value='=>'string'], - 'TokyoTyrant::putShl' => ['mixed', 'key'=>'string', 'value'=>'string', 'width'=>'int'], - 'TokyoTyrant::restore' => ['mixed', 'log_dir'=>'string', 'timestamp'=>'int', 'check_consistency='=>'bool'], - 'TokyoTyrant::setMaster' => ['mixed', 'host'=>'string', 'port'=>'int', 'timestamp'=>'int', 'check_consistency='=>'bool'], - 'TokyoTyrant::size' => ['int', 'key'=>'string'], - 'TokyoTyrant::stat' => ['array'], - 'TokyoTyrant::sync' => ['mixed'], - 'TokyoTyrant::tune' => ['TokyoTyrant', 'timeout'=>'float', 'options='=>'int'], - 'TokyoTyrant::vanish' => ['mixed'], - 'TokyoTyrantIterator::__construct' => ['void', 'object'=>'mixed'], - 'TokyoTyrantIterator::current' => ['mixed'], - 'TokyoTyrantIterator::key' => ['mixed'], - 'TokyoTyrantIterator::next' => ['mixed'], - 'TokyoTyrantIterator::rewind' => ['void'], - 'TokyoTyrantIterator::valid' => ['bool'], - 'TokyoTyrantQuery::__construct' => ['void', 'table'=>'TokyoTyrantTable'], - 'TokyoTyrantQuery::addCond' => ['mixed', 'name'=>'string', 'op'=>'int', 'expr'=>'string'], - 'TokyoTyrantQuery::count' => ['int'], - 'TokyoTyrantQuery::current' => ['array'], - 'TokyoTyrantQuery::hint' => ['string'], - 'TokyoTyrantQuery::key' => ['string'], - 'TokyoTyrantQuery::metaSearch' => ['array', 'queries'=>'array', 'type'=>'int'], - 'TokyoTyrantQuery::next' => ['array'], - 'TokyoTyrantQuery::out' => ['TokyoTyrantQuery'], - 'TokyoTyrantQuery::rewind' => ['bool'], - 'TokyoTyrantQuery::search' => ['array'], - 'TokyoTyrantQuery::setLimit' => ['mixed', 'max='=>'int', 'skip='=>'int'], - 'TokyoTyrantQuery::setOrder' => ['mixed', 'name'=>'string', 'type'=>'int'], - 'TokyoTyrantQuery::valid' => ['bool'], - 'TokyoTyrantTable::add' => ['void', 'key'=>'string', 'increment'=>'mixed', 'type='=>'string'], - 'TokyoTyrantTable::genUid' => ['int'], - 'TokyoTyrantTable::get' => ['array', 'keys'=>'mixed'], - 'TokyoTyrantTable::getIterator' => ['TokyoTyrantIterator'], - 'TokyoTyrantTable::getQuery' => ['TokyoTyrantQuery'], - 'TokyoTyrantTable::out' => ['void', 'keys'=>'mixed'], - 'TokyoTyrantTable::put' => ['int', 'key'=>'string', 'columns'=>'array'], - 'TokyoTyrantTable::putCat' => ['void', 'key'=>'string', 'columns'=>'array'], - 'TokyoTyrantTable::putKeep' => ['void', 'key'=>'string', 'columns'=>'array'], - 'TokyoTyrantTable::putNr' => ['void', 'keys'=>'mixed', 'value='=>'string'], - 'TokyoTyrantTable::putShl' => ['void', 'key'=>'string', 'value'=>'string', 'width'=>'int'], - 'TokyoTyrantTable::setIndex' => ['mixed', 'column'=>'string', 'type'=>'int'], - 'Transliterator::create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'], - 'Transliterator::createFromRules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'], - 'Transliterator::createInverse' => ['?Transliterator'], - 'Transliterator::getErrorCode' => ['int'], - 'Transliterator::getErrorMessage' => ['string'], - 'Transliterator::listIDs' => ['array'], - 'Transliterator::transliterate' => ['string|false', 'string'=>'string', 'start='=>'int', 'end='=>'int'], - 'TypeError::__clone' => ['void'], - 'TypeError::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'TypeError::__toString' => ['string'], - 'TypeError::getCode' => ['int'], - 'TypeError::getFile' => ['string'], - 'TypeError::getLine' => ['int'], - 'TypeError::getMessage' => ['string'], - 'TypeError::getPrevious' => ['?Throwable'], - 'TypeError::getTrace' => ['list\',args?:array}>'], - 'TypeError::getTraceAsString' => ['string'], - 'UConverter::__construct' => ['void', 'destination_encoding='=>'?string', 'source_encoding='=>'?string'], - 'UConverter::convert' => ['string', 'str'=>'string', 'reverse='=>'bool'], - 'UConverter::fromUCallback' => ['string|int|array|null', 'reason'=>'int', 'source'=>'array', 'codePoint'=>'int', '&w_error'=>'int'], - 'UConverter::getAliases' => ['array|false|null', 'name'=>'string'], - 'UConverter::getAvailable' => ['array'], - 'UConverter::getDestinationEncoding' => ['string|false|null'], - 'UConverter::getDestinationType' => ['int|false|null'], - 'UConverter::getErrorCode' => ['int'], - 'UConverter::getErrorMessage' => ['?string'], - 'UConverter::getSourceEncoding' => ['string|false|null'], - 'UConverter::getSourceType' => ['int|false|null'], - 'UConverter::getStandards' => ['?array'], - 'UConverter::getSubstChars' => ['string|false|null'], - 'UConverter::reasonText' => ['string', 'reason'=>'int'], - 'UConverter::setDestinationEncoding' => ['bool', 'encoding'=>'string'], - 'UConverter::setSourceEncoding' => ['bool', 'encoding'=>'string'], - 'UConverter::setSubstChars' => ['bool', 'chars'=>'string'], - 'UConverter::toUCallback' => ['string|int|array|null', 'reason'=>'int', 'source'=>'string', 'codeUnits'=>'string', '&w_error'=>'int'], - 'UConverter::transcode' => ['string', 'str'=>'string', 'toEncoding'=>'string', 'fromEncoding'=>'string', 'options='=>'?array'], - 'UnderflowException::__clone' => ['void'], - 'UnderflowException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'UnderflowException::__toString' => ['string'], - 'UnderflowException::getCode' => ['int'], - 'UnderflowException::getFile' => ['string'], - 'UnderflowException::getLine' => ['int'], - 'UnderflowException::getMessage' => ['string'], - 'UnderflowException::getPrevious' => ['?Throwable'], - 'UnderflowException::getTrace' => ['list\',args?:array}>'], - 'UnderflowException::getTraceAsString' => ['string'], - 'UnexpectedValueException::__clone' => ['void'], - 'UnexpectedValueException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Throwable'], - 'UnexpectedValueException::__toString' => ['string'], - 'UnexpectedValueException::getCode' => ['int'], - 'UnexpectedValueException::getFile' => ['string'], - 'UnexpectedValueException::getLine' => ['int'], - 'UnexpectedValueException::getMessage' => ['string'], - 'UnexpectedValueException::getPrevious' => ['?Throwable'], - 'UnexpectedValueException::getTrace' => ['list\',args?:array}>'], - 'UnexpectedValueException::getTraceAsString' => ['string'], - 'V8Js::__construct' => ['void', 'object_name='=>'string', 'variables='=>'array', 'extensions='=>'array', 'report_uncaught_exceptions='=>'bool', 'snapshot_blob='=>'string'], - 'V8Js::clearPendingException' => [''], - 'V8Js::compileString' => ['resource', 'script'=>'', 'identifier='=>'string'], - 'V8Js::createSnapshot' => ['false|string', 'embed_source'=>'string'], - 'V8Js::executeScript' => ['', 'script'=>'resource', 'flags='=>'int', 'time_limit='=>'int', 'memory_limit='=>'int'], - 'V8Js::executeString' => ['mixed', 'script'=>'string', 'identifier='=>'string', 'flags='=>'int'], - 'V8Js::getExtensions' => ['string[]'], - 'V8Js::getPendingException' => ['?V8JsException'], - 'V8Js::registerExtension' => ['bool', 'extension_name'=>'string', 'script'=>'string', 'dependencies='=>'array', 'auto_enable='=>'bool'], - 'V8Js::setAverageObjectSize' => ['', 'average_object_size'=>'int'], - 'V8Js::setMemoryLimit' => ['', 'limit'=>'int'], - 'V8Js::setModuleLoader' => ['', 'loader'=>'callable'], - 'V8Js::setModuleNormaliser' => ['', 'normaliser'=>'callable'], - 'V8Js::setTimeLimit' => ['', 'limit'=>'int'], - 'V8JsException::getJsFileName' => ['string'], - 'V8JsException::getJsLineNumber' => ['int'], - 'V8JsException::getJsSourceLine' => ['int'], - 'V8JsException::getJsTrace' => ['string'], - 'V8JsScriptException::__clone' => ['void'], - 'V8JsScriptException::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'V8JsScriptException::__toString' => ['string'], - 'V8JsScriptException::__wakeup' => ['void'], - 'V8JsScriptException::getCode' => ['int'], - 'V8JsScriptException::getFile' => ['string'], - 'V8JsScriptException::getJsEndColumn' => ['int'], - 'V8JsScriptException::getJsFileName' => ['string'], - 'V8JsScriptException::getJsLineNumber' => ['int'], - 'V8JsScriptException::getJsSourceLine' => ['string'], - 'V8JsScriptException::getJsStartColumn' => ['int'], - 'V8JsScriptException::getJsTrace' => ['string'], - 'V8JsScriptException::getLine' => ['int'], - 'V8JsScriptException::getMessage' => ['string'], - 'V8JsScriptException::getPrevious' => ['Exception|Throwable'], - 'V8JsScriptException::getTrace' => ['list\',args?:array}>'], - 'V8JsScriptException::getTraceAsString' => ['string'], - 'VARIANT::__construct' => ['void', 'value='=>'mixed', 'type='=>'int', 'codepage='=>'int'], - 'VarnishAdmin::__construct' => ['void', 'args='=>'array'], - 'VarnishAdmin::auth' => ['bool'], - 'VarnishAdmin::ban' => ['int', 'vcl_regex'=>'string'], - 'VarnishAdmin::banUrl' => ['int', 'vcl_regex'=>'string'], - 'VarnishAdmin::clearPanic' => ['int'], - 'VarnishAdmin::connect' => ['bool'], - 'VarnishAdmin::disconnect' => ['bool'], - 'VarnishAdmin::getPanic' => ['string'], - 'VarnishAdmin::getParams' => ['array'], - 'VarnishAdmin::isRunning' => ['bool'], - 'VarnishAdmin::setCompat' => ['void', 'compat'=>'int'], - 'VarnishAdmin::setHost' => ['void', 'host'=>'string'], - 'VarnishAdmin::setIdent' => ['void', 'ident'=>'string'], - 'VarnishAdmin::setParam' => ['int', 'name'=>'string', 'value'=>'string|int'], - 'VarnishAdmin::setPort' => ['void', 'port'=>'int'], - 'VarnishAdmin::setSecret' => ['void', 'secret'=>'string'], - 'VarnishAdmin::setTimeout' => ['void', 'timeout'=>'int'], - 'VarnishAdmin::start' => ['int'], - 'VarnishAdmin::stop' => ['int'], - 'VarnishLog::__construct' => ['void', 'args='=>'array'], - 'VarnishLog::getLine' => ['array'], - 'VarnishLog::getTagName' => ['string', 'index'=>'int'], - 'VarnishStat::__construct' => ['void', 'args='=>'array'], - 'VarnishStat::getSnapshot' => ['array'], - 'Vtiful\Kernel\Chart::__construct' => ['void', 'handle'=>'resource', 'type'=>'int'], - 'Vtiful\Kernel\Chart::axisNameX' => ['Vtiful\Kernel\Chart', 'name'=>'string'], - 'Vtiful\Kernel\Chart::axisNameY' => ['Vtiful\Kernel\Chart', 'name'=>'string'], - 'Vtiful\Kernel\Chart::legendSetPosition' => ['Vtiful\Kernel\Chart', 'type'=>'int'], - 'Vtiful\Kernel\Chart::series' => ['Vtiful\Kernel\Chart', 'value'=>'string', 'categories='=>'string'], - 'Vtiful\Kernel\Chart::seriesName' => ['Vtiful\Kernel\Chart', 'value'=>'string'], - 'Vtiful\Kernel\Chart::style' => ['Vtiful\Kernel\Chart', 'style'=>'int'], - 'Vtiful\Kernel\Chart::title' => ['Vtiful\Kernel\Chart', 'title'=>'string'], - 'Vtiful\Kernel\Chart::toResource' => ['resource'], - 'Vtiful\Kernel\Excel::__construct' => ['void', 'config'=>'array'], - 'Vtiful\Kernel\Excel::activateSheet' => ['bool', 'sheet_name'=>'string'], - 'Vtiful\Kernel\Excel::addSheet' => ['Vtiful\Kernel\Excel', 'sheet_name='=>'?string'], - 'Vtiful\Kernel\Excel::autoFilter' => ['Vtiful\Kernel\Excel', 'range'=>'string'], - 'Vtiful\Kernel\Excel::checkoutSheet' => ['Vtiful\Kernel\Excel', 'sheet_name'=>'string'], - 'Vtiful\Kernel\Excel::close' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::columnIndexFromString' => ['int', 'index'=>'string'], - 'Vtiful\Kernel\Excel::constMemory' => ['Vtiful\Kernel\Excel', 'file_name'=>'string', 'sheet_name='=>'?string'], - 'Vtiful\Kernel\Excel::data' => ['Vtiful\Kernel\Excel', 'data'=>'array'], - 'Vtiful\Kernel\Excel::defaultFormat' => ['Vtiful\Kernel\Excel', 'format_handle'=>'resource'], - 'Vtiful\Kernel\Excel::existSheet' => ['bool', 'sheet_name'=>'string'], - 'Vtiful\Kernel\Excel::fileName' => ['Vtiful\Kernel\Excel', 'file_name'=>'string', 'sheet_name='=>'?string'], - 'Vtiful\Kernel\Excel::freezePanes' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int'], - 'Vtiful\Kernel\Excel::getHandle' => ['resource'], - 'Vtiful\Kernel\Excel::getSheetData' => ['array|false'], - 'Vtiful\Kernel\Excel::gridline' => ['Vtiful\Kernel\Excel', 'option='=>'int'], - 'Vtiful\Kernel\Excel::header' => ['Vtiful\Kernel\Excel', 'header'=>'array', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::insertChart' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'chart_resource'=>'resource'], - 'Vtiful\Kernel\Excel::insertComment' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'comment'=>'string'], - 'Vtiful\Kernel\Excel::insertDate' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'timestamp'=>'int', 'format='=>'?string', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::insertFormula' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'formula'=>'string', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::insertImage' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'image'=>'string', 'width='=>'?float', 'height='=>'?float'], - 'Vtiful\Kernel\Excel::insertText' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'data'=>'int|string|double', 'format='=>'?string', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::insertUrl' => ['Vtiful\Kernel\Excel', 'row'=>'int', 'column'=>'int', 'url'=>'string', 'text='=>'?string', 'tool_tip='=>'?string', 'format='=>'?resource'], - 'Vtiful\Kernel\Excel::mergeCells' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'data'=>'string', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::nextCellCallback' => ['void', 'fci'=>'callable(int,int,mixed)', 'sheet_name='=>'?string'], - 'Vtiful\Kernel\Excel::nextRow' => ['array|false', 'zv_type_t='=>'?array'], - 'Vtiful\Kernel\Excel::openFile' => ['Vtiful\Kernel\Excel', 'zs_file_name'=>'string'], - 'Vtiful\Kernel\Excel::openSheet' => ['Vtiful\Kernel\Excel', 'zs_sheet_name='=>'?string', 'zl_flag='=>'?int'], - 'Vtiful\Kernel\Excel::output' => ['string'], - 'Vtiful\Kernel\Excel::protection' => ['Vtiful\Kernel\Excel', 'password='=>'?string'], - 'Vtiful\Kernel\Excel::putCSV' => ['bool', 'fp'=>'resource', 'delimiter_str='=>'?string', 'enclosure_str='=>'?string', 'escape_str='=>'?string'], - 'Vtiful\Kernel\Excel::putCSVCallback' => ['bool', 'callback'=>'callable(array):array', 'fp'=>'resource', 'delimiter_str='=>'?string', 'enclosure_str='=>'?string', 'escape_str='=>'?string'], - 'Vtiful\Kernel\Excel::setColumn' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'width'=>'float', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::setCurrentSheetHide' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::setCurrentSheetIsFirst' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::setGlobalType' => ['Vtiful\Kernel\Excel', 'zv_type_t'=>'int'], - 'Vtiful\Kernel\Excel::setLandscape' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::setMargins' => ['Vtiful\Kernel\Excel', 'left='=>'?float', 'right='=>'?float', 'top='=>'?float', 'bottom='=>'?float'], - 'Vtiful\Kernel\Excel::setPaper' => ['Vtiful\Kernel\Excel', 'paper'=>'int'], - 'Vtiful\Kernel\Excel::setPortrait' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::setRow' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'height'=>'float', 'format_handle='=>'?resource'], - 'Vtiful\Kernel\Excel::setSkipRows' => ['Vtiful\Kernel\Excel', 'zv_skip_t'=>'int'], - 'Vtiful\Kernel\Excel::setType' => ['Vtiful\Kernel\Excel', 'zv_type_t'=>'array'], - 'Vtiful\Kernel\Excel::sheetList' => ['array'], - 'Vtiful\Kernel\Excel::showComment' => ['Vtiful\Kernel\Excel'], - 'Vtiful\Kernel\Excel::stringFromColumnIndex' => ['string', 'index'=>'int'], - 'Vtiful\Kernel\Excel::timestampFromDateDouble' => ['int', 'index'=>'?float'], - 'Vtiful\Kernel\Excel::validation' => ['Vtiful\Kernel\Excel', 'range'=>'string', 'validation_resource'=>'resource'], - 'Vtiful\Kernel\Excel::zoom' => ['Vtiful\Kernel\Excel', 'scale'=>'int'], - 'Vtiful\Kernel\Format::__construct' => ['void', 'handle'=>'resource'], - 'Vtiful\Kernel\Format::align' => ['Vtiful\Kernel\Format', '...style'=>'int'], - 'Vtiful\Kernel\Format::background' => ['Vtiful\Kernel\Format', 'color'=>'int', 'pattern='=>'int'], - 'Vtiful\Kernel\Format::bold' => ['Vtiful\Kernel\Format'], - 'Vtiful\Kernel\Format::border' => ['Vtiful\Kernel\Format', 'style'=>'int'], - 'Vtiful\Kernel\Format::font' => ['Vtiful\Kernel\Format', 'font'=>'string'], - 'Vtiful\Kernel\Format::fontColor' => ['Vtiful\Kernel\Format', 'color'=>'int'], - 'Vtiful\Kernel\Format::fontSize' => ['Vtiful\Kernel\Format', 'size'=>'float'], - 'Vtiful\Kernel\Format::italic' => ['Vtiful\Kernel\Format'], - 'Vtiful\Kernel\Format::number' => ['Vtiful\Kernel\Format', 'format'=>'string'], - 'Vtiful\Kernel\Format::strikeout' => ['Vtiful\Kernel\Format'], - 'Vtiful\Kernel\Format::toResource' => ['resource'], - 'Vtiful\Kernel\Format::underline' => ['Vtiful\Kernel\Format', 'style'=>'int'], - 'Vtiful\Kernel\Format::unlocked' => ['Vtiful\Kernel\Format'], - 'Vtiful\Kernel\Format::wrap' => ['Vtiful\Kernel\Format'], - 'Vtiful\Kernel\Validation::__construct' => ['void'], - 'Vtiful\Kernel\Validation::criteriaType' => ['?Vtiful\Kernel\Validation', 'type'=>'int'], - 'Vtiful\Kernel\Validation::maximumFormula' => ['?Vtiful\Kernel\Validation', 'maximum_formula'=>'string'], - 'Vtiful\Kernel\Validation::maximumNumber' => ['?Vtiful\Kernel\Validation', 'maximum_number'=>'float'], - 'Vtiful\Kernel\Validation::minimumFormula' => ['?Vtiful\Kernel\Validation', 'minimum_formula'=>'string'], - 'Vtiful\Kernel\Validation::minimumNumber' => ['?Vtiful\Kernel\Validation', 'minimum_number'=>'float'], - 'Vtiful\Kernel\Validation::toResource' => ['resource'], - 'Vtiful\Kernel\Validation::validationType' => ['?Vtiful\Kernel\Validation', 'type'=>'int'], - 'Vtiful\Kernel\Validation::valueList' => ['?Vtiful\Kernel\Validation', 'value_list'=>'array'], - 'Vtiful\Kernel\Validation::valueNumber' => ['?Vtiful\Kernel\Validation', 'value_number'=>'int'], - 'Weakref::acquire' => ['bool'], - 'Weakref::get' => ['object'], - 'Weakref::release' => ['bool'], - 'Weakref::valid' => ['bool'], - 'Worker::__construct' => ['void'], - 'Worker::addRef' => ['void'], - 'Worker::chunk' => ['array', 'size'=>'int', 'preserve'=>'bool'], - 'Worker::collect' => ['int', 'collector='=>'Callable'], - 'Worker::count' => ['int'], - 'Worker::delRef' => ['void'], - 'Worker::detach' => ['void'], - 'Worker::extend' => ['bool', 'class'=>'string'], - 'Worker::getCreatorId' => ['int'], - 'Worker::getCurrentThread' => ['Thread'], - 'Worker::getCurrentThreadId' => ['int'], - 'Worker::getRefCount' => ['int'], - 'Worker::getStacked' => ['int'], - 'Worker::getTerminationInfo' => ['array'], - 'Worker::getThreadId' => ['int'], - 'Worker::globally' => ['mixed'], - 'Worker::isGarbage' => ['bool'], - 'Worker::isJoined' => ['bool'], - 'Worker::isRunning' => ['bool'], - 'Worker::isShutdown' => ['bool'], - 'Worker::isStarted' => ['bool'], - 'Worker::isTerminated' => ['bool'], - 'Worker::isWaiting' => ['bool'], - 'Worker::isWorking' => ['bool'], - 'Worker::join' => ['bool'], - 'Worker::kill' => ['bool'], - 'Worker::lock' => ['bool'], - 'Worker::merge' => ['bool', 'from'=>'', 'overwrite='=>'mixed'], - 'Worker::notify' => ['bool'], - 'Worker::notifyOne' => ['bool'], - 'Worker::offsetExists' => ['bool', 'offset'=>'int|string'], - 'Worker::offsetGet' => ['mixed', 'offset'=>'int|string'], - 'Worker::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'Worker::offsetUnset' => ['void', 'offset'=>'int|string'], - 'Worker::pop' => ['bool'], - 'Worker::run' => ['void'], - 'Worker::setGarbage' => ['void'], - 'Worker::shift' => ['bool'], - 'Worker::shutdown' => ['bool'], - 'Worker::stack' => ['int', '&rw_work'=>'Threaded'], - 'Worker::start' => ['bool', 'options='=>'int'], - 'Worker::synchronized' => ['mixed', 'block'=>'Closure', '_='=>'mixed'], - 'Worker::unlock' => ['bool'], - 'Worker::unstack' => ['int', '&rw_work='=>'Threaded'], - 'Worker::wait' => ['bool', 'timeout='=>'int'], - 'XMLDiff\Base::__construct' => ['void', 'nsname'=>'string'], - 'XMLDiff\Base::diff' => ['mixed', 'from'=>'mixed', 'to'=>'mixed'], - 'XMLDiff\Base::merge' => ['mixed', 'src'=>'mixed', 'diff'=>'mixed'], - 'XMLDiff\DOM::diff' => ['DOMDocument', 'from'=>'DOMDocument', 'to'=>'DOMDocument'], - 'XMLDiff\DOM::merge' => ['DOMDocument', 'src'=>'DOMDocument', 'diff'=>'DOMDocument'], - 'XMLDiff\File::diff' => ['string', 'from'=>'string', 'to'=>'string'], - 'XMLDiff\File::merge' => ['string', 'src'=>'string', 'diff'=>'string'], - 'XMLDiff\Memory::diff' => ['string', 'from'=>'string', 'to'=>'string'], - 'XMLDiff\Memory::merge' => ['string', 'src'=>'string', 'diff'=>'string'], - 'XMLReader::XML' => ['bool|XMLReader', 'source'=>'string', 'encoding='=>'?string', 'flags='=>'int'], - 'XMLReader::close' => ['bool'], - 'XMLReader::expand' => ['DOMNode|false', 'baseNode='=>'?DOMNode'], - 'XMLReader::getAttribute' => ['?string', 'name'=>'string'], - 'XMLReader::getAttributeNo' => ['?string', 'index'=>'int'], - 'XMLReader::getAttributeNs' => ['?string', 'name'=>'string', 'namespace'=>'string'], - 'XMLReader::getParserProperty' => ['bool', 'property'=>'int'], - 'XMLReader::isValid' => ['bool'], - 'XMLReader::lookupNamespace' => ['?string', 'prefix'=>'string'], - 'XMLReader::moveToAttribute' => ['bool', 'name'=>'string'], - 'XMLReader::moveToAttributeNo' => ['bool', 'index'=>'int'], - 'XMLReader::moveToAttributeNs' => ['bool', 'name'=>'string', 'namespace'=>'string'], - 'XMLReader::moveToElement' => ['bool'], - 'XMLReader::moveToFirstAttribute' => ['bool'], - 'XMLReader::moveToNextAttribute' => ['bool'], - 'XMLReader::next' => ['bool', 'name='=>'string'], - 'XMLReader::open' => ['bool|XmlReader', 'uri'=>'string', 'encoding='=>'?string', 'flags='=>'int'], - 'XMLReader::read' => ['bool'], - 'XMLReader::readInnerXML' => ['string'], - 'XMLReader::readOuterXML' => ['string'], - 'XMLReader::readString' => ['string'], - 'XMLReader::setParserProperty' => ['bool', 'property'=>'int', 'value'=>'bool'], - 'XMLReader::setRelaxNGSchema' => ['bool', 'filename'=>'?string'], - 'XMLReader::setRelaxNGSchemaSource' => ['bool', 'source'=>'?string'], - 'XMLReader::setSchema' => ['bool', 'filename'=>'?string'], - 'XMLWriter::endAttribute' => ['bool'], - 'XMLWriter::endCdata' => ['bool'], - 'XMLWriter::endComment' => ['bool'], - 'XMLWriter::endDocument' => ['bool'], - 'XMLWriter::endDtd' => ['bool'], - 'XMLWriter::endDtdAttlist' => ['bool'], - 'XMLWriter::endDtdElement' => ['bool'], - 'XMLWriter::endDtdEntity' => ['bool'], - 'XMLWriter::endElement' => ['bool'], - 'XMLWriter::endPi' => ['bool'], - 'XMLWriter::flush' => ['string|int|false', 'empty='=>'bool'], - 'XMLWriter::fullEndElement' => ['bool'], - 'XMLWriter::openMemory' => ['bool'], - 'XMLWriter::openUri' => ['bool', 'uri'=>'string'], - 'XMLWriter::outputMemory' => ['string', 'flush='=>'bool'], - 'XMLWriter::setIndent' => ['bool', 'enable'=>'bool'], - 'XMLWriter::setIndentString' => ['bool', 'indentation'=>'string'], - 'XMLWriter::startAttribute' => ['bool', 'name'=>'string'], - 'XMLWriter::startAttributeNs' => ['bool', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string'], - 'XMLWriter::startCdata' => ['bool'], - 'XMLWriter::startComment' => ['bool'], - 'XMLWriter::startDocument' => ['bool', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], - 'XMLWriter::startDtd' => ['bool', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], - 'XMLWriter::startDtdAttlist' => ['bool', 'name'=>'string'], - 'XMLWriter::startDtdElement' => ['bool', 'qualifiedName'=>'string'], - 'XMLWriter::startDtdEntity' => ['bool', 'name'=>'string', 'isParam'=>'bool'], - 'XMLWriter::startElement' => ['bool', 'name'=>'string'], - 'XMLWriter::startElementNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - 'XMLWriter::startPi' => ['bool', 'target'=>'string'], - 'XMLWriter::text' => ['bool', 'content'=>'string'], - 'XMLWriter::writeAttribute' => ['bool', 'name'=>'string', 'value'=>'string'], - 'XMLWriter::writeAttributeNs' => ['bool', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - 'XMLWriter::writeCdata' => ['bool', 'content'=>'string'], - 'XMLWriter::writeComment' => ['bool', 'content'=>'string'], - 'XMLWriter::writeDtd' => ['bool', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], - 'XMLWriter::writeDtdAttlist' => ['bool', 'name'=>'string', 'content'=>'string'], - 'XMLWriter::writeDtdElement' => ['bool', 'name'=>'string', 'content'=>'string'], - 'XMLWriter::writeDtdEntity' => ['bool', 'name'=>'string', 'content'=>'string', 'isParam'=>'bool', 'publicId'=>'string', 'systemId'=>'string', 'notationData'=>'string'], - 'XMLWriter::writeElement' => ['bool', 'name'=>'string', 'content='=>'?string'], - 'XMLWriter::writeElementNs' => ['bool', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string', 'content='=>'?string'], - 'XMLWriter::writePi' => ['bool', 'target'=>'string', 'content'=>'string'], - 'XMLWriter::writeRaw' => ['bool', 'content'=>'string'], - 'XSLTProcessor::getParameter' => ['string|false', 'namespace'=>'string', 'name'=>'string'], - 'XSLTProcessor::hasExsltSupport' => ['bool'], - 'XSLTProcessor::importStylesheet' => ['bool', 'stylesheet'=>'object'], - 'XSLTProcessor::registerPHPFunctions' => ['void', 'functions='=>'array|string|null'], - 'XSLTProcessor::removeParameter' => ['bool', 'namespace'=>'string', 'name'=>'string'], - 'XSLTProcessor::setParameter' => ['bool', 'namespace'=>'string', 'name'=>'string', 'value'=>'string'], - 'XSLTProcessor::setParameter\'1' => ['bool', 'namespace'=>'string', 'options'=>'array'], - 'XSLTProcessor::setProfiling' => ['bool', 'filename'=>'?string'], - 'XSLTProcessor::transformToDoc' => ['DOMDocument|false', 'document'=>'DOMNode', 'returnClass='=>'?string'], - 'XSLTProcessor::transformToURI' => ['int', 'document'=>'DOMDocument', 'uri'=>'string'], - 'XSLTProcessor::transformToXML' => ['string|false', 'document'=>'DOMDocument'], - 'Xcom::__construct' => ['void', 'fabric_url='=>'string', 'fabric_token='=>'string', 'capability_token='=>'string'], - 'Xcom::decode' => ['object', 'avro_msg'=>'string', 'json_schema'=>'string'], - 'Xcom::encode' => ['string', 'data'=>'stdClass', 'avro_schema'=>'string'], - 'Xcom::getDebugOutput' => ['string'], - 'Xcom::getLastResponse' => ['string'], - 'Xcom::getLastResponseInfo' => ['array'], - 'Xcom::getOnboardingURL' => ['string', 'capability_name'=>'string', 'agreement_url'=>'string'], - 'Xcom::send' => ['int', 'topic'=>'string', 'data'=>'mixed', 'json_schema='=>'string', 'http_headers='=>'array'], - 'Xcom::sendAsync' => ['int', 'topic'=>'string', 'data'=>'mixed', 'json_schema='=>'string', 'http_headers='=>'array'], - 'XsltProcessor::getSecurityPrefs' => ['int'], - 'XsltProcessor::setSecurityPrefs' => ['int', 'preferences'=>'int'], - 'Yaconf::get' => ['mixed', 'name'=>'string', 'default_value='=>'mixed'], - 'Yaconf::has' => ['bool', 'name'=>'string'], - 'Yaf\Action_Abstract::__clone' => ['void'], - 'Yaf\Action_Abstract::__construct' => ['void', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract', 'view'=>'Yaf\View_Interface', 'invokeArgs='=>'?array'], - 'Yaf\Action_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf\Action_Abstract::execute' => ['mixed'], - 'Yaf\Action_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], - 'Yaf\Action_Abstract::getController' => ['Yaf\Controller_Abstract'], - 'Yaf\Action_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], - 'Yaf\Action_Abstract::getInvokeArgs' => ['array'], - 'Yaf\Action_Abstract::getModuleName' => ['string'], - 'Yaf\Action_Abstract::getRequest' => ['Yaf\Request_Abstract'], - 'Yaf\Action_Abstract::getResponse' => ['Yaf\Response_Abstract'], - 'Yaf\Action_Abstract::getView' => ['Yaf\View_Interface'], - 'Yaf\Action_Abstract::getViewpath' => ['string'], - 'Yaf\Action_Abstract::init' => [''], - 'Yaf\Action_Abstract::initView' => ['Yaf\Response_Abstract', 'options='=>'?array'], - 'Yaf\Action_Abstract::redirect' => ['bool', 'url'=>'string'], - 'Yaf\Action_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf\Action_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], - 'Yaf\Application::__clone' => ['void'], - 'Yaf\Application::__construct' => ['void', 'config'=>'array|string', 'envrion='=>'string'], - 'Yaf\Application::__destruct' => ['void'], - 'Yaf\Application::__sleep' => ['string[]'], - 'Yaf\Application::__wakeup' => ['void'], - 'Yaf\Application::app' => ['?Yaf\Application'], - 'Yaf\Application::bootstrap' => ['Yaf\Application', 'bootstrap='=>'?Yaf\Bootstrap_Abstract'], - 'Yaf\Application::clearLastError' => ['void'], - 'Yaf\Application::environ' => ['string'], - 'Yaf\Application::execute' => ['void', 'entry'=>'callable', '_='=>'string'], - 'Yaf\Application::getAppDirectory' => ['string'], - 'Yaf\Application::getConfig' => ['Yaf\Config_Abstract'], - 'Yaf\Application::getDispatcher' => ['Yaf\Dispatcher'], - 'Yaf\Application::getLastErrorMsg' => ['string'], - 'Yaf\Application::getLastErrorNo' => ['int'], - 'Yaf\Application::getModules' => ['array'], - 'Yaf\Application::run' => ['void'], - 'Yaf\Application::setAppDirectory' => ['Yaf\Application', 'directory'=>'string'], - 'Yaf\Config\Ini::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], - 'Yaf\Config\Ini::__get' => ['', 'name='=>'mixed'], - 'Yaf\Config\Ini::__isset' => ['', 'name'=>'string'], - 'Yaf\Config\Ini::__set' => ['void', 'name'=>'', 'value'=>''], - 'Yaf\Config\Ini::count' => ['int'], - 'Yaf\Config\Ini::current' => ['mixed'], - 'Yaf\Config\Ini::get' => ['mixed', 'name='=>'mixed'], - 'Yaf\Config\Ini::key' => ['int|string'], - 'Yaf\Config\Ini::next' => ['void'], - 'Yaf\Config\Ini::offsetExists' => ['bool', 'name'=>'int|string'], - 'Yaf\Config\Ini::offsetGet' => ['mixed', 'name'=>'int|string'], - 'Yaf\Config\Ini::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], - 'Yaf\Config\Ini::offsetUnset' => ['void', 'name'=>'int|string'], - 'Yaf\Config\Ini::readonly' => ['bool'], - 'Yaf\Config\Ini::rewind' => ['void'], - 'Yaf\Config\Ini::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], - 'Yaf\Config\Ini::toArray' => ['array'], - 'Yaf\Config\Ini::valid' => ['bool'], - 'Yaf\Config\Simple::__construct' => ['void', 'array'=>'array', 'readonly='=>'string'], - 'Yaf\Config\Simple::__get' => ['', 'name='=>'mixed'], - 'Yaf\Config\Simple::__isset' => ['', 'name'=>'string'], - 'Yaf\Config\Simple::__set' => ['void', 'name'=>'', 'value'=>''], - 'Yaf\Config\Simple::count' => ['int'], - 'Yaf\Config\Simple::current' => ['mixed'], - 'Yaf\Config\Simple::get' => ['mixed', 'name='=>'mixed'], - 'Yaf\Config\Simple::key' => ['int|string'], - 'Yaf\Config\Simple::next' => ['void'], - 'Yaf\Config\Simple::offsetExists' => ['bool', 'name'=>'int|string'], - 'Yaf\Config\Simple::offsetGet' => ['mixed', 'name'=>'int|string'], - 'Yaf\Config\Simple::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], - 'Yaf\Config\Simple::offsetUnset' => ['void', 'name'=>'int|string'], - 'Yaf\Config\Simple::readonly' => ['bool'], - 'Yaf\Config\Simple::rewind' => ['void'], - 'Yaf\Config\Simple::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], - 'Yaf\Config\Simple::toArray' => ['array'], - 'Yaf\Config\Simple::valid' => ['bool'], - 'Yaf\Config_Abstract::__construct' => ['void'], - 'Yaf\Config_Abstract::get' => ['mixed', 'name='=>'string'], - 'Yaf\Config_Abstract::readonly' => ['bool'], - 'Yaf\Config_Abstract::set' => ['Yaf\Config_Abstract', 'name'=>'string', 'value'=>'mixed'], - 'Yaf\Config_Abstract::toArray' => ['array'], - 'Yaf\Controller_Abstract::__clone' => ['void'], - 'Yaf\Controller_Abstract::__construct' => ['void', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract', 'view'=>'Yaf\View_Interface', 'invokeArgs='=>'?array'], - 'Yaf\Controller_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf\Controller_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], - 'Yaf\Controller_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], - 'Yaf\Controller_Abstract::getInvokeArgs' => ['array'], - 'Yaf\Controller_Abstract::getModuleName' => ['string'], - 'Yaf\Controller_Abstract::getRequest' => ['Yaf\Request_Abstract'], - 'Yaf\Controller_Abstract::getResponse' => ['Yaf\Response_Abstract'], - 'Yaf\Controller_Abstract::getView' => ['Yaf\View_Interface'], - 'Yaf\Controller_Abstract::getViewpath' => ['string'], - 'Yaf\Controller_Abstract::init' => [''], - 'Yaf\Controller_Abstract::initView' => ['Yaf\Response_Abstract', 'options='=>'?array'], - 'Yaf\Controller_Abstract::redirect' => ['bool', 'url'=>'string'], - 'Yaf\Controller_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf\Controller_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], - 'Yaf\Dispatcher::__clone' => ['void'], - 'Yaf\Dispatcher::__construct' => ['void'], - 'Yaf\Dispatcher::__sleep' => ['list'], - 'Yaf\Dispatcher::__wakeup' => ['void'], - 'Yaf\Dispatcher::autoRender' => ['Yaf\Dispatcher', 'flag='=>'bool'], - 'Yaf\Dispatcher::catchException' => ['Yaf\Dispatcher', 'flag='=>'bool'], - 'Yaf\Dispatcher::disableView' => ['bool'], - 'Yaf\Dispatcher::dispatch' => ['Yaf\Response_Abstract', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Dispatcher::enableView' => ['Yaf\Dispatcher'], - 'Yaf\Dispatcher::flushInstantly' => ['Yaf\Dispatcher', 'flag='=>'bool'], - 'Yaf\Dispatcher::getApplication' => ['Yaf\Application'], - 'Yaf\Dispatcher::getInstance' => ['Yaf\Dispatcher'], - 'Yaf\Dispatcher::getRequest' => ['Yaf\Request_Abstract'], - 'Yaf\Dispatcher::getRouter' => ['Yaf\Router'], - 'Yaf\Dispatcher::initView' => ['Yaf\View_Interface', 'templates_dir'=>'string', 'options='=>'?array'], - 'Yaf\Dispatcher::registerPlugin' => ['Yaf\Dispatcher', 'plugin'=>'Yaf\Plugin_Abstract'], - 'Yaf\Dispatcher::returnResponse' => ['Yaf\Dispatcher', 'flag'=>'bool'], - 'Yaf\Dispatcher::setDefaultAction' => ['Yaf\Dispatcher', 'action'=>'string'], - 'Yaf\Dispatcher::setDefaultController' => ['Yaf\Dispatcher', 'controller'=>'string'], - 'Yaf\Dispatcher::setDefaultModule' => ['Yaf\Dispatcher', 'module'=>'string'], - 'Yaf\Dispatcher::setErrorHandler' => ['Yaf\Dispatcher', 'callback'=>'callable', 'error_types'=>'int'], - 'Yaf\Dispatcher::setRequest' => ['Yaf\Dispatcher', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Dispatcher::setView' => ['Yaf\Dispatcher', 'view'=>'Yaf\View_Interface'], - 'Yaf\Dispatcher::throwException' => ['Yaf\Dispatcher', 'flag='=>'bool'], - 'Yaf\Loader::__clone' => ['void'], - 'Yaf\Loader::__construct' => ['void'], - 'Yaf\Loader::__sleep' => ['list'], - 'Yaf\Loader::__wakeup' => ['void'], - 'Yaf\Loader::autoload' => ['bool', 'class_name'=>'string'], - 'Yaf\Loader::clearLocalNamespace' => [''], - 'Yaf\Loader::getInstance' => ['Yaf\Loader', 'local_library_path='=>'string', 'global_library_path='=>'string'], - 'Yaf\Loader::getLibraryPath' => ['string', 'is_global='=>'bool'], - 'Yaf\Loader::getLocalNamespace' => ['string'], - 'Yaf\Loader::import' => ['bool', 'file'=>'string'], - 'Yaf\Loader::isLocalName' => ['bool', 'class_name'=>'string'], - 'Yaf\Loader::registerLocalNamespace' => ['bool', 'name_prefix'=>'string|string[]'], - 'Yaf\Loader::setLibraryPath' => ['Yaf\Loader', 'directory'=>'string', 'global='=>'bool'], - 'Yaf\Plugin_Abstract::dispatchLoopShutdown' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::dispatchLoopStartup' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::postDispatch' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::preDispatch' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::preResponse' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::routerShutdown' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Plugin_Abstract::routerStartup' => ['bool', 'request'=>'Yaf\Request_Abstract', 'response'=>'Yaf\Response_Abstract'], - 'Yaf\Registry::__clone' => ['void'], - 'Yaf\Registry::__construct' => ['void'], - 'Yaf\Registry::del' => ['bool|void', 'name'=>'string'], - 'Yaf\Registry::get' => ['mixed', 'name'=>'string'], - 'Yaf\Registry::has' => ['bool', 'name'=>'string'], - 'Yaf\Registry::set' => ['bool', 'name'=>'string', 'value'=>'mixed'], - 'Yaf\Request\Http::__clone' => ['void'], - 'Yaf\Request\Http::__construct' => ['void', 'request_uri'=>'string', 'base_uri'=>'string'], - 'Yaf\Request\Http::get' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf\Request\Http::getActionName' => ['string'], - 'Yaf\Request\Http::getBaseUri' => ['string'], - 'Yaf\Request\Http::getControllerName' => ['string'], - 'Yaf\Request\Http::getCookie' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getException' => ['Yaf\Exception'], - 'Yaf\Request\Http::getFiles' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getLanguage' => ['string'], - 'Yaf\Request\Http::getMethod' => ['string'], - 'Yaf\Request\Http::getModuleName' => ['string'], - 'Yaf\Request\Http::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getParams' => ['array'], - 'Yaf\Request\Http::getPost' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getQuery' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getRequest' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::getRequestUri' => ['string'], - 'Yaf\Request\Http::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Http::isCli' => ['bool'], - 'Yaf\Request\Http::isDispatched' => ['bool'], - 'Yaf\Request\Http::isGet' => ['bool'], - 'Yaf\Request\Http::isHead' => ['bool'], - 'Yaf\Request\Http::isOptions' => ['bool'], - 'Yaf\Request\Http::isPost' => ['bool'], - 'Yaf\Request\Http::isPut' => ['bool'], - 'Yaf\Request\Http::isRouted' => ['bool'], - 'Yaf\Request\Http::isXmlHttpRequest' => ['bool'], - 'Yaf\Request\Http::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], - 'Yaf\Request\Http::setBaseUri' => ['bool', 'uri'=>'string'], - 'Yaf\Request\Http::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], - 'Yaf\Request\Http::setDispatched' => ['bool'], - 'Yaf\Request\Http::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], - 'Yaf\Request\Http::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], - 'Yaf\Request\Http::setRequestUri' => ['', 'uri'=>'string'], - 'Yaf\Request\Http::setRouted' => ['Yaf\Request_Abstract|bool'], - 'Yaf\Request\Simple::__clone' => ['void'], - 'Yaf\Request\Simple::__construct' => ['void', 'method'=>'string', 'controller'=>'string', 'action'=>'string', 'params='=>'string'], - 'Yaf\Request\Simple::get' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf\Request\Simple::getActionName' => ['string'], - 'Yaf\Request\Simple::getBaseUri' => ['string'], - 'Yaf\Request\Simple::getControllerName' => ['string'], - 'Yaf\Request\Simple::getCookie' => ['mixed', 'name='=>'string', 'default='=>'string'], - 'Yaf\Request\Simple::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Simple::getException' => ['Yaf\Exception'], - 'Yaf\Request\Simple::getFiles' => ['array', 'name='=>'mixed', 'default='=>'null'], - 'Yaf\Request\Simple::getLanguage' => ['string'], - 'Yaf\Request\Simple::getMethod' => ['string'], - 'Yaf\Request\Simple::getModuleName' => ['string'], - 'Yaf\Request\Simple::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'Yaf\Request\Simple::getParams' => ['array'], - 'Yaf\Request\Simple::getPost' => ['mixed', 'name='=>'string', 'default='=>'string'], - 'Yaf\Request\Simple::getQuery' => ['mixed', 'name='=>'string', 'default='=>'string'], - 'Yaf\Request\Simple::getRequest' => ['mixed', 'name='=>'string', 'default='=>'string'], - 'Yaf\Request\Simple::getRequestUri' => ['string'], - 'Yaf\Request\Simple::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request\Simple::isCli' => ['bool'], - 'Yaf\Request\Simple::isDispatched' => ['bool'], - 'Yaf\Request\Simple::isGet' => ['bool'], - 'Yaf\Request\Simple::isHead' => ['bool'], - 'Yaf\Request\Simple::isOptions' => ['bool'], - 'Yaf\Request\Simple::isPost' => ['bool'], - 'Yaf\Request\Simple::isPut' => ['bool'], - 'Yaf\Request\Simple::isRouted' => ['bool'], - 'Yaf\Request\Simple::isXmlHttpRequest' => ['bool'], - 'Yaf\Request\Simple::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], - 'Yaf\Request\Simple::setBaseUri' => ['bool', 'uri'=>'string'], - 'Yaf\Request\Simple::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], - 'Yaf\Request\Simple::setDispatched' => ['bool'], - 'Yaf\Request\Simple::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], - 'Yaf\Request\Simple::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], - 'Yaf\Request\Simple::setRequestUri' => ['', 'uri'=>'string'], - 'Yaf\Request\Simple::setRouted' => ['Yaf\Request_Abstract|bool'], - 'Yaf\Request_Abstract::getActionName' => ['string'], - 'Yaf\Request_Abstract::getBaseUri' => ['string'], - 'Yaf\Request_Abstract::getControllerName' => ['string'], - 'Yaf\Request_Abstract::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request_Abstract::getException' => ['Yaf\Exception'], - 'Yaf\Request_Abstract::getLanguage' => ['string'], - 'Yaf\Request_Abstract::getMethod' => ['string'], - 'Yaf\Request_Abstract::getModuleName' => ['string'], - 'Yaf\Request_Abstract::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'Yaf\Request_Abstract::getParams' => ['array'], - 'Yaf\Request_Abstract::getRequestUri' => ['string'], - 'Yaf\Request_Abstract::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf\Request_Abstract::isCli' => ['bool'], - 'Yaf\Request_Abstract::isDispatched' => ['bool'], - 'Yaf\Request_Abstract::isGet' => ['bool'], - 'Yaf\Request_Abstract::isHead' => ['bool'], - 'Yaf\Request_Abstract::isOptions' => ['bool'], - 'Yaf\Request_Abstract::isPost' => ['bool'], - 'Yaf\Request_Abstract::isPut' => ['bool'], - 'Yaf\Request_Abstract::isRouted' => ['bool'], - 'Yaf\Request_Abstract::isXmlHttpRequest' => ['bool'], - 'Yaf\Request_Abstract::setActionName' => ['Yaf\Request_Abstract|bool', 'action'=>'string'], - 'Yaf\Request_Abstract::setBaseUri' => ['bool', 'uri'=>'string'], - 'Yaf\Request_Abstract::setControllerName' => ['Yaf\Request_Abstract|bool', 'controller'=>'string'], - 'Yaf\Request_Abstract::setDispatched' => ['bool'], - 'Yaf\Request_Abstract::setModuleName' => ['Yaf\Request_Abstract|bool', 'module'=>'string'], - 'Yaf\Request_Abstract::setParam' => ['Yaf\Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], - 'Yaf\Request_Abstract::setRequestUri' => ['', 'uri'=>'string'], - 'Yaf\Request_Abstract::setRouted' => ['Yaf\Request_Abstract|bool'], - 'Yaf\Response\Cli::__clone' => ['void'], - 'Yaf\Response\Cli::__construct' => ['void'], - 'Yaf\Response\Cli::__destruct' => ['void'], - 'Yaf\Response\Cli::__toString' => ['string'], - 'Yaf\Response\Cli::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Cli::clearBody' => ['bool', 'key='=>'string'], - 'Yaf\Response\Cli::getBody' => ['mixed', 'key='=>'?string'], - 'Yaf\Response\Cli::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Cli::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Http::__clone' => ['void'], - 'Yaf\Response\Http::__construct' => ['void'], - 'Yaf\Response\Http::__destruct' => ['void'], - 'Yaf\Response\Http::__toString' => ['string'], - 'Yaf\Response\Http::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Http::clearBody' => ['bool', 'key='=>'string'], - 'Yaf\Response\Http::clearHeaders' => ['Yaf\Response_Abstract|false', 'name='=>'string'], - 'Yaf\Response\Http::getBody' => ['mixed', 'key='=>'?string'], - 'Yaf\Response\Http::getHeader' => ['mixed', 'name='=>'string'], - 'Yaf\Response\Http::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Http::response' => ['bool'], - 'Yaf\Response\Http::setAllHeaders' => ['bool', 'headers'=>'array'], - 'Yaf\Response\Http::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response\Http::setHeader' => ['bool', 'name'=>'string', 'value'=>'string', 'replace='=>'bool', 'response_code='=>'int'], - 'Yaf\Response\Http::setRedirect' => ['bool', 'url'=>'string'], - 'Yaf\Response_Abstract::__clone' => ['void'], - 'Yaf\Response_Abstract::__construct' => ['void'], - 'Yaf\Response_Abstract::__destruct' => ['void'], - 'Yaf\Response_Abstract::__toString' => ['void'], - 'Yaf\Response_Abstract::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response_Abstract::clearBody' => ['bool', 'key='=>'string'], - 'Yaf\Response_Abstract::getBody' => ['mixed', 'key='=>'?string'], - 'Yaf\Response_Abstract::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Response_Abstract::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf\Route\Map::__construct' => ['void', 'controller_prefer='=>'bool', 'delimiter='=>'string'], - 'Yaf\Route\Map::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route\Map::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route\Regex::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'map='=>'?array', 'verify='=>'?array', 'reverse='=>'string'], - 'Yaf\Route\Regex::addConfig' => ['Yaf\Router|bool', 'config'=>'Yaf\Config_Abstract'], - 'Yaf\Route\Regex::addRoute' => ['Yaf\Router|bool', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], - 'Yaf\Route\Regex::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route\Regex::getCurrentRoute' => ['string'], - 'Yaf\Route\Regex::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], - 'Yaf\Route\Regex::getRoutes' => ['Yaf\Route_Interface[]'], - 'Yaf\Route\Regex::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route\Rewrite::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'verify='=>'?array', 'reverse='=>'string'], - 'Yaf\Route\Rewrite::addConfig' => ['Yaf\Router|bool', 'config'=>'Yaf\Config_Abstract'], - 'Yaf\Route\Rewrite::addRoute' => ['Yaf\Router|bool', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], - 'Yaf\Route\Rewrite::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route\Rewrite::getCurrentRoute' => ['string'], - 'Yaf\Route\Rewrite::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], - 'Yaf\Route\Rewrite::getRoutes' => ['Yaf\Route_Interface[]'], - 'Yaf\Route\Rewrite::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route\Simple::__construct' => ['void', 'module_name'=>'string', 'controller_name'=>'string', 'action_name'=>'string'], - 'Yaf\Route\Simple::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route\Simple::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route\Supervar::__construct' => ['void', 'supervar_name'=>'string'], - 'Yaf\Route\Supervar::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route\Supervar::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route_Interface::__construct' => ['Yaf\Route_Interface'], - 'Yaf\Route_Interface::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route_Interface::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Route_Static::assemble' => ['bool', 'info'=>'array', 'query='=>'?array'], - 'Yaf\Route_Static::match' => ['bool', 'uri'=>'string'], - 'Yaf\Route_Static::route' => ['bool', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Router::__construct' => ['void'], - 'Yaf\Router::addConfig' => ['Yaf\Router|false', 'config'=>'Yaf\Config_Abstract'], - 'Yaf\Router::addRoute' => ['Yaf\Router|false', 'name'=>'string', 'route'=>'Yaf\Route_Interface'], - 'Yaf\Router::getCurrentRoute' => ['string'], - 'Yaf\Router::getRoute' => ['Yaf\Route_Interface', 'name'=>'string'], - 'Yaf\Router::getRoutes' => ['Yaf\Route_Interface[]'], - 'Yaf\Router::route' => ['Yaf\Router|false', 'request'=>'Yaf\Request_Abstract'], - 'Yaf\Session::__clone' => ['void'], - 'Yaf\Session::__construct' => ['void'], - 'Yaf\Session::__get' => ['void', 'name'=>''], - 'Yaf\Session::__isset' => ['void', 'name'=>''], - 'Yaf\Session::__set' => ['void', 'name'=>'', 'value'=>''], - 'Yaf\Session::__sleep' => ['list'], - 'Yaf\Session::__unset' => ['void', 'name'=>''], - 'Yaf\Session::__wakeup' => ['void'], - 'Yaf\Session::count' => ['int'], - 'Yaf\Session::current' => ['mixed'], - 'Yaf\Session::del' => ['Yaf\Session|false', 'name'=>'string'], - 'Yaf\Session::get' => ['mixed', 'name'=>'string'], - 'Yaf\Session::getInstance' => ['Yaf\Session'], - 'Yaf\Session::has' => ['bool', 'name'=>'string'], - 'Yaf\Session::key' => ['int|string'], - 'Yaf\Session::next' => ['void'], - 'Yaf\Session::offsetExists' => ['bool', 'name'=>'int|string'], - 'Yaf\Session::offsetGet' => ['mixed', 'name'=>'int|string'], - 'Yaf\Session::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], - 'Yaf\Session::offsetUnset' => ['void', 'name'=>'int|string'], - 'Yaf\Session::rewind' => ['void'], - 'Yaf\Session::set' => ['Yaf\Session|false', 'name'=>'string', 'value'=>'mixed'], - 'Yaf\Session::start' => ['Yaf\Session'], - 'Yaf\Session::valid' => ['bool'], - 'Yaf\View\Simple::__construct' => ['void', 'template_dir'=>'string', 'options='=>'?array'], - 'Yaf\View\Simple::__get' => ['mixed', 'name='=>'null'], - 'Yaf\View\Simple::__isset' => ['', 'name'=>'string'], - 'Yaf\View\Simple::__set' => ['void', 'name'=>'string', 'value='=>'mixed'], - 'Yaf\View\Simple::assign' => ['Yaf\View\Simple', 'name'=>'array|string', 'value='=>'mixed'], - 'Yaf\View\Simple::assignRef' => ['Yaf\View\Simple', 'name'=>'string', '&value'=>'mixed'], - 'Yaf\View\Simple::clear' => ['Yaf\View\Simple', 'name='=>'string'], - 'Yaf\View\Simple::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'?array'], - 'Yaf\View\Simple::eval' => ['bool|void', 'tpl_str'=>'string', 'vars='=>'?array'], - 'Yaf\View\Simple::getScriptPath' => ['string'], - 'Yaf\View\Simple::render' => ['string|void', 'tpl'=>'string', 'tpl_vars='=>'?array'], - 'Yaf\View\Simple::setScriptPath' => ['Yaf\View\Simple', 'template_dir'=>'string'], - 'Yaf\View_Interface::assign' => ['bool', 'name'=>'array|string', 'value'=>'mixed'], - 'Yaf\View_Interface::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'?array'], - 'Yaf\View_Interface::getScriptPath' => ['string'], - 'Yaf\View_Interface::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'?array'], - 'Yaf\View_Interface::setScriptPath' => ['void', 'template_dir'=>'string'], - 'Yaf_Action_Abstract::__clone' => ['void'], - 'Yaf_Action_Abstract::__construct' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract', 'view'=>'Yaf_View_Interface', 'invokeArgs='=>'?array'], - 'Yaf_Action_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf_Action_Abstract::execute' => ['mixed', 'arg='=>'mixed', '...args='=>'mixed'], - 'Yaf_Action_Abstract::forward' => ['bool', 'module'=>'string', 'controller='=>'string', 'action='=>'string', 'parameters='=>'?array'], - 'Yaf_Action_Abstract::getController' => ['Yaf_Controller_Abstract'], - 'Yaf_Action_Abstract::getControllerName' => ['string'], - 'Yaf_Action_Abstract::getInvokeArg' => ['mixed|null', 'name'=>'string'], - 'Yaf_Action_Abstract::getInvokeArgs' => ['array'], - 'Yaf_Action_Abstract::getModuleName' => ['string'], - 'Yaf_Action_Abstract::getRequest' => ['Yaf_Request_Abstract'], - 'Yaf_Action_Abstract::getResponse' => ['Yaf_Response_Abstract'], - 'Yaf_Action_Abstract::getView' => ['Yaf_View_Interface'], - 'Yaf_Action_Abstract::getViewpath' => ['string'], - 'Yaf_Action_Abstract::init' => [''], - 'Yaf_Action_Abstract::initView' => ['Yaf_Response_Abstract', 'options='=>'?array'], - 'Yaf_Action_Abstract::redirect' => ['bool', 'url'=>'string'], - 'Yaf_Action_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'?array'], - 'Yaf_Action_Abstract::setViewpath' => ['bool', 'view_directory'=>'string'], - 'Yaf_Application::__clone' => ['void'], - 'Yaf_Application::__construct' => ['void', 'config'=>'mixed', 'envrion='=>'string'], - 'Yaf_Application::__destruct' => ['void'], - 'Yaf_Application::__sleep' => ['list'], - 'Yaf_Application::__wakeup' => ['void'], - 'Yaf_Application::app' => ['?Yaf_Application'], - 'Yaf_Application::bootstrap' => ['Yaf_Application', 'bootstrap='=>'Yaf_Bootstrap_Abstract'], - 'Yaf_Application::clearLastError' => ['Yaf_Application'], - 'Yaf_Application::environ' => ['string'], - 'Yaf_Application::execute' => ['void', 'entry'=>'callable', '...args'=>'string'], - 'Yaf_Application::getAppDirectory' => ['Yaf_Application'], - 'Yaf_Application::getConfig' => ['Yaf_Config_Abstract'], - 'Yaf_Application::getDispatcher' => ['Yaf_Dispatcher'], - 'Yaf_Application::getLastErrorMsg' => ['string'], - 'Yaf_Application::getLastErrorNo' => ['int'], - 'Yaf_Application::getModules' => ['array'], - 'Yaf_Application::run' => ['void'], - 'Yaf_Application::setAppDirectory' => ['Yaf_Application', 'directory'=>'string'], - 'Yaf_Config_Abstract::__construct' => ['void'], - 'Yaf_Config_Abstract::get' => ['mixed', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_Config_Abstract::readonly' => ['bool'], - 'Yaf_Config_Abstract::set' => ['Yaf_Config_Abstract'], - 'Yaf_Config_Abstract::toArray' => ['array'], - 'Yaf_Config_Ini::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], - 'Yaf_Config_Ini::__get' => ['void', 'name='=>'string'], - 'Yaf_Config_Ini::__isset' => ['void', 'name'=>'string'], - 'Yaf_Config_Ini::__set' => ['void', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_Config_Ini::count' => ['void'], - 'Yaf_Config_Ini::current' => ['void'], - 'Yaf_Config_Ini::get' => ['mixed', 'name='=>'mixed'], - 'Yaf_Config_Ini::key' => ['void'], - 'Yaf_Config_Ini::next' => ['void'], - 'Yaf_Config_Ini::offsetExists' => ['void', 'name'=>'string'], - 'Yaf_Config_Ini::offsetGet' => ['void', 'name'=>'string'], - 'Yaf_Config_Ini::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], - 'Yaf_Config_Ini::offsetUnset' => ['void', 'name'=>'string'], - 'Yaf_Config_Ini::readonly' => ['void'], - 'Yaf_Config_Ini::rewind' => ['void'], - 'Yaf_Config_Ini::set' => ['Yaf_Config_Abstract', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_Config_Ini::toArray' => ['array'], - 'Yaf_Config_Ini::valid' => ['void'], - 'Yaf_Config_Simple::__construct' => ['void', 'config_file'=>'string', 'section='=>'string'], - 'Yaf_Config_Simple::__get' => ['void', 'name='=>'string'], - 'Yaf_Config_Simple::__isset' => ['void', 'name'=>'string'], - 'Yaf_Config_Simple::__set' => ['void', 'name'=>'string', 'value'=>'string'], - 'Yaf_Config_Simple::count' => ['void'], - 'Yaf_Config_Simple::current' => ['void'], - 'Yaf_Config_Simple::get' => ['mixed', 'name='=>'mixed'], - 'Yaf_Config_Simple::key' => ['void'], - 'Yaf_Config_Simple::next' => ['void'], - 'Yaf_Config_Simple::offsetExists' => ['void', 'name'=>'string'], - 'Yaf_Config_Simple::offsetGet' => ['void', 'name'=>'string'], - 'Yaf_Config_Simple::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], - 'Yaf_Config_Simple::offsetUnset' => ['void', 'name'=>'string'], - 'Yaf_Config_Simple::readonly' => ['void'], - 'Yaf_Config_Simple::rewind' => ['void'], - 'Yaf_Config_Simple::set' => ['Yaf_Config_Abstract', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_Config_Simple::toArray' => ['array'], - 'Yaf_Config_Simple::valid' => ['void'], - 'Yaf_Controller_Abstract::__clone' => ['void'], - 'Yaf_Controller_Abstract::__construct' => ['void'], - 'Yaf_Controller_Abstract::display' => ['bool', 'tpl'=>'string', 'parameters='=>'array'], - 'Yaf_Controller_Abstract::forward' => ['void', 'action'=>'string', 'parameters='=>'array'], - 'Yaf_Controller_Abstract::forward\'1' => ['void', 'controller'=>'string', 'action'=>'string', 'parameters='=>'array'], - 'Yaf_Controller_Abstract::forward\'2' => ['void', 'module'=>'string', 'controller'=>'string', 'action'=>'string', 'parameters='=>'array'], - 'Yaf_Controller_Abstract::getInvokeArg' => ['void', 'name'=>'string'], - 'Yaf_Controller_Abstract::getInvokeArgs' => ['void'], - 'Yaf_Controller_Abstract::getModuleName' => ['string'], - 'Yaf_Controller_Abstract::getName' => ['string'], - 'Yaf_Controller_Abstract::getRequest' => ['Yaf_Request_Abstract'], - 'Yaf_Controller_Abstract::getResponse' => ['Yaf_Response_Abstract'], - 'Yaf_Controller_Abstract::getView' => ['Yaf_View_Interface'], - 'Yaf_Controller_Abstract::getViewpath' => ['void'], - 'Yaf_Controller_Abstract::init' => ['void'], - 'Yaf_Controller_Abstract::initView' => ['void', 'options='=>'array'], - 'Yaf_Controller_Abstract::redirect' => ['bool', 'url'=>'string'], - 'Yaf_Controller_Abstract::render' => ['string', 'tpl'=>'string', 'parameters='=>'array'], - 'Yaf_Controller_Abstract::setViewpath' => ['void', 'view_directory'=>'string'], - 'Yaf_Dispatcher::__clone' => ['void'], - 'Yaf_Dispatcher::__construct' => ['void'], - 'Yaf_Dispatcher::__sleep' => ['list'], - 'Yaf_Dispatcher::__wakeup' => ['void'], - 'Yaf_Dispatcher::autoRender' => ['Yaf_Dispatcher', 'flag='=>'bool'], - 'Yaf_Dispatcher::catchException' => ['Yaf_Dispatcher', 'flag='=>'bool'], - 'Yaf_Dispatcher::disableView' => ['bool'], - 'Yaf_Dispatcher::dispatch' => ['Yaf_Response_Abstract', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Dispatcher::enableView' => ['Yaf_Dispatcher'], - 'Yaf_Dispatcher::flushInstantly' => ['Yaf_Dispatcher', 'flag='=>'bool'], - 'Yaf_Dispatcher::getApplication' => ['Yaf_Application'], - 'Yaf_Dispatcher::getDefaultAction' => ['string'], - 'Yaf_Dispatcher::getDefaultController' => ['string'], - 'Yaf_Dispatcher::getDefaultModule' => ['string'], - 'Yaf_Dispatcher::getInstance' => ['Yaf_Dispatcher'], - 'Yaf_Dispatcher::getRequest' => ['Yaf_Request_Abstract'], - 'Yaf_Dispatcher::getRouter' => ['Yaf_Router'], - 'Yaf_Dispatcher::initView' => ['Yaf_View_Interface', 'templates_dir'=>'string', 'options='=>'array'], - 'Yaf_Dispatcher::registerPlugin' => ['Yaf_Dispatcher', 'plugin'=>'Yaf_Plugin_Abstract'], - 'Yaf_Dispatcher::returnResponse' => ['Yaf_Dispatcher', 'flag'=>'bool'], - 'Yaf_Dispatcher::setDefaultAction' => ['Yaf_Dispatcher', 'action'=>'string'], - 'Yaf_Dispatcher::setDefaultController' => ['Yaf_Dispatcher', 'controller'=>'string'], - 'Yaf_Dispatcher::setDefaultModule' => ['Yaf_Dispatcher', 'module'=>'string'], - 'Yaf_Dispatcher::setErrorHandler' => ['Yaf_Dispatcher', 'callback'=>'callable', 'error_types'=>'int'], - 'Yaf_Dispatcher::setRequest' => ['Yaf_Dispatcher', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Dispatcher::setView' => ['Yaf_Dispatcher', 'view'=>'Yaf_View_Interface'], - 'Yaf_Dispatcher::throwException' => ['Yaf_Dispatcher', 'flag='=>'bool'], - 'Yaf_Exception::__construct' => ['void'], - 'Yaf_Exception::getPrevious' => ['void'], - 'Yaf_Loader::__clone' => ['void'], - 'Yaf_Loader::__construct' => ['void'], - 'Yaf_Loader::__sleep' => ['list'], - 'Yaf_Loader::__wakeup' => ['void'], - 'Yaf_Loader::autoload' => ['void'], - 'Yaf_Loader::clearLocalNamespace' => ['void'], - 'Yaf_Loader::getInstance' => ['Yaf_Loader'], - 'Yaf_Loader::getLibraryPath' => ['Yaf_Loader', 'is_global='=>'bool'], - 'Yaf_Loader::getLocalNamespace' => ['void'], - 'Yaf_Loader::getNamespacePath' => ['string', 'namespaces'=>'string'], - 'Yaf_Loader::import' => ['bool'], - 'Yaf_Loader::isLocalName' => ['bool'], - 'Yaf_Loader::registerLocalNamespace' => ['void', 'prefix'=>'mixed'], - 'Yaf_Loader::registerNamespace' => ['bool', 'namespaces'=>'string|array', 'path='=>'string'], - 'Yaf_Loader::setLibraryPath' => ['Yaf_Loader', 'directory'=>'string', 'is_global='=>'bool'], - 'Yaf_Plugin_Abstract::dispatchLoopShutdown' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::dispatchLoopStartup' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::postDispatch' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::preDispatch' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::preResponse' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::routerShutdown' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Plugin_Abstract::routerStartup' => ['void', 'request'=>'Yaf_Request_Abstract', 'response'=>'Yaf_Response_Abstract'], - 'Yaf_Registry::__clone' => ['void'], - 'Yaf_Registry::__construct' => ['void'], - 'Yaf_Registry::del' => ['void', 'name'=>'string'], - 'Yaf_Registry::get' => ['mixed', 'name'=>'string'], - 'Yaf_Registry::has' => ['bool', 'name'=>'string'], - 'Yaf_Registry::set' => ['bool', 'name'=>'string', 'value'=>'string'], - 'Yaf_Request_Abstract::clearParams' => ['bool'], - 'Yaf_Request_Abstract::getActionName' => ['void'], - 'Yaf_Request_Abstract::getBaseUri' => ['void'], - 'Yaf_Request_Abstract::getControllerName' => ['void'], - 'Yaf_Request_Abstract::getEnv' => ['void', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Abstract::getException' => ['void'], - 'Yaf_Request_Abstract::getLanguage' => ['void'], - 'Yaf_Request_Abstract::getMethod' => ['void'], - 'Yaf_Request_Abstract::getModuleName' => ['void'], - 'Yaf_Request_Abstract::getParam' => ['void', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Abstract::getParams' => ['void'], - 'Yaf_Request_Abstract::getRequestUri' => ['void'], - 'Yaf_Request_Abstract::getServer' => ['void', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Abstract::isCli' => ['void'], - 'Yaf_Request_Abstract::isDispatched' => ['void'], - 'Yaf_Request_Abstract::isGet' => ['void'], - 'Yaf_Request_Abstract::isHead' => ['void'], - 'Yaf_Request_Abstract::isOptions' => ['void'], - 'Yaf_Request_Abstract::isPost' => ['void'], - 'Yaf_Request_Abstract::isPut' => ['void'], - 'Yaf_Request_Abstract::isRouted' => ['void'], - 'Yaf_Request_Abstract::isXmlHttpRequest' => ['void'], - 'Yaf_Request_Abstract::setActionName' => ['void', 'action'=>'string'], - 'Yaf_Request_Abstract::setBaseUri' => ['bool', 'uir'=>'string'], - 'Yaf_Request_Abstract::setControllerName' => ['void', 'controller'=>'string'], - 'Yaf_Request_Abstract::setDispatched' => ['void'], - 'Yaf_Request_Abstract::setModuleName' => ['void', 'module'=>'string'], - 'Yaf_Request_Abstract::setParam' => ['void', 'name'=>'string', 'value='=>'string'], - 'Yaf_Request_Abstract::setRequestUri' => ['void', 'uir'=>'string'], - 'Yaf_Request_Abstract::setRouted' => ['void', 'flag='=>'string'], - 'Yaf_Request_Http::__clone' => ['void'], - 'Yaf_Request_Http::__construct' => ['void'], - 'Yaf_Request_Http::get' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Http::getActionName' => ['string'], - 'Yaf_Request_Http::getBaseUri' => ['string'], - 'Yaf_Request_Http::getControllerName' => ['string'], - 'Yaf_Request_Http::getCookie' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Http::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf_Request_Http::getException' => ['Yaf_Exception'], - 'Yaf_Request_Http::getFiles' => ['void'], - 'Yaf_Request_Http::getLanguage' => ['string'], - 'Yaf_Request_Http::getMethod' => ['string'], - 'Yaf_Request_Http::getModuleName' => ['string'], - 'Yaf_Request_Http::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'Yaf_Request_Http::getParams' => ['array'], - 'Yaf_Request_Http::getPost' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Http::getQuery' => ['mixed', 'name'=>'string', 'default='=>'string'], - 'Yaf_Request_Http::getRaw' => ['mixed'], - 'Yaf_Request_Http::getRequest' => ['void'], - 'Yaf_Request_Http::getRequestUri' => ['string'], - 'Yaf_Request_Http::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf_Request_Http::isCli' => ['bool'], - 'Yaf_Request_Http::isDispatched' => ['bool'], - 'Yaf_Request_Http::isGet' => ['bool'], - 'Yaf_Request_Http::isHead' => ['bool'], - 'Yaf_Request_Http::isOptions' => ['bool'], - 'Yaf_Request_Http::isPost' => ['bool'], - 'Yaf_Request_Http::isPut' => ['bool'], - 'Yaf_Request_Http::isRouted' => ['bool'], - 'Yaf_Request_Http::isXmlHttpRequest' => ['bool'], - 'Yaf_Request_Http::setActionName' => ['Yaf_Request_Abstract|bool', 'action'=>'string'], - 'Yaf_Request_Http::setBaseUri' => ['bool', 'uri'=>'string'], - 'Yaf_Request_Http::setControllerName' => ['Yaf_Request_Abstract|bool', 'controller'=>'string'], - 'Yaf_Request_Http::setDispatched' => ['bool'], - 'Yaf_Request_Http::setModuleName' => ['Yaf_Request_Abstract|bool', 'module'=>'string'], - 'Yaf_Request_Http::setParam' => ['Yaf_Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], - 'Yaf_Request_Http::setRequestUri' => ['', 'uri'=>'string'], - 'Yaf_Request_Http::setRouted' => ['Yaf_Request_Abstract|bool'], - 'Yaf_Request_Simple::__clone' => ['void'], - 'Yaf_Request_Simple::__construct' => ['void'], - 'Yaf_Request_Simple::get' => ['void'], - 'Yaf_Request_Simple::getActionName' => ['string'], - 'Yaf_Request_Simple::getBaseUri' => ['string'], - 'Yaf_Request_Simple::getControllerName' => ['string'], - 'Yaf_Request_Simple::getCookie' => ['void'], - 'Yaf_Request_Simple::getEnv' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf_Request_Simple::getException' => ['Yaf_Exception'], - 'Yaf_Request_Simple::getFiles' => ['void'], - 'Yaf_Request_Simple::getLanguage' => ['string'], - 'Yaf_Request_Simple::getMethod' => ['string'], - 'Yaf_Request_Simple::getModuleName' => ['string'], - 'Yaf_Request_Simple::getParam' => ['mixed', 'name'=>'string', 'default='=>'mixed'], - 'Yaf_Request_Simple::getParams' => ['array'], - 'Yaf_Request_Simple::getPost' => ['void'], - 'Yaf_Request_Simple::getQuery' => ['void'], - 'Yaf_Request_Simple::getRequest' => ['void'], - 'Yaf_Request_Simple::getRequestUri' => ['string'], - 'Yaf_Request_Simple::getServer' => ['mixed', 'name='=>'string', 'default='=>'mixed'], - 'Yaf_Request_Simple::isCli' => ['bool'], - 'Yaf_Request_Simple::isDispatched' => ['bool'], - 'Yaf_Request_Simple::isGet' => ['bool'], - 'Yaf_Request_Simple::isHead' => ['bool'], - 'Yaf_Request_Simple::isOptions' => ['bool'], - 'Yaf_Request_Simple::isPost' => ['bool'], - 'Yaf_Request_Simple::isPut' => ['bool'], - 'Yaf_Request_Simple::isRouted' => ['bool'], - 'Yaf_Request_Simple::isXmlHttpRequest' => ['void'], - 'Yaf_Request_Simple::setActionName' => ['Yaf_Request_Abstract|bool', 'action'=>'string'], - 'Yaf_Request_Simple::setBaseUri' => ['bool', 'uri'=>'string'], - 'Yaf_Request_Simple::setControllerName' => ['Yaf_Request_Abstract|bool', 'controller'=>'string'], - 'Yaf_Request_Simple::setDispatched' => ['bool'], - 'Yaf_Request_Simple::setModuleName' => ['Yaf_Request_Abstract|bool', 'module'=>'string'], - 'Yaf_Request_Simple::setParam' => ['Yaf_Request_Abstract|bool', 'name'=>'array|string', 'value='=>'string'], - 'Yaf_Request_Simple::setRequestUri' => ['', 'uri'=>'string'], - 'Yaf_Request_Simple::setRouted' => ['Yaf_Request_Abstract|bool'], - 'Yaf_Response_Abstract::__clone' => ['void'], - 'Yaf_Response_Abstract::__construct' => ['void'], - 'Yaf_Response_Abstract::__destruct' => ['void'], - 'Yaf_Response_Abstract::__toString' => ['string'], - 'Yaf_Response_Abstract::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Abstract::clearBody' => ['bool', 'key='=>'string'], - 'Yaf_Response_Abstract::clearHeaders' => ['void'], - 'Yaf_Response_Abstract::getBody' => ['mixed', 'key='=>'string'], - 'Yaf_Response_Abstract::getHeader' => ['void'], - 'Yaf_Response_Abstract::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Abstract::response' => ['void'], - 'Yaf_Response_Abstract::setAllHeaders' => ['void'], - 'Yaf_Response_Abstract::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Abstract::setHeader' => ['void'], - 'Yaf_Response_Abstract::setRedirect' => ['void'], - 'Yaf_Response_Cli::__clone' => ['void'], - 'Yaf_Response_Cli::__construct' => ['void'], - 'Yaf_Response_Cli::__destruct' => ['void'], - 'Yaf_Response_Cli::__toString' => ['string'], - 'Yaf_Response_Cli::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Cli::clearBody' => ['bool', 'key='=>'string'], - 'Yaf_Response_Cli::getBody' => ['mixed', 'key='=>'?string'], - 'Yaf_Response_Cli::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Cli::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Http::__clone' => ['void'], - 'Yaf_Response_Http::__construct' => ['void'], - 'Yaf_Response_Http::__destruct' => ['void'], - 'Yaf_Response_Http::__toString' => ['string'], - 'Yaf_Response_Http::appendBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Http::clearBody' => ['bool', 'key='=>'string'], - 'Yaf_Response_Http::clearHeaders' => ['Yaf_Response_Abstract|false', 'name='=>'string'], - 'Yaf_Response_Http::getBody' => ['mixed', 'key='=>'?string'], - 'Yaf_Response_Http::getHeader' => ['mixed', 'name='=>'string'], - 'Yaf_Response_Http::prependBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Http::response' => ['bool'], - 'Yaf_Response_Http::setAllHeaders' => ['bool', 'headers'=>'array'], - 'Yaf_Response_Http::setBody' => ['bool', 'content'=>'string', 'key='=>'string'], - 'Yaf_Response_Http::setHeader' => ['bool', 'name'=>'string', 'value'=>'string', 'replace='=>'bool', 'response_code='=>'int'], - 'Yaf_Response_Http::setRedirect' => ['bool', 'url'=>'string'], - 'Yaf_Route_Interface::__construct' => ['void'], - 'Yaf_Route_Interface::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Interface::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Map::__construct' => ['void', 'controller_prefer='=>'string', 'delimiter='=>'string'], - 'Yaf_Route_Map::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Map::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Regex::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'map='=>'array', 'verify='=>'array', 'reverse='=>'string'], - 'Yaf_Route_Regex::addConfig' => ['Yaf_Router|bool', 'config'=>'Yaf_Config_Abstract'], - 'Yaf_Route_Regex::addRoute' => ['Yaf_Router|bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], - 'Yaf_Route_Regex::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Regex::getCurrentRoute' => ['string'], - 'Yaf_Route_Regex::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], - 'Yaf_Route_Regex::getRoutes' => ['Yaf_Route_Interface[]'], - 'Yaf_Route_Regex::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Rewrite::__construct' => ['void', 'match'=>'string', 'route'=>'array', 'verify='=>'array'], - 'Yaf_Route_Rewrite::addConfig' => ['Yaf_Router|bool', 'config'=>'Yaf_Config_Abstract'], - 'Yaf_Route_Rewrite::addRoute' => ['Yaf_Router|bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], - 'Yaf_Route_Rewrite::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Rewrite::getCurrentRoute' => ['string'], - 'Yaf_Route_Rewrite::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], - 'Yaf_Route_Rewrite::getRoutes' => ['Yaf_Route_Interface[]'], - 'Yaf_Route_Rewrite::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Simple::__construct' => ['void', 'module_name'=>'string', 'controller_name'=>'string', 'action_name'=>'string'], - 'Yaf_Route_Simple::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Simple::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Static::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Static::match' => ['void', 'uri'=>'string'], - 'Yaf_Route_Static::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Route_Supervar::__construct' => ['void', 'supervar_name'=>'string'], - 'Yaf_Route_Supervar::assemble' => ['string', 'info'=>'array', 'query='=>'array'], - 'Yaf_Route_Supervar::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Router::__construct' => ['void'], - 'Yaf_Router::addConfig' => ['bool', 'config'=>'Yaf_Config_Abstract'], - 'Yaf_Router::addRoute' => ['bool', 'name'=>'string', 'route'=>'Yaf_Route_Interface'], - 'Yaf_Router::getCurrentRoute' => ['string'], - 'Yaf_Router::getRoute' => ['Yaf_Route_Interface', 'name'=>'string'], - 'Yaf_Router::getRoutes' => ['mixed'], - 'Yaf_Router::route' => ['bool', 'request'=>'Yaf_Request_Abstract'], - 'Yaf_Session::__clone' => ['void'], - 'Yaf_Session::__construct' => ['void'], - 'Yaf_Session::__get' => ['void', 'name'=>'string'], - 'Yaf_Session::__isset' => ['void', 'name'=>'string'], - 'Yaf_Session::__set' => ['void', 'name'=>'string', 'value'=>'string'], - 'Yaf_Session::__sleep' => ['list'], - 'Yaf_Session::__unset' => ['void', 'name'=>'string'], - 'Yaf_Session::__wakeup' => ['void'], - 'Yaf_Session::count' => ['void'], - 'Yaf_Session::current' => ['void'], - 'Yaf_Session::del' => ['void', 'name'=>'string'], - 'Yaf_Session::get' => ['mixed', 'name'=>'string'], - 'Yaf_Session::getInstance' => ['void'], - 'Yaf_Session::has' => ['void', 'name'=>'string'], - 'Yaf_Session::key' => ['void'], - 'Yaf_Session::next' => ['void'], - 'Yaf_Session::offsetExists' => ['void', 'name'=>'string'], - 'Yaf_Session::offsetGet' => ['void', 'name'=>'string'], - 'Yaf_Session::offsetSet' => ['void', 'name'=>'string', 'value'=>'string'], - 'Yaf_Session::offsetUnset' => ['void', 'name'=>'string'], - 'Yaf_Session::rewind' => ['void'], - 'Yaf_Session::set' => ['Yaf_Session|bool', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_Session::start' => ['void'], - 'Yaf_Session::valid' => ['void'], - 'Yaf_View_Interface::assign' => ['bool', 'name'=>'string', 'value='=>'string'], - 'Yaf_View_Interface::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'array'], - 'Yaf_View_Interface::getScriptPath' => ['string'], - 'Yaf_View_Interface::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'array'], - 'Yaf_View_Interface::setScriptPath' => ['void', 'template_dir'=>'string'], - 'Yaf_View_Simple::__construct' => ['void', 'tempalte_dir'=>'string', 'options='=>'array'], - 'Yaf_View_Simple::__get' => ['void', 'name='=>'string'], - 'Yaf_View_Simple::__isset' => ['void', 'name'=>'string'], - 'Yaf_View_Simple::__set' => ['void', 'name'=>'string', 'value'=>'mixed'], - 'Yaf_View_Simple::assign' => ['bool', 'name'=>'string', 'value='=>'mixed'], - 'Yaf_View_Simple::assignRef' => ['bool', 'name'=>'string', '&rw_value'=>'mixed'], - 'Yaf_View_Simple::clear' => ['bool', 'name='=>'string'], - 'Yaf_View_Simple::display' => ['bool', 'tpl'=>'string', 'tpl_vars='=>'array'], - 'Yaf_View_Simple::eval' => ['string', 'tpl_content'=>'string', 'tpl_vars='=>'array'], - 'Yaf_View_Simple::getScriptPath' => ['string'], - 'Yaf_View_Simple::render' => ['string', 'tpl'=>'string', 'tpl_vars='=>'array'], - 'Yaf_View_Simple::setScriptPath' => ['bool', 'template_dir'=>'string'], - 'Yar_Client::__call' => ['void', 'method'=>'string', 'parameters'=>'array'], - 'Yar_Client::__construct' => ['void', 'url'=>'string'], - 'Yar_Client::setOpt' => ['Yar_Client|false', 'name'=>'int', 'value'=>'mixed'], - 'Yar_Client_Exception::__clone' => ['void'], - 'Yar_Client_Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'Yar_Client_Exception::__toString' => ['string'], - 'Yar_Client_Exception::__wakeup' => ['void'], - 'Yar_Client_Exception::getCode' => ['int'], - 'Yar_Client_Exception::getFile' => ['string'], - 'Yar_Client_Exception::getLine' => ['int'], - 'Yar_Client_Exception::getMessage' => ['string'], - 'Yar_Client_Exception::getPrevious' => ['?Exception|?Throwable'], - 'Yar_Client_Exception::getTrace' => ['list\',args?:array}>'], - 'Yar_Client_Exception::getTraceAsString' => ['string'], - 'Yar_Client_Exception::getType' => ['string'], - 'Yar_Concurrent_Client::call' => ['int', 'uri'=>'string', 'method'=>'string', 'parameters'=>'array', 'callback='=>'callable'], - 'Yar_Concurrent_Client::loop' => ['bool', 'callback='=>'callable', 'error_callback='=>'callable'], - 'Yar_Concurrent_Client::reset' => ['bool'], - 'Yar_Server::__construct' => ['void', 'object'=>'Object'], - 'Yar_Server::handle' => ['bool'], - 'Yar_Server_Exception::__clone' => ['void'], - 'Yar_Server_Exception::__construct' => ['void', 'message='=>'string', 'code='=>'int', 'previous='=>'?Exception|?Throwable'], - 'Yar_Server_Exception::__toString' => ['string'], - 'Yar_Server_Exception::__wakeup' => ['void'], - 'Yar_Server_Exception::getCode' => ['int'], - 'Yar_Server_Exception::getFile' => ['string'], - 'Yar_Server_Exception::getLine' => ['int'], - 'Yar_Server_Exception::getMessage' => ['string'], - 'Yar_Server_Exception::getPrevious' => ['?Exception|?Throwable'], - 'Yar_Server_Exception::getTrace' => ['list\',args?:array}>'], - 'Yar_Server_Exception::getTraceAsString' => ['string'], - 'Yar_Server_Exception::getType' => ['string'], - 'ZMQ::__construct' => ['void'], - 'ZMQContext::__construct' => ['void', 'io_threads='=>'int', 'is_persistent='=>'bool'], - 'ZMQContext::getOpt' => ['int|string', 'key'=>'string'], - 'ZMQContext::getSocket' => ['ZMQSocket', 'type'=>'int', 'persistent_id='=>'string', 'on_new_socket='=>'callable'], - 'ZMQContext::isPersistent' => ['bool'], - 'ZMQContext::setOpt' => ['ZMQContext', 'key'=>'int', 'value'=>'mixed'], - 'ZMQDevice::__construct' => ['void', 'frontend'=>'ZMQSocket', 'backend'=>'ZMQSocket', 'listener='=>'ZMQSocket'], - 'ZMQDevice::getIdleTimeout' => ['ZMQDevice'], - 'ZMQDevice::getTimerTimeout' => ['ZMQDevice'], - 'ZMQDevice::run' => ['void'], - 'ZMQDevice::setIdleCallback' => ['ZMQDevice', 'cb_func'=>'callable', 'timeout'=>'int', 'user_data='=>'mixed'], - 'ZMQDevice::setIdleTimeout' => ['ZMQDevice', 'timeout'=>'int'], - 'ZMQDevice::setTimerCallback' => ['ZMQDevice', 'cb_func'=>'callable', 'timeout'=>'int', 'user_data='=>'mixed'], - 'ZMQDevice::setTimerTimeout' => ['ZMQDevice', 'timeout'=>'int'], - 'ZMQPoll::add' => ['string', 'entry'=>'mixed', 'type'=>'int'], - 'ZMQPoll::clear' => ['ZMQPoll'], - 'ZMQPoll::count' => ['int'], - 'ZMQPoll::getLastErrors' => ['array'], - 'ZMQPoll::poll' => ['int', '&w_readable'=>'array', '&w_writable'=>'array', 'timeout='=>'int'], - 'ZMQPoll::remove' => ['bool', 'item'=>'mixed'], - 'ZMQSocket::__construct' => ['void', 'context'=>'ZMQContext', 'type'=>'int', 'persistent_id='=>'string', 'on_new_socket='=>'callable'], - 'ZMQSocket::bind' => ['ZMQSocket', 'dsn'=>'string', 'force='=>'bool'], - 'ZMQSocket::connect' => ['ZMQSocket', 'dsn'=>'string', 'force='=>'bool'], - 'ZMQSocket::disconnect' => ['ZMQSocket', 'dsn'=>'string'], - 'ZMQSocket::getEndpoints' => ['array'], - 'ZMQSocket::getPersistentId' => ['?string'], - 'ZMQSocket::getSockOpt' => ['int|string', 'key'=>'string'], - 'ZMQSocket::getSocketType' => ['int'], - 'ZMQSocket::isPersistent' => ['bool'], - 'ZMQSocket::recv' => ['string', 'mode='=>'int'], - 'ZMQSocket::recvMulti' => ['string[]', 'mode='=>'int'], - 'ZMQSocket::send' => ['ZMQSocket', 'message'=>'array', 'mode='=>'int'], - 'ZMQSocket::send\'1' => ['ZMQSocket', 'message'=>'string', 'mode='=>'int'], - 'ZMQSocket::sendmulti' => ['ZMQSocket', 'message'=>'array', 'mode='=>'int'], - 'ZMQSocket::setSockOpt' => ['ZMQSocket', 'key'=>'int', 'value'=>'mixed'], - 'ZMQSocket::unbind' => ['ZMQSocket', 'dsn'=>'string'], - 'ZendAPI_Job::ZendAPI_Job' => ['Job', 'script'=>'script'], - 'ZendAPI_Job::addJobToQueue' => ['int', 'jobqueue_url'=>'string', 'password'=>'string'], - 'ZendAPI_Job::getApplicationID' => [''], - 'ZendAPI_Job::getEndTime' => [''], - 'ZendAPI_Job::getGlobalVariables' => [''], - 'ZendAPI_Job::getHost' => [''], - 'ZendAPI_Job::getID' => [''], - 'ZendAPI_Job::getInterval' => [''], - 'ZendAPI_Job::getJobDependency' => [''], - 'ZendAPI_Job::getJobName' => [''], - 'ZendAPI_Job::getJobPriority' => [''], - 'ZendAPI_Job::getJobStatus' => ['int'], - 'ZendAPI_Job::getLastPerformedStatus' => ['int'], - 'ZendAPI_Job::getOutput' => ['An'], - 'ZendAPI_Job::getPreserved' => [''], - 'ZendAPI_Job::getProperties' => ['array'], - 'ZendAPI_Job::getScheduledTime' => [''], - 'ZendAPI_Job::getScript' => [''], - 'ZendAPI_Job::getTimeToNextRepeat' => ['int'], - 'ZendAPI_Job::getUserVariables' => [''], - 'ZendAPI_Job::setApplicationID' => ['', 'app_id'=>''], - 'ZendAPI_Job::setGlobalVariables' => ['', 'vars'=>''], - 'ZendAPI_Job::setJobDependency' => ['', 'job_id'=>''], - 'ZendAPI_Job::setJobName' => ['', 'name'=>''], - 'ZendAPI_Job::setJobPriority' => ['', 'priority'=>'int'], - 'ZendAPI_Job::setPreserved' => ['', 'preserved'=>''], - 'ZendAPI_Job::setRecurrenceData' => ['', 'interval'=>'', 'end_time='=>'mixed'], - 'ZendAPI_Job::setScheduledTime' => ['', 'timestamp'=>''], - 'ZendAPI_Job::setScript' => ['', 'script'=>''], - 'ZendAPI_Job::setUserVariables' => ['', 'vars'=>''], - 'ZendAPI_Queue::addJob' => ['int', '&job'=>'Job'], - 'ZendAPI_Queue::getAllApplicationIDs' => ['array'], - 'ZendAPI_Queue::getAllhosts' => ['array'], - 'ZendAPI_Queue::getHistoricJobs' => ['array', 'status'=>'int', 'start_time'=>'', 'end_time'=>'', 'index'=>'int', 'count'=>'int', '&total'=>'int'], - 'ZendAPI_Queue::getJob' => ['Job', 'job_id'=>'int'], - 'ZendAPI_Queue::getJobsInQueue' => ['array', 'filter_options='=>'array', 'max_jobs='=>'int', 'with_globals_and_output='=>'bool'], - 'ZendAPI_Queue::getLastError' => ['string'], - 'ZendAPI_Queue::getNumOfJobsInQueue' => ['int', 'filter_options='=>'array'], - 'ZendAPI_Queue::getStatistics' => ['array'], - 'ZendAPI_Queue::isScriptExists' => ['bool', 'path'=>'string'], - 'ZendAPI_Queue::isSuspend' => ['bool'], - 'ZendAPI_Queue::login' => ['bool', 'password'=>'string', 'application_id='=>'int'], - 'ZendAPI_Queue::removeJob' => ['bool', 'job_id'=>'array|int'], - 'ZendAPI_Queue::requeueJob' => ['bool', 'job'=>'Job'], - 'ZendAPI_Queue::resumeJob' => ['bool', 'job_id'=>'array|int'], - 'ZendAPI_Queue::resumeQueue' => ['bool'], - 'ZendAPI_Queue::setMaxHistoryTime' => ['bool'], - 'ZendAPI_Queue::suspendJob' => ['bool', 'job_id'=>'array|int'], - 'ZendAPI_Queue::suspendQueue' => ['bool'], - 'ZendAPI_Queue::updateJob' => ['int', '&job'=>'Job'], - 'ZendAPI_Queue::zendapi_queue' => ['ZendAPI_Queue', 'queue_url'=>'string'], - 'ZipArchive::addEmptyDir' => ['bool', 'dirname'=>'string'], - 'ZipArchive::addFile' => ['bool', 'filepath'=>'string', 'entryname='=>'string', 'start='=>'int', 'length='=>'int'], - 'ZipArchive::addFromString' => ['bool', 'name'=>'string', 'content'=>'string'], - 'ZipArchive::addGlob' => ['array|false', 'pattern'=>'string', 'flags='=>'int', 'options='=>'array'], - 'ZipArchive::addPattern' => ['array|false', 'pattern'=>'string', 'path='=>'string', 'options='=>'array'], - 'ZipArchive::close' => ['bool'], - 'ZipArchive::deleteIndex' => ['bool', 'index'=>'int'], - 'ZipArchive::deleteName' => ['bool', 'name'=>'string'], - 'ZipArchive::extractTo' => ['bool', 'pathto'=>'string', 'files='=>'string[]|string|null'], - 'ZipArchive::getArchiveComment' => ['string|false', 'flags='=>'int'], - 'ZipArchive::getCommentIndex' => ['string|false', 'index'=>'int', 'flags='=>'int'], - 'ZipArchive::getCommentName' => ['string|false', 'name'=>'string', 'flags='=>'int'], - 'ZipArchive::getExternalAttributesIndex' => ['bool', 'index'=>'int', '&w_opsys'=>'int', '&w_attr'=>'int', 'flags='=>'int'], - 'ZipArchive::getExternalAttributesName' => ['bool', 'name'=>'string', '&w_opsys'=>'int', '&w_attr'=>'int', 'flags='=>'int'], - 'ZipArchive::getFromIndex' => ['string|false', 'index'=>'int', 'len='=>'int', 'flags='=>'int'], - 'ZipArchive::getFromName' => ['string|false', 'name'=>'string', 'len='=>'int', 'flags='=>'int'], - 'ZipArchive::getNameIndex' => ['string|false', 'index'=>'int', 'flags='=>'int'], - 'ZipArchive::getStatusString' => ['string|false'], - 'ZipArchive::getStream' => ['resource|false', 'name'=>'string'], - 'ZipArchive::isCompressionMethodSupported' => ['bool', 'method'=>'int', 'enc='=>'bool'], - 'ZipArchive::isEncryptionMethodSupported' => ['bool', 'method'=>'int', 'enc='=>'bool'], - 'ZipArchive::locateName' => ['int|false', 'name'=>'string', 'flags='=>'int'], - 'ZipArchive::open' => ['int|bool', 'filename'=>'string', 'flags='=>'int'], - 'ZipArchive::registerCancelCallback' => ['bool', 'callback'=>'callable'], - 'ZipArchive::registerProgressCallback' => ['bool', 'rate'=>'float', 'callback'=>'callable'], - 'ZipArchive::renameIndex' => ['bool', 'index'=>'int', 'new_name'=>'string'], - 'ZipArchive::renameName' => ['bool', 'name'=>'string', 'new_name'=>'string'], - 'ZipArchive::replaceFile' => ['bool', 'filepath'=>'string', 'index'=>'int', 'start='=>'int', 'length='=>'int', 'flags='=>'int'], - 'ZipArchive::setArchiveComment' => ['bool', 'comment'=>'string'], - 'ZipArchive::setCommentIndex' => ['bool', 'index'=>'int', 'comment'=>'string'], - 'ZipArchive::setCommentName' => ['bool', 'name'=>'string', 'comment'=>'string'], - 'ZipArchive::setCompressionIndex' => ['bool', 'index'=>'int', 'method'=>'int', 'compflags='=>'int'], - 'ZipArchive::setCompressionName' => ['bool', 'name'=>'string', 'method'=>'int', 'compflags='=>'int'], - 'ZipArchive::setExternalAttributesIndex' => ['bool', 'index'=>'int', 'opsys'=>'int', 'attr'=>'int', 'flags='=>'int'], - 'ZipArchive::setExternalAttributesName' => ['bool', 'name'=>'string', 'opsys'=>'int', 'attr'=>'int', 'flags='=>'int'], - 'ZipArchive::setMtimeIndex' => ['bool', 'index'=>'int', 'timestamp'=>'int', 'flags='=>'int'], - 'ZipArchive::setMtimeName' => ['bool', 'name'=>'string', 'timestamp'=>'int', 'flags='=>'int'], - 'ZipArchive::setPassword' => ['bool', 'password'=>'string'], - 'ZipArchive::statIndex' => ['array|false', 'index'=>'int', 'flags='=>'int'], - 'ZipArchive::statName' => ['array|false', 'name'=>'string', 'flags='=>'int'], - 'ZipArchive::unchangeAll' => ['bool'], - 'ZipArchive::unchangeArchive' => ['bool'], - 'ZipArchive::unchangeIndex' => ['bool', 'index'=>'int'], - 'ZipArchive::unchangeName' => ['bool', 'name'=>'string'], - 'Zookeeper::addAuth' => ['bool', 'scheme'=>'string', 'cert'=>'string', 'completion_cb='=>'callable'], - 'Zookeeper::close' => ['void'], - 'Zookeeper::connect' => ['void', 'host'=>'string', 'watcher_cb='=>'callable', 'recv_timeout='=>'int'], - 'Zookeeper::create' => ['string', 'path'=>'string', 'value'=>'string', 'acls'=>'array', 'flags='=>'int'], - 'Zookeeper::delete' => ['bool', 'path'=>'string', 'version='=>'int'], - 'Zookeeper::exists' => ['bool', 'path'=>'string', 'watcher_cb='=>'callable'], - 'Zookeeper::get' => ['string', 'path'=>'string', 'watcher_cb='=>'callable', 'stat='=>'array', 'max_size='=>'int'], - 'Zookeeper::getAcl' => ['array', 'path'=>'string'], - 'Zookeeper::getChildren' => ['array|false', 'path'=>'string', 'watcher_cb='=>'callable'], - 'Zookeeper::getClientId' => ['int'], - 'Zookeeper::getConfig' => ['ZookeeperConfig'], - 'Zookeeper::getRecvTimeout' => ['int'], - 'Zookeeper::getState' => ['int'], - 'Zookeeper::isRecoverable' => ['bool'], - 'Zookeeper::set' => ['bool', 'path'=>'string', 'value'=>'string', 'version='=>'int', 'stat='=>'array'], - 'Zookeeper::setAcl' => ['bool', 'path'=>'string', 'version'=>'int', 'acl'=>'array'], - 'Zookeeper::setDebugLevel' => ['bool', 'logLevel'=>'int'], - 'Zookeeper::setDeterministicConnOrder' => ['bool', 'yesOrNo'=>'bool'], - 'Zookeeper::setLogStream' => ['bool', 'stream'=>'resource'], - 'Zookeeper::setWatcher' => ['bool', 'watcher_cb'=>'callable'], - 'ZookeeperConfig::add' => ['void', 'members'=>'string', 'version='=>'int', 'stat='=>'array'], - 'ZookeeperConfig::get' => ['string', 'watcher_cb='=>'callable', 'stat='=>'array'], - 'ZookeeperConfig::remove' => ['void', 'id_list'=>'string', 'version='=>'int', 'stat='=>'array'], - 'ZookeeperConfig::set' => ['void', 'members'=>'string', 'version='=>'int', 'stat='=>'array'], - '_' => ['string', 'message'=>'string'], - '__halt_compiler' => ['void'], - 'abs' => ['0|positive-int', 'num'=>'int'], - 'abs\'1' => ['float', 'num'=>'float'], - 'abs\'2' => ['numeric', 'num'=>'numeric'], - 'accelerator_get_configuration' => ['array'], - 'accelerator_get_scripts' => ['array'], - 'accelerator_get_status' => ['array', 'fetch_scripts'=>'bool'], - 'accelerator_reset' => [''], - 'accelerator_set_status' => ['void', 'status'=>'bool'], - 'acos' => ['float', 'num'=>'float'], - 'acosh' => ['float', 'num'=>'float'], - 'addcslashes' => ['string', 'string'=>'string', 'characters'=>'string'], - 'addslashes' => ['string', 'string'=>'string'], - 'apache_child_terminate' => ['bool'], - 'apache_get_modules' => ['array'], - 'apache_get_version' => ['string|false'], - 'apache_getenv' => ['string|false', 'variable'=>'string', 'walk_to_top='=>'bool'], - 'apache_lookup_uri' => ['object', 'filename'=>'string'], - 'apache_note' => ['string|false', 'note_name'=>'string', 'note_value='=>'string'], - 'apache_request_headers' => ['array|false'], - 'apache_reset_timeout' => ['bool'], - 'apache_response_headers' => ['array|false'], - 'apache_setenv' => ['bool', 'variable'=>'string', 'value'=>'string', 'walk_to_top='=>'bool'], - 'apc_add' => ['bool', 'key'=>'string', 'var'=>'mixed', 'ttl='=>'int'], - 'apc_add\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'apc_bin_dump' => ['string|false|null', 'files='=>'array', 'user_vars='=>'array'], - 'apc_bin_dumpfile' => ['int|false', 'files'=>'array', 'user_vars'=>'array', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'apc_bin_load' => ['bool', 'data'=>'string', 'flags='=>'int'], - 'apc_bin_loadfile' => ['bool', 'filename'=>'string', 'context='=>'resource', 'flags='=>'int'], - 'apc_cache_info' => ['array|false', 'cache_type='=>'string', 'limited='=>'bool'], - 'apc_cas' => ['bool', 'key'=>'string', 'old'=>'int', 'new'=>'int'], - 'apc_clear_cache' => ['bool', 'cache_type='=>'string'], - 'apc_compile_file' => ['bool', 'filename'=>'string', 'atomic='=>'bool'], - 'apc_dec' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool'], - 'apc_define_constants' => ['bool', 'key'=>'string', 'constants'=>'array', 'case_sensitive='=>'bool'], - 'apc_delete' => ['bool', 'key'=>'string|string[]|APCIterator'], - 'apc_delete_file' => ['bool|string[]', 'keys'=>'mixed'], - 'apc_exists' => ['bool', 'keys'=>'string'], - 'apc_exists\'1' => ['array', 'keys'=>'string[]'], - 'apc_fetch' => ['mixed|false', 'key'=>'string', '&w_success='=>'bool'], - 'apc_fetch\'1' => ['array|false', 'key'=>'string[]', '&w_success='=>'bool'], - 'apc_inc' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool'], - 'apc_load_constants' => ['bool', 'key'=>'string', 'case_sensitive='=>'bool'], - 'apc_sma_info' => ['array|false', 'limited='=>'bool'], - 'apc_store' => ['bool', 'key'=>'string', 'var'=>'', 'ttl='=>'int'], - 'apc_store\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'apcu_add' => ['bool', 'key'=>'string', 'var'=>'', 'ttl='=>'int'], - 'apcu_add\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'apcu_cache_info' => ['array|false', 'limited='=>'bool'], - 'apcu_cas' => ['bool', 'key'=>'string', 'old'=>'int', 'new'=>'int'], - 'apcu_clear_cache' => ['bool'], - 'apcu_dec' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool', 'ttl='=>'int'], - 'apcu_delete' => ['bool', 'key'=>'string|APCuIterator'], - 'apcu_delete\'1' => ['list', 'key'=>'string[]'], - 'apcu_enabled' => ['bool'], - 'apcu_entry' => ['mixed', 'key'=>'string', 'generator'=>'callable(string):mixed', 'ttl='=>'int'], - 'apcu_exists' => ['bool', 'keys'=>'string'], - 'apcu_exists\'1' => ['array', 'keys'=>'string[]'], - 'apcu_fetch' => ['mixed|false', 'key'=>'string', '&w_success='=>'bool'], - 'apcu_fetch\'1' => ['array|false', 'key'=>'string[]', '&w_success='=>'bool'], - 'apcu_inc' => ['int|false', 'key'=>'string', 'step='=>'int', '&w_success='=>'bool', 'ttl='=>'int'], - 'apcu_key_info' => ['?array', 'key'=>'string'], - 'apcu_sma_info' => ['array|false', 'limited='=>'bool'], - 'apcu_store' => ['bool', 'key'=>'string', 'var='=>'', 'ttl='=>'int'], - 'apcu_store\'1' => ['array', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'apd_breakpoint' => ['bool', 'debug_level'=>'int'], - 'apd_callstack' => ['array'], - 'apd_clunk' => ['void', 'warning'=>'string', 'delimiter='=>'string'], - 'apd_continue' => ['bool', 'debug_level'=>'int'], - 'apd_croak' => ['void', 'warning'=>'string', 'delimiter='=>'string'], - 'apd_dump_function_table' => ['void'], - 'apd_dump_persistent_resources' => ['array'], - 'apd_dump_regular_resources' => ['array'], - 'apd_echo' => ['bool', 'output'=>'string'], - 'apd_get_active_symbols' => ['array'], - 'apd_set_pprof_trace' => ['string', 'dump_directory='=>'string', 'fragment='=>'string'], - 'apd_set_session' => ['void', 'debug_level'=>'int'], - 'apd_set_session_trace' => ['void', 'debug_level'=>'int', 'dump_directory='=>'string'], - 'apd_set_session_trace_socket' => ['bool', 'tcp_server'=>'string', 'socket_type'=>'int', 'port'=>'int', 'debug_level'=>'int'], - 'array_change_key_case' => ['array', 'array'=>'array', 'case='=>'int'], - 'array_chunk' => ['list', 'array'=>'array', 'length'=>'int', 'preserve_keys='=>'bool'], - 'array_column' => ['array', 'array'=>'array', 'column_key'=>'mixed', 'index_key='=>'mixed'], - 'array_combine' => ['array|false', 'keys'=>'string[]|int[]', 'values'=>'array'], - 'array_count_values' => ['array', 'array'=>'array'], - 'array_diff' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_diff_assoc' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_diff_key' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_diff_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int'], - 'array_diff_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_diff_ukey' => ['array', 'array'=>'array', 'rest'=>'array', 'key_comp_func'=>'callable(mixed,mixed):int'], - 'array_diff_ukey\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_fill' => ['array', 'start_index'=>'int', 'count'=>'int', 'value'=>'mixed'], - 'array_fill_keys' => ['array', 'keys'=>'array', 'value'=>'mixed'], - 'array_filter' => ['array', 'array'=>'array', 'callback='=>'callable(mixed,array-key=):mixed', 'mode='=>'int'], - 'array_flip' => ['array', 'array'=>'array'], - 'array_intersect' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_intersect_assoc' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_intersect_key' => ['array', 'array'=>'array', '...arrays'=>'array'], - 'array_intersect_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'key_compare_func'=>'callable(mixed,mixed):int'], - 'array_intersect_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest'=>'array|callable(mixed,mixed):int'], - 'array_intersect_ukey' => ['array', 'array'=>'array', 'rest'=>'array', 'key_compare_func'=>'callable(mixed,mixed):int'], - 'array_intersect_ukey\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest'=>'array|callable(mixed,mixed):int'], - 'array_key_exists' => ['bool', 'key'=>'string|int', 'array'=>'array|object'], - 'array_keys' => ['list', 'array'=>'array', 'filter_value='=>'mixed', 'strict='=>'bool'], - 'array_map' => ['array', 'callback'=>'?callable', 'array'=>'array', '...arrays='=>'array'], - 'array_merge' => ['array', '...arrays'=>'array'], - 'array_merge_recursive' => ['array', '...arrays'=>'array'], - 'array_multisort' => ['bool', '&rw_array'=>'array', 'rest='=>'array|int', 'array1_sort_flags='=>'array|int', '...args='=>'array|int'], - 'array_pad' => ['array', 'array'=>'array', 'length'=>'int', 'value'=>'mixed'], - 'array_pop' => ['mixed', '&rw_array'=>'array'], - 'array_product' => ['int|float', 'array'=>'array'], - 'array_push' => ['int', '&rw_array'=>'array', '...values'=>'mixed'], - 'array_rand' => ['int|string|array|array', 'array'=>'non-empty-array', 'num'=>'int'], - 'array_rand\'1' => ['int|string', 'array'=>'array'], - 'array_reduce' => ['mixed', 'array'=>'array', 'callback'=>'callable(mixed,mixed):mixed', 'initial='=>'mixed'], - 'array_replace' => ['array', 'array'=>'array', '...replacements='=>'array'], - 'array_replace_recursive' => ['array', 'array'=>'array', '...replacements='=>'array'], - 'array_reverse' => ['array', 'array'=>'array', 'preserve_keys='=>'bool'], - 'array_search' => ['int|string|false', 'needle'=>'mixed', 'haystack'=>'array', 'strict='=>'bool'], - 'array_shift' => ['mixed|null', '&rw_array'=>'array'], - 'array_slice' => ['array', 'array'=>'array', 'offset'=>'int', 'length='=>'?int', 'preserve_keys='=>'bool'], - 'array_splice' => ['array', '&rw_array'=>'array', 'offset'=>'int', 'length='=>'int', 'replacement='=>'array|string'], - 'array_sum' => ['int|float', 'array'=>'array'], - 'array_udiff' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int'], - 'array_udiff\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_udiff_assoc' => ['array', 'array'=>'array', 'rest'=>'array', 'key_comp_func'=>'callable(mixed,mixed):int'], - 'array_udiff_assoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_udiff_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_comp_func'=>'callable(mixed,mixed):int', 'key_comp_func'=>'callable(mixed,mixed):int'], - 'array_udiff_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', 'arg5'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_uintersect' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int'], - 'array_uintersect\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_uintersect_assoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int'], - 'array_uintersect_assoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_uintersect_uassoc' => ['array', 'array'=>'array', 'rest'=>'array', 'data_compare_func'=>'callable(mixed,mixed):int', 'key_compare_func'=>'callable(mixed,mixed):int'], - 'array_uintersect_uassoc\'1' => ['array', 'array'=>'array', 'rest'=>'array', 'arr3'=>'array', 'arg4'=>'array|callable(mixed,mixed):int', 'arg5'=>'array|callable(mixed,mixed):int', '...rest='=>'array|callable(mixed,mixed):int'], - 'array_unique' => ['array', 'array'=>'array', 'flags='=>'int'], - 'array_unshift' => ['int', '&rw_array'=>'array', '...values'=>'mixed'], - 'array_values' => ['list', 'array'=>'array'], - 'array_walk' => ['bool', '&rw_array'=>'array', 'callback'=>'callable', 'arg='=>'mixed'], - 'array_walk\'1' => ['bool', '&rw_array'=>'object', 'callback'=>'callable', 'arg='=>'mixed'], - 'array_walk_recursive' => ['bool', '&rw_array'=>'array', 'callback'=>'callable', 'arg='=>'mixed'], - 'array_walk_recursive\'1' => ['bool', '&rw_array'=>'object', 'callback'=>'callable', 'arg='=>'mixed'], - 'arsort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - 'asin' => ['float', 'num'=>'float'], - 'asinh' => ['float', 'num'=>'float'], - 'asort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - 'assert' => ['bool', 'assertion'=>'string|bool|int', 'description='=>'string|Throwable|null'], - 'assert_options' => ['mixed|false', 'option'=>'int', 'value='=>'mixed'], - 'ast\Node::__construct' => ['void', 'kind='=>'int', 'flags='=>'int', 'children='=>'ast\Node\Decl[]|ast\Node[]|int[]|string[]|float[]|bool[]|null[]', 'start_line='=>'int'], - 'ast\get_kind_name' => ['string', 'kind'=>'int'], - 'ast\get_metadata' => ['array'], - 'ast\get_supported_versions' => ['array', 'exclude_deprecated='=>'bool'], - 'ast\kind_uses_flags' => ['bool', 'kind'=>'int'], - 'ast\parse_code' => ['ast\Node', 'code'=>'string', 'version'=>'int', 'filename='=>'string'], - 'ast\parse_file' => ['ast\Node', 'filename'=>'string', 'version'=>'int'], - 'atan' => ['float', 'num'=>'float'], - 'atan2' => ['float', 'y'=>'float', 'x'=>'float'], - 'atanh' => ['float', 'num'=>'float'], - 'base64_decode' => ['string', 'string'=>'string', 'strict='=>'false'], - 'base64_decode\'1' => ['string|false', 'string'=>'string', 'strict='=>'true'], - 'base64_encode' => ['string', 'string'=>'string'], - 'base_convert' => ['string', 'num'=>'string', 'from_base'=>'int', 'to_base'=>'int'], - 'basename' => ['string', 'path'=>'string', 'suffix='=>'string'], - 'bbcode_add_element' => ['bool', 'bbcode_container'=>'resource', 'tag_name'=>'string', 'tag_rules'=>'array'], - 'bbcode_add_smiley' => ['bool', 'bbcode_container'=>'resource', 'smiley'=>'string', 'replace_by'=>'string'], - 'bbcode_create' => ['resource', 'bbcode_initial_tags='=>'array'], - 'bbcode_destroy' => ['bool', 'bbcode_container'=>'resource'], - 'bbcode_parse' => ['string', 'bbcode_container'=>'resource', 'to_parse'=>'string'], - 'bbcode_set_arg_parser' => ['bool', 'bbcode_container'=>'resource', 'bbcode_arg_parser'=>'resource'], - 'bbcode_set_flags' => ['bool', 'bbcode_container'=>'resource', 'flags'=>'int', 'mode='=>'int'], - 'bcadd' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bccomp' => ['int', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bcdiv' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bcmod' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bcmul' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bcompiler_load' => ['bool', 'filename'=>'string'], - 'bcompiler_load_exe' => ['bool', 'filename'=>'string'], - 'bcompiler_parse_class' => ['bool', 'class'=>'string', 'callback'=>'string'], - 'bcompiler_read' => ['bool', 'filehandle'=>'resource'], - 'bcompiler_write_class' => ['bool', 'filehandle'=>'resource', 'classname'=>'string', 'extends='=>'string'], - 'bcompiler_write_constant' => ['bool', 'filehandle'=>'resource', 'constantname'=>'string'], - 'bcompiler_write_exe_footer' => ['bool', 'filehandle'=>'resource', 'startpos'=>'int'], - 'bcompiler_write_file' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], - 'bcompiler_write_footer' => ['bool', 'filehandle'=>'resource'], - 'bcompiler_write_function' => ['bool', 'filehandle'=>'resource', 'functionname'=>'string'], - 'bcompiler_write_functions_from_file' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], - 'bcompiler_write_header' => ['bool', 'filehandle'=>'resource', 'write_ver='=>'string'], - 'bcompiler_write_included_filename' => ['bool', 'filehandle'=>'resource', 'filename'=>'string'], - 'bcpow' => ['numeric-string', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'scale='=>'int'], - 'bcpowmod' => ['numeric-string|false', 'num'=>'numeric-string', 'exponent'=>'numeric-string', 'modulus'=>'numeric-string', 'scale='=>'int'], - 'bcscale' => ['int', 'scale'=>'int'], - 'bcsqrt' => ['numeric-string', 'num'=>'numeric-string', 'scale='=>'int'], - 'bcsub' => ['numeric-string', 'num1'=>'numeric-string', 'num2'=>'numeric-string', 'scale='=>'int'], - 'bin2hex' => ['string', 'string'=>'string'], - 'bind_textdomain_codeset' => ['string', 'domain'=>'string', 'codeset'=>'string'], - 'bindec' => ['float|int', 'binary_string'=>'string'], - 'bindtextdomain' => ['string', 'domain'=>'string', 'directory'=>'string'], - 'birdstep_autocommit' => ['bool', 'index'=>'int'], - 'birdstep_close' => ['bool', 'id'=>'int'], - 'birdstep_commit' => ['bool', 'index'=>'int'], - 'birdstep_connect' => ['int', 'server'=>'string', 'user'=>'string', 'pass'=>'string'], - 'birdstep_exec' => ['int', 'index'=>'int', 'exec_str'=>'string'], - 'birdstep_fetch' => ['bool', 'index'=>'int'], - 'birdstep_fieldname' => ['string', 'index'=>'int', 'col'=>'int'], - 'birdstep_fieldnum' => ['int', 'index'=>'int'], - 'birdstep_freeresult' => ['bool', 'index'=>'int'], - 'birdstep_off_autocommit' => ['bool', 'index'=>'int'], - 'birdstep_result' => ['', 'index'=>'int', 'col'=>''], - 'birdstep_rollback' => ['bool', 'index'=>'int'], - 'blenc_encrypt' => ['string', 'plaintext'=>'string', 'encodedfile'=>'string', 'encryption_key='=>'string'], - 'boolval' => ['bool', 'value'=>'mixed'], - 'bson_decode' => ['array', 'bson'=>'string'], - 'bson_encode' => ['string', 'anything'=>'mixed'], - 'bzclose' => ['bool', 'bz'=>'resource'], - 'bzcompress' => ['string|int', 'data'=>'string', 'block_size='=>'int', 'work_factor='=>'int'], - 'bzdecompress' => ['string|int|false', 'data'=>'string', 'use_less_memory='=>'int'], - 'bzerrno' => ['int', 'bz'=>'resource'], - 'bzerror' => ['array', 'bz'=>'resource'], - 'bzerrstr' => ['string', 'bz'=>'resource'], - 'bzflush' => ['bool', 'bz'=>'resource'], - 'bzopen' => ['resource|false', 'file'=>'string|resource', 'mode'=>'string'], - 'bzread' => ['string|false', 'bz'=>'resource', 'length='=>'int'], - 'bzwrite' => ['int|false', 'bz'=>'resource', 'data'=>'string', 'length='=>'int'], - 'cal_days_in_month' => ['int', 'calendar'=>'int', 'month'=>'int', 'year'=>'int'], - 'cal_from_jd' => ['array{date:string,month:int,day:int,year:int,dow:int,abbrevdayname:string,dayname:string,abbrevmonth:string,monthname:string}', 'julian_day'=>'int', 'calendar'=>'int'], - 'cal_info' => ['array', 'calendar='=>'int'], - 'cal_to_jd' => ['int', 'calendar'=>'int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'calcul_hmac' => ['string', 'clent'=>'string', 'siretcode'=>'string', 'price'=>'string', 'reference'=>'string', 'validity'=>'string', 'taxation'=>'string', 'devise'=>'string', 'language'=>'string'], - 'calculhmac' => ['string', 'clent'=>'string', 'data'=>'string'], - 'call_user_func' => ['mixed|false', 'callback'=>'callable', '...args='=>'mixed'], - 'call_user_func_array' => ['mixed|false', 'callback'=>'callable', 'args'=>'list'], - 'call_user_method' => ['mixed', 'method_name'=>'string', 'object'=>'object', 'parameter='=>'mixed', '...args='=>'mixed'], - 'call_user_method_array' => ['mixed', 'method_name'=>'string', 'object'=>'object', 'params'=>'list'], - 'ceil' => ['float', 'num'=>'float|int'], - 'chdb::__construct' => ['void', 'pathname'=>'string'], - 'chdb::get' => ['string', 'key'=>'string'], - 'chdb_create' => ['bool', 'pathname'=>'string', 'data'=>'array'], - 'chdir' => ['bool', 'directory'=>'string'], - 'checkdate' => ['bool', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'checkdnsrr' => ['bool', 'hostname'=>'string', 'type='=>'string'], - 'chgrp' => ['bool', 'filename'=>'string', 'group'=>'string|int'], - 'chmod' => ['bool', 'filename'=>'string', 'permissions'=>'int'], - 'chop' => ['string', 'string'=>'string', 'characters='=>'string'], - 'chown' => ['bool', 'filename'=>'string', 'user'=>'string|int'], - 'chr' => ['non-empty-string', 'codepoint'=>'int'], - 'chroot' => ['bool', 'directory'=>'string'], - 'chunk_split' => ['string', 'string'=>'string', 'length='=>'int', 'separator='=>'string'], - 'classObj::__construct' => ['void', 'layer'=>'layerObj', 'class'=>'classObj'], - 'classObj::addLabel' => ['int', 'label'=>'labelObj'], - 'classObj::convertToString' => ['string'], - 'classObj::createLegendIcon' => ['imageObj', 'width'=>'int', 'height'=>'int'], - 'classObj::deletestyle' => ['int', 'index'=>'int'], - 'classObj::drawLegendIcon' => ['int', 'width'=>'int', 'height'=>'int', 'im'=>'imageObj', 'dstX'=>'int', 'dstY'=>'int'], - 'classObj::free' => ['void'], - 'classObj::getExpressionString' => ['string'], - 'classObj::getLabel' => ['labelObj', 'index'=>'int'], - 'classObj::getMetaData' => ['int', 'name'=>'string'], - 'classObj::getStyle' => ['styleObj', 'index'=>'int'], - 'classObj::getTextString' => ['string'], - 'classObj::movestyledown' => ['int', 'index'=>'int'], - 'classObj::movestyleup' => ['int', 'index'=>'int'], - 'classObj::ms_newClassObj' => ['classObj', 'layer'=>'layerObj', 'class'=>'classObj'], - 'classObj::removeLabel' => ['labelObj', 'index'=>'int'], - 'classObj::removeMetaData' => ['int', 'name'=>'string'], - 'classObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'classObj::setExpression' => ['int', 'expression'=>'string'], - 'classObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], - 'classObj::settext' => ['int', 'text'=>'string'], - 'classObj::updateFromString' => ['int', 'snippet'=>'string'], - 'class_alias' => ['bool', 'class'=>'string', 'alias'=>'string', 'autoload='=>'bool'], - 'class_exists' => ['bool', 'class'=>'string', 'autoload='=>'bool'], - 'class_implements' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], - 'class_parents' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], - 'class_uses' => ['array|false', 'object_or_class'=>'object|string', 'autoload='=>'bool'], - 'classkit_import' => ['array', 'filename'=>'string'], - 'classkit_method_add' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int'], - 'classkit_method_copy' => ['bool', 'dclass'=>'string', 'dmethod'=>'string', 'sclass'=>'string', 'smethod='=>'string'], - 'classkit_method_redefine' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int'], - 'classkit_method_remove' => ['bool', 'classname'=>'string', 'methodname'=>'string'], - 'classkit_method_rename' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'newname'=>'string'], - 'clearstatcache' => ['void', 'clear_realpath_cache='=>'bool', 'filename='=>'string'], - 'cli_get_process_title' => ['?string'], - 'cli_set_process_title' => ['bool', 'title'=>'string'], - 'closedir' => ['void', 'dir_handle='=>'resource'], - 'closelog' => ['true'], - 'clusterObj::convertToString' => ['string'], - 'clusterObj::getFilterString' => ['string'], - 'clusterObj::getGroupString' => ['string'], - 'clusterObj::setFilter' => ['int', 'expression'=>'string'], - 'clusterObj::setGroup' => ['int', 'expression'=>'string'], - 'collator_asort' => ['bool', 'object'=>'collator', '&rw_array'=>'array', 'flags='=>'int'], - 'collator_compare' => ['int', 'object'=>'collator', 'string1'=>'string', 'string2'=>'string'], - 'collator_create' => ['?Collator', 'locale'=>'string'], - 'collator_get_attribute' => ['int|false', 'object'=>'collator', 'attribute'=>'int'], - 'collator_get_error_code' => ['int', 'object'=>'collator'], - 'collator_get_error_message' => ['string', 'object'=>'collator'], - 'collator_get_locale' => ['string', 'object'=>'collator', 'type'=>'int'], - 'collator_get_sort_key' => ['string', 'object'=>'collator', 'string'=>'string'], - 'collator_get_strength' => ['int|false', 'object'=>'collator'], - 'collator_set_attribute' => ['bool', 'object'=>'collator', 'attribute'=>'int', 'value'=>'int'], - 'collator_set_strength' => ['bool', 'object'=>'collator', 'strength'=>'int'], - 'collator_sort' => ['bool', 'object'=>'collator', '&rw_array'=>'array', 'flags='=>'int'], - 'collator_sort_with_sort_keys' => ['bool', 'object'=>'collator', '&rw_array'=>'array'], - 'colorObj::setHex' => ['int', 'hex'=>'string'], - 'colorObj::toHex' => ['string'], - 'com_addref' => [''], - 'com_create_guid' => ['string'], - 'com_event_sink' => ['bool', 'variant'=>'VARIANT', 'sink_object'=>'object', 'sink_interface='=>'mixed'], - 'com_get_active_object' => ['VARIANT', 'prog_id'=>'string', 'codepage='=>'int'], - 'com_isenum' => ['bool', 'com_module'=>'variant'], - 'com_load_typelib' => ['bool', 'typelib_name'=>'string', 'case_insensitive='=>'bool'], - 'com_message_pump' => ['bool', 'timeout_milliseconds='=>'int'], - 'com_print_typeinfo' => ['bool', 'variant'=>'object', 'dispatch_interface='=>'string', 'display_sink='=>'bool'], - 'commonmark\cql::__invoke' => ['', 'root'=>'CommonMark\Node', 'handler'=>'callable'], - 'commonmark\interfaces\ivisitable::accept' => ['void', 'visitor'=>'CommonMark\Interfaces\IVisitor'], - 'commonmark\interfaces\ivisitor::enter' => ['?int|IVisitable', 'visitable'=>'IVisitable'], - 'commonmark\interfaces\ivisitor::leave' => ['?int|IVisitable', 'visitable'=>'IVisitable'], - 'commonmark\node::accept' => ['void', 'visitor'=>'CommonMark\Interfaces\IVisitor'], - 'commonmark\node::appendChild' => ['CommonMark\Node', 'child'=>'CommonMark\Node'], - 'commonmark\node::insertAfter' => ['CommonMark\Node', 'sibling'=>'CommonMark\Node'], - 'commonmark\node::insertBefore' => ['CommonMark\Node', 'sibling'=>'CommonMark\Node'], - 'commonmark\node::prependChild' => ['CommonMark\Node', 'child'=>'CommonMark\Node'], - 'commonmark\node::replace' => ['CommonMark\Node', 'target'=>'CommonMark\Node'], - 'commonmark\node::unlink' => ['void'], - 'commonmark\parse' => ['CommonMark\Node', 'content'=>'string', 'options='=>'int'], - 'commonmark\parser::finish' => ['CommonMark\Node'], - 'commonmark\parser::parse' => ['void', 'buffer'=>'string'], - 'commonmark\render' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], - 'commonmark\render\html' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int'], - 'commonmark\render\latex' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], - 'commonmark\render\man' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int', 'width='=>'int'], - 'commonmark\render\xml' => ['string', 'node'=>'CommonMark\Node', 'options='=>'int'], - 'compact' => ['array', 'var_name'=>'string|array', '...var_names='=>'string|array'], - 'componere\abstract\definition::addInterface' => ['Componere\Abstract\Definition', 'interface'=>'string'], - 'componere\abstract\definition::addMethod' => ['Componere\Abstract\Definition', 'name'=>'string', 'method'=>'Componere\Method'], - 'componere\abstract\definition::addTrait' => ['Componere\Abstract\Definition', 'trait'=>'string'], - 'componere\abstract\definition::getReflector' => ['ReflectionClass'], - 'componere\cast' => ['object', 'arg1'=>'string', 'object'=>'object'], - 'componere\cast_by_ref' => ['object', 'arg1'=>'string', 'object'=>'object'], - 'componere\definition::addConstant' => ['Componere\Definition', 'name'=>'string', 'value'=>'Componere\Value'], - 'componere\definition::addProperty' => ['Componere\Definition', 'name'=>'string', 'value'=>'Componere\Value'], - 'componere\definition::getClosure' => ['Closure', 'name'=>'string'], - 'componere\definition::getClosures' => ['Closure[]'], - 'componere\definition::isRegistered' => ['bool'], - 'componere\definition::register' => ['void'], - 'componere\method::getReflector' => ['ReflectionMethod'], - 'componere\method::setPrivate' => ['Method'], - 'componere\method::setProtected' => ['Method'], - 'componere\method::setStatic' => ['Method'], - 'componere\patch::apply' => ['void'], - 'componere\patch::derive' => ['Componere\Patch', 'instance'=>'object'], - 'componere\patch::getClosure' => ['Closure', 'name'=>'string'], - 'componere\patch::getClosures' => ['Closure[]'], - 'componere\patch::isApplied' => ['bool'], - 'componere\patch::revert' => ['void'], - 'componere\value::hasDefault' => ['bool'], - 'componere\value::isPrivate' => ['bool'], - 'componere\value::isProtected' => ['bool'], - 'componere\value::isStatic' => ['bool'], - 'componere\value::setPrivate' => ['Value'], - 'componere\value::setProtected' => ['Value'], - 'componere\value::setStatic' => ['Value'], - 'confirm_pdo_ibm_compiled' => [''], - 'connection_aborted' => ['int'], - 'connection_status' => ['int'], - 'connection_timeout' => ['int'], - 'constant' => ['mixed', 'name'=>'string'], - 'convert_cyr_string' => ['string', 'string'=>'string', 'from'=>'string', 'to'=>'string'], - 'convert_uudecode' => ['string', 'string'=>'string'], - 'convert_uuencode' => ['string', 'string'=>'string'], - 'copy' => ['bool', 'from'=>'string', 'to'=>'string', 'context='=>'resource'], - 'cos' => ['float', 'num'=>'float'], - 'cosh' => ['float', 'num'=>'float'], - 'count' => ['int<0, max>', 'value'=>'Countable|array|SimpleXMLElement', 'mode='=>'int'], - 'count_chars' => ['array|false', 'input'=>'string', 'mode='=>'0|1|2'], - 'count_chars\'1' => ['string|false', 'input'=>'string', 'mode='=>'3|4'], - 'crack_check' => ['bool', 'dictionary'=>'', 'password'=>'string'], - 'crack_closedict' => ['bool', 'dictionary='=>'resource'], - 'crack_getlastmessage' => ['string'], - 'crack_opendict' => ['resource|false', 'dictionary'=>'string'], - 'crash' => [''], - 'crc32' => ['int', 'string'=>'string'], - 'create_function' => ['string', 'args'=>'string', 'code'=>'string'], - 'crypt' => ['string', 'string'=>'string', 'salt='=>'string'], - 'ctype_alnum' => ['bool', 'text'=>'string|int'], - 'ctype_alpha' => ['bool', 'text'=>'string|int'], - 'ctype_cntrl' => ['bool', 'text'=>'string|int'], - 'ctype_digit' => ['bool', 'text'=>'string|int'], - 'ctype_graph' => ['bool', 'text'=>'string|int'], - 'ctype_lower' => ['bool', 'text'=>'string|int'], - 'ctype_print' => ['bool', 'text'=>'string|int'], - 'ctype_punct' => ['bool', 'text'=>'string|int'], - 'ctype_space' => ['bool', 'text'=>'string|int'], - 'ctype_upper' => ['bool', 'text'=>'string|int'], - 'ctype_xdigit' => ['bool', 'text'=>'string|int'], - 'cubrid_affected_rows' => ['int', 'req_identifier='=>''], - 'cubrid_bind' => ['bool', 'req_identifier'=>'resource', 'bind_param'=>'int', 'bind_value'=>'mixed', 'bind_value_type='=>'string'], - 'cubrid_client_encoding' => ['string', 'conn_identifier='=>''], - 'cubrid_close' => ['bool', 'conn_identifier='=>''], - 'cubrid_close_prepare' => ['bool', 'req_identifier'=>'resource'], - 'cubrid_close_request' => ['bool', 'req_identifier'=>'resource'], - 'cubrid_col_get' => ['array', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string'], - 'cubrid_col_size' => ['int', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string'], - 'cubrid_column_names' => ['array', 'req_identifier'=>'resource'], - 'cubrid_column_types' => ['array', 'req_identifier'=>'resource'], - 'cubrid_commit' => ['bool', 'conn_identifier'=>'resource'], - 'cubrid_connect' => ['resource', 'host'=>'string', 'port'=>'int', 'dbname'=>'string', 'userid='=>'string', 'passwd='=>'string'], - 'cubrid_connect_with_url' => ['resource', 'conn_url'=>'string', 'userid='=>'string', 'passwd='=>'string'], - 'cubrid_current_oid' => ['string', 'req_identifier'=>'resource'], - 'cubrid_data_seek' => ['bool', 'req_identifier'=>'', 'row_number'=>'int'], - 'cubrid_db_name' => ['string', 'result'=>'array', 'index'=>'int'], - 'cubrid_db_parameter' => ['array', 'conn_identifier'=>'resource'], - 'cubrid_disconnect' => ['bool', 'conn_identifier'=>'resource'], - 'cubrid_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], - 'cubrid_errno' => ['int', 'conn_identifier='=>''], - 'cubrid_error' => ['string', 'connection='=>''], - 'cubrid_error_code' => ['int'], - 'cubrid_error_code_facility' => ['int'], - 'cubrid_error_msg' => ['string'], - 'cubrid_execute' => ['bool', 'conn_identifier'=>'', 'sql'=>'string', 'option='=>'int', 'request_identifier='=>''], - 'cubrid_fetch' => ['mixed', 'result'=>'resource', 'type='=>'int'], - 'cubrid_fetch_array' => ['array', 'result'=>'resource', 'type='=>'int'], - 'cubrid_fetch_assoc' => ['array', 'result'=>'resource'], - 'cubrid_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], - 'cubrid_fetch_lengths' => ['array', 'result'=>'resource'], - 'cubrid_fetch_object' => ['object', 'result'=>'resource', 'class_name='=>'string', 'params='=>'array'], - 'cubrid_fetch_row' => ['array', 'result'=>'resource'], - 'cubrid_field_flags' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'cubrid_field_len' => ['int', 'result'=>'resource', 'field_offset'=>'int'], - 'cubrid_field_name' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'cubrid_field_seek' => ['bool', 'result'=>'resource', 'field_offset='=>'int'], - 'cubrid_field_table' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'cubrid_field_type' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'cubrid_free_result' => ['bool', 'req_identifier'=>'resource'], - 'cubrid_get' => ['mixed', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr='=>'mixed'], - 'cubrid_get_autocommit' => ['bool', 'conn_identifier'=>'resource'], - 'cubrid_get_charset' => ['string', 'conn_identifier'=>'resource'], - 'cubrid_get_class_name' => ['string', 'conn_identifier'=>'resource', 'oid'=>'string'], - 'cubrid_get_client_info' => ['string'], - 'cubrid_get_db_parameter' => ['array', 'conn_identifier'=>'resource'], - 'cubrid_get_query_timeout' => ['int', 'req_identifier'=>'resource'], - 'cubrid_get_server_info' => ['string', 'conn_identifier'=>'resource'], - 'cubrid_insert_id' => ['string', 'conn_identifier='=>'resource'], - 'cubrid_is_instance' => ['int', 'conn_identifier'=>'resource', 'oid'=>'string'], - 'cubrid_list_dbs' => ['array', 'conn_identifier'=>'resource'], - 'cubrid_load_from_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string', 'file_name'=>'string'], - 'cubrid_lob2_bind' => ['bool', 'req_identifier'=>'resource', 'bind_index'=>'int', 'bind_value'=>'mixed', 'bind_value_type='=>'string'], - 'cubrid_lob2_close' => ['bool', 'lob_identifier'=>'resource'], - 'cubrid_lob2_export' => ['bool', 'lob_identifier'=>'resource', 'file_name'=>'string'], - 'cubrid_lob2_import' => ['bool', 'lob_identifier'=>'resource', 'file_name'=>'string'], - 'cubrid_lob2_new' => ['resource', 'conn_identifier='=>'resource', 'type='=>'string'], - 'cubrid_lob2_read' => ['string', 'lob_identifier'=>'resource', 'length'=>'int'], - 'cubrid_lob2_seek' => ['bool', 'lob_identifier'=>'resource', 'offset'=>'int', 'origin='=>'int'], - 'cubrid_lob2_seek64' => ['bool', 'lob_identifier'=>'resource', 'offset'=>'string', 'origin='=>'int'], - 'cubrid_lob2_size' => ['int', 'lob_identifier'=>'resource'], - 'cubrid_lob2_size64' => ['string', 'lob_identifier'=>'resource'], - 'cubrid_lob2_tell' => ['int', 'lob_identifier'=>'resource'], - 'cubrid_lob2_tell64' => ['string', 'lob_identifier'=>'resource'], - 'cubrid_lob2_write' => ['bool', 'lob_identifier'=>'resource', 'buf'=>'string'], - 'cubrid_lob_close' => ['bool', 'lob_identifier_array'=>'array'], - 'cubrid_lob_export' => ['bool', 'conn_identifier'=>'resource', 'lob_identifier'=>'resource', 'path_name'=>'string'], - 'cubrid_lob_get' => ['array', 'conn_identifier'=>'resource', 'sql'=>'string'], - 'cubrid_lob_send' => ['bool', 'conn_identifier'=>'resource', 'lob_identifier'=>'resource'], - 'cubrid_lob_size' => ['string', 'lob_identifier'=>'resource'], - 'cubrid_lock_read' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], - 'cubrid_lock_write' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string'], - 'cubrid_move_cursor' => ['int', 'req_identifier'=>'resource', 'offset'=>'int', 'origin='=>'int'], - 'cubrid_new_glo' => ['string', 'conn_identifier'=>'', 'class_name'=>'string', 'file_name'=>'string'], - 'cubrid_next_result' => ['bool', 'result'=>'resource'], - 'cubrid_num_cols' => ['int', 'req_identifier'=>'resource'], - 'cubrid_num_fields' => ['int', 'result'=>'resource'], - 'cubrid_num_rows' => ['int', 'req_identifier'=>'resource'], - 'cubrid_pconnect' => ['resource', 'host'=>'string', 'port'=>'int', 'dbname'=>'string', 'userid='=>'string', 'passwd='=>'string'], - 'cubrid_pconnect_with_url' => ['resource', 'conn_url'=>'string', 'userid='=>'string', 'passwd='=>'string'], - 'cubrid_ping' => ['bool', 'conn_identifier='=>''], - 'cubrid_prepare' => ['resource', 'conn_identifier'=>'resource', 'prepare_stmt'=>'string', 'option='=>'int'], - 'cubrid_put' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr='=>'string', 'value='=>'mixed'], - 'cubrid_query' => ['resource', 'query'=>'string', 'conn_identifier='=>''], - 'cubrid_real_escape_string' => ['string', 'unescaped_string'=>'string', 'conn_identifier='=>''], - 'cubrid_result' => ['string', 'result'=>'resource', 'row'=>'int', 'field='=>''], - 'cubrid_rollback' => ['bool', 'conn_identifier'=>'resource'], - 'cubrid_save_to_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string', 'file_name'=>'string'], - 'cubrid_schema' => ['array', 'conn_identifier'=>'resource', 'schema_type'=>'int', 'class_name='=>'string', 'attr_name='=>'string'], - 'cubrid_send_glo' => ['int', 'conn_identifier'=>'', 'oid'=>'string'], - 'cubrid_seq_add' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'seq_element'=>'string'], - 'cubrid_seq_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int'], - 'cubrid_seq_insert' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int', 'seq_element'=>'string'], - 'cubrid_seq_put' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'index'=>'int', 'seq_element'=>'string'], - 'cubrid_set_add' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'set_element'=>'string'], - 'cubrid_set_autocommit' => ['bool', 'conn_identifier'=>'resource', 'mode'=>'bool'], - 'cubrid_set_db_parameter' => ['bool', 'conn_identifier'=>'resource', 'param_type'=>'int', 'param_value'=>'int'], - 'cubrid_set_drop' => ['bool', 'conn_identifier'=>'resource', 'oid'=>'string', 'attr_name'=>'string', 'set_element'=>'string'], - 'cubrid_set_query_timeout' => ['bool', 'req_identifier'=>'resource', 'timeout'=>'int'], - 'cubrid_unbuffered_query' => ['resource', 'query'=>'string', 'conn_identifier='=>''], - 'cubrid_version' => ['string'], - 'curl_close' => ['void', 'ch'=>'resource'], - 'curl_copy_handle' => ['resource|false', 'ch'=>'resource'], - 'curl_errno' => ['int', 'ch'=>'resource'], - 'curl_error' => ['string', 'ch'=>'resource'], - 'curl_escape' => ['string|false', 'ch'=>'resource', 'string'=>'string'], - 'curl_exec' => ['bool|string', 'ch'=>'resource'], - 'curl_file_create' => ['CURLFile', 'filename'=>'string', 'mimetype='=>'string', 'postfilename='=>'string'], - 'curl_getinfo' => ['mixed', 'ch'=>'resource', 'option='=>'int'], - 'curl_init' => ['resource|false', 'url='=>'string'], - 'curl_multi_add_handle' => ['int', 'mh'=>'resource', 'ch'=>'resource'], - 'curl_multi_close' => ['void', 'mh'=>'resource'], - 'curl_multi_exec' => ['int', 'mh'=>'resource', '&w_still_running'=>'int'], - 'curl_multi_getcontent' => ['string', 'ch'=>'resource'], - 'curl_multi_info_read' => ['array|false', 'mh'=>'resource', '&w_msgs_in_queue='=>'int'], - 'curl_multi_init' => ['resource'], - 'curl_multi_remove_handle' => ['int', 'mh'=>'resource', 'ch'=>'resource'], - 'curl_multi_select' => ['int', 'mh'=>'resource', 'timeout='=>'float'], - 'curl_multi_setopt' => ['bool', 'mh'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'curl_multi_strerror' => ['?string', 'error_code'=>'int'], - 'curl_pause' => ['int', 'ch'=>'resource', 'bitmask'=>'int'], - 'curl_reset' => ['void', 'ch'=>'resource'], - 'curl_setopt' => ['bool', 'ch'=>'resource', 'option'=>'int', 'value'=>'callable|mixed'], - 'curl_setopt_array' => ['bool', 'ch'=>'resource', 'options'=>'array'], - 'curl_share_close' => ['void', 'sh'=>'resource'], - 'curl_share_init' => ['resource'], - 'curl_share_setopt' => ['bool', 'sh'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'curl_strerror' => ['?string', 'error_code'=>'int'], - 'curl_unescape' => ['string|false', 'ch'=>'resource', 'string'=>'string'], - 'curl_version' => ['array', 'version='=>'int'], - 'current' => ['mixed|false', 'array'=>'array|object'], - 'cyrus_authenticate' => ['void', 'connection'=>'resource', 'mechlist='=>'string', 'service='=>'string', 'user='=>'string', 'minssf='=>'int', 'maxssf='=>'int', 'authname='=>'string', 'password='=>'string'], - 'cyrus_bind' => ['bool', 'connection'=>'resource', 'callbacks'=>'array'], - 'cyrus_close' => ['bool', 'connection'=>'resource'], - 'cyrus_connect' => ['resource', 'host='=>'string', 'port='=>'string', 'flags='=>'int'], - 'cyrus_query' => ['array', 'connection'=>'resource', 'query'=>'string'], - 'cyrus_unbind' => ['bool', 'connection'=>'resource', 'trigger_name'=>'string'], - 'date' => ['string', 'format'=>'string', 'timestamp='=>'int'], - 'date_add' => ['DateTime|false', 'object'=>'DateTime', 'interval'=>'DateInterval'], - 'date_create' => ['DateTime|false', 'datetime='=>'string', 'timezone='=>'?DateTimeZone'], - 'date_create_from_format' => ['DateTime|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?\DateTimeZone'], - 'date_create_immutable' => ['DateTimeImmutable|false', 'datetime='=>'string', 'timezone='=>'?DateTimeZone'], - 'date_create_immutable_from_format' => ['DateTimeImmutable|false', 'format'=>'string', 'datetime'=>'string', 'timezone='=>'?DateTimeZone'], - 'date_date_set' => ['DateTime|false', 'object'=>'DateTime', 'year'=>'int', 'month'=>'int', 'day'=>'int'], - 'date_default_timezone_get' => ['non-empty-string'], - 'date_default_timezone_set' => ['bool', 'timezoneId'=>'non-empty-string'], - 'date_diff' => ['DateInterval|false', 'baseObject'=>'DateTimeInterface', 'targetObject'=>'DateTimeInterface', 'absolute='=>'bool'], - 'date_format' => ['string|false', 'object'=>'DateTimeInterface', 'format'=>'string'], - 'date_get_last_errors' => ['array{warning_count:int,warnings:array,error_count:int,errors:array}|false'], - 'date_interval_create_from_date_string' => ['DateInterval', 'datetime'=>'string'], - 'date_interval_format' => ['string', 'object'=>'DateInterval', 'format'=>'string'], - 'date_isodate_set' => ['DateTime', 'object'=>'DateTime', 'year'=>'int', 'week'=>'int', 'dayOfWeek='=>'int'], - 'date_modify' => ['DateTime|false', 'object'=>'DateTime', 'modifier'=>'string'], - 'date_offset_get' => ['int|false', 'object'=>'DateTimeInterface'], - 'date_parse' => ['array|false', 'datetime'=>'string'], - 'date_parse_from_format' => ['array', 'format'=>'string', 'datetime'=>'string'], - 'date_sub' => ['DateTime|false', 'object'=>'DateTime', 'interval'=>'DateInterval'], - 'date_sun_info' => ['array|false', 'timestamp'=>'int', 'latitude'=>'float', 'longitude'=>'float'], - 'date_sunrise' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'float', 'longitude='=>'float', 'zenith='=>'float', 'utcOffset='=>'float'], - 'date_sunset' => ['string|int|float|false', 'timestamp'=>'int', 'returnFormat='=>'int', 'latitude='=>'float', 'longitude='=>'float', 'zenith='=>'float', 'utcOffset='=>'float'], - 'date_time_set' => ['DateTime|false', 'object'=>'', 'hour'=>'', 'minute'=>'', 'second='=>'', 'microsecond='=>''], - 'date_timestamp_get' => ['int', 'object'=>'DateTimeInterface'], - 'date_timestamp_set' => ['DateTime|false', 'object'=>'DateTime', 'timestamp'=>'int'], - 'date_timezone_get' => ['DateTimeZone|false', 'object'=>'DateTimeInterface'], - 'date_timezone_set' => ['DateTime|false', 'object'=>'DateTime', 'timezone'=>'DateTimeZone'], - 'datefmt_create' => ['?IntlDateFormatter', 'locale'=>'?string', 'dateType'=>'int', 'timeType'=>'int', 'timezone='=>'DateTimeZone|IntlTimeZone|string|null', 'calendar='=>'IntlCalendar|int|null', 'pattern='=>'string'], - 'datefmt_format' => ['string|false', 'formatter'=>'IntlDateFormatter', 'datetime'=>'DateTime|IntlCalendar|array|int'], - 'datefmt_format_object' => ['string|false', 'datetime'=>'object', 'format='=>'mixed', 'locale='=>'?string'], - 'datefmt_get_calendar' => ['int', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_calendar_object' => ['IntlCalendar|false|null', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_datetype' => ['int', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_error_code' => ['int', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_error_message' => ['string', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_locale' => ['string|false', 'formatter'=>'IntlDateFormatter', 'type='=>'int'], - 'datefmt_get_pattern' => ['string', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_timetype' => ['int', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_timezone' => ['IntlTimeZone|false', 'formatter'=>'IntlDateFormatter'], - 'datefmt_get_timezone_id' => ['string|false', 'formatter'=>'IntlDateFormatter'], - 'datefmt_is_lenient' => ['bool', 'formatter'=>'IntlDateFormatter'], - 'datefmt_localtime' => ['array|false', 'formatter'=>'IntlDateFormatter', 'string'=>'string', '&rw_offset='=>'int'], - 'datefmt_parse' => ['float|int|false', 'formatter'=>'IntlDateFormatter', 'string'=>'string', '&rw_offset='=>'int'], - 'datefmt_set_calendar' => ['bool', 'formatter'=>'IntlDateFormatter', 'calendar'=>'IntlCalendar|int|null'], - 'datefmt_set_lenient' => ['void', 'formatter'=>'IntlDateFormatter', 'lenient'=>'bool'], - 'datefmt_set_pattern' => ['bool', 'formatter'=>'IntlDateFormatter', 'pattern'=>'string'], - 'datefmt_set_timezone' => ['false|null', 'formatter'=>'IntlDateFormatter', 'timezone'=>'IntlTimeZone|DateTimeZone|string|null'], - 'db2_autocommit' => ['0|1|bool', 'connection'=>'resource', 'value='=>'0|1'], - 'db2_bind_param' => ['bool', 'stmt'=>'resource', 'parameter_number'=>'int', 'variable_name'=>'string', 'parameter_type='=>'int', 'data_type='=>'int', 'precision='=>'int', 'scale='=>'int'], - 'db2_client_info' => ['stdClass|false', 'connection'=>'resource'], - 'db2_close' => ['bool', 'connection'=>'resource'], - 'db2_column_privileges' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'column_name='=>'?string'], - 'db2_columns' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'column_name='=>'?string'], - 'db2_commit' => ['bool', 'connection'=>'resource'], - 'db2_conn_error' => ['string', 'connection='=>'resource'], - 'db2_conn_errormsg' => ['string', 'connection='=>'resource'], - 'db2_connect' => ['resource|false', 'database'=>'string', 'username'=>'?string', 'password'=>'?string', 'options='=>'array'], - 'db2_cursor_type' => ['int', 'stmt'=>'resource'], - 'db2_escape_string' => ['string', 'string_literal'=>'string'], - 'db2_exec' => ['resource|false', 'connection'=>'resource', 'statement'=>'string', 'options='=>'array'], - 'db2_execute' => ['bool', 'stmt'=>'resource', 'parameters='=>'array'], - 'db2_fetch_array' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], - 'db2_fetch_assoc' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], - 'db2_fetch_both' => ['array|false', 'stmt'=>'resource', 'row_number='=>'?int'], - 'db2_fetch_object' => ['stdClass|false', 'stmt'=>'resource', 'row_number='=>'?int'], - 'db2_fetch_row' => ['bool', 'stmt'=>'resource', 'row_number='=>'?int'], - 'db2_field_display_size' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_name' => ['string|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_num' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_precision' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_scale' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_type' => ['string|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_field_width' => ['int|false', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_foreign_keys' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string'], - 'db2_free_result' => ['bool', 'stmt'=>'resource'], - 'db2_free_stmt' => ['bool', 'stmt'=>'resource'], - 'db2_get_option' => ['string|false', 'resource'=>'resource', 'option'=>'string'], - 'db2_last_insert_id' => ['string|null', 'resource'=>'resource'], - 'db2_lob_read' => ['string|false', 'stmt'=>'resource', 'colnum'=>'int', 'length'=>'int'], - 'db2_next_result' => ['resource|false', 'stmt'=>'resource'], - 'db2_num_fields' => ['int|false', 'stmt'=>'resource'], - 'db2_num_rows' => ['int|false', 'stmt'=>'resource'], - 'db2_pclose' => ['bool', 'resource'=>'resource'], - 'db2_pconnect' => ['resource|false', 'database'=>'string', 'username'=>'?string', 'password'=>'?string', 'options='=>'array'], - 'db2_prepare' => ['resource|false', 'connection'=>'resource', 'statement'=>'string', 'options='=>'array'], - 'db2_primary_keys' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string'], - 'db2_primarykeys' => [''], - 'db2_procedure_columns' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'procedure'=>'string', 'parameter'=>'?string'], - 'db2_procedurecolumns' => [''], - 'db2_procedures' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'procedure'=>'string'], - 'db2_result' => ['mixed', 'stmt'=>'resource', 'column'=>'string|int'], - 'db2_rollback' => ['bool', 'connection'=>'resource'], - 'db2_server_info' => ['stdClass|false', 'connection'=>'resource'], - 'db2_set_option' => ['bool', 'resource'=>'resource', 'options'=>'array', 'type'=>'int'], - 'db2_setoption' => [''], - 'db2_special_columns' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'string', 'table_name'=>'string', 'scope'=>'int'], - 'db2_specialcolumns' => [''], - 'db2_statistics' => ['resource|false', 'connection'=>'resource', 'qualifier'=>'?string', 'schema'=>'?string', 'table_name'=>'string', 'unique'=>'bool'], - 'db2_stmt_error' => ['string', 'stmt='=>'resource'], - 'db2_stmt_errormsg' => ['string', 'stmt='=>'resource'], - 'db2_table_privileges' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string'], - 'db2_tableprivileges' => [''], - 'db2_tables' => ['resource|false', 'connection'=>'resource', 'qualifier='=>'?string', 'schema='=>'?string', 'table_name='=>'?string', 'table_type='=>'?string'], - 'dba_close' => ['void', 'dba'=>'resource'], - 'dba_delete' => ['bool', 'key'=>'array|string', 'dba'=>'resource'], - 'dba_exists' => ['bool', 'key'=>'array|string', 'dba'=>'resource'], - 'dba_fetch' => ['string|false', 'key'=>'array|string', 'skip'=>'int', 'dba'=>'resource'], - 'dba_fetch\'1' => ['string|false', 'key'=>'array|string', 'skip'=>'resource'], - 'dba_firstkey' => ['string', 'dba'=>'resource'], - 'dba_handlers' => ['array', 'full_info='=>'bool'], - 'dba_insert' => ['bool', 'key'=>'array|string', 'value'=>'string', 'dba'=>'resource'], - 'dba_key_split' => ['array|false', 'key'=>'string|false|null'], - 'dba_list' => ['array'], - 'dba_nextkey' => ['string', 'dba'=>'resource'], - 'dba_open' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'string', '...handler_params='=>'string'], - 'dba_optimize' => ['bool', 'dba'=>'resource'], - 'dba_popen' => ['resource', 'path'=>'string', 'mode'=>'string', 'handler='=>'string', '...handler_params='=>'string'], - 'dba_replace' => ['bool', 'key'=>'array|string', 'value'=>'string', 'dba'=>'resource'], - 'dba_sync' => ['bool', 'dba'=>'resource'], - 'dbase_add_record' => ['bool', 'dbase_identifier'=>'resource', 'record'=>'array'], - 'dbase_close' => ['bool', 'dbase_identifier'=>'resource'], - 'dbase_create' => ['resource|false', 'filename'=>'string', 'fields'=>'array'], - 'dbase_delete_record' => ['bool', 'dbase_identifier'=>'resource', 'record_number'=>'int'], - 'dbase_get_header_info' => ['array', 'dbase_identifier'=>'resource'], - 'dbase_get_record' => ['array', 'dbase_identifier'=>'resource', 'record_number'=>'int'], - 'dbase_get_record_with_names' => ['array', 'dbase_identifier'=>'resource', 'record_number'=>'int'], - 'dbase_numfields' => ['int', 'dbase_identifier'=>'resource'], - 'dbase_numrecords' => ['int', 'dbase_identifier'=>'resource'], - 'dbase_open' => ['resource|false', 'filename'=>'string', 'mode'=>'int'], - 'dbase_pack' => ['bool', 'dbase_identifier'=>'resource'], - 'dbase_replace_record' => ['bool', 'dbase_identifier'=>'resource', 'record'=>'array', 'record_number'=>'int'], - 'dbplus_add' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_aql' => ['resource', 'query'=>'string', 'server='=>'string', 'dbpath='=>'string'], - 'dbplus_chdir' => ['string', 'newdir='=>'string'], - 'dbplus_close' => ['mixed', 'relation'=>'resource'], - 'dbplus_curr' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_errcode' => ['string', 'errno='=>'int'], - 'dbplus_errno' => ['int'], - 'dbplus_find' => ['int', 'relation'=>'resource', 'constraints'=>'array', 'tuple'=>'mixed'], - 'dbplus_first' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_flush' => ['int', 'relation'=>'resource'], - 'dbplus_freealllocks' => ['int'], - 'dbplus_freelock' => ['int', 'relation'=>'resource', 'tuple'=>'string'], - 'dbplus_freerlocks' => ['int', 'relation'=>'resource'], - 'dbplus_getlock' => ['int', 'relation'=>'resource', 'tuple'=>'string'], - 'dbplus_getunique' => ['int', 'relation'=>'resource', 'uniqueid'=>'int'], - 'dbplus_info' => ['int', 'relation'=>'resource', 'key'=>'string', 'result'=>'array'], - 'dbplus_last' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_lockrel' => ['int', 'relation'=>'resource'], - 'dbplus_next' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_open' => ['resource', 'name'=>'string'], - 'dbplus_prev' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_rchperm' => ['int', 'relation'=>'resource', 'mask'=>'int', 'user'=>'string', 'group'=>'string'], - 'dbplus_rcreate' => ['resource', 'name'=>'string', 'domlist'=>'mixed', 'overwrite='=>'bool'], - 'dbplus_rcrtexact' => ['mixed', 'name'=>'string', 'relation'=>'resource', 'overwrite='=>'bool'], - 'dbplus_rcrtlike' => ['mixed', 'name'=>'string', 'relation'=>'resource', 'overwrite='=>'int'], - 'dbplus_resolve' => ['array', 'relation_name'=>'string'], - 'dbplus_restorepos' => ['int', 'relation'=>'resource', 'tuple'=>'array'], - 'dbplus_rkeys' => ['mixed', 'relation'=>'resource', 'domlist'=>'mixed'], - 'dbplus_ropen' => ['resource', 'name'=>'string'], - 'dbplus_rquery' => ['resource', 'query'=>'string', 'dbpath='=>'string'], - 'dbplus_rrename' => ['int', 'relation'=>'resource', 'name'=>'string'], - 'dbplus_rsecindex' => ['mixed', 'relation'=>'resource', 'domlist'=>'mixed', 'type'=>'int'], - 'dbplus_runlink' => ['int', 'relation'=>'resource'], - 'dbplus_rzap' => ['int', 'relation'=>'resource'], - 'dbplus_savepos' => ['int', 'relation'=>'resource'], - 'dbplus_setindex' => ['int', 'relation'=>'resource', 'idx_name'=>'string'], - 'dbplus_setindexbynumber' => ['int', 'relation'=>'resource', 'idx_number'=>'int'], - 'dbplus_sql' => ['resource', 'query'=>'string', 'server='=>'string', 'dbpath='=>'string'], - 'dbplus_tcl' => ['string', 'sid'=>'int', 'script'=>'string'], - 'dbplus_tremove' => ['int', 'relation'=>'resource', 'tuple'=>'array', 'current='=>'array'], - 'dbplus_undo' => ['int', 'relation'=>'resource'], - 'dbplus_undoprepare' => ['int', 'relation'=>'resource'], - 'dbplus_unlockrel' => ['int', 'relation'=>'resource'], - 'dbplus_unselect' => ['int', 'relation'=>'resource'], - 'dbplus_update' => ['int', 'relation'=>'resource', 'old'=>'array', 'new'=>'array'], - 'dbplus_xlockrel' => ['int', 'relation'=>'resource'], - 'dbplus_xunlockrel' => ['int', 'relation'=>'resource'], - 'dbx_close' => ['int', 'link_identifier'=>'object'], - 'dbx_compare' => ['int', 'row_a'=>'array', 'row_b'=>'array', 'column_key'=>'string', 'flags='=>'int'], - 'dbx_connect' => ['object', 'module'=>'mixed', 'host'=>'string', 'database'=>'string', 'username'=>'string', 'password'=>'string', 'persistent='=>'int'], - 'dbx_error' => ['string', 'link_identifier'=>'object'], - 'dbx_escape_string' => ['string', 'link_identifier'=>'object', 'text'=>'string'], - 'dbx_fetch_row' => ['mixed', 'result_identifier'=>'object'], - 'dbx_query' => ['mixed', 'link_identifier'=>'object', 'sql_statement'=>'string', 'flags='=>'int'], - 'dbx_sort' => ['bool', 'result'=>'object', 'user_compare_function'=>'string'], - 'dcgettext' => ['string', 'domain'=>'string', 'message'=>'string', 'category'=>'int'], - 'dcngettext' => ['string', 'domain'=>'string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int', 'category'=>'int'], - 'deaggregate' => ['', 'object'=>'object', 'class_name='=>'string'], - 'debug_backtrace' => ['list', 'options='=>'int', 'limit='=>'int'], - 'debug_print_backtrace' => ['void', 'options='=>'int', 'limit='=>'int'], - 'debug_zval_dump' => ['void', 'value'=>'mixed', '...values='=>'mixed'], - 'debugger_connect' => [''], - 'debugger_connector_pid' => [''], - 'debugger_get_server_start_time' => [''], - 'debugger_print' => [''], - 'debugger_start_debug' => [''], - 'decbin' => ['string', 'num'=>'int'], - 'dechex' => ['string', 'num'=>'int'], - 'decoct' => ['string', 'num'=>'int'], - 'define' => ['bool', 'constant_name'=>'string', 'value'=>'array|scalar|null', 'case_insensitive='=>'bool'], - 'define_syslog_variables' => ['void'], - 'defined' => ['bool', 'constant_name'=>'string'], - 'deflate_add' => ['string|false', 'context'=>'resource', 'data'=>'string', 'flush_mode='=>'int'], - 'deflate_init' => ['resource|false', 'encoding'=>'int', 'options='=>'array'], - 'deg2rad' => ['float', 'num'=>'float'], - 'dgettext' => ['string', 'domain'=>'string', 'message'=>'string'], - 'dio_close' => ['void', 'fd'=>'resource'], - 'dio_fcntl' => ['mixed', 'fd'=>'resource', 'cmd'=>'int', 'args='=>'mixed'], - 'dio_open' => ['resource|false', 'filename'=>'string', 'flags'=>'int', 'mode='=>'int'], - 'dio_read' => ['string', 'fd'=>'resource', 'length='=>'int'], - 'dio_seek' => ['int', 'fd'=>'resource', 'pos'=>'int', 'whence='=>'int'], - 'dio_stat' => ['?array', 'fd'=>'resource'], - 'dio_tcsetattr' => ['bool', 'fd'=>'resource', 'options'=>'array'], - 'dio_truncate' => ['bool', 'fd'=>'resource', 'offset'=>'int'], - 'dio_write' => ['int', 'fd'=>'resource', 'data'=>'string', 'length='=>'int'], - 'dir' => ['Directory|false', 'directory'=>'string', 'context='=>'resource'], - 'dirname' => ['string', 'path'=>'string', 'levels='=>'int<1, max>'], - 'disk_free_space' => ['float|false', 'directory'=>'string'], - 'disk_total_space' => ['float|false', 'directory'=>'string'], - 'diskfreespace' => ['float|false', 'directory'=>'string'], - 'display_disabled_function' => [''], - 'dl' => ['bool', 'extension_filename'=>'string'], - 'dngettext' => ['string', 'domain'=>'string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int'], - 'dns_check_record' => ['bool', 'hostname'=>'string', 'type='=>'string'], - 'dns_get_mx' => ['bool', 'hostname'=>'string', '&w_hosts'=>'array', '&w_weights='=>'array'], - 'dns_get_record' => ['list|false', 'hostname'=>'string', 'type='=>'int', '&w_authoritative_name_servers='=>'array', '&w_additional_records='=>'array', 'raw='=>'bool'], - 'dom_document_relaxNG_validate_file' => ['bool', 'filename'=>'string'], - 'dom_document_relaxNG_validate_xml' => ['bool', 'source'=>'string'], - 'dom_document_schema_validate' => ['bool', 'source'=>'string', 'flags'=>'int'], - 'dom_document_schema_validate_file' => ['bool', 'filename'=>'string', 'flags'=>'int'], - 'dom_document_xinclude' => ['int', 'options'=>'int'], - 'dom_import_simplexml' => ['DOMElement|null', 'node'=>'SimpleXMLElement'], - 'dom_xpath_evaluate' => ['', 'expr'=>'string', 'context'=>'DOMNode', 'registernodens'=>'bool'], - 'dom_xpath_query' => ['DOMNodeList', 'expr'=>'string', 'context'=>'DOMNode', 'registernodens'=>'bool'], - 'dom_xpath_register_ns' => ['bool', 'prefix'=>'string', 'uri'=>'string'], - 'dom_xpath_register_php_functions' => [''], - 'domxml_new_doc' => ['DomDocument', 'version'=>'string'], - 'domxml_open_file' => ['DomDocument', 'filename'=>'string', 'mode='=>'int', 'error='=>'array'], - 'domxml_open_mem' => ['DomDocument', 'string'=>'string', 'mode='=>'int', 'error='=>'array'], - 'domxml_version' => ['string'], - 'domxml_xmltree' => ['DomDocument', 'string'=>'string'], - 'domxml_xslt_stylesheet' => ['DomXsltStylesheet', 'xsl_buf'=>'string'], - 'domxml_xslt_stylesheet_doc' => ['DomXsltStylesheet', 'xsl_doc'=>'DOMDocument'], - 'domxml_xslt_stylesheet_file' => ['DomXsltStylesheet', 'xsl_file'=>'string'], - 'domxml_xslt_version' => ['int'], - 'dotnet_load' => ['int', 'assembly_name'=>'string', 'datatype_name='=>'string', 'codepage='=>'int'], - 'doubleval' => ['float', 'value'=>'mixed'], - 'each' => ['array{0:int|string,key:int|string,1:mixed,value:mixed}', '&r_arr'=>'array'], - 'easter_date' => ['int', 'year='=>'int', 'mode='=>'int'], - 'easter_days' => ['int', 'year='=>'int', 'mode='=>'int'], - 'echo' => ['void', 'arg1'=>'string', '...args='=>'string'], - 'eio_busy' => ['resource', 'delay'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_cancel' => ['void', 'req'=>'resource'], - 'eio_chmod' => ['resource', 'path'=>'string', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_chown' => ['resource', 'path'=>'string', 'uid'=>'int', 'gid='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_close' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_custom' => ['resource', 'execute'=>'callable', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_dup2' => ['resource', 'fd'=>'mixed', 'fd2'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_event_loop' => ['bool'], - 'eio_fallocate' => ['resource', 'fd'=>'mixed', 'mode'=>'int', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_fchmod' => ['resource', 'fd'=>'mixed', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_fchown' => ['resource', 'fd'=>'mixed', 'uid'=>'int', 'gid='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_fdatasync' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_fstat' => ['resource', 'fd'=>'mixed', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_fstatvfs' => ['resource', 'fd'=>'mixed', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_fsync' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_ftruncate' => ['resource', 'fd'=>'mixed', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_futime' => ['resource', 'fd'=>'mixed', 'atime'=>'float', 'mtime'=>'float', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_get_event_stream' => ['mixed'], - 'eio_get_last_error' => ['string', 'req'=>'resource'], - 'eio_grp' => ['resource', 'callback'=>'callable', 'data='=>'string'], - 'eio_grp_add' => ['void', 'grp'=>'resource', 'req'=>'resource'], - 'eio_grp_cancel' => ['void', 'grp'=>'resource'], - 'eio_grp_limit' => ['void', 'grp'=>'resource', 'limit'=>'int'], - 'eio_init' => ['void'], - 'eio_link' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_lstat' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_mkdir' => ['resource', 'path'=>'string', 'mode'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_mknod' => ['resource', 'path'=>'string', 'mode'=>'int', 'dev'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_nop' => ['resource', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_npending' => ['int'], - 'eio_nready' => ['int'], - 'eio_nreqs' => ['int'], - 'eio_nthreads' => ['int'], - 'eio_open' => ['resource', 'path'=>'string', 'flags'=>'int', 'mode'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_poll' => ['int'], - 'eio_read' => ['resource', 'fd'=>'mixed', 'length'=>'int', 'offset'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_readahead' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_readdir' => ['resource', 'path'=>'string', 'flags'=>'int', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], - 'eio_readlink' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], - 'eio_realpath' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'string'], - 'eio_rename' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_rmdir' => ['resource', 'path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_seek' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'whence'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_sendfile' => ['resource', 'out_fd'=>'mixed', 'in_fd'=>'mixed', 'offset'=>'int', 'length'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'string'], - 'eio_set_max_idle' => ['void', 'nthreads'=>'int'], - 'eio_set_max_parallel' => ['void', 'nthreads'=>'int'], - 'eio_set_max_poll_reqs' => ['void', 'nreqs'=>'int'], - 'eio_set_max_poll_time' => ['void', 'nseconds'=>'float'], - 'eio_set_min_parallel' => ['void', 'nthreads'=>'string'], - 'eio_stat' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_statvfs' => ['resource', 'path'=>'string', 'pri'=>'int', 'callback'=>'callable', 'data='=>'mixed'], - 'eio_symlink' => ['resource', 'path'=>'string', 'new_path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_sync' => ['resource', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_sync_file_range' => ['resource', 'fd'=>'mixed', 'offset'=>'int', 'nbytes'=>'int', 'flags'=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_syncfs' => ['resource', 'fd'=>'mixed', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_truncate' => ['resource', 'path'=>'string', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_unlink' => ['resource', 'path'=>'string', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_utime' => ['resource', 'path'=>'string', 'atime'=>'float', 'mtime'=>'float', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'eio_write' => ['resource', 'fd'=>'mixed', 'string'=>'string', 'length='=>'int', 'offset='=>'int', 'pri='=>'int', 'callback='=>'callable', 'data='=>'mixed'], - 'empty' => ['bool', 'value'=>'mixed'], - 'enchant_broker_describe' => ['array|false', 'broker'=>'resource'], - 'enchant_broker_dict_exists' => ['bool', 'broker'=>'resource', 'tag'=>'string'], - 'enchant_broker_free' => ['bool', 'broker'=>'resource'], - 'enchant_broker_free_dict' => ['bool', 'dictionary'=>'resource'], - 'enchant_broker_get_dict_path' => ['string', 'broker'=>'resource', 'type'=>'int'], - 'enchant_broker_get_error' => ['string|false', 'broker'=>'resource'], - 'enchant_broker_init' => ['resource|false'], - 'enchant_broker_list_dicts' => ['array|false', 'broker'=>'resource'], - 'enchant_broker_request_dict' => ['resource|false', 'broker'=>'resource', 'tag'=>'string'], - 'enchant_broker_request_pwl_dict' => ['resource|false', 'broker'=>'resource', 'filename'=>'string'], - 'enchant_broker_set_dict_path' => ['bool', 'broker'=>'resource', 'type'=>'int', 'path'=>'string'], - 'enchant_broker_set_ordering' => ['bool', 'broker'=>'resource', 'tag'=>'string', 'ordering'=>'string'], - 'enchant_dict_add_to_personal' => ['void', 'dictionary'=>'resource', 'word'=>'string'], - 'enchant_dict_add_to_session' => ['void', 'dictionary'=>'resource', 'word'=>'string'], - 'enchant_dict_check' => ['bool', 'dictionary'=>'resource', 'word'=>'string'], - 'enchant_dict_describe' => ['array', 'dictionary'=>'resource'], - 'enchant_dict_get_error' => ['string', 'dictionary'=>'resource'], - 'enchant_dict_is_in_session' => ['bool', 'dictionary'=>'resource', 'word'=>'string'], - 'enchant_dict_quick_check' => ['bool', 'dictionary'=>'resource', 'word'=>'string', '&w_suggestions='=>'array'], - 'enchant_dict_store_replacement' => ['void', 'dictionary'=>'resource', 'misspelled'=>'string', 'correct'=>'string'], - 'enchant_dict_suggest' => ['array', 'dictionary'=>'resource', 'word'=>'string'], - 'end' => ['mixed|false', '&r_array'=>'array|object'], - 'error_clear_last' => ['void'], - 'error_get_last' => ['?array{type:int,message:string,file:string,line:int}'], - 'error_log' => ['bool', 'message'=>'string', 'message_type='=>'int', 'destination='=>'string', 'additional_headers='=>'string'], - 'error_reporting' => ['int', 'error_level='=>'int'], - 'escapeshellarg' => ['string', 'arg'=>'string'], - 'escapeshellcmd' => ['string', 'command'=>'string'], - 'eval' => ['mixed', 'code_str'=>'string'], - 'event_add' => ['bool', 'event'=>'resource', 'timeout='=>'int'], - 'event_base_free' => ['void', 'event_base'=>'resource'], - 'event_base_loop' => ['int', 'event_base'=>'resource', 'flags='=>'int'], - 'event_base_loopbreak' => ['bool', 'event_base'=>'resource'], - 'event_base_loopexit' => ['bool', 'event_base'=>'resource', 'timeout='=>'int'], - 'event_base_new' => ['resource|false'], - 'event_base_priority_init' => ['bool', 'event_base'=>'resource', 'npriorities'=>'int'], - 'event_base_reinit' => ['bool', 'event_base'=>'resource'], - 'event_base_set' => ['bool', 'event'=>'resource', 'event_base'=>'resource'], - 'event_buffer_base_set' => ['bool', 'bevent'=>'resource', 'event_base'=>'resource'], - 'event_buffer_disable' => ['bool', 'bevent'=>'resource', 'events'=>'int'], - 'event_buffer_enable' => ['bool', 'bevent'=>'resource', 'events'=>'int'], - 'event_buffer_fd_set' => ['void', 'bevent'=>'resource', 'fd'=>'resource'], - 'event_buffer_free' => ['void', 'bevent'=>'resource'], - 'event_buffer_new' => ['resource|false', 'stream'=>'resource', 'readcb'=>'callable|null', 'writecb'=>'callable|null', 'errorcb'=>'callable', 'arg='=>'mixed'], - 'event_buffer_priority_set' => ['bool', 'bevent'=>'resource', 'priority'=>'int'], - 'event_buffer_read' => ['string', 'bevent'=>'resource', 'data_size'=>'int'], - 'event_buffer_set_callback' => ['bool', 'event'=>'resource', 'readcb'=>'mixed', 'writecb'=>'mixed', 'errorcb'=>'mixed', 'arg='=>'mixed'], - 'event_buffer_timeout_set' => ['void', 'bevent'=>'resource', 'read_timeout'=>'int', 'write_timeout'=>'int'], - 'event_buffer_watermark_set' => ['void', 'bevent'=>'resource', 'events'=>'int', 'lowmark'=>'int', 'highmark'=>'int'], - 'event_buffer_write' => ['bool', 'bevent'=>'resource', 'data'=>'string', 'data_size='=>'int'], - 'event_del' => ['bool', 'event'=>'resource'], - 'event_free' => ['void', 'event'=>'resource'], - 'event_new' => ['resource|false'], - 'event_priority_set' => ['bool', 'event'=>'resource', 'priority'=>'int'], - 'event_set' => ['bool', 'event'=>'resource', 'fd'=>'int|resource', 'events'=>'int', 'callback'=>'callable', 'arg='=>'mixed'], - 'event_timer_add' => ['bool', 'event'=>'resource', 'timeout='=>'int'], - 'event_timer_del' => ['bool', 'event'=>'resource'], - 'event_timer_new' => ['resource|false'], - 'event_timer_pending' => ['bool', 'event'=>'resource', 'timeout='=>'int'], - 'event_timer_set' => ['bool', 'event'=>'resource', 'callback'=>'callable', 'arg='=>'mixed'], - 'exec' => ['string|false', 'command'=>'string', '&w_output='=>'array', '&w_result_code='=>'int'], - 'exif_imagetype' => ['int|false', 'filename'=>'string'], - 'exif_read_data' => ['array|false', 'file'=>'string|resource', 'required_sections='=>'string', 'as_arrays='=>'bool', 'read_thumbnail='=>'bool'], - 'exif_tagname' => ['string|false', 'index'=>'int'], - 'exif_thumbnail' => ['string|false', 'file'=>'string', '&w_width='=>'int', '&w_height='=>'int', '&w_image_type='=>'int'], - 'exit' => ['', 'status'=>'string|int'], - 'exp' => ['float', 'num'=>'float'], - 'expect_expectl' => ['int', 'expect'=>'resource', 'cases'=>'array', 'match='=>'array'], - 'expect_popen' => ['resource|false', 'command'=>'string'], - 'explode' => ['list|false', 'separator'=>'string', 'string'=>'string', 'limit='=>'int'], - 'expm1' => ['float', 'num'=>'float'], - 'extension_loaded' => ['bool', 'extension'=>'string'], - 'extract' => ['int', '&rw_array'=>'array', 'flags='=>'int', 'prefix='=>'string'], - 'ezmlm_hash' => ['int', 'addr'=>'string'], - 'fam_cancel_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], - 'fam_close' => ['void', 'fam'=>'resource'], - 'fam_monitor_collection' => ['resource', 'fam'=>'resource', 'dirname'=>'string', 'depth'=>'int', 'mask'=>'string'], - 'fam_monitor_directory' => ['resource', 'fam'=>'resource', 'dirname'=>'string'], - 'fam_monitor_file' => ['resource', 'fam'=>'resource', 'filename'=>'string'], - 'fam_next_event' => ['array', 'fam'=>'resource'], - 'fam_open' => ['resource|false', 'appname='=>'string'], - 'fam_pending' => ['int', 'fam'=>'resource'], - 'fam_resume_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], - 'fam_suspend_monitor' => ['bool', 'fam'=>'resource', 'fam_monitor'=>'resource'], - 'fann_cascadetrain_on_data' => ['bool', 'ann'=>'resource', 'data'=>'resource', 'max_neurons'=>'int', 'neurons_between_reports'=>'int', 'desired_error'=>'float'], - 'fann_cascadetrain_on_file' => ['bool', 'ann'=>'resource', 'filename'=>'string', 'max_neurons'=>'int', 'neurons_between_reports'=>'int', 'desired_error'=>'float'], - 'fann_clear_scaling_params' => ['bool', 'ann'=>'resource'], - 'fann_copy' => ['resource|false', 'ann'=>'resource'], - 'fann_create_from_file' => ['resource', 'configuration_file'=>'string'], - 'fann_create_shortcut' => ['resource|false', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], - 'fann_create_shortcut_array' => ['resource|false', 'num_layers'=>'int', 'layers'=>'array'], - 'fann_create_sparse' => ['resource|false', 'connection_rate'=>'float', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], - 'fann_create_sparse_array' => ['resource|false', 'connection_rate'=>'float', 'num_layers'=>'int', 'layers'=>'array'], - 'fann_create_standard' => ['resource|false', 'num_layers'=>'int', 'num_neurons1'=>'int', 'num_neurons2'=>'int', '...args='=>'int'], - 'fann_create_standard_array' => ['resource|false', 'num_layers'=>'int', 'layers'=>'array'], - 'fann_create_train' => ['resource', 'num_data'=>'int', 'num_input'=>'int', 'num_output'=>'int'], - 'fann_create_train_from_callback' => ['resource', 'num_data'=>'int', 'num_input'=>'int', 'num_output'=>'int', 'user_function'=>'callable'], - 'fann_descale_input' => ['bool', 'ann'=>'resource', 'input_vector'=>'array'], - 'fann_descale_output' => ['bool', 'ann'=>'resource', 'output_vector'=>'array'], - 'fann_descale_train' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], - 'fann_destroy' => ['bool', 'ann'=>'resource'], - 'fann_destroy_train' => ['bool', 'train_data'=>'resource'], - 'fann_duplicate_train_data' => ['resource', 'data'=>'resource'], - 'fann_get_MSE' => ['float|false', 'ann'=>'resource'], - 'fann_get_activation_function' => ['int|false', 'ann'=>'resource', 'layer'=>'int', 'neuron'=>'int'], - 'fann_get_activation_steepness' => ['float|false', 'ann'=>'resource', 'layer'=>'int', 'neuron'=>'int'], - 'fann_get_bias_array' => ['array', 'ann'=>'resource'], - 'fann_get_bit_fail' => ['int|false', 'ann'=>'resource'], - 'fann_get_bit_fail_limit' => ['float|false', 'ann'=>'resource'], - 'fann_get_cascade_activation_functions' => ['array|false', 'ann'=>'resource'], - 'fann_get_cascade_activation_functions_count' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_activation_steepnesses' => ['array|false', 'ann'=>'resource'], - 'fann_get_cascade_activation_steepnesses_count' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_candidate_change_fraction' => ['float|false', 'ann'=>'resource'], - 'fann_get_cascade_candidate_limit' => ['float|false', 'ann'=>'resource'], - 'fann_get_cascade_candidate_stagnation_epochs' => ['float|false', 'ann'=>'resource'], - 'fann_get_cascade_max_cand_epochs' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_max_out_epochs' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_min_cand_epochs' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_min_out_epochs' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_num_candidate_groups' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_num_candidates' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_output_change_fraction' => ['float|false', 'ann'=>'resource'], - 'fann_get_cascade_output_stagnation_epochs' => ['int|false', 'ann'=>'resource'], - 'fann_get_cascade_weight_multiplier' => ['float|false', 'ann'=>'resource'], - 'fann_get_connection_array' => ['array', 'ann'=>'resource'], - 'fann_get_connection_rate' => ['float|false', 'ann'=>'resource'], - 'fann_get_errno' => ['int|false', 'errdat'=>'resource'], - 'fann_get_errstr' => ['string|false', 'errdat'=>'resource'], - 'fann_get_layer_array' => ['array', 'ann'=>'resource'], - 'fann_get_learning_momentum' => ['float|false', 'ann'=>'resource'], - 'fann_get_learning_rate' => ['float|false', 'ann'=>'resource'], - 'fann_get_network_type' => ['int|false', 'ann'=>'resource'], - 'fann_get_num_input' => ['int|false', 'ann'=>'resource'], - 'fann_get_num_layers' => ['int|false', 'ann'=>'resource'], - 'fann_get_num_output' => ['int|false', 'ann'=>'resource'], - 'fann_get_quickprop_decay' => ['float|false', 'ann'=>'resource'], - 'fann_get_quickprop_mu' => ['float|false', 'ann'=>'resource'], - 'fann_get_rprop_decrease_factor' => ['float|false', 'ann'=>'resource'], - 'fann_get_rprop_delta_max' => ['float|false', 'ann'=>'resource'], - 'fann_get_rprop_delta_min' => ['float|false', 'ann'=>'resource'], - 'fann_get_rprop_delta_zero' => ['float|false', 'ann'=>'resource'], - 'fann_get_rprop_increase_factor' => ['float|false', 'ann'=>'resource'], - 'fann_get_sarprop_step_error_shift' => ['float|false', 'ann'=>'resource'], - 'fann_get_sarprop_step_error_threshold_factor' => ['float|false', 'ann'=>'resource'], - 'fann_get_sarprop_temperature' => ['float|false', 'ann'=>'resource'], - 'fann_get_sarprop_weight_decay_shift' => ['float|false', 'ann'=>'resource'], - 'fann_get_total_connections' => ['int|false', 'ann'=>'resource'], - 'fann_get_total_neurons' => ['int|false', 'ann'=>'resource'], - 'fann_get_train_error_function' => ['int|false', 'ann'=>'resource'], - 'fann_get_train_stop_function' => ['int|false', 'ann'=>'resource'], - 'fann_get_training_algorithm' => ['int|false', 'ann'=>'resource'], - 'fann_init_weights' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], - 'fann_length_train_data' => ['int|false', 'data'=>'resource'], - 'fann_merge_train_data' => ['resource|false', 'data1'=>'resource', 'data2'=>'resource'], - 'fann_num_input_train_data' => ['int|false', 'data'=>'resource'], - 'fann_num_output_train_data' => ['int|false', 'data'=>'resource'], - 'fann_print_error' => ['void', 'errdat'=>'string'], - 'fann_randomize_weights' => ['bool', 'ann'=>'resource', 'min_weight'=>'float', 'max_weight'=>'float'], - 'fann_read_train_from_file' => ['resource', 'filename'=>'string'], - 'fann_reset_MSE' => ['bool', 'ann'=>'string'], - 'fann_reset_errno' => ['void', 'errdat'=>'resource'], - 'fann_reset_errstr' => ['void', 'errdat'=>'resource'], - 'fann_run' => ['array|false', 'ann'=>'resource', 'input'=>'array'], - 'fann_save' => ['bool', 'ann'=>'resource', 'configuration_file'=>'string'], - 'fann_save_train' => ['bool', 'data'=>'resource', 'file_name'=>'string'], - 'fann_scale_input' => ['bool', 'ann'=>'resource', 'input_vector'=>'array'], - 'fann_scale_input_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], - 'fann_scale_output' => ['bool', 'ann'=>'resource', 'output_vector'=>'array'], - 'fann_scale_output_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], - 'fann_scale_train' => ['bool', 'ann'=>'resource', 'train_data'=>'resource'], - 'fann_scale_train_data' => ['bool', 'train_data'=>'resource', 'new_min'=>'float', 'new_max'=>'float'], - 'fann_set_activation_function' => ['bool', 'ann'=>'resource', 'activation_function'=>'int', 'layer'=>'int', 'neuron'=>'int'], - 'fann_set_activation_function_hidden' => ['bool', 'ann'=>'resource', 'activation_function'=>'int'], - 'fann_set_activation_function_layer' => ['bool', 'ann'=>'resource', 'activation_function'=>'int', 'layer'=>'int'], - 'fann_set_activation_function_output' => ['bool', 'ann'=>'resource', 'activation_function'=>'int'], - 'fann_set_activation_steepness' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float', 'layer'=>'int', 'neuron'=>'int'], - 'fann_set_activation_steepness_hidden' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float'], - 'fann_set_activation_steepness_layer' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float', 'layer'=>'int'], - 'fann_set_activation_steepness_output' => ['bool', 'ann'=>'resource', 'activation_steepness'=>'float'], - 'fann_set_bit_fail_limit' => ['bool', 'ann'=>'resource', 'bit_fail_limit'=>'float'], - 'fann_set_callback' => ['bool', 'ann'=>'resource', 'callback'=>'callable'], - 'fann_set_cascade_activation_functions' => ['bool', 'ann'=>'resource', 'cascade_activation_functions'=>'array'], - 'fann_set_cascade_activation_steepnesses' => ['bool', 'ann'=>'resource', 'cascade_activation_steepnesses_count'=>'array'], - 'fann_set_cascade_candidate_change_fraction' => ['bool', 'ann'=>'resource', 'cascade_candidate_change_fraction'=>'float'], - 'fann_set_cascade_candidate_limit' => ['bool', 'ann'=>'resource', 'cascade_candidate_limit'=>'float'], - 'fann_set_cascade_candidate_stagnation_epochs' => ['bool', 'ann'=>'resource', 'cascade_candidate_stagnation_epochs'=>'int'], - 'fann_set_cascade_max_cand_epochs' => ['bool', 'ann'=>'resource', 'cascade_max_cand_epochs'=>'int'], - 'fann_set_cascade_max_out_epochs' => ['bool', 'ann'=>'resource', 'cascade_max_out_epochs'=>'int'], - 'fann_set_cascade_min_cand_epochs' => ['bool', 'ann'=>'resource', 'cascade_min_cand_epochs'=>'int'], - 'fann_set_cascade_min_out_epochs' => ['bool', 'ann'=>'resource', 'cascade_min_out_epochs'=>'int'], - 'fann_set_cascade_num_candidate_groups' => ['bool', 'ann'=>'resource', 'cascade_num_candidate_groups'=>'int'], - 'fann_set_cascade_output_change_fraction' => ['bool', 'ann'=>'resource', 'cascade_output_change_fraction'=>'float'], - 'fann_set_cascade_output_stagnation_epochs' => ['bool', 'ann'=>'resource', 'cascade_output_stagnation_epochs'=>'int'], - 'fann_set_cascade_weight_multiplier' => ['bool', 'ann'=>'resource', 'cascade_weight_multiplier'=>'float'], - 'fann_set_error_log' => ['void', 'errdat'=>'resource', 'log_file'=>'string'], - 'fann_set_input_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_input_min'=>'float', 'new_input_max'=>'float'], - 'fann_set_learning_momentum' => ['bool', 'ann'=>'resource', 'learning_momentum'=>'float'], - 'fann_set_learning_rate' => ['bool', 'ann'=>'resource', 'learning_rate'=>'float'], - 'fann_set_output_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_output_min'=>'float', 'new_output_max'=>'float'], - 'fann_set_quickprop_decay' => ['bool', 'ann'=>'resource', 'quickprop_decay'=>'float'], - 'fann_set_quickprop_mu' => ['bool', 'ann'=>'resource', 'quickprop_mu'=>'float'], - 'fann_set_rprop_decrease_factor' => ['bool', 'ann'=>'resource', 'rprop_decrease_factor'=>'float'], - 'fann_set_rprop_delta_max' => ['bool', 'ann'=>'resource', 'rprop_delta_max'=>'float'], - 'fann_set_rprop_delta_min' => ['bool', 'ann'=>'resource', 'rprop_delta_min'=>'float'], - 'fann_set_rprop_delta_zero' => ['bool', 'ann'=>'resource', 'rprop_delta_zero'=>'float'], - 'fann_set_rprop_increase_factor' => ['bool', 'ann'=>'resource', 'rprop_increase_factor'=>'float'], - 'fann_set_sarprop_step_error_shift' => ['bool', 'ann'=>'resource', 'sarprop_step_error_shift'=>'float'], - 'fann_set_sarprop_step_error_threshold_factor' => ['bool', 'ann'=>'resource', 'sarprop_step_error_threshold_factor'=>'float'], - 'fann_set_sarprop_temperature' => ['bool', 'ann'=>'resource', 'sarprop_temperature'=>'float'], - 'fann_set_sarprop_weight_decay_shift' => ['bool', 'ann'=>'resource', 'sarprop_weight_decay_shift'=>'float'], - 'fann_set_scaling_params' => ['bool', 'ann'=>'resource', 'train_data'=>'resource', 'new_input_min'=>'float', 'new_input_max'=>'float', 'new_output_min'=>'float', 'new_output_max'=>'float'], - 'fann_set_train_error_function' => ['bool', 'ann'=>'resource', 'error_function'=>'int'], - 'fann_set_train_stop_function' => ['bool', 'ann'=>'resource', 'stop_function'=>'int'], - 'fann_set_training_algorithm' => ['bool', 'ann'=>'resource', 'training_algorithm'=>'int'], - 'fann_set_weight' => ['bool', 'ann'=>'resource', 'from_neuron'=>'int', 'to_neuron'=>'int', 'weight'=>'float'], - 'fann_set_weight_array' => ['bool', 'ann'=>'resource', 'connections'=>'array'], - 'fann_shuffle_train_data' => ['bool', 'train_data'=>'resource'], - 'fann_subset_train_data' => ['resource', 'data'=>'resource', 'pos'=>'int', 'length'=>'int'], - 'fann_test' => ['bool', 'ann'=>'resource', 'input'=>'array', 'desired_output'=>'array'], - 'fann_test_data' => ['float|false', 'ann'=>'resource', 'data'=>'resource'], - 'fann_train' => ['bool', 'ann'=>'resource', 'input'=>'array', 'desired_output'=>'array'], - 'fann_train_epoch' => ['float|false', 'ann'=>'resource', 'data'=>'resource'], - 'fann_train_on_data' => ['bool', 'ann'=>'resource', 'data'=>'resource', 'max_epochs'=>'int', 'epochs_between_reports'=>'int', 'desired_error'=>'float'], - 'fann_train_on_file' => ['bool', 'ann'=>'resource', 'filename'=>'string', 'max_epochs'=>'int', 'epochs_between_reports'=>'int', 'desired_error'=>'float'], - 'fastcgi_finish_request' => ['bool'], - 'fbsql_affected_rows' => ['int', 'link_identifier='=>'?resource'], - 'fbsql_autocommit' => ['bool', 'link_identifier'=>'resource', 'onoff='=>'bool'], - 'fbsql_blob_size' => ['int', 'blob_handle'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_change_user' => ['bool', 'user'=>'string', 'password'=>'string', 'database='=>'string', 'link_identifier='=>'?resource'], - 'fbsql_clob_size' => ['int', 'clob_handle'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_close' => ['bool', 'link_identifier='=>'?resource'], - 'fbsql_commit' => ['bool', 'link_identifier='=>'?resource'], - 'fbsql_connect' => ['resource', 'hostname='=>'string', 'username='=>'string', 'password='=>'string'], - 'fbsql_create_blob' => ['string', 'blob_data'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_create_clob' => ['string', 'clob_data'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_create_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource', 'database_options='=>'string'], - 'fbsql_data_seek' => ['bool', 'result'=>'resource', 'row_number'=>'int'], - 'fbsql_database' => ['string', 'link_identifier'=>'resource', 'database='=>'string'], - 'fbsql_database_password' => ['string', 'link_identifier'=>'resource', 'database_password='=>'string'], - 'fbsql_db_query' => ['resource', 'database'=>'string', 'query'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_db_status' => ['int', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_drop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_errno' => ['int', 'link_identifier='=>'?resource'], - 'fbsql_error' => ['string', 'link_identifier='=>'?resource'], - 'fbsql_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], - 'fbsql_fetch_assoc' => ['array', 'result'=>'resource'], - 'fbsql_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_fetch_lengths' => ['array', 'result'=>'resource'], - 'fbsql_fetch_object' => ['object', 'result'=>'resource'], - 'fbsql_fetch_row' => ['array', 'result'=>'resource'], - 'fbsql_field_flags' => ['string', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_field_len' => ['int', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_field_name' => ['string', 'result'=>'resource', 'field_index='=>'int'], - 'fbsql_field_seek' => ['bool', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_field_table' => ['string', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_field_type' => ['string', 'result'=>'resource', 'field_offset='=>'int'], - 'fbsql_free_result' => ['bool', 'result'=>'resource'], - 'fbsql_get_autostart_info' => ['array', 'link_identifier='=>'?resource'], - 'fbsql_hostname' => ['string', 'link_identifier'=>'resource', 'host_name='=>'string'], - 'fbsql_insert_id' => ['int', 'link_identifier='=>'?resource'], - 'fbsql_list_dbs' => ['resource', 'link_identifier='=>'?resource'], - 'fbsql_list_fields' => ['resource', 'database_name'=>'string', 'table_name'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_list_tables' => ['resource', 'database'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_next_result' => ['bool', 'result'=>'resource'], - 'fbsql_num_fields' => ['int', 'result'=>'resource'], - 'fbsql_num_rows' => ['int', 'result'=>'resource'], - 'fbsql_password' => ['string', 'link_identifier'=>'resource', 'password='=>'string'], - 'fbsql_pconnect' => ['resource', 'hostname='=>'string', 'username='=>'string', 'password='=>'string'], - 'fbsql_query' => ['resource', 'query'=>'string', 'link_identifier='=>'?resource', 'batch_size='=>'int'], - 'fbsql_read_blob' => ['string', 'blob_handle'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_read_clob' => ['string', 'clob_handle'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_result' => ['mixed', 'result'=>'resource', 'row='=>'int', 'field='=>'mixed'], - 'fbsql_rollback' => ['bool', 'link_identifier='=>'?resource'], - 'fbsql_rows_fetched' => ['int', 'result'=>'resource'], - 'fbsql_select_db' => ['bool', 'database_name='=>'string', 'link_identifier='=>'?resource'], - 'fbsql_set_characterset' => ['void', 'link_identifier'=>'resource', 'characterset'=>'int', 'in_out_both='=>'int'], - 'fbsql_set_lob_mode' => ['bool', 'result'=>'resource', 'lob_mode'=>'int'], - 'fbsql_set_password' => ['bool', 'link_identifier'=>'resource', 'user'=>'string', 'password'=>'string', 'old_password'=>'string'], - 'fbsql_set_transaction' => ['void', 'link_identifier'=>'resource', 'locking'=>'int', 'isolation'=>'int'], - 'fbsql_start_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource', 'database_options='=>'string'], - 'fbsql_stop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'fbsql_table_name' => ['string', 'result'=>'resource', 'index'=>'int'], - 'fbsql_username' => ['string', 'link_identifier'=>'resource', 'username='=>'string'], - 'fbsql_warnings' => ['bool', 'onoff='=>'bool'], - 'fclose' => ['bool', 'stream'=>'resource'], - 'fdf_add_doc_javascript' => ['bool', 'fdf_document'=>'resource', 'script_name'=>'string', 'script_code'=>'string'], - 'fdf_add_template' => ['bool', 'fdf_document'=>'resource', 'newpage'=>'int', 'filename'=>'string', 'template'=>'string', 'rename'=>'int'], - 'fdf_close' => ['void', 'fdf_document'=>'resource'], - 'fdf_create' => ['resource'], - 'fdf_enum_values' => ['bool', 'fdf_document'=>'resource', 'function'=>'callable', 'userdata='=>'mixed'], - 'fdf_errno' => ['int'], - 'fdf_error' => ['string', 'error_code='=>'int'], - 'fdf_get_ap' => ['bool', 'fdf_document'=>'resource', 'field'=>'string', 'face'=>'int', 'filename'=>'string'], - 'fdf_get_attachment' => ['array', 'fdf_document'=>'resource', 'fieldname'=>'string', 'savepath'=>'string'], - 'fdf_get_encoding' => ['string', 'fdf_document'=>'resource'], - 'fdf_get_file' => ['string', 'fdf_document'=>'resource'], - 'fdf_get_flags' => ['int', 'fdf_document'=>'resource', 'fieldname'=>'string', 'whichflags'=>'int'], - 'fdf_get_opt' => ['mixed', 'fdf_document'=>'resource', 'fieldname'=>'string', 'element='=>'int'], - 'fdf_get_status' => ['string', 'fdf_document'=>'resource'], - 'fdf_get_value' => ['mixed', 'fdf_document'=>'resource', 'fieldname'=>'string', 'which='=>'int'], - 'fdf_get_version' => ['string', 'fdf_document='=>'resource'], - 'fdf_header' => ['void'], - 'fdf_next_field_name' => ['string', 'fdf_document'=>'resource', 'fieldname='=>'string'], - 'fdf_open' => ['resource|false', 'filename'=>'string'], - 'fdf_open_string' => ['resource', 'fdf_data'=>'string'], - 'fdf_remove_item' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'item'=>'int'], - 'fdf_save' => ['bool', 'fdf_document'=>'resource', 'filename='=>'string'], - 'fdf_save_string' => ['string', 'fdf_document'=>'resource'], - 'fdf_set_ap' => ['bool', 'fdf_document'=>'resource', 'field_name'=>'string', 'face'=>'int', 'filename'=>'string', 'page_number'=>'int'], - 'fdf_set_encoding' => ['bool', 'fdf_document'=>'resource', 'encoding'=>'string'], - 'fdf_set_file' => ['bool', 'fdf_document'=>'resource', 'url'=>'string', 'target_frame='=>'string'], - 'fdf_set_flags' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'whichflags'=>'int', 'newflags'=>'int'], - 'fdf_set_javascript_action' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'trigger'=>'int', 'script'=>'string'], - 'fdf_set_on_import_javascript' => ['bool', 'fdf_document'=>'resource', 'script'=>'string', 'before_data_import'=>'bool'], - 'fdf_set_opt' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'element'=>'int', 'string1'=>'string', 'string2'=>'string'], - 'fdf_set_status' => ['bool', 'fdf_document'=>'resource', 'status'=>'string'], - 'fdf_set_submit_form_action' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'trigger'=>'int', 'script'=>'string', 'flags'=>'int'], - 'fdf_set_target_frame' => ['bool', 'fdf_document'=>'resource', 'frame_name'=>'string'], - 'fdf_set_value' => ['bool', 'fdf_document'=>'resource', 'fieldname'=>'string', 'value'=>'mixed', 'isname='=>'int'], - 'fdf_set_version' => ['bool', 'fdf_document'=>'resource', 'version'=>'string'], - 'feof' => ['bool', 'stream'=>'resource'], - 'fflush' => ['bool', 'stream'=>'resource'], - 'ffmpeg_animated_gif::__construct' => ['void', 'output_file_path'=>'string', 'width'=>'int', 'height'=>'int', 'frame_rate'=>'int', 'loop_count='=>'int'], - 'ffmpeg_animated_gif::addFrame' => ['', 'frame_to_add'=>'ffmpeg_frame'], - 'ffmpeg_frame::__construct' => ['void', 'gd_image'=>'resource'], - 'ffmpeg_frame::crop' => ['', 'crop_top'=>'int', 'crop_bottom='=>'int', 'crop_left='=>'int', 'crop_right='=>'int'], - 'ffmpeg_frame::getHeight' => ['int'], - 'ffmpeg_frame::getPTS' => ['int'], - 'ffmpeg_frame::getPresentationTimestamp' => ['int'], - 'ffmpeg_frame::getWidth' => ['int'], - 'ffmpeg_frame::resize' => ['', 'width'=>'int', 'height'=>'int', 'crop_top='=>'int', 'crop_bottom='=>'int', 'crop_left='=>'int', 'crop_right='=>'int'], - 'ffmpeg_frame::toGDImage' => ['resource'], - 'ffmpeg_movie::__construct' => ['void', 'path_to_media'=>'string', 'persistent'=>'bool'], - 'ffmpeg_movie::getArtist' => ['string'], - 'ffmpeg_movie::getAudioBitRate' => ['int'], - 'ffmpeg_movie::getAudioChannels' => ['int'], - 'ffmpeg_movie::getAudioCodec' => ['string'], - 'ffmpeg_movie::getAudioSampleRate' => ['int'], - 'ffmpeg_movie::getAuthor' => ['string'], - 'ffmpeg_movie::getBitRate' => ['int'], - 'ffmpeg_movie::getComment' => ['string'], - 'ffmpeg_movie::getCopyright' => ['string'], - 'ffmpeg_movie::getDuration' => ['int'], - 'ffmpeg_movie::getFilename' => ['string'], - 'ffmpeg_movie::getFrame' => ['ffmpeg_frame|false', 'framenumber'=>'int'], - 'ffmpeg_movie::getFrameCount' => ['int'], - 'ffmpeg_movie::getFrameHeight' => ['int'], - 'ffmpeg_movie::getFrameNumber' => ['int'], - 'ffmpeg_movie::getFrameRate' => ['int'], - 'ffmpeg_movie::getFrameWidth' => ['int'], - 'ffmpeg_movie::getGenre' => ['string'], - 'ffmpeg_movie::getNextKeyFrame' => ['ffmpeg_frame|false'], - 'ffmpeg_movie::getPixelFormat' => [''], - 'ffmpeg_movie::getTitle' => ['string'], - 'ffmpeg_movie::getTrackNumber' => ['int|string'], - 'ffmpeg_movie::getVideoBitRate' => ['int'], - 'ffmpeg_movie::getVideoCodec' => ['string'], - 'ffmpeg_movie::getYear' => ['int|string'], - 'ffmpeg_movie::hasAudio' => ['bool'], - 'ffmpeg_movie::hasVideo' => ['bool'], - 'fgetc' => ['string|false', 'stream'=>'resource'], - 'fgetcsv' => ['list|array{0: null}|false', 'stream'=>'resource', 'length='=>'int', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'fgets' => ['string|false', 'stream'=>'resource', 'length='=>'int'], - 'fgetss' => ['string|false', 'fp'=>'resource', 'length='=>'int', 'allowable_tags='=>'string'], - 'file' => ['list|false', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'file_exists' => ['bool', 'filename'=>'string'], - 'file_get_contents' => ['string|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'?resource', 'offset='=>'int', 'length='=>'int'], - 'file_put_contents' => ['int<0, max>|false', 'filename'=>'string', 'data'=>'string|resource|array', 'flags='=>'int', 'context='=>'resource'], - 'fileatime' => ['int|false', 'filename'=>'string'], - 'filectime' => ['int|false', 'filename'=>'string'], - 'filegroup' => ['int|false', 'filename'=>'string'], - 'fileinode' => ['int|false', 'filename'=>'string'], - 'filemtime' => ['int|false', 'filename'=>'string'], - 'fileowner' => ['int|false', 'filename'=>'string'], - 'fileperms' => ['int|false', 'filename'=>'string'], - 'filepro' => ['bool', 'directory'=>'string'], - 'filepro_fieldcount' => ['int'], - 'filepro_fieldname' => ['string', 'field_number'=>'int'], - 'filepro_fieldtype' => ['string', 'field_number'=>'int'], - 'filepro_fieldwidth' => ['int', 'field_number'=>'int'], - 'filepro_retrieve' => ['string', 'row_number'=>'int', 'field_number'=>'int'], - 'filepro_rowcount' => ['int'], - 'filesize' => ['int|false', 'filename'=>'string'], - 'filetype' => ['string|false', 'filename'=>'string'], - 'filter_has_var' => ['bool', 'input_type'=>'0|1|2|4|5', 'var_name'=>'string'], - 'filter_id' => ['int|false', 'name'=>'string'], - 'filter_input' => ['mixed|false|null', 'type'=>'0|1|2|4|5', 'var_name'=>'string', 'filter='=>'int', 'options='=>'array|int'], - 'filter_input_array' => ['array|false|null', 'type'=>'0|1|2|4|5', 'options='=>'int|array', 'add_empty='=>'bool'], - 'filter_list' => ['non-empty-list'], - 'filter_var' => ['mixed|false', 'value'=>'mixed', 'filter='=>'int', 'options='=>'array|int'], - 'filter_var_array' => ['array|false|null', 'array'=>'array', 'options='=>'array|int', 'add_empty='=>'bool'], - 'finfo::__construct' => ['void', 'flags='=>'int', 'magic_database='=>'string'], - 'finfo::buffer' => ['string|false', 'string'=>'string', 'flags='=>'int', 'context='=>'?resource'], - 'finfo::file' => ['string|false', 'filename'=>'string', 'flags='=>'int', 'context='=>'?resource'], - 'finfo::set_flags' => ['bool', 'flags'=>'int'], - 'finfo_buffer' => ['string|false', 'finfo'=>'resource', 'string'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'finfo_close' => ['bool', 'finfo'=>'resource'], - 'finfo_file' => ['string|false', 'finfo'=>'resource', 'filename'=>'string', 'flags='=>'int', 'context='=>'resource'], - 'finfo_open' => ['resource|false', 'flags='=>'int', 'magic_database='=>'string'], - 'finfo_set_flags' => ['bool', 'finfo'=>'resource', 'flags'=>'int'], - 'floatval' => ['float', 'value'=>'mixed'], - 'flock' => ['bool', 'stream'=>'resource', 'operation'=>'int', '&w_would_block='=>'int'], - 'floor' => ['float', 'num'=>'float|int'], - 'flush' => ['void'], - 'fmod' => ['float', 'num1'=>'float', 'num2'=>'float'], - 'fnmatch' => ['bool', 'pattern'=>'string', 'filename'=>'string', 'flags='=>'int'], - 'fopen' => ['resource|false', 'filename'=>'string', 'mode'=>'string', 'use_include_path='=>'bool', 'context='=>'resource|null'], - 'forward_static_call' => ['mixed|false', 'callback'=>'callable', '...args='=>'mixed'], - 'forward_static_call_array' => ['mixed|false', 'callback'=>'callable', 'args'=>'list'], - 'fpassthru' => ['int', 'stream'=>'resource'], - 'fprintf' => ['int', 'stream'=>'resource', 'format'=>'string', '...values='=>'string|int|float'], - 'fputcsv' => ['int|false', 'stream'=>'resource', 'fields'=>'array', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'fputs' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'fread' => ['string|false', 'stream'=>'resource', 'length'=>'int'], - 'frenchtojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'fribidi_log2vis' => ['string', 'string'=>'string', 'direction'=>'string', 'charset'=>'int'], - 'fscanf' => ['list', 'stream'=>'resource', 'format'=>'string'], - 'fscanf\'1' => ['int', 'stream'=>'resource', 'format'=>'string', '&...w_vars='=>'string|int|float'], - 'fseek' => ['int', 'stream'=>'resource', 'offset'=>'int', 'whence='=>'int'], - 'fsockopen' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float'], - 'fstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'stream'=>'resource'], - 'ftell' => ['int|false', 'stream'=>'resource'], - 'ftok' => ['int', 'filename'=>'string', 'project_id'=>'string'], - 'ftp_alloc' => ['bool', 'ftp'=>'resource', 'size'=>'int', '&w_response='=>'string'], - 'ftp_cdup' => ['bool', 'ftp'=>'resource'], - 'ftp_chdir' => ['bool', 'ftp'=>'resource', 'directory'=>'string'], - 'ftp_chmod' => ['int|false', 'ftp'=>'resource', 'permissions'=>'int', 'filename'=>'string'], - 'ftp_close' => ['bool', 'ftp'=>'resource'], - 'ftp_connect' => ['resource|false', 'hostname'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'ftp_delete' => ['bool', 'ftp'=>'resource', 'filename'=>'string'], - 'ftp_exec' => ['bool', 'ftp'=>'resource', 'command'=>'string'], - 'ftp_fget' => ['bool', 'ftp'=>'resource', 'stream'=>'resource', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_fput' => ['bool', 'ftp'=>'resource', 'remote_filename'=>'string', 'stream'=>'resource', 'mode='=>'int', 'offset='=>'int'], - 'ftp_get' => ['bool', 'ftp'=>'resource', 'local_filename'=>'string', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_get_option' => ['int|false', 'ftp'=>'resource', 'option'=>'int'], - 'ftp_login' => ['bool', 'ftp'=>'resource', 'username'=>'string', 'password'=>'string'], - 'ftp_mdtm' => ['int', 'ftp'=>'resource', 'filename'=>'string'], - 'ftp_mkdir' => ['string|false', 'ftp'=>'resource', 'directory'=>'string'], - 'ftp_mlsd' => ['array|false', 'ftp'=>'resource', 'directory'=>'string'], - 'ftp_nb_continue' => ['int', 'ftp'=>'resource'], - 'ftp_nb_fget' => ['int', 'ftp'=>'resource', 'stream'=>'resource', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_nb_fput' => ['int', 'ftp'=>'resource', 'remote_filename'=>'string', 'stream'=>'resource', 'mode='=>'int', 'offset='=>'int'], - 'ftp_nb_get' => ['int', 'ftp'=>'resource', 'local_filename'=>'string', 'remote_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_nb_put' => ['int', 'ftp'=>'resource', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_nlist' => ['array|false', 'ftp'=>'resource', 'directory'=>'string'], - 'ftp_pasv' => ['bool', 'ftp'=>'resource', 'enable'=>'bool'], - 'ftp_put' => ['bool', 'ftp'=>'resource', 'remote_filename'=>'string', 'local_filename'=>'string', 'mode='=>'int', 'offset='=>'int'], - 'ftp_pwd' => ['string|false', 'ftp'=>'resource'], - 'ftp_quit' => ['bool', 'ftp'=>'resource'], - 'ftp_raw' => ['?array', 'ftp'=>'resource', 'command'=>'string'], - 'ftp_rawlist' => ['array|false', 'ftp'=>'resource', 'directory'=>'string', 'recursive='=>'bool'], - 'ftp_rename' => ['bool', 'ftp'=>'resource', 'from'=>'string', 'to'=>'string'], - 'ftp_rmdir' => ['bool', 'ftp'=>'resource', 'directory'=>'string'], - 'ftp_set_option' => ['bool', 'ftp'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'ftp_site' => ['bool', 'ftp'=>'resource', 'command'=>'string'], - 'ftp_size' => ['int', 'ftp'=>'resource', 'filename'=>'string'], - 'ftp_ssl_connect' => ['resource|false', 'hostname'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'ftp_systype' => ['string|false', 'ftp'=>'resource'], - 'ftruncate' => ['bool', 'stream'=>'resource', 'size'=>'int'], - 'func_get_arg' => ['mixed|false', 'position'=>'int'], - 'func_get_args' => ['list'], - 'func_num_args' => ['int'], - 'function_exists' => ['bool', 'function'=>'string'], - 'fwrite' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'gc_collect_cycles' => ['int'], - 'gc_disable' => ['void'], - 'gc_enable' => ['void'], - 'gc_enabled' => ['bool'], - 'gc_mem_caches' => ['int'], - 'gd_info' => ['array'], - 'gearman_bugreport' => [''], - 'gearman_client_add_options' => ['', 'client_object'=>'', 'option'=>''], - 'gearman_client_add_server' => ['', 'client_object'=>'', 'host'=>'', 'port'=>''], - 'gearman_client_add_servers' => ['', 'client_object'=>'', 'servers'=>''], - 'gearman_client_add_task' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_high' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_high_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_low' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_low_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'context'=>'', 'unique'=>''], - 'gearman_client_add_task_status' => ['', 'client_object'=>'', 'job_handle'=>'', 'context'=>''], - 'gearman_client_clear_fn' => ['', 'client_object'=>''], - 'gearman_client_clone' => ['', 'client_object'=>''], - 'gearman_client_context' => ['', 'client_object'=>''], - 'gearman_client_create' => ['', 'client_object'=>''], - 'gearman_client_do' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_high' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_high_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_job_handle' => ['', 'client_object'=>''], - 'gearman_client_do_low' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_low_background' => ['', 'client_object'=>'', 'function_name'=>'', 'workload'=>'', 'unique'=>''], - 'gearman_client_do_normal' => ['', 'client_object'=>'', 'function_name'=>'string', 'workload'=>'string', 'unique'=>'string'], - 'gearman_client_do_status' => ['', 'client_object'=>''], - 'gearman_client_echo' => ['', 'client_object'=>'', 'workload'=>''], - 'gearman_client_errno' => ['', 'client_object'=>''], - 'gearman_client_error' => ['', 'client_object'=>''], - 'gearman_client_job_status' => ['', 'client_object'=>'', 'job_handle'=>''], - 'gearman_client_options' => ['', 'client_object'=>''], - 'gearman_client_remove_options' => ['', 'client_object'=>'', 'option'=>''], - 'gearman_client_return_code' => ['', 'client_object'=>''], - 'gearman_client_run_tasks' => ['', 'data'=>''], - 'gearman_client_set_complete_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_context' => ['', 'client_object'=>'', 'context'=>''], - 'gearman_client_set_created_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_data_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_exception_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_fail_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_options' => ['', 'client_object'=>'', 'option'=>''], - 'gearman_client_set_status_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_timeout' => ['', 'client_object'=>'', 'timeout'=>''], - 'gearman_client_set_warning_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_set_workload_fn' => ['', 'client_object'=>'', 'callback'=>''], - 'gearman_client_timeout' => ['', 'client_object'=>''], - 'gearman_client_wait' => ['', 'client_object'=>''], - 'gearman_job_function_name' => ['', 'job_object'=>''], - 'gearman_job_handle' => ['string'], - 'gearman_job_return_code' => ['', 'job_object'=>''], - 'gearman_job_send_complete' => ['', 'job_object'=>'', 'result'=>''], - 'gearman_job_send_data' => ['', 'job_object'=>'', 'data'=>''], - 'gearman_job_send_exception' => ['', 'job_object'=>'', 'exception'=>''], - 'gearman_job_send_fail' => ['', 'job_object'=>''], - 'gearman_job_send_status' => ['', 'job_object'=>'', 'numerator'=>'', 'denominator'=>''], - 'gearman_job_send_warning' => ['', 'job_object'=>'', 'warning'=>''], - 'gearman_job_status' => ['array', 'job_handle'=>'string'], - 'gearman_job_unique' => ['', 'job_object'=>''], - 'gearman_job_workload' => ['', 'job_object'=>''], - 'gearman_job_workload_size' => ['', 'job_object'=>''], - 'gearman_task_data' => ['', 'task_object'=>''], - 'gearman_task_data_size' => ['', 'task_object'=>''], - 'gearman_task_denominator' => ['', 'task_object'=>''], - 'gearman_task_function_name' => ['', 'task_object'=>''], - 'gearman_task_is_known' => ['', 'task_object'=>''], - 'gearman_task_is_running' => ['', 'task_object'=>''], - 'gearman_task_job_handle' => ['', 'task_object'=>''], - 'gearman_task_numerator' => ['', 'task_object'=>''], - 'gearman_task_recv_data' => ['', 'task_object'=>'', 'data_len'=>''], - 'gearman_task_return_code' => ['', 'task_object'=>''], - 'gearman_task_send_workload' => ['', 'task_object'=>'', 'data'=>''], - 'gearman_task_unique' => ['', 'task_object'=>''], - 'gearman_verbose_name' => ['', 'verbose'=>''], - 'gearman_version' => [''], - 'gearman_worker_add_function' => ['', 'worker_object'=>'', 'function_name'=>'', 'function'=>'', 'data'=>'', 'timeout'=>''], - 'gearman_worker_add_options' => ['', 'worker_object'=>'', 'option'=>''], - 'gearman_worker_add_server' => ['', 'worker_object'=>'', 'host'=>'', 'port'=>''], - 'gearman_worker_add_servers' => ['', 'worker_object'=>'', 'servers'=>''], - 'gearman_worker_clone' => ['', 'worker_object'=>''], - 'gearman_worker_create' => [''], - 'gearman_worker_echo' => ['', 'worker_object'=>'', 'workload'=>''], - 'gearman_worker_errno' => ['', 'worker_object'=>''], - 'gearman_worker_error' => ['', 'worker_object'=>''], - 'gearman_worker_grab_job' => ['', 'worker_object'=>''], - 'gearman_worker_options' => ['', 'worker_object'=>''], - 'gearman_worker_register' => ['', 'worker_object'=>'', 'function_name'=>'', 'timeout'=>''], - 'gearman_worker_remove_options' => ['', 'worker_object'=>'', 'option'=>''], - 'gearman_worker_return_code' => ['', 'worker_object'=>''], - 'gearman_worker_set_options' => ['', 'worker_object'=>'', 'option'=>''], - 'gearman_worker_set_timeout' => ['', 'worker_object'=>'', 'timeout'=>''], - 'gearman_worker_timeout' => ['', 'worker_object'=>''], - 'gearman_worker_unregister' => ['', 'worker_object'=>'', 'function_name'=>''], - 'gearman_worker_unregister_all' => ['', 'worker_object'=>''], - 'gearman_worker_wait' => ['', 'worker_object'=>''], - 'gearman_worker_work' => ['', 'worker_object'=>''], - 'geoip_asnum_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_continent_code_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_country_code3_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_country_code_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_country_name_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_database_info' => ['string', 'database='=>'int'], - 'geoip_db_avail' => ['bool', 'database'=>'int'], - 'geoip_db_filename' => ['string', 'database'=>'int'], - 'geoip_db_get_all_info' => ['array'], - 'geoip_domain_by_name' => ['string', 'hostname'=>'string'], - 'geoip_id_by_name' => ['int', 'hostname'=>'string'], - 'geoip_isp_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_netspeedcell_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_org_by_name' => ['string|false', 'hostname'=>'string'], - 'geoip_record_by_name' => ['array|false', 'hostname'=>'string'], - 'geoip_region_by_name' => ['array|false', 'hostname'=>'string'], - 'geoip_region_name_by_code' => ['string|false', 'country_code'=>'string', 'region_code'=>'string'], - 'geoip_setup_custom_directory' => ['void', 'path'=>'string'], - 'geoip_time_zone_by_country_and_region' => ['string|false', 'country_code'=>'string', 'region_code='=>'string'], - 'get_browser' => ['array|object|false', 'user_agent='=>'?string', 'return_array='=>'bool'], - 'get_call_stack' => [''], - 'get_called_class' => ['class-string'], - 'get_cfg_var' => ['string|false', 'option'=>'string'], - 'get_class' => ['class-string', 'object='=>'object'], - 'get_class_methods' => ['list|null', 'object_or_class'=>'mixed'], - 'get_class_vars' => ['array', 'class'=>'string'], - 'get_current_user' => ['string'], - 'get_declared_classes' => ['list'], - 'get_declared_interfaces' => ['list'], - 'get_declared_traits' => ['list'], - 'get_defined_constants' => ['array', 'categorize='=>'bool'], - 'get_defined_functions' => ['array{internal: list, user: list}', 'exclude_disabled='=>'bool'], - 'get_defined_vars' => ['array'], - 'get_extension_funcs' => ['list|false', 'extension'=>'string'], - 'get_headers' => ['array|false', 'url'=>'string', 'associative='=>'int'], - 'get_html_translation_table' => ['array', 'table='=>'int', 'flags='=>'int', 'encoding='=>'string'], - 'get_include_path' => ['string'], - 'get_included_files' => ['list'], - 'get_loaded_extensions' => ['list', 'zend_extensions='=>'bool'], - 'get_magic_quotes_gpc' => ['int|false'], - 'get_magic_quotes_runtime' => ['int|false'], - 'get_meta_tags' => ['array', 'filename'=>'string', 'use_include_path='=>'bool'], - 'get_object_vars' => ['array', 'object'=>'object'], - 'get_parent_class' => ['class-string|false', 'object_or_class='=>'mixed'], - 'get_required_files' => ['list'], - 'get_resource_type' => ['string', 'resource'=>'resource'], - 'get_resources' => ['array', 'type='=>'string'], - 'getallheaders' => ['array|false'], - 'getcwd' => ['non-falsy-string|false'], - 'getdate' => ['array{seconds: int<0, 59>, minutes: int<0, 59>, hours: int<0, 23>, mday: int<1, 31>, wday: int<0, 6>, mon: int<1, 12>, year: int, yday: int<0, 365>, weekday: "Monday"|"Tuesday"|"Wednesday"|"Thursday"|"Friday"|"Saturday"|"Sunday", month: "January"|"February"|"March"|"April"|"May"|"June"|"July"|"August"|"September"|"October"|"November"|"December", 0: int}', 'timestamp='=>'int'], - 'getenv' => ['string|false', 'name'=>'string', 'local_only='=>'bool'], - 'gethostbyaddr' => ['string|false', 'ip'=>'string'], - 'gethostbyname' => ['string', 'hostname'=>'string'], - 'gethostbynamel' => ['list|false', 'hostname'=>'string'], - 'gethostname' => ['string|false'], - 'getimagesize' => ['array{0:int, 1: int, 2: int, 3: string, mime: string, channels?: 3|4, bits?: int}|false', 'filename'=>'string', '&w_image_info='=>'array'], - 'getimagesizefromstring' => ['array{0:int, 1: int, 2: int, 3: string, mime: string, channels?: 3|4, bits?: int}|false', 'string'=>'string', '&w_image_info='=>'array'], - 'getlastmod' => ['int|false'], - 'getmxrr' => ['bool', 'hostname'=>'string', '&w_hosts'=>'array', '&w_weights='=>'array'], - 'getmygid' => ['int|false'], - 'getmyinode' => ['int|false'], - 'getmypid' => ['int|false'], - 'getmyuid' => ['int|false'], - 'getopt' => ['array>|false', 'short_options'=>'string', 'long_options='=>'array'], - 'getprotobyname' => ['int|false', 'protocol'=>'string'], - 'getprotobynumber' => ['string', 'protocol'=>'int'], - 'getrandmax' => ['int<1, max>'], - 'getrusage' => ['array', 'mode='=>'int'], - 'getservbyname' => ['int|false', 'service'=>'string', 'protocol'=>'string'], - 'getservbyport' => ['string|false', 'port'=>'int', 'protocol'=>'string'], - 'gettext' => ['string', 'message'=>'string'], - 'gettimeofday' => ['array'], - 'gettimeofday\'1' => ['float', 'as_float='=>'true'], - 'gettype' => ['string', 'value'=>'mixed'], - 'glob' => ['false|list{0?:string, ...}', 'pattern'=>'string', 'flags='=>'int<0, max>'], - 'gmdate' => ['string', 'format'=>'string', 'timestamp='=>'int'], - 'gmmktime' => ['int|false', 'hour='=>'int', 'minute='=>'int', 'second='=>'int', 'month='=>'int', 'day='=>'int', 'year='=>'int'], - 'gmp_abs' => ['GMP', 'num'=>'GMP|string|int'], - 'gmp_add' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_and' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_clrbit' => ['void', 'num'=>'GMP', 'index'=>'int'], - 'gmp_cmp' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_com' => ['GMP', 'num'=>'GMP|string|int'], - 'gmp_div' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], - 'gmp_div_q' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], - 'gmp_div_qr' => ['array{0: GMP, 1: GMP}', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], - 'gmp_div_r' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int', 'rounding_mode='=>'int'], - 'gmp_divexact' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_export' => ['string|false', 'num'=>'GMP|string|int', 'word_size='=>'int', 'flags='=>'int'], - 'gmp_fact' => ['GMP', 'num'=>'int'], - 'gmp_gcd' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_gcdext' => ['array', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_hamdist' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_import' => ['GMP|false', 'data'=>'string', 'word_size='=>'int', 'flags='=>'int'], - 'gmp_init' => ['GMP', 'num'=>'int|string', 'base='=>'int'], - 'gmp_intval' => ['int', 'num'=>'GMP|string|int'], - 'gmp_invert' => ['GMP|false', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_jacobi' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_legendre' => ['int', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_mod' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_mul' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_neg' => ['GMP', 'num'=>'GMP|string|int'], - 'gmp_nextprime' => ['GMP', 'num'=>'GMP|string|int'], - 'gmp_or' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_perfect_square' => ['bool', 'num'=>'GMP|string|int'], - 'gmp_popcount' => ['int', 'num'=>'GMP|string|int'], - 'gmp_pow' => ['GMP', 'num'=>'GMP|string|int', 'exponent'=>'int'], - 'gmp_powm' => ['GMP', 'num'=>'GMP|string|int', 'exponent'=>'GMP|string|int', 'modulus'=>'GMP|string|int'], - 'gmp_prob_prime' => ['int', 'num'=>'GMP|string|int', 'repetitions='=>'int'], - 'gmp_random' => ['GMP', 'limiter='=>'int'], - 'gmp_random_bits' => ['GMP', 'bits'=>'int'], - 'gmp_random_range' => ['GMP', 'min'=>'GMP|string|int', 'max'=>'GMP|string|int'], - 'gmp_random_seed' => ['void', 'seed'=>'GMP|string|int'], - 'gmp_root' => ['GMP', 'num'=>'GMP|string|int', 'nth'=>'int'], - 'gmp_rootrem' => ['array{0: GMP, 1: GMP}', 'num'=>'GMP|string|int', 'nth'=>'int'], - 'gmp_scan0' => ['int', 'num1'=>'GMP|string|int', 'start'=>'int'], - 'gmp_scan1' => ['int', 'num1'=>'GMP|string|int', 'start'=>'int'], - 'gmp_setbit' => ['void', 'num'=>'GMP', 'index'=>'int', 'value='=>'bool'], - 'gmp_sign' => ['int', 'num'=>'GMP|string|int'], - 'gmp_sqrt' => ['GMP', 'num'=>'GMP|string|int'], - 'gmp_sqrtrem' => ['array{0: GMP, 1: GMP}', 'num'=>'GMP|string|int'], - 'gmp_strval' => ['numeric-string', 'num'=>'GMP|string|int', 'base='=>'int'], - 'gmp_sub' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmp_testbit' => ['bool', 'num'=>'GMP|string|int', 'index'=>'int'], - 'gmp_xor' => ['GMP', 'num1'=>'GMP|string|int', 'num2'=>'GMP|string|int'], - 'gmstrftime' => ['string|false', 'format'=>'string', 'timestamp='=>'int'], - 'gnupg::adddecryptkey' => ['bool', 'fingerprint'=>'string', 'passphrase'=>'string'], - 'gnupg::addencryptkey' => ['bool', 'fingerprint'=>'string'], - 'gnupg::addsignkey' => ['bool', 'fingerprint'=>'string', 'passphrase='=>'string'], - 'gnupg::cleardecryptkeys' => ['bool'], - 'gnupg::clearencryptkeys' => ['bool'], - 'gnupg::clearsignkeys' => ['bool'], - 'gnupg::decrypt' => ['string|false', 'text'=>'string'], - 'gnupg::decryptverify' => ['array|false', 'text'=>'string', '&plaintext'=>'string'], - 'gnupg::encrypt' => ['string|false', 'plaintext'=>'string'], - 'gnupg::encryptsign' => ['string|false', 'plaintext'=>'string'], - 'gnupg::export' => ['string|false', 'fingerprint'=>'string'], - 'gnupg::geterror' => ['string|false'], - 'gnupg::getprotocol' => ['int'], - 'gnupg::import' => ['array|false', 'keydata'=>'string'], - 'gnupg::keyinfo' => ['array', 'pattern'=>'string'], - 'gnupg::setarmor' => ['bool', 'armor'=>'int'], - 'gnupg::seterrormode' => ['void', 'errormode'=>'int'], - 'gnupg::setsignmode' => ['bool', 'signmode'=>'int'], - 'gnupg::sign' => ['string|false', 'plaintext'=>'string'], - 'gnupg::verify' => ['array|false', 'signed_text'=>'string', 'signature'=>'string', '&plaintext='=>'string'], - 'gnupg_adddecryptkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string', 'passphrase'=>'string'], - 'gnupg_addencryptkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string'], - 'gnupg_addsignkey' => ['bool', 'identifier'=>'resource', 'fingerprint'=>'string', 'passphrase='=>'string'], - 'gnupg_cleardecryptkeys' => ['bool', 'identifier'=>'resource'], - 'gnupg_clearencryptkeys' => ['bool', 'identifier'=>'resource'], - 'gnupg_clearsignkeys' => ['bool', 'identifier'=>'resource'], - 'gnupg_decrypt' => ['string', 'identifier'=>'resource', 'text'=>'string'], - 'gnupg_decryptverify' => ['array', 'identifier'=>'resource', 'text'=>'string', 'plaintext'=>'string'], - 'gnupg_encrypt' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], - 'gnupg_encryptsign' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], - 'gnupg_export' => ['string', 'identifier'=>'resource', 'fingerprint'=>'string'], - 'gnupg_geterror' => ['string', 'identifier'=>'resource'], - 'gnupg_getprotocol' => ['int', 'identifier'=>'resource'], - 'gnupg_import' => ['array', 'identifier'=>'resource', 'keydata'=>'string'], - 'gnupg_init' => ['resource'], - 'gnupg_keyinfo' => ['array', 'identifier'=>'resource', 'pattern'=>'string'], - 'gnupg_setarmor' => ['bool', 'identifier'=>'resource', 'armor'=>'int'], - 'gnupg_seterrormode' => ['void', 'identifier'=>'resource', 'errormode'=>'int'], - 'gnupg_setsignmode' => ['bool', 'identifier'=>'resource', 'signmode'=>'int'], - 'gnupg_sign' => ['string', 'identifier'=>'resource', 'plaintext'=>'string'], - 'gnupg_verify' => ['array', 'identifier'=>'resource', 'signed_text'=>'string', 'signature'=>'string', 'plaintext='=>'string'], - 'gopher_parsedir' => ['array', 'dirent'=>'string'], - 'grapheme_extract' => ['string|false', 'haystack'=>'string', 'size'=>'int', 'type='=>'int', 'offset='=>'int', '&w_next='=>'int'], - 'grapheme_stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - 'grapheme_stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'beforeNeedle='=>'bool'], - 'grapheme_strlen' => ['0|positive-int|false|null', 'string'=>'string'], - 'grapheme_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - 'grapheme_strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - 'grapheme_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int'], - 'grapheme_strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'beforeNeedle='=>'bool'], - 'grapheme_substr' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'?int'], - 'gregoriantojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'gridObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'gupnp_context_get_host_ip' => ['string', 'context'=>'resource'], - 'gupnp_context_get_port' => ['int', 'context'=>'resource'], - 'gupnp_context_get_subscription_timeout' => ['int', 'context'=>'resource'], - 'gupnp_context_host_path' => ['bool', 'context'=>'resource', 'local_path'=>'string', 'server_path'=>'string'], - 'gupnp_context_new' => ['resource', 'host_ip='=>'string', 'port='=>'int'], - 'gupnp_context_set_subscription_timeout' => ['void', 'context'=>'resource', 'timeout'=>'int'], - 'gupnp_context_timeout_add' => ['bool', 'context'=>'resource', 'timeout'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], - 'gupnp_context_unhost_path' => ['bool', 'context'=>'resource', 'server_path'=>'string'], - 'gupnp_control_point_browse_start' => ['bool', 'cpoint'=>'resource'], - 'gupnp_control_point_browse_stop' => ['bool', 'cpoint'=>'resource'], - 'gupnp_control_point_callback_set' => ['bool', 'cpoint'=>'resource', 'signal'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], - 'gupnp_control_point_new' => ['resource', 'context'=>'resource', 'target'=>'string'], - 'gupnp_device_action_callback_set' => ['bool', 'root_device'=>'resource', 'signal'=>'int', 'action_name'=>'string', 'callback'=>'mixed', 'arg='=>'mixed'], - 'gupnp_device_info_get' => ['array', 'root_device'=>'resource'], - 'gupnp_device_info_get_service' => ['resource', 'root_device'=>'resource', 'type'=>'string'], - 'gupnp_root_device_get_available' => ['bool', 'root_device'=>'resource'], - 'gupnp_root_device_get_relative_location' => ['string', 'root_device'=>'resource'], - 'gupnp_root_device_new' => ['resource', 'context'=>'resource', 'location'=>'string', 'description_dir'=>'string'], - 'gupnp_root_device_set_available' => ['bool', 'root_device'=>'resource', 'available'=>'bool'], - 'gupnp_root_device_start' => ['bool', 'root_device'=>'resource'], - 'gupnp_root_device_stop' => ['bool', 'root_device'=>'resource'], - 'gupnp_service_action_get' => ['mixed', 'action'=>'resource', 'name'=>'string', 'type'=>'int'], - 'gupnp_service_action_return' => ['bool', 'action'=>'resource'], - 'gupnp_service_action_return_error' => ['bool', 'action'=>'resource', 'error_code'=>'int', 'error_description='=>'string'], - 'gupnp_service_action_set' => ['bool', 'action'=>'resource', 'name'=>'string', 'type'=>'int', 'value'=>'mixed'], - 'gupnp_service_freeze_notify' => ['bool', 'service'=>'resource'], - 'gupnp_service_info_get' => ['array', 'proxy'=>'resource'], - 'gupnp_service_info_get_introspection' => ['mixed', 'proxy'=>'resource', 'callback='=>'mixed', 'arg='=>'mixed'], - 'gupnp_service_introspection_get_state_variable' => ['array', 'introspection'=>'resource', 'variable_name'=>'string'], - 'gupnp_service_notify' => ['bool', 'service'=>'resource', 'name'=>'string', 'type'=>'int', 'value'=>'mixed'], - 'gupnp_service_proxy_action_get' => ['mixed', 'proxy'=>'resource', 'action'=>'string', 'name'=>'string', 'type'=>'int'], - 'gupnp_service_proxy_action_set' => ['bool', 'proxy'=>'resource', 'action'=>'string', 'name'=>'string', 'value'=>'mixed', 'type'=>'int'], - 'gupnp_service_proxy_add_notify' => ['bool', 'proxy'=>'resource', 'value'=>'string', 'type'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], - 'gupnp_service_proxy_callback_set' => ['bool', 'proxy'=>'resource', 'signal'=>'int', 'callback'=>'mixed', 'arg='=>'mixed'], - 'gupnp_service_proxy_get_subscribed' => ['bool', 'proxy'=>'resource'], - 'gupnp_service_proxy_remove_notify' => ['bool', 'proxy'=>'resource', 'value'=>'string'], - 'gupnp_service_proxy_send_action' => ['array', 'proxy'=>'resource', 'action'=>'string', 'in_params'=>'array', 'out_params'=>'array'], - 'gupnp_service_proxy_set_subscribed' => ['bool', 'proxy'=>'resource', 'subscribed'=>'bool'], - 'gupnp_service_thaw_notify' => ['bool', 'service'=>'resource'], - 'gzclose' => ['bool', 'stream'=>'resource'], - 'gzcompress' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], - 'gzdecode' => ['string|false', 'data'=>'string', 'max_length='=>'int'], - 'gzdeflate' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], - 'gzencode' => ['string|false', 'data'=>'string', 'level='=>'int', 'encoding='=>'int'], - 'gzeof' => ['bool', 'stream'=>'resource'], - 'gzfile' => ['list|false', 'filename'=>'string', 'use_include_path='=>'int'], - 'gzgetc' => ['string|false', 'stream'=>'resource'], - 'gzgets' => ['string|false', 'stream'=>'resource', 'length='=>'int'], - 'gzgetss' => ['string|false', 'zp'=>'resource', 'length'=>'int', 'allowable_tags='=>'string'], - 'gzinflate' => ['string|false', 'data'=>'string', 'max_length='=>'int'], - 'gzopen' => ['resource|false', 'filename'=>'string', 'mode'=>'string', 'use_include_path='=>'int'], - 'gzpassthru' => ['int', 'stream'=>'resource'], - 'gzputs' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'gzread' => ['string|0', 'stream'=>'resource', 'length'=>'int'], - 'gzrewind' => ['bool', 'stream'=>'resource'], - 'gzseek' => ['int', 'stream'=>'resource', 'offset'=>'int', 'whence='=>'int'], - 'gztell' => ['int|false', 'stream'=>'resource'], - 'gzuncompress' => ['string|false', 'data'=>'string', 'max_length='=>'int'], - 'gzwrite' => ['int|false', 'stream'=>'resource', 'data'=>'string', 'length='=>'int'], - 'hash' => ['string|false', 'algo'=>'string', 'data'=>'string', 'binary='=>'bool'], - 'hashTableObj::clear' => ['void'], - 'hashTableObj::get' => ['string', 'key'=>'string'], - 'hashTableObj::nextkey' => ['string', 'previousKey'=>'string'], - 'hashTableObj::remove' => ['int', 'key'=>'string'], - 'hashTableObj::set' => ['int', 'key'=>'string', 'value'=>'string'], - 'hash_algos' => ['list'], - 'hash_copy' => ['resource', 'context'=>'resource'], - 'hash_equals' => ['bool', 'known_string'=>'string', 'user_string'=>'string'], - 'hash_file' => ['non-empty-string|false', 'algo'=>'string', 'filename'=>'string', 'binary='=>'bool'], - 'hash_final' => ['non-empty-string', 'context'=>'resource', 'raw_output='=>'bool'], - 'hash_hmac' => ['non-empty-string|false', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], - 'hash_hmac_file' => ['non-empty-string|false', 'algo'=>'string', 'data'=>'string', 'key'=>'string', 'binary='=>'bool'], - 'hash_init' => ['resource', 'algo'=>'string', 'options='=>'int', 'key='=>'string'], - 'hash_pbkdf2' => ['non-empty-string', 'algo'=>'string', 'password'=>'string', 'salt'=>'string', 'iterations'=>'int', 'length='=>'int', 'binary='=>'bool'], - 'hash_update' => ['bool', 'context'=>'resource', 'data'=>'string'], - 'hash_update_file' => ['bool', 'hcontext'=>'resource', 'filename'=>'string', 'scontext='=>'resource'], - 'hash_update_stream' => ['int', 'context'=>'resource', 'handle'=>'resource', 'length='=>'int'], - 'header' => ['void', 'header'=>'string', 'replace='=>'bool', 'response_code='=>'int'], - 'header_register_callback' => ['bool', 'callback'=>'callable():void'], - 'header_remove' => ['void', 'name='=>'string'], - 'headers_list' => ['list'], - 'headers_sent' => ['bool', '&w_filename='=>'string', '&w_line='=>'int'], - 'hebrev' => ['string', 'string'=>'string', 'max_chars_per_line='=>'int'], - 'hebrevc' => ['string', 'string'=>'string', 'max_chars_per_line='=>'int'], - 'hex2bin' => ['string|false', 'string'=>'string'], - 'hexdec' => ['int|float', 'hex_string'=>'string'], - 'highlight_file' => ['string|bool', 'filename'=>'string', 'return='=>'bool'], - 'highlight_string' => ['string|bool', 'string'=>'string', 'return='=>'bool'], - 'html_entity_decode' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string'], - 'htmlentities' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string', 'double_encode='=>'bool'], - 'htmlspecialchars' => ['string', 'string'=>'string', 'flags='=>'int', 'encoding='=>'string|null', 'double_encode='=>'bool'], - 'htmlspecialchars_decode' => ['string', 'string'=>'string', 'flags='=>'int'], - 'http\Client::__construct' => ['void', 'driver='=>'string', 'persistent_handle_id='=>'string'], - 'http\Client::addCookies' => ['http\Client', 'cookies='=>'?array'], - 'http\Client::addSslOptions' => ['http\Client', 'ssl_options='=>'?array'], - 'http\Client::attach' => ['void', 'observer'=>'SplObserver'], - 'http\Client::configure' => ['http\Client', 'settings'=>'array'], - 'http\Client::count' => ['int'], - 'http\Client::dequeue' => ['http\Client', 'request'=>'http\Client\Request'], - 'http\Client::detach' => ['void', 'observer'=>'SplObserver'], - 'http\Client::enableEvents' => ['http\Client', 'enable='=>'mixed'], - 'http\Client::enablePipelining' => ['http\Client', 'enable='=>'mixed'], - 'http\Client::enqueue' => ['http\Client', 'request'=>'http\Client\Request', 'callable='=>'mixed'], - 'http\Client::getAvailableConfiguration' => ['array'], - 'http\Client::getAvailableDrivers' => ['array'], - 'http\Client::getAvailableOptions' => ['array'], - 'http\Client::getCookies' => ['array'], - 'http\Client::getHistory' => ['http\Message'], - 'http\Client::getObservers' => ['SplObjectStorage'], - 'http\Client::getOptions' => ['array'], - 'http\Client::getProgressInfo' => ['null|object', 'request'=>'http\Client\Request'], - 'http\Client::getResponse' => ['http\Client\Response|null', 'request='=>'?http\Client\Request'], - 'http\Client::getSslOptions' => ['array'], - 'http\Client::getTransferInfo' => ['object', 'request'=>'http\Client\Request'], - 'http\Client::notify' => ['void', 'request='=>'?http\Client\Request'], - 'http\Client::once' => ['bool'], - 'http\Client::requeue' => ['http\Client', 'request'=>'http\Client\Request', 'callable='=>'mixed'], - 'http\Client::reset' => ['http\Client'], - 'http\Client::send' => ['http\Client'], - 'http\Client::setCookies' => ['http\Client', 'cookies='=>'?array'], - 'http\Client::setDebug' => ['http\Client', 'callback'=>'callable'], - 'http\Client::setOptions' => ['http\Client', 'options='=>'?array'], - 'http\Client::setSslOptions' => ['http\Client', 'ssl_option='=>'?array'], - 'http\Client::wait' => ['bool', 'timeout='=>'mixed'], - 'http\Client\Curl\User::init' => ['', 'run'=>'callable'], - 'http\Client\Curl\User::once' => [''], - 'http\Client\Curl\User::send' => [''], - 'http\Client\Curl\User::socket' => ['', 'socket'=>'resource', 'action'=>'int'], - 'http\Client\Curl\User::timer' => ['', 'timeout_ms'=>'int'], - 'http\Client\Curl\User::wait' => ['', 'timeout_ms='=>'mixed'], - 'http\Client\Request::__construct' => ['void', 'method='=>'mixed', 'url='=>'mixed', 'headers='=>'?array', 'body='=>'?http\Message\Body'], - 'http\Client\Request::__toString' => ['string'], - 'http\Client\Request::addBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Client\Request::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], - 'http\Client\Request::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], - 'http\Client\Request::addQuery' => ['http\Client\Request', 'query_data'=>'mixed'], - 'http\Client\Request::addSslOptions' => ['http\Client\Request', 'ssl_options='=>'?array'], - 'http\Client\Request::count' => ['int'], - 'http\Client\Request::current' => ['mixed'], - 'http\Client\Request::detach' => ['http\Message'], - 'http\Client\Request::getBody' => ['http\Message\Body'], - 'http\Client\Request::getContentType' => ['null|string'], - 'http\Client\Request::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], - 'http\Client\Request::getHeaders' => ['array'], - 'http\Client\Request::getHttpVersion' => ['string'], - 'http\Client\Request::getInfo' => ['null|string'], - 'http\Client\Request::getOptions' => ['array'], - 'http\Client\Request::getParentMessage' => ['http\Message'], - 'http\Client\Request::getQuery' => ['null|string'], - 'http\Client\Request::getRequestMethod' => ['false|string'], - 'http\Client\Request::getRequestUrl' => ['false|string'], - 'http\Client\Request::getResponseCode' => ['false|int'], - 'http\Client\Request::getResponseStatus' => ['false|string'], - 'http\Client\Request::getSslOptions' => ['array'], - 'http\Client\Request::getType' => ['int'], - 'http\Client\Request::isMultipart' => ['bool', '&boundary='=>'mixed'], - 'http\Client\Request::key' => ['int|string'], - 'http\Client\Request::next' => ['void'], - 'http\Client\Request::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], - 'http\Client\Request::reverse' => ['http\Message'], - 'http\Client\Request::rewind' => ['void'], - 'http\Client\Request::serialize' => ['string'], - 'http\Client\Request::setBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Client\Request::setContentType' => ['http\Client\Request', 'content_type'=>'string'], - 'http\Client\Request::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], - 'http\Client\Request::setHeaders' => ['http\Message', 'headers'=>'array'], - 'http\Client\Request::setHttpVersion' => ['http\Message', 'http_version'=>'string'], - 'http\Client\Request::setInfo' => ['http\Message', 'http_info'=>'string'], - 'http\Client\Request::setOptions' => ['http\Client\Request', 'options='=>'?array'], - 'http\Client\Request::setQuery' => ['http\Client\Request', 'query_data='=>'mixed'], - 'http\Client\Request::setRequestMethod' => ['http\Message', 'request_method'=>'string'], - 'http\Client\Request::setRequestUrl' => ['http\Message', 'url'=>'string'], - 'http\Client\Request::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], - 'http\Client\Request::setResponseStatus' => ['http\Message', 'response_status'=>'string'], - 'http\Client\Request::setSslOptions' => ['http\Client\Request', 'ssl_options='=>'?array'], - 'http\Client\Request::setType' => ['http\Message', 'type'=>'int'], - 'http\Client\Request::splitMultipartBody' => ['http\Message'], - 'http\Client\Request::toCallback' => ['http\Message', 'callback'=>'callable'], - 'http\Client\Request::toStream' => ['http\Message', 'stream'=>'resource'], - 'http\Client\Request::toString' => ['string', 'include_parent='=>'mixed'], - 'http\Client\Request::unserialize' => ['void', 'serialized'=>'string'], - 'http\Client\Request::valid' => ['bool'], - 'http\Client\Response::__construct' => ['Iterator'], - 'http\Client\Response::__toString' => ['string'], - 'http\Client\Response::addBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Client\Response::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], - 'http\Client\Response::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], - 'http\Client\Response::count' => ['int'], - 'http\Client\Response::current' => ['mixed'], - 'http\Client\Response::detach' => ['http\Message'], - 'http\Client\Response::getBody' => ['http\Message\Body'], - 'http\Client\Response::getCookies' => ['array', 'flags='=>'mixed', 'allowed_extras='=>'mixed'], - 'http\Client\Response::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], - 'http\Client\Response::getHeaders' => ['array'], - 'http\Client\Response::getHttpVersion' => ['string'], - 'http\Client\Response::getInfo' => ['null|string'], - 'http\Client\Response::getParentMessage' => ['http\Message'], - 'http\Client\Response::getRequestMethod' => ['false|string'], - 'http\Client\Response::getRequestUrl' => ['false|string'], - 'http\Client\Response::getResponseCode' => ['false|int'], - 'http\Client\Response::getResponseStatus' => ['false|string'], - 'http\Client\Response::getTransferInfo' => ['mixed|object', 'element='=>'mixed'], - 'http\Client\Response::getType' => ['int'], - 'http\Client\Response::isMultipart' => ['bool', '&boundary='=>'mixed'], - 'http\Client\Response::key' => ['int|string'], - 'http\Client\Response::next' => ['void'], - 'http\Client\Response::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], - 'http\Client\Response::reverse' => ['http\Message'], - 'http\Client\Response::rewind' => ['void'], - 'http\Client\Response::serialize' => ['string'], - 'http\Client\Response::setBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Client\Response::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], - 'http\Client\Response::setHeaders' => ['http\Message', 'headers'=>'array'], - 'http\Client\Response::setHttpVersion' => ['http\Message', 'http_version'=>'string'], - 'http\Client\Response::setInfo' => ['http\Message', 'http_info'=>'string'], - 'http\Client\Response::setRequestMethod' => ['http\Message', 'request_method'=>'string'], - 'http\Client\Response::setRequestUrl' => ['http\Message', 'url'=>'string'], - 'http\Client\Response::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], - 'http\Client\Response::setResponseStatus' => ['http\Message', 'response_status'=>'string'], - 'http\Client\Response::setType' => ['http\Message', 'type'=>'int'], - 'http\Client\Response::splitMultipartBody' => ['http\Message'], - 'http\Client\Response::toCallback' => ['http\Message', 'callback'=>'callable'], - 'http\Client\Response::toStream' => ['http\Message', 'stream'=>'resource'], - 'http\Client\Response::toString' => ['string', 'include_parent='=>'mixed'], - 'http\Client\Response::unserialize' => ['void', 'serialized'=>'string'], - 'http\Client\Response::valid' => ['bool'], - 'http\Cookie::__construct' => ['void', 'cookie_string='=>'mixed', 'parser_flags='=>'int', 'allowed_extras='=>'array'], - 'http\Cookie::__toString' => ['string'], - 'http\Cookie::addCookie' => ['http\Cookie', 'cookie_name'=>'string', 'cookie_value'=>'string'], - 'http\Cookie::addCookies' => ['http\Cookie', 'cookies'=>'array'], - 'http\Cookie::addExtra' => ['http\Cookie', 'extra_name'=>'string', 'extra_value'=>'string'], - 'http\Cookie::addExtras' => ['http\Cookie', 'extras'=>'array'], - 'http\Cookie::getCookie' => ['null|string', 'name'=>'string'], - 'http\Cookie::getCookies' => ['array'], - 'http\Cookie::getDomain' => ['string'], - 'http\Cookie::getExpires' => ['int'], - 'http\Cookie::getExtra' => ['string', 'name'=>'string'], - 'http\Cookie::getExtras' => ['array'], - 'http\Cookie::getFlags' => ['int'], - 'http\Cookie::getMaxAge' => ['int'], - 'http\Cookie::getPath' => ['string'], - 'http\Cookie::setCookie' => ['http\Cookie', 'cookie_name'=>'string', 'cookie_value='=>'mixed'], - 'http\Cookie::setCookies' => ['http\Cookie', 'cookies='=>'mixed'], - 'http\Cookie::setDomain' => ['http\Cookie', 'value='=>'mixed'], - 'http\Cookie::setExpires' => ['http\Cookie', 'value='=>'mixed'], - 'http\Cookie::setExtra' => ['http\Cookie', 'extra_name'=>'string', 'extra_value='=>'mixed'], - 'http\Cookie::setExtras' => ['http\Cookie', 'extras='=>'mixed'], - 'http\Cookie::setFlags' => ['http\Cookie', 'value='=>'mixed'], - 'http\Cookie::setMaxAge' => ['http\Cookie', 'value='=>'mixed'], - 'http\Cookie::setPath' => ['http\Cookie', 'value='=>'mixed'], - 'http\Cookie::toArray' => ['array'], - 'http\Cookie::toString' => ['string'], - 'http\Encoding\Stream::__construct' => ['void', 'flags='=>'mixed'], - 'http\Encoding\Stream::done' => ['bool'], - 'http\Encoding\Stream::finish' => ['string'], - 'http\Encoding\Stream::flush' => ['string'], - 'http\Encoding\Stream::update' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Debrotli::__construct' => ['void', 'flags='=>'int'], - 'http\Encoding\Stream\Debrotli::decode' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Debrotli::done' => ['bool'], - 'http\Encoding\Stream\Debrotli::finish' => ['string'], - 'http\Encoding\Stream\Debrotli::flush' => ['string'], - 'http\Encoding\Stream\Debrotli::update' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Dechunk::__construct' => ['void', 'flags='=>'mixed'], - 'http\Encoding\Stream\Dechunk::decode' => ['false|string', 'data'=>'string', '&decoded_len='=>'mixed'], - 'http\Encoding\Stream\Dechunk::done' => ['bool'], - 'http\Encoding\Stream\Dechunk::finish' => ['string'], - 'http\Encoding\Stream\Dechunk::flush' => ['string'], - 'http\Encoding\Stream\Dechunk::update' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Deflate::__construct' => ['void', 'flags='=>'mixed'], - 'http\Encoding\Stream\Deflate::done' => ['bool'], - 'http\Encoding\Stream\Deflate::encode' => ['string', 'data'=>'string', 'flags='=>'mixed'], - 'http\Encoding\Stream\Deflate::finish' => ['string'], - 'http\Encoding\Stream\Deflate::flush' => ['string'], - 'http\Encoding\Stream\Deflate::update' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Enbrotli::__construct' => ['void', 'flags='=>'int'], - 'http\Encoding\Stream\Enbrotli::done' => ['bool'], - 'http\Encoding\Stream\Enbrotli::encode' => ['string', 'data'=>'string', 'flags='=>'int'], - 'http\Encoding\Stream\Enbrotli::finish' => ['string'], - 'http\Encoding\Stream\Enbrotli::flush' => ['string'], - 'http\Encoding\Stream\Enbrotli::update' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Inflate::__construct' => ['void', 'flags='=>'mixed'], - 'http\Encoding\Stream\Inflate::decode' => ['string', 'data'=>'string'], - 'http\Encoding\Stream\Inflate::done' => ['bool'], - 'http\Encoding\Stream\Inflate::finish' => ['string'], - 'http\Encoding\Stream\Inflate::flush' => ['string'], - 'http\Encoding\Stream\Inflate::update' => ['string', 'data'=>'string'], - 'http\Env::getRequestBody' => ['http\Message\Body', 'body_class_name='=>'mixed'], - 'http\Env::getRequestHeader' => ['array|null|string', 'header_name='=>'mixed'], - 'http\Env::getResponseCode' => ['int'], - 'http\Env::getResponseHeader' => ['array|null|string', 'header_name='=>'mixed'], - 'http\Env::getResponseStatusForAllCodes' => ['array'], - 'http\Env::getResponseStatusForCode' => ['string', 'code'=>'int'], - 'http\Env::negotiate' => ['null|string', 'params'=>'string', 'supported'=>'array', 'primary_type_separator='=>'mixed', '&result_array='=>'mixed'], - 'http\Env::negotiateCharset' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], - 'http\Env::negotiateContentType' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], - 'http\Env::negotiateEncoding' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], - 'http\Env::negotiateLanguage' => ['null|string', 'supported'=>'array', '&result_array='=>'mixed'], - 'http\Env::setResponseCode' => ['bool', 'code'=>'int'], - 'http\Env::setResponseHeader' => ['bool', 'header_name'=>'string', 'header_value='=>'mixed', 'response_code='=>'mixed', 'replace_header='=>'mixed'], - 'http\Env\Request::__construct' => ['void'], - 'http\Env\Request::__toString' => ['string'], - 'http\Env\Request::addBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Env\Request::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], - 'http\Env\Request::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], - 'http\Env\Request::count' => ['int'], - 'http\Env\Request::current' => ['mixed'], - 'http\Env\Request::detach' => ['http\Message'], - 'http\Env\Request::getBody' => ['http\Message\Body'], - 'http\Env\Request::getCookie' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], - 'http\Env\Request::getFiles' => ['array'], - 'http\Env\Request::getForm' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], - 'http\Env\Request::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], - 'http\Env\Request::getHeaders' => ['array'], - 'http\Env\Request::getHttpVersion' => ['string'], - 'http\Env\Request::getInfo' => ['null|string'], - 'http\Env\Request::getParentMessage' => ['http\Message'], - 'http\Env\Request::getQuery' => ['mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool'], - 'http\Env\Request::getRequestMethod' => ['false|string'], - 'http\Env\Request::getRequestUrl' => ['false|string'], - 'http\Env\Request::getResponseCode' => ['false|int'], - 'http\Env\Request::getResponseStatus' => ['false|string'], - 'http\Env\Request::getType' => ['int'], - 'http\Env\Request::isMultipart' => ['bool', '&boundary='=>'mixed'], - 'http\Env\Request::key' => ['int|string'], - 'http\Env\Request::next' => ['void'], - 'http\Env\Request::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], - 'http\Env\Request::reverse' => ['http\Message'], - 'http\Env\Request::rewind' => ['void'], - 'http\Env\Request::serialize' => ['string'], - 'http\Env\Request::setBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Env\Request::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], - 'http\Env\Request::setHeaders' => ['http\Message', 'headers'=>'array'], - 'http\Env\Request::setHttpVersion' => ['http\Message', 'http_version'=>'string'], - 'http\Env\Request::setInfo' => ['http\Message', 'http_info'=>'string'], - 'http\Env\Request::setRequestMethod' => ['http\Message', 'request_method'=>'string'], - 'http\Env\Request::setRequestUrl' => ['http\Message', 'url'=>'string'], - 'http\Env\Request::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], - 'http\Env\Request::setResponseStatus' => ['http\Message', 'response_status'=>'string'], - 'http\Env\Request::setType' => ['http\Message', 'type'=>'int'], - 'http\Env\Request::splitMultipartBody' => ['http\Message'], - 'http\Env\Request::toCallback' => ['http\Message', 'callback'=>'callable'], - 'http\Env\Request::toStream' => ['http\Message', 'stream'=>'resource'], - 'http\Env\Request::toString' => ['string', 'include_parent='=>'mixed'], - 'http\Env\Request::unserialize' => ['void', 'serialized'=>'string'], - 'http\Env\Request::valid' => ['bool'], - 'http\Env\Response::__construct' => ['void'], - 'http\Env\Response::__invoke' => ['bool', 'data'=>'string', 'ob_flags='=>'int'], - 'http\Env\Response::__toString' => ['string'], - 'http\Env\Response::addBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Env\Response::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], - 'http\Env\Response::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], - 'http\Env\Response::count' => ['int'], - 'http\Env\Response::current' => ['mixed'], - 'http\Env\Response::detach' => ['http\Message'], - 'http\Env\Response::getBody' => ['http\Message\Body'], - 'http\Env\Response::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], - 'http\Env\Response::getHeaders' => ['array'], - 'http\Env\Response::getHttpVersion' => ['string'], - 'http\Env\Response::getInfo' => ['?string'], - 'http\Env\Response::getParentMessage' => ['http\Message'], - 'http\Env\Response::getRequestMethod' => ['false|string'], - 'http\Env\Response::getRequestUrl' => ['false|string'], - 'http\Env\Response::getResponseCode' => ['false|int'], - 'http\Env\Response::getResponseStatus' => ['false|string'], - 'http\Env\Response::getType' => ['int'], - 'http\Env\Response::isCachedByETag' => ['int', 'header_name='=>'string'], - 'http\Env\Response::isCachedByLastModified' => ['int', 'header_name='=>'string'], - 'http\Env\Response::isMultipart' => ['bool', '&boundary='=>'mixed'], - 'http\Env\Response::key' => ['int|string'], - 'http\Env\Response::next' => ['void'], - 'http\Env\Response::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], - 'http\Env\Response::reverse' => ['http\Message'], - 'http\Env\Response::rewind' => ['void'], - 'http\Env\Response::send' => ['bool', 'stream='=>'resource'], - 'http\Env\Response::serialize' => ['string'], - 'http\Env\Response::setBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Env\Response::setCacheControl' => ['http\Env\Response', 'cache_control'=>'string'], - 'http\Env\Response::setContentDisposition' => ['http\Env\Response', 'disposition_params'=>'array'], - 'http\Env\Response::setContentEncoding' => ['http\Env\Response', 'content_encoding'=>'int'], - 'http\Env\Response::setContentType' => ['http\Env\Response', 'content_type'=>'string'], - 'http\Env\Response::setCookie' => ['http\Env\Response', 'cookie'=>'mixed'], - 'http\Env\Response::setEnvRequest' => ['http\Env\Response', 'env_request'=>'http\Message'], - 'http\Env\Response::setEtag' => ['http\Env\Response', 'etag'=>'string'], - 'http\Env\Response::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], - 'http\Env\Response::setHeaders' => ['http\Message', 'headers'=>'array'], - 'http\Env\Response::setHttpVersion' => ['http\Message', 'http_version'=>'string'], - 'http\Env\Response::setInfo' => ['http\Message', 'http_info'=>'string'], - 'http\Env\Response::setLastModified' => ['http\Env\Response', 'last_modified'=>'int'], - 'http\Env\Response::setRequestMethod' => ['http\Message', 'request_method'=>'string'], - 'http\Env\Response::setRequestUrl' => ['http\Message', 'url'=>'string'], - 'http\Env\Response::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], - 'http\Env\Response::setResponseStatus' => ['http\Message', 'response_status'=>'string'], - 'http\Env\Response::setThrottleRate' => ['http\Env\Response', 'chunk_size'=>'int', 'delay='=>'float|int'], - 'http\Env\Response::setType' => ['http\Message', 'type'=>'int'], - 'http\Env\Response::splitMultipartBody' => ['http\Message'], - 'http\Env\Response::toCallback' => ['http\Message', 'callback'=>'callable'], - 'http\Env\Response::toStream' => ['http\Message', 'stream'=>'resource'], - 'http\Env\Response::toString' => ['string', 'include_parent='=>'mixed'], - 'http\Env\Response::unserialize' => ['void', 'serialized'=>'string'], - 'http\Env\Response::valid' => ['bool'], - 'http\Header::__construct' => ['void', 'name='=>'mixed', 'value='=>'mixed'], - 'http\Header::__toString' => ['string'], - 'http\Header::getParams' => ['http\Params', 'param_sep='=>'mixed', 'arg_sep='=>'mixed', 'val_sep='=>'mixed', 'flags='=>'mixed'], - 'http\Header::match' => ['bool', 'value'=>'string', 'flags='=>'mixed'], - 'http\Header::negotiate' => ['null|string', 'supported'=>'array', '&result='=>'mixed'], - 'http\Header::parse' => ['array|false', 'string'=>'string', 'header_class='=>'mixed'], - 'http\Header::serialize' => ['string'], - 'http\Header::toString' => ['string'], - 'http\Header::unserialize' => ['void', 'serialized'=>'string'], - 'http\Header\Parser::getState' => ['int'], - 'http\Header\Parser::parse' => ['int', 'data'=>'string', 'flags'=>'int', '&headers'=>'array'], - 'http\Header\Parser::stream' => ['int', 'stream'=>'resource', 'flags'=>'int', '&headers'=>'array'], - 'http\Message::__construct' => ['void', 'message='=>'mixed', 'greedy='=>'bool'], - 'http\Message::__toString' => ['string'], - 'http\Message::addBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Message::addHeader' => ['http\Message', 'header'=>'string', 'value'=>'mixed'], - 'http\Message::addHeaders' => ['http\Message', 'headers'=>'array', 'append='=>'mixed'], - 'http\Message::count' => ['int'], - 'http\Message::current' => ['mixed'], - 'http\Message::detach' => ['http\Message'], - 'http\Message::getBody' => ['http\Message\Body'], - 'http\Message::getHeader' => ['http\Header|mixed', 'header'=>'string', 'into_class='=>'mixed'], - 'http\Message::getHeaders' => ['array'], - 'http\Message::getHttpVersion' => ['string'], - 'http\Message::getInfo' => ['null|string'], - 'http\Message::getParentMessage' => ['http\Message'], - 'http\Message::getRequestMethod' => ['false|string'], - 'http\Message::getRequestUrl' => ['false|string'], - 'http\Message::getResponseCode' => ['false|int'], - 'http\Message::getResponseStatus' => ['false|string'], - 'http\Message::getType' => ['int'], - 'http\Message::isMultipart' => ['bool', '&boundary='=>'mixed'], - 'http\Message::key' => ['int|string'], - 'http\Message::next' => ['void'], - 'http\Message::prepend' => ['http\Message', 'message'=>'http\Message', 'top='=>'mixed'], - 'http\Message::reverse' => ['http\Message'], - 'http\Message::rewind' => ['void'], - 'http\Message::serialize' => ['string'], - 'http\Message::setBody' => ['http\Message', 'body'=>'http\Message\Body'], - 'http\Message::setHeader' => ['http\Message', 'header'=>'string', 'value='=>'mixed'], - 'http\Message::setHeaders' => ['http\Message', 'headers'=>'array'], - 'http\Message::setHttpVersion' => ['http\Message', 'http_version'=>'string'], - 'http\Message::setInfo' => ['http\Message', 'http_info'=>'string'], - 'http\Message::setRequestMethod' => ['http\Message', 'request_method'=>'string'], - 'http\Message::setRequestUrl' => ['http\Message', 'url'=>'string'], - 'http\Message::setResponseCode' => ['http\Message', 'response_code'=>'int', 'strict='=>'mixed'], - 'http\Message::setResponseStatus' => ['http\Message', 'response_status'=>'string'], - 'http\Message::setType' => ['http\Message', 'type'=>'int'], - 'http\Message::splitMultipartBody' => ['http\Message'], - 'http\Message::toCallback' => ['http\Message', 'callback'=>'callable'], - 'http\Message::toStream' => ['http\Message', 'stream'=>'resource'], - 'http\Message::toString' => ['string', 'include_parent='=>'mixed'], - 'http\Message::unserialize' => ['void', 'serialized'=>'string'], - 'http\Message::valid' => ['bool'], - 'http\Message\Body::__construct' => ['void', 'stream='=>'resource'], - 'http\Message\Body::__toString' => ['string'], - 'http\Message\Body::addForm' => ['http\Message\Body', 'fields='=>'?array', 'files='=>'?array'], - 'http\Message\Body::addPart' => ['http\Message\Body', 'message'=>'http\Message'], - 'http\Message\Body::append' => ['http\Message\Body', 'string'=>'string'], - 'http\Message\Body::etag' => ['false|string'], - 'http\Message\Body::getBoundary' => ['null|string'], - 'http\Message\Body::getResource' => ['resource'], - 'http\Message\Body::serialize' => ['string'], - 'http\Message\Body::stat' => ['int|object', 'field='=>'mixed'], - 'http\Message\Body::toCallback' => ['http\Message\Body', 'callback'=>'callable', 'offset='=>'mixed', 'maxlen='=>'mixed'], - 'http\Message\Body::toStream' => ['http\Message\Body', 'stream'=>'resource', 'offset='=>'mixed', 'maxlen='=>'mixed'], - 'http\Message\Body::toString' => ['string'], - 'http\Message\Body::unserialize' => ['void', 'serialized'=>'string'], - 'http\Message\Parser::getState' => ['int'], - 'http\Message\Parser::parse' => ['int', 'data'=>'string', 'flags'=>'int', '&message'=>'http\Message'], - 'http\Message\Parser::stream' => ['int', 'stream'=>'resource', 'flags'=>'int', '&message'=>'http\Message'], - 'http\Params::__construct' => ['void', 'params='=>'mixed', 'param_sep='=>'mixed', 'arg_sep='=>'mixed', 'val_sep='=>'mixed', 'flags='=>'mixed'], - 'http\Params::__toString' => ['string'], - 'http\Params::offsetExists' => ['bool', 'name'=>'int|string'], - 'http\Params::offsetGet' => ['mixed', 'name'=>'int|string'], - 'http\Params::offsetSet' => ['void', 'name'=>'int|string|null', 'value'=>'mixed'], - 'http\Params::offsetUnset' => ['void', 'name'=>'int|string'], - 'http\Params::toArray' => ['array'], - 'http\Params::toString' => ['string'], - 'http\QueryString::__construct' => ['void', 'querystring'=>'string'], - 'http\QueryString::__toString' => ['string'], - 'http\QueryString::get' => ['http\QueryString|string|mixed', 'name='=>'string', 'type='=>'mixed', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getArray' => ['array|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getBool' => ['bool|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getFloat' => ['float|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getGlobalInstance' => ['http\QueryString'], - 'http\QueryString::getInt' => ['int|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getIterator' => ['IteratorAggregate'], - 'http\QueryString::getObject' => ['object|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::getString' => ['string|mixed', 'name'=>'string', 'defval='=>'mixed', 'delete='=>'bool|false'], - 'http\QueryString::mod' => ['http\QueryString', 'params='=>'mixed'], - 'http\QueryString::offsetExists' => ['bool', 'offset'=>'int|string'], - 'http\QueryString::offsetGet' => ['mixed|null', 'offset'=>'int|string'], - 'http\QueryString::offsetSet' => ['void', 'offset'=>'int|string|null', 'value'=>'mixed'], - 'http\QueryString::offsetUnset' => ['void', 'offset'=>'int|string'], - 'http\QueryString::serialize' => ['string'], - 'http\QueryString::set' => ['http\QueryString', 'params'=>'mixed'], - 'http\QueryString::toArray' => ['array'], - 'http\QueryString::toString' => ['string'], - 'http\QueryString::unserialize' => ['void', 'serialized'=>'string'], - 'http\QueryString::xlate' => ['http\QueryString'], - 'http\Url::__construct' => ['void', 'old_url='=>'mixed', 'new_url='=>'mixed', 'flags='=>'int'], - 'http\Url::__toString' => ['string'], - 'http\Url::mod' => ['http\Url', 'parts'=>'mixed', 'flags='=>'float|int|mixed'], - 'http\Url::toArray' => ['string[]'], - 'http\Url::toString' => ['string'], - 'http_build_cookie' => ['string', 'cookie'=>'array'], - 'http_build_query' => ['string', 'data'=>'array|object', 'numeric_prefix='=>'string', 'arg_separator='=>'?string', 'encoding_type='=>'int'], - 'http_build_str' => ['string', 'query'=>'array', 'prefix='=>'?string', 'arg_separator='=>'string'], - 'http_build_url' => ['string', 'url='=>'string|array', 'parts='=>'string|array', 'flags='=>'int', 'new_url='=>'array'], - 'http_cache_etag' => ['bool', 'etag='=>'string'], - 'http_cache_last_modified' => ['bool', 'timestamp_or_expires='=>'int'], - 'http_chunked_decode' => ['string|false', 'encoded'=>'string'], - 'http_date' => ['string', 'timestamp='=>'int'], - 'http_deflate' => ['?string', 'data'=>'string', 'flags='=>'int'], - 'http_get' => ['string', 'url'=>'string', 'options='=>'array', 'info='=>'array'], - 'http_get_request_body' => ['?string'], - 'http_get_request_body_stream' => ['?resource'], - 'http_get_request_headers' => ['array'], - 'http_head' => ['string', 'url'=>'string', 'options='=>'array', 'info='=>'array'], - 'http_inflate' => ['?string', 'data'=>'string'], - 'http_match_etag' => ['bool', 'etag'=>'string', 'for_range='=>'bool'], - 'http_match_modified' => ['bool', 'timestamp='=>'int', 'for_range='=>'bool'], - 'http_match_request_header' => ['bool', 'header'=>'string', 'value'=>'string', 'match_case='=>'bool'], - 'http_negotiate_charset' => ['string', 'supported'=>'array', 'result='=>'array'], - 'http_negotiate_content_type' => ['string', 'supported'=>'array', 'result='=>'array'], - 'http_negotiate_language' => ['string', 'supported'=>'array', 'result='=>'array'], - 'http_parse_cookie' => ['stdClass|false', 'cookie'=>'string', 'flags='=>'int', 'allowed_extras='=>'array'], - 'http_parse_headers' => ['array|false', 'header'=>'string'], - 'http_parse_message' => ['object', 'message'=>'string'], - 'http_parse_params' => ['stdClass', 'param'=>'string', 'flags='=>'int'], - 'http_persistent_handles_clean' => ['string', 'ident='=>'string'], - 'http_persistent_handles_count' => ['stdClass|false'], - 'http_persistent_handles_ident' => ['string|false', 'ident='=>'string'], - 'http_post_data' => ['string', 'url'=>'string', 'data'=>'string', 'options='=>'array', 'info='=>'array'], - 'http_post_fields' => ['string', 'url'=>'string', 'data'=>'array', 'files='=>'array', 'options='=>'array', 'info='=>'array'], - 'http_put_data' => ['string', 'url'=>'string', 'data'=>'string', 'options='=>'array', 'info='=>'array'], - 'http_put_file' => ['string', 'url'=>'string', 'file'=>'string', 'options='=>'array', 'info='=>'array'], - 'http_put_stream' => ['string', 'url'=>'string', 'stream'=>'resource', 'options='=>'array', 'info='=>'array'], - 'http_redirect' => ['int|false', 'url='=>'string', 'params='=>'array', 'session='=>'bool', 'status='=>'int'], - 'http_request' => ['string', 'method'=>'int', 'url'=>'string', 'body='=>'string', 'options='=>'array', 'info='=>'array'], - 'http_request_body_encode' => ['string|false', 'fields'=>'array', 'files'=>'array'], - 'http_request_method_exists' => ['bool', 'method'=>'mixed'], - 'http_request_method_name' => ['string|false', 'method'=>'int'], - 'http_request_method_register' => ['int|false', 'method'=>'string'], - 'http_request_method_unregister' => ['bool', 'method'=>'mixed'], - 'http_response_code' => ['int|bool', 'response_code='=>'int'], - 'http_send_content_disposition' => ['bool', 'filename'=>'string', 'inline='=>'bool'], - 'http_send_content_type' => ['bool', 'content_type='=>'string'], - 'http_send_data' => ['bool', 'data'=>'string'], - 'http_send_file' => ['bool', 'file'=>'string'], - 'http_send_last_modified' => ['bool', 'timestamp='=>'int'], - 'http_send_status' => ['bool', 'status'=>'int'], - 'http_send_stream' => ['bool', 'stream'=>'resource'], - 'http_support' => ['int', 'feature='=>'int'], - 'http_throttle' => ['void', 'sec'=>'float', 'bytes='=>'int'], - 'hw_Array2Objrec' => ['string', 'object_array'=>'array'], - 'hw_Children' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_ChildrenObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_Close' => ['bool', 'connection'=>'int'], - 'hw_Connect' => ['int', 'host'=>'string', 'port'=>'int', 'username='=>'string', 'password='=>'string'], - 'hw_Deleteobject' => ['bool', 'connection'=>'int', 'object_to_delete'=>'int'], - 'hw_DocByAnchor' => ['int', 'connection'=>'int', 'anchorid'=>'int'], - 'hw_DocByAnchorObj' => ['string', 'connection'=>'int', 'anchorid'=>'int'], - 'hw_Document_Attributes' => ['string', 'hw_document'=>'int'], - 'hw_Document_BodyTag' => ['string', 'hw_document'=>'int', 'prefix='=>'string'], - 'hw_Document_Content' => ['string', 'hw_document'=>'int'], - 'hw_Document_SetContent' => ['bool', 'hw_document'=>'int', 'content'=>'string'], - 'hw_Document_Size' => ['int', 'hw_document'=>'int'], - 'hw_EditText' => ['bool', 'connection'=>'int', 'hw_document'=>'int'], - 'hw_Error' => ['int', 'connection'=>'int'], - 'hw_ErrorMsg' => ['string', 'connection'=>'int'], - 'hw_Free_Document' => ['bool', 'hw_document'=>'int'], - 'hw_GetAnchors' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetAnchorsObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetAndLock' => ['string', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetChildColl' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetChildCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetChildDocColl' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetChildDocCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetObject' => ['', 'connection'=>'int', 'objectid'=>'', 'query='=>'string'], - 'hw_GetObjectByQuery' => ['array', 'connection'=>'int', 'query'=>'string', 'max_hits'=>'int'], - 'hw_GetObjectByQueryColl' => ['array', 'connection'=>'int', 'objectid'=>'int', 'query'=>'string', 'max_hits'=>'int'], - 'hw_GetObjectByQueryCollObj' => ['array', 'connection'=>'int', 'objectid'=>'int', 'query'=>'string', 'max_hits'=>'int'], - 'hw_GetObjectByQueryObj' => ['array', 'connection'=>'int', 'query'=>'string', 'max_hits'=>'int'], - 'hw_GetParents' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetParentsObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetRemote' => ['int', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetSrcByDestObj' => ['array', 'connection'=>'int', 'objectid'=>'int'], - 'hw_GetText' => ['int', 'connection'=>'int', 'objectid'=>'int', 'prefix='=>''], - 'hw_Identify' => ['string', 'link'=>'int', 'username'=>'string', 'password'=>'string'], - 'hw_InCollections' => ['array', 'connection'=>'int', 'object_id_array'=>'array', 'collection_id_array'=>'array', 'return_collections'=>'int'], - 'hw_Info' => ['string', 'connection'=>'int'], - 'hw_InsColl' => ['int', 'connection'=>'int', 'objectid'=>'int', 'object_array'=>'array'], - 'hw_InsDoc' => ['int', 'connection'=>'', 'parentid'=>'int', 'object_record'=>'string', 'text='=>'string'], - 'hw_InsertDocument' => ['int', 'connection'=>'int', 'parent_id'=>'int', 'hw_document'=>'int'], - 'hw_InsertObject' => ['int', 'connection'=>'int', 'object_rec'=>'string', 'parameter'=>'string'], - 'hw_Modifyobject' => ['bool', 'connection'=>'int', 'object_to_change'=>'int', 'remove'=>'array', 'add'=>'array', 'mode='=>'int'], - 'hw_New_Document' => ['int', 'object_record'=>'string', 'document_data'=>'string', 'document_size'=>'int'], - 'hw_Output_Document' => ['bool', 'hw_document'=>'int'], - 'hw_PipeDocument' => ['int', 'connection'=>'int', 'objectid'=>'int', 'url_prefixes='=>'array'], - 'hw_Root' => ['int'], - 'hw_Unlock' => ['bool', 'connection'=>'int', 'objectid'=>'int'], - 'hw_Who' => ['array', 'connection'=>'int'], - 'hw_api::checkin' => ['bool', 'parameter'=>'array'], - 'hw_api::checkout' => ['bool', 'parameter'=>'array'], - 'hw_api::children' => ['array', 'parameter'=>'array'], - 'hw_api::content' => ['HW_API_Content', 'parameter'=>'array'], - 'hw_api::copy' => ['hw_api_content', 'parameter'=>'array'], - 'hw_api::dbstat' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::dcstat' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::dstanchors' => ['array', 'parameter'=>'array'], - 'hw_api::dstofsrcanchor' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::find' => ['array', 'parameter'=>'array'], - 'hw_api::ftstat' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::hwstat' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::identify' => ['bool', 'parameter'=>'array'], - 'hw_api::info' => ['array', 'parameter'=>'array'], - 'hw_api::insert' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::insertanchor' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::insertcollection' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::insertdocument' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::link' => ['bool', 'parameter'=>'array'], - 'hw_api::lock' => ['bool', 'parameter'=>'array'], - 'hw_api::move' => ['bool', 'parameter'=>'array'], - 'hw_api::object' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::objectbyanchor' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::parents' => ['array', 'parameter'=>'array'], - 'hw_api::remove' => ['bool', 'parameter'=>'array'], - 'hw_api::replace' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::setcommittedversion' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::srcanchors' => ['array', 'parameter'=>'array'], - 'hw_api::srcsofdst' => ['array', 'parameter'=>'array'], - 'hw_api::unlock' => ['bool', 'parameter'=>'array'], - 'hw_api::user' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api::userlist' => ['array', 'parameter'=>'array'], - 'hw_api_attribute' => ['HW_API_Attribute', 'name='=>'string', 'value='=>'string'], - 'hw_api_attribute::key' => ['string'], - 'hw_api_attribute::langdepvalue' => ['string', 'language'=>'string'], - 'hw_api_attribute::value' => ['string'], - 'hw_api_attribute::values' => ['array'], - 'hw_api_content' => ['HW_API_Content', 'content'=>'string', 'mimetype'=>'string'], - 'hw_api_content::mimetype' => ['string'], - 'hw_api_content::read' => ['string', 'buffer'=>'string', 'length'=>'int'], - 'hw_api_error::count' => ['int'], - 'hw_api_error::reason' => ['HW_API_Reason'], - 'hw_api_object' => ['hw_api_object', 'parameter'=>'array'], - 'hw_api_object::assign' => ['bool', 'parameter'=>'array'], - 'hw_api_object::attreditable' => ['bool', 'parameter'=>'array'], - 'hw_api_object::count' => ['int', 'parameter'=>'array'], - 'hw_api_object::insert' => ['bool', 'attribute'=>'hw_api_attribute'], - 'hw_api_object::remove' => ['bool', 'name'=>'string'], - 'hw_api_object::title' => ['string', 'parameter'=>'array'], - 'hw_api_object::value' => ['string', 'name'=>'string'], - 'hw_api_reason::description' => ['string'], - 'hw_api_reason::type' => ['HW_API_Reason'], - 'hw_changeobject' => ['bool', 'link'=>'int', 'objid'=>'int', 'attributes'=>'array'], - 'hw_connection_info' => ['', 'link'=>'int'], - 'hw_cp' => ['int', 'connection'=>'int', 'object_id_array'=>'array', 'destination_id'=>'int'], - 'hw_dummy' => ['string', 'link'=>'int', 'id'=>'int', 'msgid'=>'int'], - 'hw_getrellink' => ['string', 'link'=>'int', 'rootid'=>'int', 'sourceid'=>'int', 'destid'=>'int'], - 'hw_getremotechildren' => ['', 'connection'=>'int', 'object_record'=>'string'], - 'hw_getusername' => ['string', 'connection'=>'int'], - 'hw_insertanchors' => ['bool', 'hwdoc'=>'int', 'anchorecs'=>'array', 'dest'=>'array', 'urlprefixes='=>'array'], - 'hw_mapid' => ['int', 'connection'=>'int', 'server_id'=>'int', 'object_id'=>'int'], - 'hw_mv' => ['int', 'connection'=>'int', 'object_id_array'=>'array', 'source_id'=>'int', 'destination_id'=>'int'], - 'hw_objrec2array' => ['array', 'object_record'=>'string', 'format='=>'array'], - 'hw_pConnect' => ['int', 'host'=>'string', 'port'=>'int', 'username='=>'string', 'password='=>'string'], - 'hw_setlinkroot' => ['int', 'link'=>'int', 'rootid'=>'int'], - 'hw_stat' => ['string', 'link'=>'int'], - 'hwapi_attribute_new' => ['HW_API_Attribute', 'name='=>'string', 'value='=>'string'], - 'hwapi_content_new' => ['HW_API_Content', 'content'=>'string', 'mimetype'=>'string'], - 'hwapi_hgcsp' => ['HW_API', 'hostname'=>'string', 'port='=>'int'], - 'hwapi_object_new' => ['hw_api_object', 'parameter'=>'array'], - 'hypot' => ['float', 'x'=>'float', 'y'=>'float'], - 'ibase_add_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password'=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], - 'ibase_affected_rows' => ['int', 'link_identifier='=>'resource'], - 'ibase_backup' => ['mixed', 'service_handle'=>'resource', 'source_db'=>'string', 'dest_file'=>'string', 'options='=>'int', 'verbose='=>'bool'], - 'ibase_blob_add' => ['void', 'blob_handle'=>'resource', 'data'=>'string'], - 'ibase_blob_cancel' => ['bool', 'blob_handle'=>'resource'], - 'ibase_blob_close' => ['string|bool', 'blob_handle'=>'resource'], - 'ibase_blob_create' => ['resource', 'link_identifier='=>'resource'], - 'ibase_blob_echo' => ['bool', 'link_identifier'=>'', 'blob_id'=>'string'], - 'ibase_blob_echo\'1' => ['bool', 'blob_id'=>'string'], - 'ibase_blob_get' => ['string|false', 'blob_handle'=>'resource', 'length'=>'int'], - 'ibase_blob_import' => ['string|false', 'link_identifier'=>'resource', 'file_handle'=>'resource'], - 'ibase_blob_info' => ['array', 'link_identifier'=>'resource', 'blob_id'=>'string'], - 'ibase_blob_info\'1' => ['array', 'blob_id'=>'string'], - 'ibase_blob_open' => ['resource|false', 'link_identifier'=>'', 'blob_id'=>'string'], - 'ibase_blob_open\'1' => ['resource', 'blob_id'=>'string'], - 'ibase_close' => ['bool', 'link_identifier='=>'resource'], - 'ibase_commit' => ['bool', 'link_identifier='=>'resource'], - 'ibase_commit_ret' => ['bool', 'link_identifier='=>'resource'], - 'ibase_connect' => ['resource|false', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'charset='=>'string', 'buffers='=>'int', 'dialect='=>'int', 'role='=>'string'], - 'ibase_db_info' => ['string', 'service_handle'=>'resource', 'db'=>'string', 'action'=>'int', 'argument='=>'int'], - 'ibase_delete_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password='=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], - 'ibase_drop_db' => ['bool', 'link_identifier='=>'resource'], - 'ibase_errcode' => ['int|false'], - 'ibase_errmsg' => ['string|false'], - 'ibase_execute' => ['resource|false', 'query'=>'resource', 'bind_arg='=>'mixed', '...args='=>'mixed'], - 'ibase_fetch_assoc' => ['array|false', 'result'=>'resource', 'fetch_flags='=>'int'], - 'ibase_fetch_object' => ['object|false', 'result'=>'resource', 'fetch_flags='=>'int'], - 'ibase_fetch_row' => ['array|false', 'result'=>'resource', 'fetch_flags='=>'int'], - 'ibase_field_info' => ['array', 'query_result'=>'resource', 'field_number'=>'int'], - 'ibase_free_event_handler' => ['bool', 'event'=>'resource'], - 'ibase_free_query' => ['bool', 'query'=>'resource'], - 'ibase_free_result' => ['bool', 'result'=>'resource'], - 'ibase_gen_id' => ['int|string', 'generator'=>'string', 'increment='=>'int', 'link_identifier='=>'resource'], - 'ibase_maintain_db' => ['bool', 'service_handle'=>'resource', 'db'=>'string', 'action'=>'int', 'argument='=>'int'], - 'ibase_modify_user' => ['bool', 'service_handle'=>'resource', 'user_name'=>'string', 'password'=>'string', 'first_name='=>'string', 'middle_name='=>'string', 'last_name='=>'string'], - 'ibase_name_result' => ['bool', 'result'=>'resource', 'name'=>'string'], - 'ibase_num_fields' => ['int', 'query_result'=>'resource'], - 'ibase_num_params' => ['int', 'query'=>'resource'], - 'ibase_num_rows' => ['int', 'result_identifier'=>''], - 'ibase_param_info' => ['array', 'query'=>'resource', 'field_number'=>'int'], - 'ibase_pconnect' => ['resource|false', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'charset='=>'string', 'buffers='=>'int', 'dialect='=>'int', 'role='=>'string'], - 'ibase_prepare' => ['resource|false', 'link_identifier'=>'', 'query'=>'string', 'trans_identifier'=>''], - 'ibase_query' => ['resource|false', 'link_identifier='=>'resource', 'string='=>'string', 'bind_arg='=>'int', '...args='=>''], - 'ibase_restore' => ['mixed', 'service_handle'=>'resource', 'source_file'=>'string', 'dest_db'=>'string', 'options='=>'int', 'verbose='=>'bool'], - 'ibase_rollback' => ['bool', 'link_identifier='=>'resource'], - 'ibase_rollback_ret' => ['bool', 'link_identifier='=>'resource'], - 'ibase_server_info' => ['string', 'service_handle'=>'resource', 'action'=>'int'], - 'ibase_service_attach' => ['resource', 'host'=>'string', 'dba_username'=>'string', 'dba_password'=>'string'], - 'ibase_service_detach' => ['bool', 'service_handle'=>'resource'], - 'ibase_set_event_handler' => ['resource', 'link_identifier'=>'', 'callback'=>'callable', 'event='=>'string', '...args='=>''], - 'ibase_set_event_handler\'1' => ['resource', 'callback'=>'callable', 'event'=>'string', '...args'=>''], - 'ibase_timefmt' => ['bool', 'format'=>'string', 'columntype='=>'int'], - 'ibase_trans' => ['resource|false', 'trans_args='=>'int', 'link_identifier='=>'', '...args='=>''], - 'ibase_wait_event' => ['string', 'link_identifier'=>'', 'event='=>'string', '...args='=>''], - 'ibase_wait_event\'1' => ['string', 'event'=>'string', '...args'=>''], - 'iconv' => ['string|false', 'from_encoding'=>'string', 'to_encoding'=>'string', 'string'=>'string'], - 'iconv_get_encoding' => ['array|string|false', 'type='=>'string'], - 'iconv_mime_decode' => ['string|false', 'string'=>'string', 'mode='=>'int', 'encoding='=>'string'], - 'iconv_mime_decode_headers' => ['array|false', 'headers'=>'string', 'mode='=>'int', 'encoding='=>'string'], - 'iconv_mime_encode' => ['string|false', 'field_name'=>'string', 'field_value'=>'string', 'options='=>'array'], - 'iconv_set_encoding' => ['bool', 'type'=>'string', 'encoding'=>'string'], - 'iconv_strlen' => ['0|positive-int|false', 'string'=>'string', 'encoding='=>'string'], - 'iconv_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'iconv_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string'], - 'iconv_substr' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'int', 'encoding='=>'string'], - 'id3_get_frame_long_name' => ['string', 'frameid'=>'string'], - 'id3_get_frame_short_name' => ['string', 'frameid'=>'string'], - 'id3_get_genre_id' => ['int', 'genre'=>'string'], - 'id3_get_genre_list' => ['array'], - 'id3_get_genre_name' => ['string', 'genre_id'=>'int'], - 'id3_get_tag' => ['array', 'filename'=>'string', 'version='=>'int'], - 'id3_get_version' => ['int', 'filename'=>'string'], - 'id3_remove_tag' => ['bool', 'filename'=>'string', 'version='=>'int'], - 'id3_set_tag' => ['bool', 'filename'=>'string', 'tag'=>'array', 'version='=>'int'], - 'idate' => ['int', 'format'=>'string', 'timestamp='=>'int'], - 'idn_strerror' => ['string', 'errorcode'=>'int'], - 'idn_to_ascii' => ['string|false', 'domain'=>'string', 'flags='=>'int', 'variant='=>'int', '&w_idna_info='=>'array'], - 'idn_to_utf8' => ['string|false', 'domain'=>'string', 'flags='=>'int', 'variant='=>'int', '&w_idna_info='=>'array'], - 'ifx_affected_rows' => ['int', 'result_id'=>'resource'], - 'ifx_blobinfile_mode' => ['bool', 'mode'=>'int'], - 'ifx_byteasvarchar' => ['bool', 'mode'=>'int'], - 'ifx_close' => ['bool', 'link_identifier='=>'resource'], - 'ifx_connect' => ['resource', 'database='=>'string', 'userid='=>'string', 'password='=>'string'], - 'ifx_copy_blob' => ['int', 'bid'=>'int'], - 'ifx_create_blob' => ['int', 'type'=>'int', 'mode'=>'int', 'param'=>'string'], - 'ifx_create_char' => ['int', 'param'=>'string'], - 'ifx_do' => ['bool', 'result_id'=>'resource'], - 'ifx_error' => ['string', 'link_identifier='=>'resource'], - 'ifx_errormsg' => ['string', 'errorcode='=>'int'], - 'ifx_fetch_row' => ['array', 'result_id'=>'resource', 'position='=>'mixed'], - 'ifx_fieldproperties' => ['array', 'result_id'=>'resource'], - 'ifx_fieldtypes' => ['array', 'result_id'=>'resource'], - 'ifx_free_blob' => ['bool', 'bid'=>'int'], - 'ifx_free_char' => ['bool', 'bid'=>'int'], - 'ifx_free_result' => ['bool', 'result_id'=>'resource'], - 'ifx_get_blob' => ['string', 'bid'=>'int'], - 'ifx_get_char' => ['string', 'bid'=>'int'], - 'ifx_getsqlca' => ['array', 'result_id'=>'resource'], - 'ifx_htmltbl_result' => ['int', 'result_id'=>'resource', 'html_table_options='=>'string'], - 'ifx_nullformat' => ['bool', 'mode'=>'int'], - 'ifx_num_fields' => ['int', 'result_id'=>'resource'], - 'ifx_num_rows' => ['int', 'result_id'=>'resource'], - 'ifx_pconnect' => ['resource', 'database='=>'string', 'userid='=>'string', 'password='=>'string'], - 'ifx_prepare' => ['resource', 'query'=>'string', 'link_identifier'=>'resource', 'cursor_def='=>'int', 'blobidarray='=>'mixed'], - 'ifx_query' => ['resource', 'query'=>'string', 'link_identifier'=>'resource', 'cursor_type='=>'int', 'blobidarray='=>'mixed'], - 'ifx_textasvarchar' => ['bool', 'mode'=>'int'], - 'ifx_update_blob' => ['bool', 'bid'=>'int', 'content'=>'string'], - 'ifx_update_char' => ['bool', 'bid'=>'int', 'content'=>'string'], - 'ifxus_close_slob' => ['bool', 'bid'=>'int'], - 'ifxus_create_slob' => ['int', 'mode'=>'int'], - 'ifxus_free_slob' => ['bool', 'bid'=>'int'], - 'ifxus_open_slob' => ['int', 'bid'=>'int', 'mode'=>'int'], - 'ifxus_read_slob' => ['string', 'bid'=>'int', 'nbytes'=>'int'], - 'ifxus_seek_slob' => ['int', 'bid'=>'int', 'mode'=>'int', 'offset'=>'int'], - 'ifxus_tell_slob' => ['int', 'bid'=>'int'], - 'ifxus_write_slob' => ['int', 'bid'=>'int', 'content'=>'string'], - 'igbinary_serialize' => ['string|false', 'value'=>'mixed'], - 'igbinary_unserialize' => ['mixed', 'str'=>'string'], - 'ignore_user_abort' => ['int', 'enable='=>'bool'], - 'iis_add_server' => ['int', 'path'=>'string', 'comment'=>'string', 'server_ip'=>'string', 'port'=>'int', 'host_name'=>'string', 'rights'=>'int', 'start_server'=>'int'], - 'iis_get_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'], - 'iis_get_script_map' => ['string', 'server_instance'=>'int', 'virtual_path'=>'string', 'script_extension'=>'string'], - 'iis_get_server_by_comment' => ['int', 'comment'=>'string'], - 'iis_get_server_by_path' => ['int', 'path'=>'string'], - 'iis_get_server_rights' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'], - 'iis_get_service_state' => ['int', 'service_id'=>'string'], - 'iis_remove_server' => ['int', 'server_instance'=>'int'], - 'iis_set_app_settings' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'application_scope'=>'string'], - 'iis_set_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'directory_flags'=>'int'], - 'iis_set_script_map' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'script_extension'=>'string', 'engine_path'=>'string', 'allow_scripting'=>'int'], - 'iis_set_server_rights' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string', 'directory_flags'=>'int'], - 'iis_start_server' => ['int', 'server_instance'=>'int'], - 'iis_start_service' => ['int', 'service_id'=>'string'], - 'iis_stop_server' => ['int', 'server_instance'=>'int'], - 'iis_stop_service' => ['int', 'service_id'=>'string'], - 'image2wbmp' => ['bool', 'im'=>'resource', 'filename='=>'?string', 'threshold='=>'int'], - 'imageObj::pasteImage' => ['void', 'srcImg'=>'imageObj', 'transparentColorHex'=>'int', 'dstX'=>'int', 'dstY'=>'int', 'angle'=>'int'], - 'imageObj::saveImage' => ['int', 'filename'=>'string', 'oMap'=>'mapObj'], - 'imageObj::saveWebImage' => ['string'], - 'image_type_to_extension' => ['string', 'image_type'=>'int', 'include_dot='=>'bool'], - 'image_type_to_mime_type' => ['string', 'image_type'=>'int'], - 'imageaffine' => ['resource|false', 'src'=>'resource', 'affine'=>'array', 'clip='=>'array'], - 'imageaffinematrixconcat' => ['array{0:float,1:float,2:float,3:float,4:float,5:float}|false', 'matrix1'=>'array', 'matrix2'=>'array'], - 'imageaffinematrixget' => ['array{0:float,1:float,2:float,3:float,4:float,5:float}|false', 'type'=>'int', 'options'=>'array|float'], - 'imagealphablending' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'imageantialias' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'imagearc' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int'], - 'imagechar' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - 'imagecharup' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'char'=>'string', 'color'=>'int'], - 'imagecolorallocate' => ['int|false', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'imagecolorallocatealpha' => ['int|false', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'imagecolorat' => ['int|false', 'image'=>'resource', 'x'=>'int', 'y'=>'int'], - 'imagecolorclosest' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'imagecolorclosestalpha' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'imagecolorclosesthwb' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'imagecolordeallocate' => ['bool', 'image'=>'resource', 'color'=>'int'], - 'imagecolorexact' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'imagecolorexactalpha' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'imagecolormatch' => ['bool', 'image1'=>'resource', 'image2'=>'resource'], - 'imagecolorresolve' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'imagecolorresolvealpha' => ['int', 'image'=>'resource', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha'=>'int'], - 'imagecolorset' => ['false|null', 'image'=>'resource', 'color'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'alpha='=>'int'], - 'imagecolorsforindex' => ['array', 'image'=>'resource', 'color'=>'int'], - 'imagecolorstotal' => ['int', 'image'=>'resource'], - 'imagecolortransparent' => ['int', 'image'=>'resource', 'color='=>'int'], - 'imageconvolution' => ['bool', 'image'=>'resource', 'matrix'=>'array', 'divisor'=>'float', 'offset'=>'float'], - 'imagecopy' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'imagecopymerge' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - 'imagecopymergegray' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'src_width'=>'int', 'src_height'=>'int', 'pct'=>'int'], - 'imagecopyresampled' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'imagecopyresized' => ['bool', 'dst_image'=>'resource', 'src_image'=>'resource', 'dst_x'=>'int', 'dst_y'=>'int', 'src_x'=>'int', 'src_y'=>'int', 'dst_width'=>'int', 'dst_height'=>'int', 'src_width'=>'int', 'src_height'=>'int'], - 'imagecreate' => ['resource|false', 'x_size'=>'int', 'y_size'=>'int'], - 'imagecreatefromgd' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromgd2' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromgd2part' => ['resource|false', 'filename'=>'string', 'srcx'=>'int', 'srcy'=>'int', 'width'=>'int', 'height'=>'int'], - 'imagecreatefromgif' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromjpeg' => ['resource|false', 'filename'=>'string'], - 'imagecreatefrompng' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromstring' => ['resource|false', 'image'=>'string'], - 'imagecreatefromwbmp' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromwebp' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromxbm' => ['resource|false', 'filename'=>'string'], - 'imagecreatefromxpm' => ['resource|false', 'filename'=>'string'], - 'imagecreatetruecolor' => ['resource|false', 'x_size'=>'int', 'y_size'=>'int'], - 'imagecrop' => ['resource|false', 'im'=>'resource', 'rect'=>'array'], - 'imagecropauto' => ['resource|false', 'im'=>'resource', 'mode='=>'int', 'threshold='=>'float', 'color='=>'int'], - 'imagedashedline' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'imagedestroy' => ['bool', 'image'=>'resource'], - 'imageellipse' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - 'imagefill' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - 'imagefilledarc' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'start_angle'=>'int', 'end_angle'=>'int', 'color'=>'int', 'style'=>'int'], - 'imagefilledellipse' => ['bool', 'image'=>'resource', 'center_x'=>'int', 'center_y'=>'int', 'width'=>'int', 'height'=>'int', 'color'=>'int'], - 'imagefilledpolygon' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - 'imagefilledrectangle' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'imagefilltoborder' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'border_color'=>'int', 'color'=>'int'], - 'imagefilter' => ['bool', 'image'=>'resource', 'filter'=>'int', '...args='=>'array|int|float|bool'], - 'imageflip' => ['bool', 'image'=>'resource', 'mode'=>'int'], - 'imagefontheight' => ['int', 'font'=>'int'], - 'imagefontwidth' => ['int', 'font'=>'int'], - 'imageftbbox' => ['array|false', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string', 'options='=>'array'], - 'imagefttext' => ['array|false', 'image'=>'resource', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string', 'options='=>'array'], - 'imagegammacorrect' => ['bool', 'image'=>'resource', 'input_gamma'=>'float', 'output_gamma'=>'float'], - 'imagegd' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null'], - 'imagegd2' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'chunk_size='=>'int', 'mode='=>'int'], - 'imagegetclip' => ['array|false', 'im'=>'resource'], - 'imagegif' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null'], - 'imagegrabscreen' => ['false|resource'], - 'imagegrabwindow' => ['false|resource', 'window_handle'=>'int', 'client_area='=>'int'], - 'imageinterlace' => ['int|false', 'image'=>'resource', 'enable='=>'int'], - 'imageistruecolor' => ['bool', 'image'=>'resource'], - 'imagejpeg' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int'], - 'imagelayereffect' => ['bool', 'image'=>'resource', 'effect'=>'int'], - 'imageline' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'imageloadfont' => ['int|false', 'filename'=>'string'], - 'imagepalettecopy' => ['void', 'dst'=>'resource', 'src'=>'resource'], - 'imagepalettetotruecolor' => ['bool', 'image'=>'resource'], - 'imagepng' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int', 'filters='=>'int'], - 'imagepolygon' => ['bool', 'image'=>'resource', 'points'=>'array', 'num_points_or_color'=>'int', 'color'=>'int'], - 'imagerectangle' => ['bool', 'image'=>'resource', 'x1'=>'int', 'y1'=>'int', 'x2'=>'int', 'y2'=>'int', 'color'=>'int'], - 'imagerotate' => ['resource|false', 'src_im'=>'resource', 'angle'=>'float', 'bgdcolor'=>'int', 'ignoretransparent='=>'int'], - 'imagesavealpha' => ['bool', 'image'=>'resource', 'enable'=>'bool'], - 'imagescale' => ['resource|false', 'im'=>'resource', 'new_width'=>'int', 'new_height='=>'int', 'method='=>'int'], - 'imagesetbrush' => ['bool', 'image'=>'resource', 'brush'=>'resource'], - 'imagesetinterpolation' => ['bool', 'image'=>'resource', 'method='=>'int'], - 'imagesetpixel' => ['bool', 'image'=>'resource', 'x'=>'int', 'y'=>'int', 'color'=>'int'], - 'imagesetstyle' => ['bool', 'image'=>'resource', 'style'=>'non-empty-array'], - 'imagesetthickness' => ['bool', 'image'=>'resource', 'thickness'=>'int'], - 'imagesettile' => ['bool', 'image'=>'resource', 'tile'=>'resource'], - 'imagestring' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - 'imagestringup' => ['bool', 'image'=>'resource', 'font'=>'int', 'x'=>'int', 'y'=>'int', 'string'=>'string', 'color'=>'int'], - 'imagesx' => ['int', 'image'=>'resource'], - 'imagesy' => ['int', 'image'=>'resource'], - 'imagetruecolortopalette' => ['bool', 'image'=>'resource', 'dither'=>'bool', 'num_colors'=>'int'], - 'imagettfbbox' => ['false|array', 'size'=>'float', 'angle'=>'float', 'font_filename'=>'string', 'string'=>'string'], - 'imagettftext' => ['false|array', 'image'=>'resource', 'size'=>'float', 'angle'=>'float', 'x'=>'int', 'y'=>'int', 'color'=>'int', 'font_filename'=>'string', 'text'=>'string'], - 'imagetypes' => ['int'], - 'imagewbmp' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'foreground_color='=>'int'], - 'imagewebp' => ['bool', 'image'=>'resource', 'file='=>'string|resource|null', 'quality='=>'int'], - 'imagexbm' => ['bool', 'image'=>'resource', 'filename'=>'?string', 'foreground_color='=>'int'], - 'imap_8bit' => ['string|false', 'string'=>'string'], - 'imap_alerts' => ['array|false'], - 'imap_append' => ['bool', 'imap'=>'resource', 'folder'=>'string', 'message'=>'string', 'options='=>'string', 'internal_date='=>'string'], - 'imap_base64' => ['string|false', 'string'=>'string'], - 'imap_binary' => ['string|false', 'string'=>'string'], - 'imap_body' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'imap_bodystruct' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string'], - 'imap_check' => ['stdClass|false', 'imap'=>'resource'], - 'imap_clearflag_full' => ['bool', 'imap'=>'resource', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'imap_close' => ['bool', 'imap'=>'resource', 'flags='=>'int'], - 'imap_create' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_createmailbox' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_delete' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'flags='=>'int'], - 'imap_deletemailbox' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_errors' => ['array|false'], - 'imap_expunge' => ['bool', 'imap'=>'resource'], - 'imap_fetch_overview' => ['array|false', 'imap'=>'resource', 'sequence'=>'string', 'flags='=>'int'], - 'imap_fetchbody' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - 'imap_fetchheader' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'imap_fetchmime' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'section'=>'string', 'flags='=>'int'], - 'imap_fetchstructure' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'imap_fetchtext' => ['string|false', 'imap'=>'resource', 'message_num'=>'int', 'flags='=>'int'], - 'imap_gc' => ['bool', 'imap'=>'resource', 'flags'=>'int'], - 'imap_get_quota' => ['array|false', 'imap'=>'resource', 'quota_root'=>'string'], - 'imap_get_quotaroot' => ['array|false', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_getacl' => ['array|false', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_getmailboxes' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_getsubscribed' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_header' => ['stdClass|false', 'stream_id'=>'resource', 'msg_no'=>'int', 'from_length='=>'int', 'subject_length='=>'int', 'default_host='=>'string'], - 'imap_headerinfo' => ['stdClass|false', 'imap'=>'resource', 'message_num'=>'int', 'from_length='=>'int', 'subject_length='=>'int', 'default_host='=>'string|null'], - 'imap_headers' => ['array|false', 'imap'=>'resource'], - 'imap_last_error' => ['string|false'], - 'imap_list' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_listmailbox' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_listscan' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'imap_listsubscribed' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_lsub' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string'], - 'imap_mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string', 'cc='=>'string', 'bcc='=>'string', 'return_path='=>'string'], - 'imap_mail_compose' => ['string|false', 'envelope'=>'array', 'bodies'=>'array'], - 'imap_mail_copy' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - 'imap_mail_move' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'mailbox'=>'string', 'flags='=>'int'], - 'imap_mailboxmsginfo' => ['stdClass', 'imap'=>'resource'], - 'imap_mime_header_decode' => ['array|false', 'string'=>'string'], - 'imap_msgno' => ['int', 'imap'=>'resource', 'message_uid'=>'int'], - 'imap_mutf7_to_utf8' => ['string|false', 'string'=>'string'], - 'imap_num_msg' => ['int|false', 'imap'=>'resource'], - 'imap_num_recent' => ['int', 'imap'=>'resource'], - 'imap_open' => ['resource|false', 'mailbox'=>'string', 'user'=>'string', 'password'=>'string', 'flags='=>'int', 'retries='=>'int', 'options='=>'array'], - 'imap_ping' => ['bool', 'imap'=>'resource'], - 'imap_qprint' => ['string|false', 'string'=>'string'], - 'imap_rename' => ['bool', 'imap'=>'resource', 'from'=>'string', 'to'=>'string'], - 'imap_renamemailbox' => ['bool', 'imap'=>'resource', 'from'=>'string', 'to'=>'string'], - 'imap_reopen' => ['bool', 'imap'=>'resource', 'mailbox'=>'string', 'flags='=>'int', 'retries='=>'int'], - 'imap_rfc822_parse_adrlist' => ['array', 'string'=>'string', 'default_hostname'=>'string'], - 'imap_rfc822_parse_headers' => ['stdClass', 'headers'=>'string', 'default_hostname='=>'string'], - 'imap_rfc822_write_address' => ['string|false', 'mailbox'=>'string', 'hostname'=>'string', 'personal'=>'string'], - 'imap_savebody' => ['bool', 'imap'=>'resource', 'file'=>'string|resource', 'message_num'=>'int', 'section='=>'string', 'flags='=>'int'], - 'imap_scan' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'imap_scanmailbox' => ['array|false', 'imap'=>'resource', 'reference'=>'string', 'pattern'=>'string', 'content'=>'string'], - 'imap_search' => ['array|false', 'imap'=>'resource', 'criteria'=>'string', 'flags='=>'int', 'charset='=>'string'], - 'imap_set_quota' => ['bool', 'imap'=>'resource', 'quota_root'=>'string', 'mailbox_size'=>'int'], - 'imap_setacl' => ['bool', 'imap'=>'resource', 'mailbox'=>'string', 'user_id'=>'string', 'rights'=>'string'], - 'imap_setflag_full' => ['bool', 'imap'=>'resource', 'sequence'=>'string', 'flag'=>'string', 'options='=>'int'], - 'imap_sort' => ['array|false', 'imap'=>'resource', 'criteria'=>'int', 'reverse'=>'int', 'flags='=>'int', 'search_criteria='=>'string', 'charset='=>'string'], - 'imap_status' => ['stdClass|false', 'imap'=>'resource', 'mailbox'=>'string', 'flags'=>'int'], - 'imap_subscribe' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_thread' => ['array|false', 'imap'=>'resource', 'flags='=>'int'], - 'imap_timeout' => ['int|bool', 'timeout_type'=>'int', 'timeout='=>'int'], - 'imap_uid' => ['int|false', 'imap'=>'resource', 'message_num'=>'int'], - 'imap_undelete' => ['bool', 'imap'=>'resource', 'message_nums'=>'string', 'flags='=>'int'], - 'imap_unsubscribe' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'], - 'imap_utf7_decode' => ['string|false', 'string'=>'string'], - 'imap_utf7_encode' => ['string', 'string'=>'string'], - 'imap_utf8' => ['string', 'mime_encoded_text'=>'string'], - 'imap_utf8_to_mutf7' => ['string|false', 'string'=>'string'], - 'implode' => ['string', 'separator'=>'string', 'array'=>'array'], - 'implode\'1' => ['string', 'separator'=>'array'], - 'import_request_variables' => ['bool', 'types'=>'string', 'prefix='=>'string'], - 'in_array' => ['bool', 'needle'=>'mixed', 'haystack'=>'array', 'strict='=>'bool'], - 'inclued_get_data' => ['array'], - 'inet_ntop' => ['string|false', 'ip'=>'string'], - 'inet_pton' => ['string|false', 'ip'=>'string'], - 'inflate_add' => ['string|false', 'context'=>'resource', 'data'=>'string', 'flush_mode='=>'int'], - 'inflate_get_read_len' => ['int', 'context'=>'resource'], - 'inflate_get_status' => ['int', 'context'=>'resource'], - 'inflate_init' => ['resource|false', 'encoding'=>'int', 'options='=>'array'], - 'ingres_autocommit' => ['bool', 'link'=>'resource'], - 'ingres_autocommit_state' => ['bool', 'link'=>'resource'], - 'ingres_charset' => ['string', 'link'=>'resource'], - 'ingres_close' => ['bool', 'link'=>'resource'], - 'ingres_commit' => ['bool', 'link'=>'resource'], - 'ingres_connect' => ['resource', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'options='=>'array'], - 'ingres_cursor' => ['string', 'result'=>'resource'], - 'ingres_errno' => ['int', 'link='=>'resource'], - 'ingres_error' => ['string', 'link='=>'resource'], - 'ingres_errsqlstate' => ['string', 'link='=>'resource'], - 'ingres_escape_string' => ['string', 'link'=>'resource', 'source_string'=>'string'], - 'ingres_execute' => ['bool', 'result'=>'resource', 'params='=>'array', 'types='=>'string'], - 'ingres_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], - 'ingres_fetch_assoc' => ['array', 'result'=>'resource'], - 'ingres_fetch_object' => ['object', 'result'=>'resource', 'result_type='=>'int'], - 'ingres_fetch_proc_return' => ['int', 'result'=>'resource'], - 'ingres_fetch_row' => ['array', 'result'=>'resource'], - 'ingres_field_length' => ['int', 'result'=>'resource', 'index'=>'int'], - 'ingres_field_name' => ['string', 'result'=>'resource', 'index'=>'int'], - 'ingres_field_nullable' => ['bool', 'result'=>'resource', 'index'=>'int'], - 'ingres_field_precision' => ['int', 'result'=>'resource', 'index'=>'int'], - 'ingres_field_scale' => ['int', 'result'=>'resource', 'index'=>'int'], - 'ingres_field_type' => ['string', 'result'=>'resource', 'index'=>'int'], - 'ingres_free_result' => ['bool', 'result'=>'resource'], - 'ingres_next_error' => ['bool', 'link='=>'resource'], - 'ingres_num_fields' => ['int', 'result'=>'resource'], - 'ingres_num_rows' => ['int', 'result'=>'resource'], - 'ingres_pconnect' => ['resource', 'database='=>'string', 'username='=>'string', 'password='=>'string', 'options='=>'array'], - 'ingres_prepare' => ['mixed', 'link'=>'resource', 'query'=>'string'], - 'ingres_query' => ['mixed', 'link'=>'resource', 'query'=>'string', 'params='=>'array', 'types='=>'string'], - 'ingres_result_seek' => ['bool', 'result'=>'resource', 'position'=>'int'], - 'ingres_rollback' => ['bool', 'link'=>'resource'], - 'ingres_set_environment' => ['bool', 'link'=>'resource', 'options'=>'array'], - 'ingres_unbuffered_query' => ['mixed', 'link'=>'resource', 'query'=>'string', 'params='=>'array', 'types='=>'string'], - 'ini_alter' => ['string|false', 'option'=>'string', 'value'=>'string'], - 'ini_get' => ['string|false', 'option'=>'string'], - 'ini_get_all' => ['array|false', 'extension='=>'?string', 'details='=>'bool'], - 'ini_restore' => ['void', 'option'=>'string'], - 'ini_set' => ['string|false', 'option'=>'string', 'value'=>'string'], - 'inotify_add_watch' => ['int|false', 'inotify_instance'=>'resource', 'pathname'=>'string', 'mask'=>'int'], - 'inotify_init' => ['resource|false'], - 'inotify_queue_len' => ['int', 'inotify_instance'=>'resource'], - 'inotify_read' => ['array{wd: int, mask: int, cookie: int, name: string}[]|false', 'inotify_instance'=>'resource'], - 'inotify_rm_watch' => ['bool', 'inotify_instance'=>'resource', 'watch_descriptor'=>'int'], - 'intdiv' => ['int', 'num1'=>'int', 'num2'=>'int'], - 'interface_exists' => ['bool', 'interface'=>'string', 'autoload='=>'bool'], - 'intl_error_name' => ['string', 'errorCode'=>'int'], - 'intl_get_error_code' => ['int'], - 'intl_get_error_message' => ['string'], - 'intl_is_failure' => ['bool', 'errorCode'=>'int'], - 'intlcal_add' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int', 'value'=>'int'], - 'intlcal_after' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], - 'intlcal_before' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], - 'intlcal_clear' => ['bool', 'calendar'=>'IntlCalendar', 'field='=>'?int'], - 'intlcal_create_instance' => ['?IntlCalendar', 'timezone='=>'mixed', 'locale='=>'?string'], - 'intlcal_equals' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], - 'intlcal_field_difference' => ['int|false', 'calendar'=>'IntlCalendar', 'timestamp'=>'float', 'field'=>'int'], - 'intlcal_from_date_time' => ['?IntlCalendar', 'datetime'=>'DateTime|string', 'locale='=>'?string'], - 'intlcal_get' => ['int|false', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_actual_maximum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_actual_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_available_locales' => ['array'], - 'intlcal_get_day_of_week_type' => ['int', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], - 'intlcal_get_first_day_of_week' => ['int', 'calendar'=>'IntlCalendar'], - 'intlcal_get_greatest_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_keyword_values_for_locale' => ['IntlIterator|false', 'keyword'=>'string', 'locale'=>'string', 'onlyCommon'=>'bool'], - 'intlcal_get_least_maximum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_locale' => ['string', 'calendar'=>'IntlCalendar', 'type'=>'int'], - 'intlcal_get_maximum' => ['int|false', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_minimal_days_in_first_week' => ['int', 'calendar'=>'IntlCalendar'], - 'intlcal_get_minimum' => ['int', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_get_now' => ['float'], - 'intlcal_get_repeated_wall_time_option' => ['int', 'calendar'=>'IntlCalendar'], - 'intlcal_get_skipped_wall_time_option' => ['int', 'calendar'=>'IntlCalendar'], - 'intlcal_get_time' => ['float', 'calendar'=>'IntlCalendar'], - 'intlcal_get_time_zone' => ['IntlTimeZone', 'calendar'=>'IntlCalendar'], - 'intlcal_get_type' => ['string', 'calendar'=>'IntlCalendar'], - 'intlcal_get_weekend_transition' => ['int|false', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], - 'intlcal_in_daylight_time' => ['bool', 'calendar'=>'IntlCalendar'], - 'intlcal_is_equivalent_to' => ['bool', 'calendar'=>'IntlCalendar', 'other'=>'IntlCalendar'], - 'intlcal_is_lenient' => ['bool', 'calendar'=>'IntlCalendar'], - 'intlcal_is_set' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int'], - 'intlcal_is_weekend' => ['bool', 'calendar'=>'IntlCalendar', 'timestamp='=>'?float'], - 'intlcal_roll' => ['bool', 'calendar'=>'IntlCalendar', 'field'=>'int', 'value'=>'mixed'], - 'intlcal_set' => ['bool', 'calendar'=>'IntlCalendar', 'year'=>'int', 'month'=>'int'], - 'intlcal_set\'1' => ['bool', 'calendar'=>'IntlCalendar', 'year'=>'int', 'month'=>'int', 'dayOfMonth='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], - 'intlcal_set_first_day_of_week' => ['bool', 'calendar'=>'IntlCalendar', 'dayOfWeek'=>'int'], - 'intlcal_set_lenient' => ['bool', 'calendar'=>'IntlCalendar', 'lenient'=>'bool'], - 'intlcal_set_repeated_wall_time_option' => ['true', 'calendar'=>'IntlCalendar', 'option'=>'int'], - 'intlcal_set_skipped_wall_time_option' => ['true', 'calendar'=>'IntlCalendar', 'option'=>'int'], - 'intlcal_set_time' => ['bool', 'calendar'=>'IntlCalendar', 'timestamp'=>'float'], - 'intlcal_set_time_zone' => ['bool', 'calendar'=>'IntlCalendar', 'timezone'=>'mixed'], - 'intlcal_to_date_time' => ['DateTime|false', 'calendar'=>'IntlCalendar'], - 'intlgregcal_create_instance' => ['?IntlGregorianCalendar', 'timezoneOrYear='=>'IntlTimeZone|DateTimeZone|string|null', 'localeOrMonth='=>'string|int|null', 'day='=>'int', 'hour='=>'int', 'minute='=>'int', 'second='=>'int'], - 'intlgregcal_get_gregorian_change' => ['float', 'calendar'=>'IntlGregorianCalendar'], - 'intlgregcal_is_leap_year' => ['bool', 'calendar'=>'IntlGregorianCalendar', 'year'=>'int'], - 'intlgregcal_set_gregorian_change' => ['bool', 'calendar'=>'IntlGregorianCalendar', 'timestamp'=>'float'], - 'intltz_count_equivalent_ids' => ['int', 'timezoneId'=>'string'], - 'intltz_create_enumeration' => ['IntlIterator|false', 'countryOrRawOffset='=>'IntlTimeZone|string|int|float|null'], - 'intltz_create_time_zone' => ['?IntlTimeZone', 'timezoneId'=>'string'], - 'intltz_from_date_time_zone' => ['?IntlTimeZone', 'timezone'=>'DateTimeZone'], - 'intltz_getGMT' => ['IntlTimeZone'], - 'intltz_get_canonical_id' => ['string|false', 'timezoneId'=>'string', '&isSystemId='=>'bool'], - 'intltz_get_display_name' => ['string|false', 'timezone'=>'IntlTimeZone', 'dst='=>'bool', 'style='=>'int', 'locale='=>'?string'], - 'intltz_get_dst_savings' => ['int', 'timezone'=>'IntlTimeZone'], - 'intltz_get_equivalent_id' => ['string', 'timezoneId'=>'string', 'offset'=>'int'], - 'intltz_get_error_code' => ['int', 'timezone'=>'IntlTimeZone'], - 'intltz_get_error_message' => ['string', 'timezone'=>'IntlTimeZone'], - 'intltz_get_id' => ['string', 'timezone'=>'IntlTimeZone'], - 'intltz_get_offset' => ['bool', 'timezone'=>'IntlTimeZone', 'timestamp'=>'float', 'local'=>'bool', '&rawOffset'=>'int', '&dstOffset'=>'int'], - 'intltz_get_raw_offset' => ['int', 'timezone'=>'IntlTimeZone'], - 'intltz_get_tz_data_version' => ['string', 'object'=>'IntlTimeZone'], - 'intltz_has_same_rules' => ['bool', 'timezone'=>'IntlTimeZone', 'other'=>'IntlTimeZone'], - 'intltz_to_date_time_zone' => ['DateTimeZone', 'timezone'=>'IntlTimeZone'], - 'intltz_use_daylight_time' => ['bool', 'timezone'=>'IntlTimeZone'], - 'intlz_create_default' => ['IntlTimeZone'], - 'intval' => ['int', 'value'=>'mixed', 'base='=>'int'], - 'ip2long' => ['int|false', 'ip'=>'string'], - 'iptcembed' => ['string|bool', 'iptc_data'=>'string', 'filename'=>'string', 'spool='=>'int'], - 'iptcparse' => ['array|false', 'iptc_block'=>'string'], - 'is_a' => ['bool', 'object_or_class'=>'mixed', 'class'=>'string', 'allow_string='=>'bool'], - 'is_array' => ['bool', 'value'=>'mixed'], - 'is_bool' => ['bool', 'value'=>'mixed'], - 'is_callable' => ['bool', 'value'=>'callable|mixed', 'syntax_only='=>'bool', '&w_callable_name='=>'string'], - 'is_dir' => ['bool', 'filename'=>'string'], - 'is_double' => ['bool', 'value'=>'mixed'], - 'is_executable' => ['bool', 'filename'=>'string'], - 'is_file' => ['bool', 'filename'=>'string'], - 'is_finite' => ['bool', 'num'=>'float'], - 'is_float' => ['bool', 'value'=>'mixed'], - 'is_infinite' => ['bool', 'num'=>'float'], - 'is_int' => ['bool', 'value'=>'mixed'], - 'is_integer' => ['bool', 'value'=>'mixed'], - 'is_link' => ['bool', 'filename'=>'string'], - 'is_long' => ['bool', 'value'=>'mixed'], - 'is_nan' => ['bool', 'num'=>'float'], - 'is_null' => ['bool', 'value'=>'mixed'], - 'is_numeric' => ['bool', 'value'=>'mixed'], - 'is_object' => ['bool', 'value'=>'mixed'], - 'is_readable' => ['bool', 'filename'=>'string'], - 'is_real' => ['bool', 'value'=>'mixed'], - 'is_resource' => ['bool', 'value'=>'mixed'], - 'is_scalar' => ['bool', 'value'=>'mixed'], - 'is_soap_fault' => ['bool', 'object'=>'mixed'], - 'is_string' => ['bool', 'value'=>'mixed'], - 'is_subclass_of' => ['bool', 'object_or_class'=>'object|string', 'class'=>'class-string', 'allow_string='=>'bool'], - 'is_tainted' => ['bool', 'string'=>'string'], - 'is_uploaded_file' => ['bool', 'filename'=>'string'], - 'is_writable' => ['bool', 'filename'=>'string'], - 'is_writeable' => ['bool', 'filename'=>'string'], - 'isset' => ['bool', 'value'=>'mixed', '...rest='=>'mixed'], - 'iterator_apply' => ['0|positive-int', 'iterator'=>'Traversable', 'callback'=>'callable(mixed):bool', 'args='=>'?array'], - 'iterator_count' => ['0|positive-int', 'iterator'=>'Traversable'], - 'iterator_to_array' => ['array', 'iterator'=>'Traversable', 'preserve_keys='=>'bool'], - 'java_last_exception_clear' => ['void'], - 'java_last_exception_get' => ['object'], - 'java_reload' => ['array', 'new_jarpath'=>'string'], - 'java_require' => ['array', 'new_classpath'=>'string'], - 'java_set_encoding' => ['array', 'encoding'=>'string'], - 'java_set_ignore_case' => ['void', 'ignore'=>'bool'], - 'java_throw_exceptions' => ['void', 'throw'=>'bool'], - 'jddayofweek' => ['string|int', 'julian_day'=>'int', 'mode='=>'int'], - 'jdmonthname' => ['string', 'julian_day'=>'int', 'mode'=>'int'], - 'jdtofrench' => ['string', 'julian_day'=>'int'], - 'jdtogregorian' => ['string', 'julian_day'=>'int'], - 'jdtojewish' => ['string', 'julian_day'=>'int', 'hebrew='=>'bool', 'flags='=>'int'], - 'jdtojulian' => ['string', 'julian_day'=>'int'], - 'jdtounix' => ['int|false', 'julian_day'=>'int'], - 'jewishtojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'jobqueue_license_info' => ['array'], - 'join' => ['string', 'separator'=>'string', 'array'=>'array'], - 'join\'1' => ['string', 'separator'=>'array'], - 'jpeg2wbmp' => ['bool', 'jpegname'=>'string', 'wbmpname'=>'string', 'dest_height'=>'int', 'dest_width'=>'int', 'threshold'=>'int'], - 'json_decode' => ['mixed', 'json'=>'string', 'associative='=>'bool', 'depth='=>'int', 'flags='=>'int'], - 'json_encode' => ['non-empty-string|false', 'value'=>'mixed', 'flags='=>'int', 'depth='=>'int'], - 'json_last_error' => ['int'], - 'json_last_error_msg' => ['string'], - 'judy_type' => ['int', 'array'=>'judy'], - 'judy_version' => ['string'], - 'juliantojd' => ['int', 'month'=>'int', 'day'=>'int', 'year'=>'int'], - 'kadm5_chpass_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'password'=>'string'], - 'kadm5_create_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'password='=>'string', 'options='=>'array'], - 'kadm5_delete_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string'], - 'kadm5_destroy' => ['bool', 'handle'=>'resource'], - 'kadm5_flush' => ['bool', 'handle'=>'resource'], - 'kadm5_get_policies' => ['array', 'handle'=>'resource'], - 'kadm5_get_principal' => ['array', 'handle'=>'resource', 'principal'=>'string'], - 'kadm5_get_principals' => ['array', 'handle'=>'resource'], - 'kadm5_init_with_password' => ['resource', 'admin_server'=>'string', 'realm'=>'string', 'principal'=>'string', 'password'=>'string'], - 'kadm5_modify_principal' => ['bool', 'handle'=>'resource', 'principal'=>'string', 'options'=>'array'], - 'key' => ['int|string|null', 'array'=>'array|object'], - 'key_exists' => ['bool', 'key'=>'string|int', 'array'=>'array'], - 'krsort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - 'ksort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - 'labelObj::__construct' => ['void'], - 'labelObj::convertToString' => ['string'], - 'labelObj::deleteStyle' => ['int', 'index'=>'int'], - 'labelObj::free' => ['void'], - 'labelObj::getBinding' => ['string', 'labelbinding'=>'mixed'], - 'labelObj::getExpressionString' => ['string'], - 'labelObj::getStyle' => ['styleObj', 'index'=>'int'], - 'labelObj::getTextString' => ['string'], - 'labelObj::moveStyleDown' => ['int', 'index'=>'int'], - 'labelObj::moveStyleUp' => ['int', 'index'=>'int'], - 'labelObj::removeBinding' => ['int', 'labelbinding'=>'mixed'], - 'labelObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'labelObj::setBinding' => ['int', 'labelbinding'=>'mixed', 'value'=>'string'], - 'labelObj::setExpression' => ['int', 'expression'=>'string'], - 'labelObj::setText' => ['int', 'text'=>'string'], - 'labelObj::updateFromString' => ['int', 'snippet'=>'string'], - 'labelcacheObj::freeCache' => ['bool'], - 'layerObj::addFeature' => ['int', 'shape'=>'shapeObj'], - 'layerObj::applySLD' => ['int', 'sldxml'=>'string', 'namedlayer'=>'string'], - 'layerObj::applySLDURL' => ['int', 'sldurl'=>'string', 'namedlayer'=>'string'], - 'layerObj::clearProcessing' => ['void'], - 'layerObj::close' => ['void'], - 'layerObj::convertToString' => ['string'], - 'layerObj::draw' => ['int', 'image'=>'imageObj'], - 'layerObj::drawQuery' => ['int', 'image'=>'imageObj'], - 'layerObj::free' => ['void'], - 'layerObj::generateSLD' => ['string'], - 'layerObj::getClass' => ['classObj', 'classIndex'=>'int'], - 'layerObj::getClassIndex' => ['int', 'shape'=>'', 'classgroup'=>'', 'numclasses'=>''], - 'layerObj::getExtent' => ['rectObj'], - 'layerObj::getFilterString' => ['?string'], - 'layerObj::getGridIntersectionCoordinates' => ['array'], - 'layerObj::getItems' => ['array'], - 'layerObj::getMetaData' => ['int', 'name'=>'string'], - 'layerObj::getNumResults' => ['int'], - 'layerObj::getProcessing' => ['array'], - 'layerObj::getProjection' => ['string'], - 'layerObj::getResult' => ['resultObj', 'index'=>'int'], - 'layerObj::getResultsBounds' => ['rectObj'], - 'layerObj::getShape' => ['shapeObj', 'result'=>'resultObj'], - 'layerObj::getWMSFeatureInfoURL' => ['string', 'clickX'=>'int', 'clickY'=>'int', 'featureCount'=>'int', 'infoFormat'=>'string'], - 'layerObj::isVisible' => ['bool'], - 'layerObj::moveclassdown' => ['int', 'index'=>'int'], - 'layerObj::moveclassup' => ['int', 'index'=>'int'], - 'layerObj::ms_newLayerObj' => ['layerObj', 'map'=>'mapObj', 'layer'=>'layerObj'], - 'layerObj::nextShape' => ['shapeObj'], - 'layerObj::open' => ['int'], - 'layerObj::queryByAttributes' => ['int', 'qitem'=>'string', 'qstring'=>'string', 'mode'=>'int'], - 'layerObj::queryByFeatures' => ['int', 'slayer'=>'int'], - 'layerObj::queryByPoint' => ['int', 'point'=>'pointObj', 'mode'=>'int', 'buffer'=>'float'], - 'layerObj::queryByRect' => ['int', 'rect'=>'rectObj'], - 'layerObj::queryByShape' => ['int', 'shape'=>'shapeObj'], - 'layerObj::removeClass' => ['?classObj', 'index'=>'int'], - 'layerObj::removeMetaData' => ['int', 'name'=>'string'], - 'layerObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'layerObj::setConnectionType' => ['int', 'connectiontype'=>'int', 'plugin_library'=>'string'], - 'layerObj::setFilter' => ['int', 'expression'=>'string'], - 'layerObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], - 'layerObj::setProjection' => ['int', 'proj_params'=>'string'], - 'layerObj::setWKTProjection' => ['int', 'proj_params'=>'string'], - 'layerObj::updateFromString' => ['int', 'snippet'=>'string'], - 'lcfirst' => ['string', 'string'=>'string'], - 'lcg_value' => ['float'], - 'lchgrp' => ['bool', 'filename'=>'string', 'group'=>'string|int'], - 'lchown' => ['bool', 'filename'=>'string', 'user'=>'string|int'], - 'ldap_8859_to_t61' => ['string', 'value'=>'string'], - 'ldap_add' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'ldap_add_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'ldap_bind' => ['bool', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null'], - 'ldap_bind_ext' => ['resource|false', 'ldap'=>'resource', 'dn='=>'string|null', 'password='=>'string|null', 'controls='=>'array'], - 'ldap_close' => ['bool', 'ldap'=>'resource'], - 'ldap_compare' => ['bool|int', 'ldap'=>'resource', 'dn'=>'string', 'attribute'=>'string', 'value'=>'string'], - 'ldap_connect' => ['resource|false', 'uri='=>'?string', 'port='=>'int', 'wallet='=>'string', 'password='=>'string', 'auth_mode='=>'int'], - 'ldap_control_paged_result' => ['bool', 'link_identifier'=>'resource', 'pagesize'=>'int', 'iscritical='=>'bool', 'cookie='=>'string'], - 'ldap_control_paged_result_response' => ['bool', 'link_identifier'=>'resource', 'result_identifier'=>'resource', '&w_cookie'=>'string', '&w_estimated'=>'int'], - 'ldap_count_entries' => ['int', 'ldap'=>'resource', 'result'=>'resource'], - 'ldap_delete' => ['bool', 'ldap'=>'resource', 'dn'=>'string'], - 'ldap_delete_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'controls='=>'array'], - 'ldap_dn2ufn' => ['string|false', 'dn'=>'string'], - 'ldap_err2str' => ['string', 'errno'=>'int'], - 'ldap_errno' => ['int', 'ldap'=>'resource'], - 'ldap_error' => ['string', 'ldap'=>'resource'], - 'ldap_escape' => ['string', 'value'=>'string', 'ignore='=>'string', 'flags='=>'int'], - 'ldap_explode_dn' => ['array|false', 'dn'=>'string', 'with_attrib'=>'int'], - 'ldap_first_attribute' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_first_entry' => ['resource|false', 'ldap'=>'resource', 'result'=>'resource'], - 'ldap_first_reference' => ['resource|false', 'ldap'=>'resource', 'result'=>'resource'], - 'ldap_free_result' => ['bool', 'ldap'=>'resource'], - 'ldap_get_attributes' => ['array', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_get_dn' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_get_entries' => ['array|false', 'ldap'=>'resource', 'result'=>'resource'], - 'ldap_get_option' => ['bool', 'ldap'=>'resource', 'option'=>'int', '&w_value='=>'array|string|int'], - 'ldap_get_values' => ['array|false', 'ldap'=>'resource', 'entry'=>'resource', 'attribute'=>'string'], - 'ldap_get_values_len' => ['array|false', 'ldap'=>'resource', 'entry'=>'resource', 'attribute'=>'string'], - 'ldap_list' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'ldap_mod_add' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'ldap_mod_add_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'ldap_mod_del' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'ldap_mod_del_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'ldap_mod_replace' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'ldap_mod_replace_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'], - 'ldap_modify' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array'], - 'ldap_modify_batch' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'modifications_info'=>'array'], - 'ldap_next_attribute' => ['string|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_next_entry' => ['resource|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_next_reference' => ['resource|false', 'ldap'=>'resource', 'entry'=>'resource'], - 'ldap_parse_reference' => ['bool', 'ldap'=>'resource', 'entry'=>'resource', '&w_referrals'=>'array'], - 'ldap_parse_result' => ['bool', 'ldap'=>'resource', 'result'=>'resource', '&w_error_code'=>'int', '&w_matched_dn='=>'string', '&w_error_message='=>'string', '&w_referrals='=>'array', '&w_controls='=>'array'], - 'ldap_read' => ['resource|false', 'ldap'=>'resource|array', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'ldap_rename' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool'], - 'ldap_rename_ext' => ['resource|false', 'ldap'=>'resource', 'dn'=>'string', 'new_rdn'=>'string', 'new_parent'=>'string', 'delete_old_rdn'=>'bool', 'controls='=>'array'], - 'ldap_sasl_bind' => ['bool', 'ldap'=>'resource', 'dn='=>'string', 'password='=>'string', 'mech='=>'string', 'realm='=>'string', 'authc_id='=>'string', 'authz_id='=>'string', 'props='=>'string'], - 'ldap_search' => ['resource[]|resource|false', 'ldap'=>'resource|resource[]', 'base'=>'array|string', 'filter'=>'array|string', 'attributes='=>'array', 'attributes_only='=>'int', 'sizelimit='=>'int', 'timelimit='=>'int', 'deref='=>'int'], - 'ldap_set_option' => ['bool', 'ldap'=>'resource|null', 'option'=>'int', 'value'=>'mixed'], - 'ldap_set_rebind_proc' => ['bool', 'ldap'=>'resource', 'callback'=>'callable'], - 'ldap_sort' => ['bool', 'link_identifier'=>'resource', 'result_identifier'=>'resource', 'sortfilter'=>'string'], - 'ldap_start_tls' => ['bool', 'ldap'=>'resource'], - 'ldap_t61_to_8859' => ['string', 'value'=>'string'], - 'ldap_unbind' => ['bool', 'ldap'=>'resource'], - 'leak' => ['', 'num_bytes'=>'int'], - 'leak_variable' => ['', 'variable'=>'', 'leak_data'=>'bool'], - 'legendObj::convertToString' => ['string'], - 'legendObj::free' => ['void'], - 'legendObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'legendObj::updateFromString' => ['int', 'snippet'=>'string'], - 'levenshtein' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'levenshtein\'1' => ['int', 'string1'=>'string', 'string2'=>'string', 'insertion_cost'=>'int', 'repetition_cost'=>'int', 'deletion_cost'=>'int'], - 'libxml_clear_errors' => ['void'], - 'libxml_disable_entity_loader' => ['bool', 'disable='=>'bool'], - 'libxml_get_errors' => ['list'], - 'libxml_get_last_error' => ['LibXMLError|false'], - 'libxml_set_external_entity_loader' => ['bool', 'resolver_function'=>'(callable(string,string,array{directory:?string,intSubName:?string,extSubURI:?string,extSubSystem:?string}):(resource|string|null))|null'], - 'libxml_set_streams_context' => ['void', 'context'=>'resource'], - 'libxml_use_internal_errors' => ['bool', 'use_errors='=>'bool'], - 'lineObj::__construct' => ['void'], - 'lineObj::add' => ['int', 'point'=>'pointObj'], - 'lineObj::addXY' => ['int', 'x'=>'float', 'y'=>'float', 'm'=>'float'], - 'lineObj::addXYZ' => ['int', 'x'=>'float', 'y'=>'float', 'z'=>'float', 'm'=>'float'], - 'lineObj::ms_newLineObj' => ['lineObj'], - 'lineObj::point' => ['pointObj', 'i'=>'int'], - 'lineObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], - 'link' => ['bool', 'target'=>'string', 'link'=>'string'], - 'linkinfo' => ['int|false', 'path'=>'string'], - 'litespeed_request_headers' => ['array'], - 'litespeed_response_headers' => ['array'], - 'locale_accept_from_http' => ['string|false', 'header'=>'string'], - 'locale_canonicalize' => ['?string', 'locale'=>'string'], - 'locale_compose' => ['string|false', 'subtags'=>'array'], - 'locale_filter_matches' => ['?bool', 'languageTag'=>'string', 'locale'=>'string', 'canonicalize='=>'bool'], - 'locale_get_all_variants' => ['?array', 'locale'=>'string'], - 'locale_get_default' => ['string'], - 'locale_get_display_language' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'locale_get_display_name' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'locale_get_display_region' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'locale_get_display_script' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'locale_get_display_variant' => ['string', 'locale'=>'string', 'displayLocale='=>'string'], - 'locale_get_keywords' => ['array|false|null', 'locale'=>'string'], - 'locale_get_primary_language' => ['?string', 'locale'=>'string'], - 'locale_get_region' => ['?string', 'locale'=>'string'], - 'locale_get_script' => ['?string', 'locale'=>'string'], - 'locale_lookup' => ['?string', 'languageTag'=>'array', 'locale'=>'string', 'canonicalize='=>'bool', 'defaultLocale='=>'string'], - 'locale_parse' => ['?array', 'locale'=>'string'], - 'locale_set_default' => ['bool', 'locale'=>'string'], - 'localeconv' => ['array'], - 'localtime' => ['array', 'timestamp='=>'int', 'associative='=>'bool'], - 'log' => ['float', 'num'=>'float', 'base='=>'float'], - 'log10' => ['float', 'num'=>'float'], - 'log1p' => ['float', 'num'=>'float'], - 'long2ip' => ['string', 'ip'=>'int'], - 'lstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'filename'=>'string'], - 'ltrim' => ['string', 'string'=>'string', 'characters='=>'string'], - 'lzf_compress' => ['string', 'data'=>'string'], - 'lzf_decompress' => ['string', 'data'=>'string'], - 'lzf_optimized_for' => ['int'], - 'magic_quotes_runtime' => ['bool', 'new_setting'=>'bool'], - 'mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string'], - 'mailparse_determine_best_xfer_encoding' => ['string', 'fp'=>'resource'], - 'mailparse_msg_create' => ['resource'], - 'mailparse_msg_extract_part' => ['void', 'mimemail'=>'resource', 'msgbody'=>'string', 'callbackfunc='=>'callable'], - 'mailparse_msg_extract_part_file' => ['string', 'mimemail'=>'resource', 'filename'=>'mixed', 'callbackfunc='=>'callable'], - 'mailparse_msg_extract_whole_part_file' => ['string', 'mimemail'=>'resource', 'filename'=>'string', 'callbackfunc='=>'callable'], - 'mailparse_msg_free' => ['bool', 'mimemail'=>'resource'], - 'mailparse_msg_get_part' => ['resource', 'mimemail'=>'resource', 'mimesection'=>'string'], - 'mailparse_msg_get_part_data' => ['array', 'mimemail'=>'resource'], - 'mailparse_msg_get_structure' => ['array', 'mimemail'=>'resource'], - 'mailparse_msg_parse' => ['bool', 'mimemail'=>'resource', 'data'=>'string'], - 'mailparse_msg_parse_file' => ['resource|false', 'filename'=>'string'], - 'mailparse_rfc822_parse_addresses' => ['array', 'addresses'=>'string'], - 'mailparse_stream_encode' => ['bool', 'sourcefp'=>'resource', 'destfp'=>'resource', 'encoding'=>'string'], - 'mailparse_uudecode_all' => ['array', 'fp'=>'resource'], - 'mapObj::__construct' => ['void', 'map_file_name'=>'string', 'new_map_path'=>'string'], - 'mapObj::appendOutputFormat' => ['int', 'outputFormat'=>'outputformatObj'], - 'mapObj::applySLD' => ['int', 'sldxml'=>'string'], - 'mapObj::applySLDURL' => ['int', 'sldurl'=>'string'], - 'mapObj::applyconfigoptions' => ['int'], - 'mapObj::convertToString' => ['string'], - 'mapObj::draw' => ['?imageObj'], - 'mapObj::drawLabelCache' => ['int', 'image'=>'imageObj'], - 'mapObj::drawLegend' => ['imageObj'], - 'mapObj::drawQuery' => ['?imageObj'], - 'mapObj::drawReferenceMap' => ['imageObj'], - 'mapObj::drawScaleBar' => ['imageObj'], - 'mapObj::embedLegend' => ['int', 'image'=>'imageObj'], - 'mapObj::embedScalebar' => ['int', 'image'=>'imageObj'], - 'mapObj::free' => ['void'], - 'mapObj::generateSLD' => ['string'], - 'mapObj::getAllGroupNames' => ['array'], - 'mapObj::getAllLayerNames' => ['array'], - 'mapObj::getColorbyIndex' => ['colorObj', 'iCloIndex'=>'int'], - 'mapObj::getConfigOption' => ['string', 'key'=>'string'], - 'mapObj::getLabel' => ['labelcacheMemberObj', 'index'=>'int'], - 'mapObj::getLayer' => ['layerObj', 'index'=>'int'], - 'mapObj::getLayerByName' => ['layerObj', 'layer_name'=>'string'], - 'mapObj::getLayersDrawingOrder' => ['array'], - 'mapObj::getLayersIndexByGroup' => ['array', 'groupname'=>'string'], - 'mapObj::getMetaData' => ['int', 'name'=>'string'], - 'mapObj::getNumSymbols' => ['int'], - 'mapObj::getOutputFormat' => ['?outputformatObj', 'index'=>'int'], - 'mapObj::getProjection' => ['string'], - 'mapObj::getSymbolByName' => ['int', 'symbol_name'=>'string'], - 'mapObj::getSymbolObjectById' => ['symbolObj', 'symbolid'=>'int'], - 'mapObj::loadMapContext' => ['int', 'filename'=>'string', 'unique_layer_name'=>'bool'], - 'mapObj::loadOWSParameters' => ['int', 'request'=>'OwsrequestObj', 'version'=>'string'], - 'mapObj::moveLayerDown' => ['int', 'layerindex'=>'int'], - 'mapObj::moveLayerUp' => ['int', 'layerindex'=>'int'], - 'mapObj::ms_newMapObjFromString' => ['mapObj', 'map_file_string'=>'string', 'new_map_path'=>'string'], - 'mapObj::offsetExtent' => ['int', 'x'=>'float', 'y'=>'float'], - 'mapObj::owsDispatch' => ['int', 'request'=>'OwsrequestObj'], - 'mapObj::prepareImage' => ['imageObj'], - 'mapObj::prepareQuery' => ['void'], - 'mapObj::processLegendTemplate' => ['string', 'params'=>'array'], - 'mapObj::processQueryTemplate' => ['string', 'params'=>'array', 'generateimages'=>'bool'], - 'mapObj::processTemplate' => ['string', 'params'=>'array', 'generateimages'=>'bool'], - 'mapObj::queryByFeatures' => ['int', 'slayer'=>'int'], - 'mapObj::queryByIndex' => ['int', 'layerindex'=>'', 'tileindex'=>'', 'shapeindex'=>'', 'addtoquery'=>''], - 'mapObj::queryByPoint' => ['int', 'point'=>'pointObj', 'mode'=>'int', 'buffer'=>'float'], - 'mapObj::queryByRect' => ['int', 'rect'=>'rectObj'], - 'mapObj::queryByShape' => ['int', 'shape'=>'shapeObj'], - 'mapObj::removeLayer' => ['layerObj', 'nIndex'=>'int'], - 'mapObj::removeMetaData' => ['int', 'name'=>'string'], - 'mapObj::removeOutputFormat' => ['int', 'name'=>'string'], - 'mapObj::save' => ['int', 'filename'=>'string'], - 'mapObj::saveMapContext' => ['int', 'filename'=>'string'], - 'mapObj::saveQuery' => ['int', 'filename'=>'string', 'results'=>'int'], - 'mapObj::scaleExtent' => ['int', 'zoomfactor'=>'float', 'minscaledenom'=>'float', 'maxscaledenom'=>'float'], - 'mapObj::selectOutputFormat' => ['int', 'type'=>'string'], - 'mapObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'mapObj::setCenter' => ['int', 'center'=>'pointObj'], - 'mapObj::setConfigOption' => ['int', 'key'=>'string', 'value'=>'string'], - 'mapObj::setExtent' => ['void', 'minx'=>'float', 'miny'=>'float', 'maxx'=>'float', 'maxy'=>'float'], - 'mapObj::setFontSet' => ['int', 'fileName'=>'string'], - 'mapObj::setMetaData' => ['int', 'name'=>'string', 'value'=>'string'], - 'mapObj::setProjection' => ['int', 'proj_params'=>'string', 'bSetUnitsAndExtents'=>'bool'], - 'mapObj::setRotation' => ['int', 'rotation_angle'=>'float'], - 'mapObj::setSize' => ['int', 'width'=>'int', 'height'=>'int'], - 'mapObj::setSymbolSet' => ['int', 'fileName'=>'string'], - 'mapObj::setWKTProjection' => ['int', 'proj_params'=>'string', 'bSetUnitsAndExtents'=>'bool'], - 'mapObj::zoomPoint' => ['int', 'nZoomFactor'=>'int', 'oPixelPos'=>'pointObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj'], - 'mapObj::zoomRectangle' => ['int', 'oPixelExt'=>'rectObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj'], - 'mapObj::zoomScale' => ['int', 'nScaleDenom'=>'float', 'oPixelPos'=>'pointObj', 'nImageWidth'=>'int', 'nImageHeight'=>'int', 'oGeorefExt'=>'rectObj', 'oMaxGeorefExt'=>'rectObj'], - 'max' => ['mixed', 'value'=>'non-empty-array'], - 'max\'1' => ['mixed', 'value'=>'', 'values'=>'', '...args='=>''], - 'mb_check_encoding' => ['bool', 'value='=>'string', 'encoding='=>'string'], - 'mb_convert_case' => ['string', 'string'=>'string', 'mode'=>'int', 'encoding='=>'string'], - 'mb_convert_encoding' => ['string|false', 'string'=>'string', 'to_encoding'=>'string', 'from_encoding='=>'mixed'], - 'mb_convert_kana' => ['string', 'string'=>'string', 'mode='=>'string', 'encoding='=>'string'], - 'mb_convert_variables' => ['string|false', 'to_encoding'=>'string', 'from_encoding'=>'array|string', '&rw_var'=>'string|array|object', '&...rw_vars='=>'string|array|object'], - 'mb_decode_mimeheader' => ['string', 'string'=>'string'], - 'mb_decode_numericentity' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string'], - 'mb_detect_encoding' => ['string|false', 'string'=>'string', 'encodings='=>'mixed', 'strict='=>'bool'], - 'mb_detect_order' => ['bool|list', 'encoding='=>'mixed'], - 'mb_encode_mimeheader' => ['string', 'string'=>'string', 'charset='=>'string', 'transfer_encoding='=>'string', 'newline='=>'string', 'indent='=>'int'], - 'mb_encode_numericentity' => ['string', 'string'=>'string', 'map'=>'array', 'encoding='=>'string', 'hex='=>'bool'], - 'mb_encoding_aliases' => ['list|false', 'encoding'=>'string'], - 'mb_ereg' => ['int|false', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array|null'], - 'mb_ereg_match' => ['bool', 'pattern'=>'string', 'string'=>'string', 'options='=>'string'], - 'mb_ereg_replace' => ['string|false', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string'], - 'mb_ereg_replace_callback' => ['string|false|null', 'pattern'=>'string', 'callback'=>'callable', 'string'=>'string', 'options='=>'string'], - 'mb_ereg_search' => ['bool', 'pattern='=>'string', 'options='=>'string'], - 'mb_ereg_search_getpos' => ['int'], - 'mb_ereg_search_getregs' => ['string[]|false'], - 'mb_ereg_search_init' => ['bool', 'string'=>'string', 'pattern='=>'string', 'options='=>'string'], - 'mb_ereg_search_pos' => ['int[]|false', 'pattern='=>'string', 'options='=>'string'], - 'mb_ereg_search_regs' => ['string[]|false', 'pattern='=>'string', 'options='=>'string'], - 'mb_ereg_search_setpos' => ['bool', 'offset'=>'int'], - 'mb_eregi' => ['int|false', 'pattern'=>'string', 'string'=>'string', '&w_matches='=>'array'], - 'mb_eregi_replace' => ['string|false', 'pattern'=>'string', 'replacement'=>'string', 'string'=>'string', 'options='=>'string'], - 'mb_get_info' => ['array|string|int|false', 'type='=>'string'], - 'mb_http_input' => ['string|false', 'type='=>'string'], - 'mb_http_output' => ['string|bool', 'encoding='=>'string'], - 'mb_internal_encoding' => ['string|bool', 'encoding='=>'string'], - 'mb_language' => ['string|bool', 'language='=>'string'], - 'mb_list_encodings' => ['list'], - 'mb_output_handler' => ['string', 'string'=>'string', 'status'=>'int'], - 'mb_parse_str' => ['bool', 'string'=>'string', '&w_result='=>'array'], - 'mb_preferred_mime_name' => ['string|false', 'encoding'=>'string'], - 'mb_regex_encoding' => ['string|bool', 'encoding='=>'string'], - 'mb_regex_set_options' => ['string', 'options='=>'string'], - 'mb_send_mail' => ['bool', 'to'=>'string', 'subject'=>'string', 'message'=>'string', 'additional_headers='=>'string|array', 'additional_params='=>'string'], - 'mb_split' => ['list|false', 'pattern'=>'string', 'string'=>'string', 'limit='=>'int'], - 'mb_strcut' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string'], - 'mb_strimwidth' => ['string', 'string'=>'string', 'start'=>'int', 'width'=>'int', 'trim_marker='=>'string', 'encoding='=>'string'], - 'mb_stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'mb_stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'mb_strlen' => ['0|positive-int', 'string'=>'string', 'encoding='=>'string'], - 'mb_strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'mb_strrchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'mb_strrichr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'mb_strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'mb_strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'encoding='=>'string'], - 'mb_strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool', 'encoding='=>'string'], - 'mb_strtolower' => ['lowercase-string', 'string'=>'string', 'encoding='=>'string'], - 'mb_strtoupper' => ['string', 'string'=>'string', 'encoding='=>'string'], - 'mb_strwidth' => ['int', 'string'=>'string', 'encoding='=>'string'], - 'mb_substitute_character' => ['bool|int|string', 'substitute_character='=>'mixed'], - 'mb_substr' => ['string', 'string'=>'string', 'start'=>'int', 'length='=>'?int', 'encoding='=>'string'], - 'mb_substr_count' => ['int', 'haystack'=>'string', 'needle'=>'string', 'encoding='=>'string'], - 'mcrypt_cbc' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], - 'mcrypt_cfb' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], - 'mcrypt_create_iv' => ['string|false', 'size'=>'int', 'source='=>'int'], - 'mcrypt_decrypt' => ['string', 'cipher'=>'string', 'key'=>'string', 'data'=>'string', 'mode'=>'string', 'iv='=>'string'], - 'mcrypt_ecb' => ['string', 'cipher'=>'string|int', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], - 'mcrypt_enc_get_algorithms_name' => ['string', 'td'=>'resource'], - 'mcrypt_enc_get_block_size' => ['int', 'td'=>'resource'], - 'mcrypt_enc_get_iv_size' => ['int', 'td'=>'resource'], - 'mcrypt_enc_get_key_size' => ['int', 'td'=>'resource'], - 'mcrypt_enc_get_modes_name' => ['string', 'td'=>'resource'], - 'mcrypt_enc_get_supported_key_sizes' => ['array', 'td'=>'resource'], - 'mcrypt_enc_is_block_algorithm' => ['bool', 'td'=>'resource'], - 'mcrypt_enc_is_block_algorithm_mode' => ['bool', 'td'=>'resource'], - 'mcrypt_enc_is_block_mode' => ['bool', 'td'=>'resource'], - 'mcrypt_enc_self_test' => ['int|false', 'td'=>'resource'], - 'mcrypt_encrypt' => ['string', 'cipher'=>'string', 'key'=>'string', 'data'=>'string', 'mode'=>'string', 'iv='=>'string'], - 'mcrypt_generic' => ['string', 'td'=>'resource', 'data'=>'string'], - 'mcrypt_generic_deinit' => ['bool', 'td'=>'resource'], - 'mcrypt_generic_end' => ['bool', 'td'=>'resource'], - 'mcrypt_generic_init' => ['int|false', 'td'=>'resource', 'key'=>'string', 'iv'=>'string'], - 'mcrypt_get_block_size' => ['int', 'cipher'=>'int|string', 'module'=>'string'], - 'mcrypt_get_cipher_name' => ['string|false', 'cipher'=>'int|string'], - 'mcrypt_get_iv_size' => ['int|false', 'cipher'=>'int|string', 'module'=>'string'], - 'mcrypt_get_key_size' => ['int', 'cipher'=>'int|string', 'module'=>'string'], - 'mcrypt_list_algorithms' => ['array', 'lib_dir='=>'string'], - 'mcrypt_list_modes' => ['array', 'lib_dir='=>'string'], - 'mcrypt_module_close' => ['bool', 'td'=>'resource'], - 'mcrypt_module_get_algo_block_size' => ['int', 'algorithm'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_get_algo_key_size' => ['int', 'algorithm'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_get_supported_key_sizes' => ['array', 'algorithm'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_is_block_algorithm' => ['bool', 'algorithm'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_is_block_algorithm_mode' => ['bool', 'mode'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_is_block_mode' => ['bool', 'mode'=>'string', 'lib_dir='=>'string'], - 'mcrypt_module_open' => ['resource|false', 'cipher'=>'string', 'cipher_directory'=>'string', 'mode'=>'string', 'mode_directory'=>'string'], - 'mcrypt_module_self_test' => ['bool', 'algorithm'=>'string', 'lib_dir='=>'string'], - 'mcrypt_ofb' => ['string', 'cipher'=>'int|string', 'key'=>'string', 'data'=>'string', 'mode'=>'int', 'iv='=>'string'], - 'md5' => ['non-falsy-string', 'string'=>'string', 'binary='=>'bool'], - 'md5_file' => ['non-falsy-string|false', 'filename'=>'string', 'binary='=>'bool'], - 'mdecrypt_generic' => ['string', 'td'=>'resource', 'data'=>'string'], - 'memcache_add' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'memcache_add_server' => ['bool', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int', 'persistent='=>'bool', 'weight='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable', 'timeoutms='=>'int'], - 'memcache_append' => ['', 'memcache_obj'=>'Memcache'], - 'memcache_cas' => ['', 'memcache_obj'=>'Memcache'], - 'memcache_close' => ['bool', 'memcache_obj'=>'Memcache'], - 'memcache_connect' => ['Memcache|false', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'memcache_debug' => ['bool', 'on_off'=>'bool'], - 'memcache_decrement' => ['int', 'memcache_obj'=>'Memcache', 'key'=>'string', 'value='=>'int'], - 'memcache_delete' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'timeout='=>'int'], - 'memcache_flush' => ['bool', 'memcache_obj'=>'Memcache'], - 'memcache_get' => ['string', 'memcache_obj'=>'Memcache', 'key'=>'string', 'flags='=>'int'], - 'memcache_get\'1' => ['array', 'memcache_obj'=>'Memcache', 'key'=>'string[]', 'flags='=>'int[]'], - 'memcache_get_extended_stats' => ['array', 'memcache_obj'=>'Memcache', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'memcache_get_server_status' => ['int', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int'], - 'memcache_get_stats' => ['array', 'memcache_obj'=>'Memcache', 'type='=>'string', 'slabid='=>'int', 'limit='=>'int'], - 'memcache_get_version' => ['string', 'memcache_obj'=>'Memcache'], - 'memcache_increment' => ['int', 'memcache_obj'=>'Memcache', 'key'=>'string', 'value='=>'int'], - 'memcache_pconnect' => ['Memcache|false', 'host'=>'string', 'port='=>'int', 'timeout='=>'int'], - 'memcache_prepend' => ['string', 'memcache_obj'=>'Memcache'], - 'memcache_replace' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'memcache_set' => ['bool', 'memcache_obj'=>'Memcache', 'key'=>'string', 'var'=>'mixed', 'flag='=>'int', 'expire='=>'int'], - 'memcache_set_compress_threshold' => ['bool', 'memcache_obj'=>'Memcache', 'threshold'=>'int', 'min_savings='=>'float'], - 'memcache_set_failure_callback' => ['', 'memcache_obj'=>'Memcache'], - 'memcache_set_server_params' => ['bool', 'memcache_obj'=>'Memcache', 'host'=>'string', 'port='=>'int', 'timeout='=>'int', 'retry_interval='=>'int', 'status='=>'bool', 'failure_callback='=>'callable'], - 'memory_get_peak_usage' => ['int', 'real_usage='=>'bool'], - 'memory_get_usage' => ['int', 'real_usage='=>'bool'], - 'metaphone' => ['string|false', 'string'=>'string', 'max_phonemes='=>'int'], - 'method_exists' => ['bool', 'object_or_class'=>'object|class-string|interface-string|enum-string', 'method'=>'string'], - 'mhash' => ['string', 'algo'=>'int', 'data'=>'string', 'key='=>'string'], - 'mhash_count' => ['int'], - 'mhash_get_block_size' => ['int|false', 'algo'=>'int'], - 'mhash_get_hash_name' => ['string|false', 'algo'=>'int'], - 'mhash_keygen_s2k' => ['string|false', 'algo'=>'int', 'password'=>'string', 'salt'=>'string', 'length'=>'int'], - 'microtime' => ['string', 'as_float='=>'false'], - 'microtime\'1' => ['float', 'as_float='=>'true'], - 'mime_content_type' => ['string|false', 'filename'=>'string|resource'], - 'min' => ['mixed', 'value'=>'non-empty-array'], - 'min\'1' => ['mixed', 'value'=>'', 'values'=>'', '...args='=>''], - 'ming_keypress' => ['int', 'char'=>'string'], - 'ming_setcubicthreshold' => ['void', 'threshold'=>'int'], - 'ming_setscale' => ['void', 'scale'=>'float'], - 'ming_setswfcompression' => ['void', 'level'=>'int'], - 'ming_useconstants' => ['void', 'use'=>'int'], - 'ming_useswfversion' => ['void', 'version'=>'int'], - 'mkdir' => ['bool', 'directory'=>'string', 'permissions='=>'int', 'recursive='=>'bool', 'context='=>'resource'], - 'mktime' => ['int|false', 'hour='=>'int', 'minute='=>'int', 'second='=>'int', 'month='=>'int', 'day='=>'int', 'year='=>'int'], - 'money_format' => ['string', 'format'=>'string', 'value'=>'float'], - 'monitor_custom_event' => ['void', 'class'=>'string', 'text'=>'string', 'severe='=>'int', 'user_data='=>'mixed'], - 'monitor_httperror_event' => ['void', 'error_code'=>'int', 'url'=>'string', 'severe='=>'int'], - 'monitor_license_info' => ['array'], - 'monitor_pass_error' => ['void', 'errno'=>'int', 'errstr'=>'string', 'errfile'=>'string', 'errline'=>'int'], - 'monitor_set_aggregation_hint' => ['void', 'hint'=>'string'], - 'move_uploaded_file' => ['bool', 'from'=>'string', 'to'=>'string'], - 'mqseries_back' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_begin' => ['void', 'hconn'=>'resource', 'beginoptions'=>'array', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_close' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'options'=>'int', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_cmit' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_conn' => ['void', 'qmanagername'=>'string', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_connx' => ['void', 'qmanagername'=>'string', 'connoptions'=>'array', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_disc' => ['void', 'hconn'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_get' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'md'=>'array', 'gmo'=>'array', 'bufferlength'=>'int', 'msg'=>'string', 'data_length'=>'int', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_inq' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'selectorcount'=>'int', 'selectors'=>'array', 'intattrcount'=>'int', 'intattr'=>'resource', 'charattrlength'=>'int', 'charattr'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_open' => ['void', 'hconn'=>'resource', 'objdesc'=>'array', 'option'=>'int', 'hobj'=>'resource', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_put' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'md'=>'array', 'pmo'=>'array', 'message'=>'string', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_put1' => ['void', 'hconn'=>'resource', 'objdesc'=>'resource', 'msgdesc'=>'resource', 'pmo'=>'resource', 'buffer'=>'string', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_set' => ['void', 'hconn'=>'resource', 'hobj'=>'resource', 'selectorcount'=>'int', 'selectors'=>'array', 'intattrcount'=>'int', 'intattrs'=>'array', 'charattrlength'=>'int', 'charattrs'=>'array', 'compcode'=>'resource', 'reason'=>'resource'], - 'mqseries_strerror' => ['string', 'reason'=>'int'], - 'ms_GetErrorObj' => ['errorObj'], - 'ms_GetVersion' => ['string'], - 'ms_GetVersionInt' => ['int'], - 'ms_ResetErrorList' => ['void'], - 'ms_TokenizeMap' => ['array', 'map_file_name'=>'string'], - 'ms_iogetStdoutBufferBytes' => ['int'], - 'ms_iogetstdoutbufferstring' => ['void'], - 'ms_ioinstallstdinfrombuffer' => ['void'], - 'ms_ioinstallstdouttobuffer' => ['void'], - 'ms_ioresethandlers' => ['void'], - 'ms_iostripstdoutbuffercontentheaders' => ['void'], - 'ms_iostripstdoutbuffercontenttype' => ['string'], - 'msession_connect' => ['bool', 'host'=>'string', 'port'=>'string'], - 'msession_count' => ['int'], - 'msession_create' => ['bool', 'session'=>'string', 'classname='=>'string', 'data='=>'string'], - 'msession_destroy' => ['bool', 'name'=>'string'], - 'msession_disconnect' => ['void'], - 'msession_find' => ['array', 'name'=>'string', 'value'=>'string'], - 'msession_get' => ['string', 'session'=>'string', 'name'=>'string', 'value'=>'string'], - 'msession_get_array' => ['array', 'session'=>'string'], - 'msession_get_data' => ['string', 'session'=>'string'], - 'msession_inc' => ['string', 'session'=>'string', 'name'=>'string'], - 'msession_list' => ['array'], - 'msession_listvar' => ['array', 'name'=>'string'], - 'msession_lock' => ['int', 'name'=>'string'], - 'msession_plugin' => ['string', 'session'=>'string', 'value'=>'string', 'param='=>'string'], - 'msession_randstr' => ['string', 'param'=>'int'], - 'msession_set' => ['bool', 'session'=>'string', 'name'=>'string', 'value'=>'string'], - 'msession_set_array' => ['void', 'session'=>'string', 'tuples'=>'array'], - 'msession_set_data' => ['bool', 'session'=>'string', 'value'=>'string'], - 'msession_timeout' => ['int', 'session'=>'string', 'param='=>'int'], - 'msession_uniq' => ['string', 'param'=>'int', 'classname='=>'string', 'data='=>'string'], - 'msession_unlock' => ['int', 'session'=>'string', 'key'=>'int'], - 'msg_get_queue' => ['resource|false', 'key'=>'int', 'permissions='=>'int'], - 'msg_queue_exists' => ['bool', 'key'=>'int'], - 'msg_receive' => ['bool', 'queue'=>'resource', 'desired_message_type'=>'int', '&w_received_message_type'=>'int', 'max_message_size'=>'int', '&w_message'=>'mixed', 'unserialize='=>'bool', 'flags='=>'int', '&w_error_code='=>'int'], - 'msg_remove_queue' => ['bool', 'queue'=>'resource'], - 'msg_send' => ['bool', 'queue'=>'resource', 'message_type'=>'int', 'message'=>'mixed', 'serialize='=>'bool', 'blocking='=>'bool', '&w_error_code='=>'int'], - 'msg_set_queue' => ['bool', 'queue'=>'resource', 'data'=>'array'], - 'msg_stat_queue' => ['array', 'queue'=>'resource'], - 'msgfmt_create' => ['?MessageFormatter', 'locale'=>'string', 'pattern'=>'string'], - 'msgfmt_format' => ['string|false', 'formatter'=>'MessageFormatter', 'values'=>'array'], - 'msgfmt_format_message' => ['string|false', 'locale'=>'string', 'pattern'=>'string', 'values'=>'array'], - 'msgfmt_get_error_code' => ['int', 'formatter'=>'MessageFormatter'], - 'msgfmt_get_error_message' => ['string', 'formatter'=>'MessageFormatter'], - 'msgfmt_get_locale' => ['string', 'formatter'=>'MessageFormatter'], - 'msgfmt_get_pattern' => ['string', 'formatter'=>'MessageFormatter'], - 'msgfmt_parse' => ['array|false', 'formatter'=>'MessageFormatter', 'string'=>'string'], - 'msgfmt_parse_message' => ['array|false', 'locale'=>'string', 'pattern'=>'string', 'message'=>'string'], - 'msgfmt_set_pattern' => ['bool', 'formatter'=>'MessageFormatter', 'pattern'=>'string'], - 'msql_affected_rows' => ['int', 'result'=>'resource'], - 'msql_close' => ['bool', 'link_identifier='=>'?resource'], - 'msql_connect' => ['resource', 'hostname='=>'string'], - 'msql_create_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'msql_data_seek' => ['bool', 'result'=>'resource', 'row_number'=>'int'], - 'msql_db_query' => ['resource', 'database'=>'string', 'query'=>'string', 'link_identifier='=>'?resource'], - 'msql_drop_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'msql_error' => ['string'], - 'msql_fetch_array' => ['array', 'result'=>'resource', 'result_type='=>'int'], - 'msql_fetch_field' => ['object', 'result'=>'resource', 'field_offset='=>'int'], - 'msql_fetch_object' => ['object', 'result'=>'resource'], - 'msql_fetch_row' => ['array', 'result'=>'resource'], - 'msql_field_flags' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_field_len' => ['int', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_field_name' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_field_seek' => ['bool', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_field_table' => ['int', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_field_type' => ['string', 'result'=>'resource', 'field_offset'=>'int'], - 'msql_free_result' => ['bool', 'result'=>'resource'], - 'msql_list_dbs' => ['resource', 'link_identifier='=>'?resource'], - 'msql_list_fields' => ['resource', 'database'=>'string', 'tablename'=>'string', 'link_identifier='=>'?resource'], - 'msql_list_tables' => ['resource', 'database'=>'string', 'link_identifier='=>'?resource'], - 'msql_num_fields' => ['int', 'result'=>'resource'], - 'msql_num_rows' => ['int', 'query_identifier'=>'resource'], - 'msql_pconnect' => ['resource', 'hostname='=>'string'], - 'msql_query' => ['resource', 'query'=>'string', 'link_identifier='=>'?resource'], - 'msql_result' => ['string', 'result'=>'resource', 'row'=>'int', 'field='=>'mixed'], - 'msql_select_db' => ['bool', 'database_name'=>'string', 'link_identifier='=>'?resource'], - 'mt_getrandmax' => ['int<1, max>'], - 'mt_rand' => ['int', 'min'=>'int', 'max'=>'int'], - 'mt_rand\'1' => ['int'], - 'mt_srand' => ['void', 'seed='=>'int', 'mode='=>'int'], - 'mysql_xdevapi\baseresult::getWarnings' => ['array'], - 'mysql_xdevapi\baseresult::getWarningsCount' => ['integer'], - 'mysql_xdevapi\collection::add' => ['mysql_xdevapi\CollectionAdd', 'document'=>'mixed'], - 'mysql_xdevapi\collection::addOrReplaceOne' => ['mysql_xdevapi\Result', 'id'=>'string', 'doc'=>'string'], - 'mysql_xdevapi\collection::count' => ['integer'], - 'mysql_xdevapi\collection::createIndex' => ['void', 'index_name'=>'string', 'index_desc_json'=>'string'], - 'mysql_xdevapi\collection::dropIndex' => ['bool', 'index_name'=>'string'], - 'mysql_xdevapi\collection::existsInDatabase' => ['bool'], - 'mysql_xdevapi\collection::find' => ['mysql_xdevapi\CollectionFind', 'search_condition='=>'string'], - 'mysql_xdevapi\collection::getName' => ['string'], - 'mysql_xdevapi\collection::getOne' => ['Document', 'id'=>'string'], - 'mysql_xdevapi\collection::getSchema' => ['mysql_xdevapi\schema'], - 'mysql_xdevapi\collection::getSession' => ['Session'], - 'mysql_xdevapi\collection::modify' => ['mysql_xdevapi\CollectionModify', 'search_condition'=>'string'], - 'mysql_xdevapi\collection::remove' => ['mysql_xdevapi\CollectionRemove', 'search_condition'=>'string'], - 'mysql_xdevapi\collection::removeOne' => ['mysql_xdevapi\Result', 'id'=>'string'], - 'mysql_xdevapi\collection::replaceOne' => ['mysql_xdevapi\Result', 'id'=>'string', 'doc'=>'string'], - 'mysql_xdevapi\collectionadd::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\collectionfind::bind' => ['mysql_xdevapi\CollectionFind', 'placeholder_values'=>'array'], - 'mysql_xdevapi\collectionfind::execute' => ['mysql_xdevapi\DocResult'], - 'mysql_xdevapi\collectionfind::fields' => ['mysql_xdevapi\CollectionFind', 'projection'=>'string'], - 'mysql_xdevapi\collectionfind::groupBy' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], - 'mysql_xdevapi\collectionfind::having' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], - 'mysql_xdevapi\collectionfind::limit' => ['mysql_xdevapi\CollectionFind', 'rows'=>'integer'], - 'mysql_xdevapi\collectionfind::lockExclusive' => ['mysql_xdevapi\CollectionFind', 'lock_waiting_option='=>'integer'], - 'mysql_xdevapi\collectionfind::lockShared' => ['mysql_xdevapi\CollectionFind', 'lock_waiting_option='=>'integer'], - 'mysql_xdevapi\collectionfind::offset' => ['mysql_xdevapi\CollectionFind', 'position'=>'integer'], - 'mysql_xdevapi\collectionfind::sort' => ['mysql_xdevapi\CollectionFind', 'sort_expr'=>'string'], - 'mysql_xdevapi\collectionmodify::arrayAppend' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], - 'mysql_xdevapi\collectionmodify::arrayInsert' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], - 'mysql_xdevapi\collectionmodify::bind' => ['mysql_xdevapi\CollectionModify', 'placeholder_values'=>'array'], - 'mysql_xdevapi\collectionmodify::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\collectionmodify::limit' => ['mysql_xdevapi\CollectionModify', 'rows'=>'integer'], - 'mysql_xdevapi\collectionmodify::patch' => ['mysql_xdevapi\CollectionModify', 'document'=>'string'], - 'mysql_xdevapi\collectionmodify::replace' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], - 'mysql_xdevapi\collectionmodify::set' => ['mysql_xdevapi\CollectionModify', 'collection_field'=>'string', 'expression_or_literal'=>'string'], - 'mysql_xdevapi\collectionmodify::skip' => ['mysql_xdevapi\CollectionModify', 'position'=>'integer'], - 'mysql_xdevapi\collectionmodify::sort' => ['mysql_xdevapi\CollectionModify', 'sort_expr'=>'string'], - 'mysql_xdevapi\collectionmodify::unset' => ['mysql_xdevapi\CollectionModify', 'fields'=>'array'], - 'mysql_xdevapi\collectionremove::bind' => ['mysql_xdevapi\CollectionRemove', 'placeholder_values'=>'array'], - 'mysql_xdevapi\collectionremove::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\collectionremove::limit' => ['mysql_xdevapi\CollectionRemove', 'rows'=>'integer'], - 'mysql_xdevapi\collectionremove::sort' => ['mysql_xdevapi\CollectionRemove', 'sort_expr'=>'string'], - 'mysql_xdevapi\columnresult::getCharacterSetName' => ['string'], - 'mysql_xdevapi\columnresult::getCollationName' => ['string'], - 'mysql_xdevapi\columnresult::getColumnLabel' => ['string'], - 'mysql_xdevapi\columnresult::getColumnName' => ['string'], - 'mysql_xdevapi\columnresult::getFractionalDigits' => ['integer'], - 'mysql_xdevapi\columnresult::getLength' => ['integer'], - 'mysql_xdevapi\columnresult::getSchemaName' => ['string'], - 'mysql_xdevapi\columnresult::getTableLabel' => ['string'], - 'mysql_xdevapi\columnresult::getTableName' => ['string'], - 'mysql_xdevapi\columnresult::getType' => ['integer'], - 'mysql_xdevapi\columnresult::isNumberSigned' => ['integer'], - 'mysql_xdevapi\columnresult::isPadded' => ['integer'], - 'mysql_xdevapi\crudoperationbindable::bind' => ['mysql_xdevapi\CrudOperationBindable', 'placeholder_values'=>'array'], - 'mysql_xdevapi\crudoperationlimitable::limit' => ['mysql_xdevapi\CrudOperationLimitable', 'rows'=>'integer'], - 'mysql_xdevapi\crudoperationskippable::skip' => ['mysql_xdevapi\CrudOperationSkippable', 'skip'=>'integer'], - 'mysql_xdevapi\crudoperationsortable::sort' => ['mysql_xdevapi\CrudOperationSortable', 'sort_expr'=>'string'], - 'mysql_xdevapi\databaseobject::existsInDatabase' => ['bool'], - 'mysql_xdevapi\databaseobject::getName' => ['string'], - 'mysql_xdevapi\databaseobject::getSession' => ['mysql_xdevapi\Session'], - 'mysql_xdevapi\docresult::fetchAll' => ['Array'], - 'mysql_xdevapi\docresult::fetchOne' => ['Object'], - 'mysql_xdevapi\docresult::getWarnings' => ['Array'], - 'mysql_xdevapi\docresult::getWarningsCount' => ['integer'], - 'mysql_xdevapi\executable::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\getsession' => ['mysql_xdevapi\Session', 'uri'=>'string'], - 'mysql_xdevapi\result::getAutoIncrementValue' => ['int'], - 'mysql_xdevapi\result::getGeneratedIds' => ['ArrayOfInt'], - 'mysql_xdevapi\result::getWarnings' => ['array'], - 'mysql_xdevapi\result::getWarningsCount' => ['integer'], - 'mysql_xdevapi\rowresult::fetchAll' => ['array'], - 'mysql_xdevapi\rowresult::fetchOne' => ['object'], - 'mysql_xdevapi\rowresult::getColumnCount' => ['integer'], - 'mysql_xdevapi\rowresult::getColumnNames' => ['array'], - 'mysql_xdevapi\rowresult::getColumns' => ['array'], - 'mysql_xdevapi\rowresult::getWarnings' => ['array'], - 'mysql_xdevapi\rowresult::getWarningsCount' => ['integer'], - 'mysql_xdevapi\schema::createCollection' => ['mysql_xdevapi\Collection', 'name'=>'string'], - 'mysql_xdevapi\schema::dropCollection' => ['bool', 'collection_name'=>'string'], - 'mysql_xdevapi\schema::existsInDatabase' => ['bool'], - 'mysql_xdevapi\schema::getCollection' => ['mysql_xdevapi\Collection', 'name'=>'string'], - 'mysql_xdevapi\schema::getCollectionAsTable' => ['mysql_xdevapi\Table', 'name'=>'string'], - 'mysql_xdevapi\schema::getCollections' => ['array'], - 'mysql_xdevapi\schema::getName' => ['string'], - 'mysql_xdevapi\schema::getSession' => ['mysql_xdevapi\Session'], - 'mysql_xdevapi\schema::getTable' => ['mysql_xdevapi\Table', 'name'=>'string'], - 'mysql_xdevapi\schema::getTables' => ['array'], - 'mysql_xdevapi\schemaobject::getSchema' => ['mysql_xdevapi\Schema'], - 'mysql_xdevapi\session::close' => ['bool'], - 'mysql_xdevapi\session::commit' => ['Object'], - 'mysql_xdevapi\session::createSchema' => ['mysql_xdevapi\Schema', 'schema_name'=>'string'], - 'mysql_xdevapi\session::dropSchema' => ['bool', 'schema_name'=>'string'], - 'mysql_xdevapi\session::executeSql' => ['Object', 'statement'=>'string'], - 'mysql_xdevapi\session::generateUUID' => ['string'], - 'mysql_xdevapi\session::getClientId' => ['integer'], - 'mysql_xdevapi\session::getSchema' => ['mysql_xdevapi\Schema', 'schema_name'=>'string'], - 'mysql_xdevapi\session::getSchemas' => ['array'], - 'mysql_xdevapi\session::getServerVersion' => ['integer'], - 'mysql_xdevapi\session::killClient' => ['object', 'client_id'=>'integer'], - 'mysql_xdevapi\session::listClients' => ['array'], - 'mysql_xdevapi\session::quoteName' => ['string', 'name'=>'string'], - 'mysql_xdevapi\session::releaseSavepoint' => ['void', 'name'=>'string'], - 'mysql_xdevapi\session::rollback' => ['void'], - 'mysql_xdevapi\session::rollbackTo' => ['void', 'name'=>'string'], - 'mysql_xdevapi\session::setSavepoint' => ['string', 'name='=>'string'], - 'mysql_xdevapi\session::sql' => ['mysql_xdevapi\SqlStatement', 'query'=>'string'], - 'mysql_xdevapi\session::startTransaction' => ['void'], - 'mysql_xdevapi\sqlstatement::bind' => ['mysql_xdevapi\SqlStatement', 'param'=>'string'], - 'mysql_xdevapi\sqlstatement::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\sqlstatement::getNextResult' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\sqlstatement::getResult' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\sqlstatement::hasMoreResults' => ['bool'], - 'mysql_xdevapi\sqlstatementresult::fetchAll' => ['array'], - 'mysql_xdevapi\sqlstatementresult::fetchOne' => ['object'], - 'mysql_xdevapi\sqlstatementresult::getAffectedItemsCount' => ['integer'], - 'mysql_xdevapi\sqlstatementresult::getColumnCount' => ['integer'], - 'mysql_xdevapi\sqlstatementresult::getColumnNames' => ['array'], - 'mysql_xdevapi\sqlstatementresult::getColumns' => ['Array'], - 'mysql_xdevapi\sqlstatementresult::getGeneratedIds' => ['array'], - 'mysql_xdevapi\sqlstatementresult::getLastInsertId' => ['String'], - 'mysql_xdevapi\sqlstatementresult::getWarnings' => ['array'], - 'mysql_xdevapi\sqlstatementresult::getWarningsCount' => ['integer'], - 'mysql_xdevapi\sqlstatementresult::hasData' => ['bool'], - 'mysql_xdevapi\sqlstatementresult::nextResult' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\statement::getNextResult' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\statement::getResult' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\statement::hasMoreResults' => ['bool'], - 'mysql_xdevapi\table::count' => ['integer'], - 'mysql_xdevapi\table::delete' => ['mysql_xdevapi\TableDelete'], - 'mysql_xdevapi\table::existsInDatabase' => ['bool'], - 'mysql_xdevapi\table::getName' => ['string'], - 'mysql_xdevapi\table::getSchema' => ['mysql_xdevapi\Schema'], - 'mysql_xdevapi\table::getSession' => ['mysql_xdevapi\Session'], - 'mysql_xdevapi\table::insert' => ['mysql_xdevapi\TableInsert', 'columns'=>'mixed', '...args='=>'mixed'], - 'mysql_xdevapi\table::isView' => ['bool'], - 'mysql_xdevapi\table::select' => ['mysql_xdevapi\TableSelect', 'columns'=>'mixed', '...args='=>'mixed'], - 'mysql_xdevapi\table::update' => ['mysql_xdevapi\TableUpdate'], - 'mysql_xdevapi\tabledelete::bind' => ['mysql_xdevapi\TableDelete', 'placeholder_values'=>'array'], - 'mysql_xdevapi\tabledelete::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\tabledelete::limit' => ['mysql_xdevapi\TableDelete', 'rows'=>'integer'], - 'mysql_xdevapi\tabledelete::offset' => ['mysql_xdevapi\TableDelete', 'position'=>'integer'], - 'mysql_xdevapi\tabledelete::orderby' => ['mysql_xdevapi\TableDelete', 'orderby_expr'=>'string'], - 'mysql_xdevapi\tabledelete::where' => ['mysql_xdevapi\TableDelete', 'where_expr'=>'string'], - 'mysql_xdevapi\tableinsert::execute' => ['mysql_xdevapi\Result'], - 'mysql_xdevapi\tableinsert::values' => ['mysql_xdevapi\TableInsert', 'row_values'=>'array'], - 'mysql_xdevapi\tableselect::bind' => ['mysql_xdevapi\TableSelect', 'placeholder_values'=>'array'], - 'mysql_xdevapi\tableselect::execute' => ['mysql_xdevapi\RowResult'], - 'mysql_xdevapi\tableselect::groupBy' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'mixed'], - 'mysql_xdevapi\tableselect::having' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'string'], - 'mysql_xdevapi\tableselect::limit' => ['mysql_xdevapi\TableSelect', 'rows'=>'integer'], - 'mysql_xdevapi\tableselect::lockExclusive' => ['mysql_xdevapi\TableSelect', 'lock_waiting_option='=>'integer'], - 'mysql_xdevapi\tableselect::lockShared' => ['mysql_xdevapi\TableSelect', 'lock_waiting_option='=>'integer'], - 'mysql_xdevapi\tableselect::offset' => ['mysql_xdevapi\TableSelect', 'position'=>'integer'], - 'mysql_xdevapi\tableselect::orderby' => ['mysql_xdevapi\TableSelect', 'sort_expr'=>'mixed', '...args='=>'mixed'], - 'mysql_xdevapi\tableselect::where' => ['mysql_xdevapi\TableSelect', 'where_expr'=>'string'], - 'mysql_xdevapi\tableupdate::bind' => ['mysql_xdevapi\TableUpdate', 'placeholder_values'=>'array'], - 'mysql_xdevapi\tableupdate::execute' => ['mysql_xdevapi\TableUpdate'], - 'mysql_xdevapi\tableupdate::limit' => ['mysql_xdevapi\TableUpdate', 'rows'=>'integer'], - 'mysql_xdevapi\tableupdate::orderby' => ['mysql_xdevapi\TableUpdate', 'orderby_expr'=>'mixed', '...args='=>'mixed'], - 'mysql_xdevapi\tableupdate::set' => ['mysql_xdevapi\TableUpdate', 'table_field'=>'string', 'expression_or_literal'=>'string'], - 'mysql_xdevapi\tableupdate::where' => ['mysql_xdevapi\TableUpdate', 'where_expr'=>'string'], - 'mysqli::__construct' => ['void', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'mysqli::autocommit' => ['bool', 'enable'=>'bool'], - 'mysqli::begin_transaction' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'mysqli::change_user' => ['bool', 'username'=>'string', 'password'=>'string', 'database'=>'?string'], - 'mysqli::character_set_name' => ['string'], - 'mysqli::close' => ['true'], - 'mysqli::commit' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'mysqli::connect' => ['null|false', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'mysqli::debug' => ['true', 'options'=>'string'], - 'mysqli::dump_debug_info' => ['bool'], - 'mysqli::escape_string' => ['string', 'string'=>'string'], - 'mysqli::get_charset' => ['object'], - 'mysqli::get_client_info' => ['string'], - 'mysqli::get_connection_stats' => ['array'], - 'mysqli::get_warnings' => ['mysqli_warning'], - 'mysqli::init' => ['false|null'], - 'mysqli::kill' => ['bool', 'process_id'=>'int'], - 'mysqli::more_results' => ['bool'], - 'mysqli::multi_query' => ['bool', 'query'=>'string'], - 'mysqli::next_result' => ['bool'], - 'mysqli::options' => ['bool', 'option'=>'int', 'value'=>'string|int'], - 'mysqli::ping' => ['bool'], - 'mysqli::poll' => ['int|false', '&w_read'=>'?array', '&w_error'=>'?array', '&w_reject'=>'array', 'seconds'=>'int', 'microseconds='=>'int'], - 'mysqli::prepare' => ['mysqli_stmt|false', 'query'=>'string'], - 'mysqli::query' => ['bool|mysqli_result', 'query'=>'string', 'result_mode='=>'int'], - 'mysqli::real_connect' => ['bool', 'hostname='=>'?string', 'username='=>'?string', 'password='=>'?string', 'database='=>'?string', 'port='=>'?int', 'socket='=>'?string', 'flags='=>'int'], - 'mysqli::real_escape_string' => ['string', 'string'=>'string'], - 'mysqli::real_query' => ['bool', 'query'=>'string'], - 'mysqli::reap_async_query' => ['mysqli_result|false'], - 'mysqli::refresh' => ['bool', 'flags'=>'int'], - 'mysqli::release_savepoint' => ['bool', 'name'=>'string'], - 'mysqli::rollback' => ['bool', 'flags='=>'int', 'name='=>'string'], - 'mysqli::savepoint' => ['bool', 'name'=>'string'], - 'mysqli::select_db' => ['bool', 'database'=>'string'], - 'mysqli::set_charset' => ['bool', 'charset'=>'string'], - 'mysqli::set_opt' => ['bool', 'option'=>'int', 'value'=>'string|int'], - 'mysqli::ssl_set' => ['true', 'key'=>'?string', 'certificate'=>'?string', 'ca_certificate'=>'?string', 'ca_path'=>'?string', 'cipher_algos'=>'?string'], - 'mysqli::stat' => ['string|false'], - 'mysqli::stmt_init' => ['mysqli_stmt'], - 'mysqli::store_result' => ['mysqli_result|false', 'mode='=>'int'], - 'mysqli::thread_safe' => ['bool'], - 'mysqli::use_result' => ['mysqli_result|false'], - 'mysqli_affected_rows' => ['int<-1, max>|numeric-string', 'mysql'=>'mysqli'], - 'mysqli_autocommit' => ['bool', 'mysql'=>'mysqli', 'enable'=>'bool'], - 'mysqli_begin_transaction' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'mysqli_change_user' => ['bool', 'mysql'=>'mysqli', 'username'=>'string', 'password'=>'string', 'database'=>'?string'], - 'mysqli_character_set_name' => ['string', 'mysql'=>'mysqli'], - 'mysqli_close' => ['true', 'mysql'=>'mysqli'], - 'mysqli_commit' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'mysqli_connect' => ['mysqli|false', 'hostname='=>'string', 'username='=>'string', 'password='=>'string', 'database='=>'string', 'port='=>'int', 'socket='=>'string'], - 'mysqli_connect_errno' => ['int'], - 'mysqli_connect_error' => ['?string'], - 'mysqli_data_seek' => ['bool', 'result'=>'mysqli_result', 'offset'=>'int'], - 'mysqli_debug' => ['true', 'options'=>'string'], - 'mysqli_disable_reads_from_master' => ['bool', 'link'=>'mysqli'], - 'mysqli_disable_rpl_parse' => ['bool', 'link'=>'mysqli'], - 'mysqli_dump_debug_info' => ['bool', 'mysql'=>'mysqli'], - 'mysqli_embedded_server_end' => ['void'], - 'mysqli_embedded_server_start' => ['bool', 'start'=>'int', 'arguments'=>'array', 'groups'=>'array'], - 'mysqli_enable_reads_from_master' => ['bool', 'link'=>'mysqli'], - 'mysqli_enable_rpl_parse' => ['bool', 'link'=>'mysqli'], - 'mysqli_errno' => ['int', 'mysql'=>'mysqli'], - 'mysqli_error' => ['string', 'mysql'=>'mysqli'], - 'mysqli_error_list' => ['array', 'mysql'=>'mysqli'], - 'mysqli_escape_string' => ['string', 'mysql'=>'mysqli', 'string'=>'string'], - 'mysqli_execute' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_fetch_all' => ['list>', 'result'=>'mysqli_result', 'mode='=>'3'], - 'mysqli_fetch_all\'1' => ['list>', 'result'=>'mysqli_result', 'mode='=>'1'], - 'mysqli_fetch_all\'2' => ['list>', 'result'=>'mysqli_result', 'mode='=>'2'], - 'mysqli_fetch_array' => ['array|false|null', 'result'=>'mysqli_result', 'mode='=>'3'], - 'mysqli_fetch_array\'1' => ['array|false|null', 'result'=>'mysqli_result', 'mode='=>'1'], - 'mysqli_fetch_array\'2' => ['list|false|null', 'result'=>'mysqli_result', 'mode='=>'2'], - 'mysqli_fetch_assoc' => ['array|false|null', 'result'=>'mysqli_result'], - 'mysqli_fetch_field' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result'], - 'mysqli_fetch_field_direct' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'result'=>'mysqli_result', 'index'=>'int'], - 'mysqli_fetch_fields' => ['list', 'result'=>'mysqli_result'], - 'mysqli_fetch_lengths' => ['array|false', 'result'=>'mysqli_result'], - 'mysqli_fetch_object' => ['object|false|null', 'result'=>'mysqli_result', 'class='=>'string', 'constructor_args='=>'array'], - 'mysqli_fetch_row' => ['list|false|null', 'result'=>'mysqli_result'], - 'mysqli_field_count' => ['int', 'mysql'=>'mysqli'], - 'mysqli_field_seek' => ['bool', 'result'=>'mysqli_result', 'index'=>'int'], - 'mysqli_field_tell' => ['int', 'result'=>'mysqli_result'], - 'mysqli_free_result' => ['void', 'result'=>'mysqli_result'], - 'mysqli_get_cache_stats' => ['array|false'], - 'mysqli_get_charset' => ['?object', 'mysql'=>'mysqli'], - 'mysqli_get_client_info' => ['string', 'mysql='=>'?mysqli'], - 'mysqli_get_client_stats' => ['array'], - 'mysqli_get_client_version' => ['int'], - 'mysqli_get_connection_stats' => ['array', 'mysql'=>'mysqli'], - 'mysqli_get_host_info' => ['string', 'mysql'=>'mysqli'], - 'mysqli_get_links_stats' => ['array'], - 'mysqli_get_proto_info' => ['int', 'mysql'=>'mysqli'], - 'mysqli_get_server_info' => ['string', 'mysql'=>'mysqli'], - 'mysqli_get_server_version' => ['int', 'mysql'=>'mysqli'], - 'mysqli_get_warnings' => ['mysqli_warning', 'mysql'=>'mysqli'], - 'mysqli_info' => ['?string', 'mysql'=>'mysqli'], - 'mysqli_init' => ['mysqli|false'], - 'mysqli_insert_id' => ['int|string', 'mysql'=>'mysqli'], - 'mysqli_kill' => ['bool', 'mysql'=>'mysqli', 'process_id'=>'int'], - 'mysqli_link_construct' => ['object'], - 'mysqli_master_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], - 'mysqli_more_results' => ['bool', 'mysql'=>'mysqli'], - 'mysqli_multi_query' => ['bool', 'mysql'=>'mysqli', 'query'=>'string'], - 'mysqli_next_result' => ['bool', 'mysql'=>'mysqli'], - 'mysqli_num_fields' => ['int', 'result'=>'mysqli_result'], - 'mysqli_num_rows' => ['int<0, max>|numeric-string', 'result'=>'mysqli_result'], - 'mysqli_options' => ['bool', 'mysql'=>'mysqli', 'option'=>'int', 'value'=>'string|int'], - 'mysqli_ping' => ['bool', 'mysql'=>'mysqli'], - 'mysqli_poll' => ['int|false', '&w_read'=>'?array', '&w_error'=>'?array', '&w_reject'=>'array', 'seconds'=>'int', 'microseconds='=>'int'], - 'mysqli_prepare' => ['mysqli_stmt|false', 'mysql'=>'mysqli', 'query'=>'string'], - 'mysqli_query' => ['mysqli_result|bool', 'mysql'=>'mysqli', 'query'=>'string', 'result_mode='=>'int'], - 'mysqli_real_connect' => ['bool', 'mysql'=>'mysqli', 'hostname='=>'?string', 'username='=>'?string', 'password='=>'?string', 'database='=>'?string', 'port='=>'?int', 'socket='=>'?string', 'flags='=>'int'], - 'mysqli_real_escape_string' => ['string', 'mysql'=>'mysqli', 'string'=>'string'], - 'mysqli_real_query' => ['bool', 'mysql'=>'mysqli', 'query'=>'string'], - 'mysqli_reap_async_query' => ['mysqli_result|false', 'mysql'=>'mysqli'], - 'mysqli_refresh' => ['bool', 'mysql'=>'mysqli', 'flags'=>'int'], - 'mysqli_release_savepoint' => ['bool', 'mysql'=>'mysqli', 'name'=>'string'], - 'mysqli_report' => ['bool', 'flags'=>'int'], - 'mysqli_result::__construct' => ['void', 'mysql'=>'mysqli', 'result_mode='=>'int'], - 'mysqli_result::close' => ['void'], - 'mysqli_result::data_seek' => ['bool', 'offset'=>'int'], - 'mysqli_result::fetch_all' => ['list>', 'mode='=>'3'], - 'mysqli_result::fetch_all\'1' => ['list>', 'mode='=>'1'], - 'mysqli_result::fetch_all\'2' => ['list>', 'mode='=>'2'], - 'mysqli_result::fetch_array' => ['array|false|null', 'mode='=>'3'], - 'mysqli_result::fetch_array\'1' => ['array|false|null', 'mode='=>'1'], - 'mysqli_result::fetch_array\'2' => ['list|false|null', 'mode='=>'2'], - 'mysqli_result::fetch_assoc' => ['array|false|null'], - 'mysqli_result::fetch_field' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false'], - 'mysqli_result::fetch_field_direct' => ['object{name:string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:\'\',catalog:\'def\'}|false', 'index'=>'int'], - 'mysqli_result::fetch_fields' => ['list'], - 'mysqli_result::fetch_object' => ['object|false|null', 'class='=>'string', 'constructor_args='=>'array'], - 'mysqli_result::fetch_row' => ['list|false|null'], - 'mysqli_result::field_seek' => ['bool', 'index'=>'int'], - 'mysqli_result::free' => ['void'], - 'mysqli_result::free_result' => ['void'], - 'mysqli_rollback' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'string'], - 'mysqli_rpl_parse_enabled' => ['int', 'link'=>'mysqli'], - 'mysqli_rpl_probe' => ['bool', 'link'=>'mysqli'], - 'mysqli_rpl_query_type' => ['int', 'link'=>'mysqli', 'query'=>'string'], - 'mysqli_savepoint' => ['bool', 'mysql'=>'mysqli', 'name'=>'string'], - 'mysqli_savepoint_libmysql' => ['bool'], - 'mysqli_select_db' => ['bool', 'mysql'=>'mysqli', 'database'=>'string'], - 'mysqli_send_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], - 'mysqli_set_charset' => ['bool', 'mysql'=>'mysqli', 'charset'=>'string'], - 'mysqli_set_local_infile_default' => ['void', 'link'=>'mysqli'], - 'mysqli_set_local_infile_handler' => ['bool', 'link'=>'mysqli', 'read_func'=>'callable'], - 'mysqli_set_opt' => ['bool', 'mysql'=>'mysqli', 'option'=>'int', 'value'=>'string|int'], - 'mysqli_slave_query' => ['bool', 'link'=>'mysqli', 'query'=>'string'], - 'mysqli_sqlstate' => ['string', 'mysql'=>'mysqli'], - 'mysqli_ssl_set' => ['true', 'mysql'=>'mysqli', 'key'=>'?string', 'certificate'=>'?string', 'ca_certificate'=>'?string', 'ca_path'=>'?string', 'cipher_algos'=>'?string'], - 'mysqli_stat' => ['string|false', 'mysql'=>'mysqli'], - 'mysqli_stmt::__construct' => ['void', 'mysql'=>'mysqli', 'query='=>'string'], - 'mysqli_stmt::attr_get' => ['int', 'attribute'=>'int'], - 'mysqli_stmt::attr_set' => ['bool', 'attribute'=>'int', 'value'=>'int'], - 'mysqli_stmt::bind_param' => ['bool', 'types'=>'string', '&var'=>'mixed', '&...vars='=>'mixed'], - 'mysqli_stmt::bind_result' => ['bool', '&w_var1'=>'', '&...w_vars='=>''], - 'mysqli_stmt::close' => ['true'], - 'mysqli_stmt::data_seek' => ['void', 'offset'=>'int'], - 'mysqli_stmt::execute' => ['bool'], - 'mysqli_stmt::fetch' => ['bool|null'], - 'mysqli_stmt::free_result' => ['void'], - 'mysqli_stmt::get_result' => ['mysqli_result|false'], - 'mysqli_stmt::get_warnings' => ['object'], - 'mysqli_stmt::more_results' => ['bool'], - 'mysqli_stmt::next_result' => ['bool'], - 'mysqli_stmt::num_rows' => ['int<0, max>|numeric-string'], - 'mysqli_stmt::prepare' => ['bool', 'query'=>'string'], - 'mysqli_stmt::reset' => ['bool'], - 'mysqli_stmt::result_metadata' => ['mysqli_result|false'], - 'mysqli_stmt::send_long_data' => ['bool', 'param_num'=>'int', 'data'=>'string'], - 'mysqli_stmt::store_result' => ['bool'], - 'mysqli_stmt_affected_rows' => ['int<-1, max>|numeric-string', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_attr_get' => ['int', 'statement'=>'mysqli_stmt', 'attribute'=>'int'], - 'mysqli_stmt_attr_set' => ['bool', 'statement'=>'mysqli_stmt', 'attribute'=>'int', 'value'=>'int'], - 'mysqli_stmt_bind_param' => ['bool', 'statement'=>'mysqli_stmt', 'types'=>'string', '&var'=>'mixed', '&...vars='=>'mixed'], - 'mysqli_stmt_bind_result' => ['bool', 'statement'=>'mysqli_stmt', '&w_var1'=>'', '&...w_vars='=>''], - 'mysqli_stmt_close' => ['true', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_data_seek' => ['void', 'statement'=>'mysqli_stmt', 'offset'=>'int'], - 'mysqli_stmt_errno' => ['int', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_error' => ['string', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_error_list' => ['array', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_execute' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_fetch' => ['bool|null', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_field_count' => ['int', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_free_result' => ['void', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_get_result' => ['mysqli_result|false', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_get_warnings' => ['object', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_init' => ['mysqli_stmt', 'mysql'=>'mysqli'], - 'mysqli_stmt_insert_id' => ['mixed', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_more_results' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_next_result' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_num_rows' => ['int', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_param_count' => ['int', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_prepare' => ['bool', 'statement'=>'mysqli_stmt', 'query'=>'string'], - 'mysqli_stmt_reset' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_result_metadata' => ['mysqli_result|false', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_send_long_data' => ['bool', 'statement'=>'mysqli_stmt', 'param_num'=>'int', 'data'=>'string'], - 'mysqli_stmt_sqlstate' => ['string', 'statement'=>'mysqli_stmt'], - 'mysqli_stmt_store_result' => ['bool', 'statement'=>'mysqli_stmt'], - 'mysqli_store_result' => ['mysqli_result|false', 'mysql'=>'mysqli', 'mode='=>'int'], - 'mysqli_thread_id' => ['int', 'mysql'=>'mysqli'], - 'mysqli_thread_safe' => ['bool'], - 'mysqli_use_result' => ['mysqli_result|false', 'mysql'=>'mysqli'], - 'mysqli_warning::__construct' => ['void'], - 'mysqli_warning::next' => ['bool'], - 'mysqli_warning_count' => ['int', 'mysql'=>'mysqli'], - 'mysqlnd_memcache_get_config' => ['array', 'connection'=>'mixed'], - 'mysqlnd_memcache_set' => ['bool', 'mysql_connection'=>'mixed', 'memcache_connection='=>'Memcached', 'pattern='=>'string', 'callback='=>'callable'], - 'mysqlnd_ms_dump_servers' => ['array', 'connection'=>'mixed'], - 'mysqlnd_ms_fabric_select_global' => ['array', 'connection'=>'mixed', 'table_name'=>'mixed'], - 'mysqlnd_ms_fabric_select_shard' => ['array', 'connection'=>'mixed', 'table_name'=>'mixed', 'shard_key'=>'mixed'], - 'mysqlnd_ms_get_last_gtid' => ['string', 'connection'=>'mixed'], - 'mysqlnd_ms_get_last_used_connection' => ['array', 'connection'=>'mixed'], - 'mysqlnd_ms_get_stats' => ['array'], - 'mysqlnd_ms_match_wild' => ['bool', 'table_name'=>'string', 'wildcard'=>'string'], - 'mysqlnd_ms_query_is_select' => ['int', 'query'=>'string'], - 'mysqlnd_ms_set_qos' => ['bool', 'connection'=>'mixed', 'service_level'=>'int', 'service_level_option='=>'int', 'option_value='=>'mixed'], - 'mysqlnd_ms_set_user_pick_server' => ['bool', 'function'=>'string'], - 'mysqlnd_ms_xa_begin' => ['int', 'connection'=>'mixed', 'gtrid'=>'string', 'timeout='=>'int'], - 'mysqlnd_ms_xa_commit' => ['int', 'connection'=>'mixed', 'gtrid'=>'string'], - 'mysqlnd_ms_xa_gc' => ['int', 'connection'=>'mixed', 'gtrid='=>'string', 'ignore_max_retries='=>'bool'], - 'mysqlnd_ms_xa_rollback' => ['int', 'connection'=>'mixed', 'gtrid'=>'string'], - 'mysqlnd_qc_change_handler' => ['bool', 'handler'=>''], - 'mysqlnd_qc_clear_cache' => ['bool'], - 'mysqlnd_qc_get_available_handlers' => ['array'], - 'mysqlnd_qc_get_cache_info' => ['array'], - 'mysqlnd_qc_get_core_stats' => ['array'], - 'mysqlnd_qc_get_handler' => ['array'], - 'mysqlnd_qc_get_normalized_query_trace_log' => ['array'], - 'mysqlnd_qc_get_query_trace_log' => ['array'], - 'mysqlnd_qc_set_cache_condition' => ['bool', 'condition_type'=>'int', 'condition'=>'mixed', 'condition_option'=>'mixed'], - 'mysqlnd_qc_set_is_select' => ['mixed', 'callback'=>'string'], - 'mysqlnd_qc_set_storage_handler' => ['bool', 'handler'=>'string'], - 'mysqlnd_qc_set_user_handlers' => ['bool', 'get_hash'=>'string', 'find_query_in_cache'=>'string', 'return_to_cache'=>'string', 'add_query_to_cache_if_not_exists'=>'string', 'query_is_select'=>'string', 'update_query_run_time_stats'=>'string', 'get_stats'=>'string', 'clear_cache'=>'string'], - 'mysqlnd_uh_convert_to_mysqlnd' => ['resource', '&rw_mysql_connection'=>'mysqli'], - 'mysqlnd_uh_set_connection_proxy' => ['bool', '&rw_connection_proxy'=>'MysqlndUhConnection', '&rw_mysqli_connection='=>'mysqli'], - 'mysqlnd_uh_set_statement_proxy' => ['bool', '&rw_statement_proxy'=>'MysqlndUhStatement'], - 'natcasesort' => ['bool', '&rw_array'=>'array'], - 'natsort' => ['bool', '&rw_array'=>'array'], - 'newrelic_add_custom_parameter' => ['bool', 'key'=>'string', 'value'=>'bool|float|int|string'], - 'newrelic_add_custom_tracer' => ['bool', 'function_name'=>'string'], - 'newrelic_background_job' => ['void', 'flag='=>'bool'], - 'newrelic_capture_params' => ['void', 'enable='=>'bool'], - 'newrelic_custom_metric' => ['bool', 'metric_name'=>'string', 'value'=>'float'], - 'newrelic_disable_autorum' => ['true'], - 'newrelic_end_of_transaction' => ['void'], - 'newrelic_end_transaction' => ['bool', 'ignore='=>'bool'], - 'newrelic_get_browser_timing_footer' => ['string', 'include_tags='=>'bool'], - 'newrelic_get_browser_timing_header' => ['string', 'include_tags='=>'bool'], - 'newrelic_ignore_apdex' => ['void'], - 'newrelic_ignore_transaction' => ['void'], - 'newrelic_name_transaction' => ['bool', 'name'=>'string'], - 'newrelic_notice_error' => ['void', 'message'=>'string', 'exception='=>'Exception|Throwable'], - 'newrelic_notice_error\'1' => ['void', 'unused_1'=>'string', 'message'=>'string', 'unused_2'=>'string', 'unused_3'=>'int', 'unused_4='=>''], - 'newrelic_record_custom_event' => ['void', 'name'=>'string', 'attributes'=>'array'], - 'newrelic_record_datastore_segment' => ['mixed', 'func'=>'callable', 'parameters'=>'array'], - 'newrelic_set_appname' => ['bool', 'name'=>'string', 'license='=>'string', 'xmit='=>'bool'], - 'newrelic_set_user_attributes' => ['bool', 'user'=>'string', 'account'=>'string', 'product'=>'string'], - 'newrelic_start_transaction' => ['bool', 'appname'=>'string', 'license='=>'string'], - 'next' => ['mixed', '&r_array'=>'array|object'], - 'ngettext' => ['string', 'singular'=>'string', 'plural'=>'string', 'count'=>'int'], - 'nl2br' => ['string', 'string'=>'string', 'use_xhtml='=>'bool'], - 'nl_langinfo' => ['string|false', 'item'=>'int'], - 'normalizer_is_normalized' => ['bool', 'string'=>'string', 'form='=>'int'], - 'normalizer_normalize' => ['string|false', 'string'=>'string', 'form='=>'int'], - 'notes_body' => ['array', 'server'=>'string', 'mailbox'=>'string', 'msg_number'=>'int'], - 'notes_copy_db' => ['bool', 'from_database_name'=>'string', 'to_database_name'=>'string'], - 'notes_create_db' => ['bool', 'database_name'=>'string'], - 'notes_create_note' => ['bool', 'database_name'=>'string', 'form_name'=>'string'], - 'notes_drop_db' => ['bool', 'database_name'=>'string'], - 'notes_find_note' => ['int', 'database_name'=>'string', 'name'=>'string', 'type='=>'string'], - 'notes_header_info' => ['object', 'server'=>'string', 'mailbox'=>'string', 'msg_number'=>'int'], - 'notes_list_msgs' => ['bool', 'db'=>'string'], - 'notes_mark_read' => ['bool', 'database_name'=>'string', 'user_name'=>'string', 'note_id'=>'string'], - 'notes_mark_unread' => ['bool', 'database_name'=>'string', 'user_name'=>'string', 'note_id'=>'string'], - 'notes_nav_create' => ['bool', 'database_name'=>'string', 'name'=>'string'], - 'notes_search' => ['array', 'database_name'=>'string', 'keywords'=>'string'], - 'notes_unread' => ['array', 'database_name'=>'string', 'user_name'=>'string'], - 'notes_version' => ['float', 'database_name'=>'string'], - 'nsapi_request_headers' => ['array'], - 'nsapi_response_headers' => ['array'], - 'nsapi_virtual' => ['bool', 'uri'=>'string'], - 'nthmac' => ['string', 'clent'=>'string', 'data'=>'string'], - 'number_format' => ['string', 'num'=>'float', 'decimals='=>'int'], - 'number_format\'1' => ['string', 'num'=>'float', 'decimals'=>'int', 'decimal_separator'=>'?string', 'thousands_separator'=>'?string'], - 'numfmt_create' => ['NumberFormatter|null', 'locale'=>'string', 'style'=>'int', 'pattern='=>'string'], - 'numfmt_format' => ['string|false', 'formatter'=>'NumberFormatter', 'num'=>'int|float', 'type='=>'int'], - 'numfmt_format_currency' => ['string|false', 'formatter'=>'NumberFormatter', 'amount'=>'float', 'currency'=>'string'], - 'numfmt_get_attribute' => ['float|int|false', 'formatter'=>'NumberFormatter', 'attribute'=>'int'], - 'numfmt_get_error_code' => ['int', 'formatter'=>'NumberFormatter'], - 'numfmt_get_error_message' => ['string', 'formatter'=>'NumberFormatter'], - 'numfmt_get_locale' => ['string', 'formatter'=>'NumberFormatter', 'type='=>'int'], - 'numfmt_get_pattern' => ['string|false', 'formatter'=>'NumberFormatter'], - 'numfmt_get_symbol' => ['string|false', 'formatter'=>'NumberFormatter', 'symbol'=>'int'], - 'numfmt_get_text_attribute' => ['string|false', 'formatter'=>'NumberFormatter', 'attribute'=>'int'], - 'numfmt_parse' => ['float|int|false', 'formatter'=>'NumberFormatter', 'string'=>'string', 'type='=>'int', '&rw_offset='=>'int'], - 'numfmt_parse_currency' => ['float|false', 'formatter'=>'NumberFormatter', 'string'=>'string', '&w_currency'=>'string', '&rw_offset='=>'int'], - 'numfmt_set_attribute' => ['bool', 'formatter'=>'NumberFormatter', 'attribute'=>'int', 'value'=>'float|int'], - 'numfmt_set_pattern' => ['bool', 'formatter'=>'NumberFormatter', 'pattern'=>'string'], - 'numfmt_set_symbol' => ['bool', 'formatter'=>'NumberFormatter', 'symbol'=>'int', 'value'=>'string'], - 'numfmt_set_text_attribute' => ['bool', 'formatter'=>'NumberFormatter', 'attribute'=>'int', 'value'=>'string'], - 'oauth_get_sbs' => ['string', 'http_method'=>'string', 'uri'=>'string', 'parameters'=>'array'], - 'oauth_urlencode' => ['string', 'uri'=>'string'], - 'ob_clean' => ['bool'], - 'ob_deflatehandler' => ['string', 'data'=>'string', 'mode'=>'int'], - 'ob_end_clean' => ['bool'], - 'ob_end_flush' => ['bool'], - 'ob_etaghandler' => ['string', 'data'=>'string', 'mode'=>'int'], - 'ob_flush' => ['bool'], - 'ob_get_clean' => ['string|false'], - 'ob_get_contents' => ['string|false'], - 'ob_get_flush' => ['string|false'], - 'ob_get_length' => ['int|false'], - 'ob_get_level' => ['int'], - 'ob_get_status' => ['array', 'full_status='=>'bool'], - 'ob_gzhandler' => ['string|false', 'data'=>'string', 'flags'=>'int'], - 'ob_iconv_handler' => ['string', 'contents'=>'string', 'status'=>'int'], - 'ob_implicit_flush' => ['void', 'enable='=>'int'], - 'ob_inflatehandler' => ['string', 'data'=>'string', 'mode'=>'int'], - 'ob_list_handlers' => ['list'], - 'ob_start' => ['bool', 'callback='=>'string|array|?callable', 'chunk_size='=>'int', 'flags='=>'int'], - 'ob_tidyhandler' => ['string', 'input'=>'string', 'mode='=>'int'], - 'oci_bind_array_by_name' => ['bool', 'statement'=>'resource', 'param'=>'string', '&rw_var'=>'array', 'max_array_length'=>'int', 'max_item_length='=>'int', 'type='=>'int'], - 'oci_bind_by_name' => ['bool', 'statement'=>'resource', 'param'=>'string', '&rw_var'=>'mixed', 'max_length='=>'int', 'type='=>'int'], - 'oci_cancel' => ['bool', 'statement'=>'resource'], - 'oci_client_version' => ['string'], - 'oci_close' => ['bool', 'connection'=>'resource'], - 'oci_collection_append' => ['bool', 'collection'=>'string'], - 'oci_collection_assign' => ['bool', 'to'=>'object'], - 'oci_collection_element_assign' => ['bool', 'collection'=>'int', 'index'=>'string'], - 'oci_collection_element_get' => ['string', 'collection'=>'int'], - 'oci_collection_max' => ['int'], - 'oci_collection_size' => ['int'], - 'oci_collection_trim' => ['bool', 'collection'=>'int'], - 'oci_commit' => ['bool', 'connection'=>'resource'], - 'oci_connect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], - 'oci_define_by_name' => ['bool', 'statement'=>'resource', 'column'=>'string', '&w_var'=>'mixed', 'type='=>'int'], - 'oci_error' => ['array|false', 'connection_or_statement='=>'resource'], - 'oci_execute' => ['bool', 'statement'=>'resource', 'mode='=>'int'], - 'oci_fetch' => ['bool', 'statement'=>'resource'], - 'oci_fetch_all' => ['int|false', 'statement'=>'resource', '&w_output'=>'array', 'offset='=>'int', 'limit='=>'int', 'flags='=>'int'], - 'oci_fetch_array' => ['array|false', 'statement'=>'resource', 'mode='=>'int'], - 'oci_fetch_assoc' => ['array|false', 'statement'=>'resource'], - 'oci_fetch_object' => ['object|false', 'statement'=>'resource'], - 'oci_fetch_row' => ['array|false', 'statement'=>'resource'], - 'oci_field_is_null' => ['bool', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_name' => ['string|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_precision' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_scale' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_size' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_type' => ['mixed|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_field_type_raw' => ['int|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_free_collection' => ['bool'], - 'oci_free_cursor' => ['bool', 'statement'=>'resource'], - 'oci_free_descriptor' => ['bool'], - 'oci_free_statement' => ['bool', 'statement'=>'resource'], - 'oci_get_implicit' => ['bool', 'stmt'=>''], - 'oci_get_implicit_resultset' => ['resource|false', 'statement'=>'resource'], - 'oci_internal_debug' => ['void', 'onoff'=>'bool'], - 'oci_lob_append' => ['bool', 'to'=>'object'], - 'oci_lob_close' => ['bool'], - 'oci_lob_copy' => ['bool', 'to'=>'OCILob', 'from'=>'OCILob', 'length='=>'int'], - 'oci_lob_eof' => ['bool'], - 'oci_lob_erase' => ['int', 'lob'=>'int', 'offset'=>'int'], - 'oci_lob_export' => ['bool', 'lob'=>'string', 'filename'=>'int', 'offset'=>'int'], - 'oci_lob_flush' => ['bool', 'lob'=>'int'], - 'oci_lob_import' => ['bool', 'lob'=>'string'], - 'oci_lob_is_equal' => ['bool', 'lob1'=>'OCILob', 'lob2'=>'OCILob'], - 'oci_lob_load' => ['string'], - 'oci_lob_read' => ['string', 'lob'=>'int'], - 'oci_lob_rewind' => ['bool'], - 'oci_lob_save' => ['bool', 'lob'=>'string', 'data'=>'int'], - 'oci_lob_seek' => ['bool', 'lob'=>'int', 'offset'=>'int'], - 'oci_lob_size' => ['int'], - 'oci_lob_tell' => ['int'], - 'oci_lob_truncate' => ['bool', 'lob'=>'int'], - 'oci_lob_write' => ['int', 'lob'=>'string', 'data'=>'int'], - 'oci_lob_write_temporary' => ['bool', 'value'=>'string', 'lob_type'=>'int'], - 'oci_new_collection' => ['OCICollection|false', 'connection'=>'resource', 'type_name'=>'string', 'schema='=>'string'], - 'oci_new_connect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], - 'oci_new_cursor' => ['resource|false', 'connection'=>'resource'], - 'oci_new_descriptor' => ['OCILob|false', 'connection'=>'resource', 'type='=>'int'], - 'oci_num_fields' => ['int|false', 'statement'=>'resource'], - 'oci_num_rows' => ['int|false', 'statement'=>'resource'], - 'oci_parse' => ['resource|false', 'connection'=>'resource', 'sql'=>'string'], - 'oci_password_change' => ['bool', 'connection'=>'resource', 'username'=>'string', 'old_password'=>'string', 'new_password'=>'string'], - 'oci_pconnect' => ['resource|false', 'username'=>'string', 'password'=>'string', 'connection_string='=>'string', 'encoding='=>'string', 'session_mode='=>'int'], - 'oci_result' => ['mixed|false', 'statement'=>'resource', 'column'=>'mixed'], - 'oci_rollback' => ['bool', 'connection'=>'resource'], - 'oci_server_version' => ['string|false', 'connection'=>'resource'], - 'oci_set_action' => ['bool', 'connection'=>'resource', 'action'=>'string'], - 'oci_set_call_timeout' => ['bool', 'connection'=>'resource', 'timeout'=>'int'], - 'oci_set_client_identifier' => ['bool', 'connection'=>'resource', 'client_id'=>'string'], - 'oci_set_client_info' => ['bool', 'connection'=>'resource', 'client_info'=>'string'], - 'oci_set_db_operation' => ['bool', 'connection'=>'resource', 'action'=>'string'], - 'oci_set_edition' => ['bool', 'edition'=>'string'], - 'oci_set_module_name' => ['bool', 'connection'=>'resource', 'name'=>'string'], - 'oci_set_prefetch' => ['bool', 'statement'=>'resource', 'rows'=>'int'], - 'oci_statement_type' => ['string|false', 'statement'=>'resource'], - 'ocifetchinto' => ['int|bool', 'statement'=>'resource', '&w_result'=>'array', 'mode='=>'int'], - 'ocigetbufferinglob' => ['bool'], - 'ocisetbufferinglob' => ['bool', 'lob'=>'bool'], - 'octdec' => ['int|float', 'octal_string'=>'string'], - 'odbc_autocommit' => ['int|bool', 'odbc'=>'resource', 'enable='=>'bool'], - 'odbc_binmode' => ['bool', 'statement'=>'resource', 'mode'=>'int'], - 'odbc_close' => ['void', 'odbc'=>'resource'], - 'odbc_close_all' => ['void'], - 'odbc_columnprivileges' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'column'=>'string'], - 'odbc_columns' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'table='=>'?string', 'column='=>'?string'], - 'odbc_commit' => ['bool', 'odbc'=>'resource'], - 'odbc_connect' => ['resource|false', 'dsn'=>'string', 'user'=>'string', 'password'=>'string', 'cursor_option='=>'int'], - 'odbc_cursor' => ['string', 'statement'=>'resource'], - 'odbc_data_source' => ['array|false', 'odbc'=>'resource', 'fetch_type'=>'int'], - 'odbc_do' => ['resource', 'odbc'=>'resource', 'query'=>'string', 'flags='=>'int'], - 'odbc_error' => ['string', 'odbc='=>'resource'], - 'odbc_errormsg' => ['string', 'odbc='=>'resource'], - 'odbc_exec' => ['resource', 'odbc'=>'resource', 'query'=>'string', 'flags='=>'int'], - 'odbc_execute' => ['bool', 'statement'=>'resource', 'params='=>'array'], - 'odbc_fetch_array' => ['array|false', 'statement'=>'resource', 'row='=>'int'], - 'odbc_fetch_into' => ['int', 'statement'=>'resource', '&w_array'=>'array', 'row='=>'int'], - 'odbc_fetch_object' => ['stdClass|false', 'statement'=>'resource', 'row='=>'int'], - 'odbc_fetch_row' => ['bool', 'statement'=>'resource', 'row='=>'int'], - 'odbc_field_len' => ['int|false', 'statement'=>'resource', 'field'=>'int'], - 'odbc_field_name' => ['string|false', 'statement'=>'resource', 'field'=>'int'], - 'odbc_field_num' => ['int|false', 'statement'=>'resource', 'field'=>'string'], - 'odbc_field_precision' => ['int', 'statement'=>'resource', 'field'=>'int'], - 'odbc_field_scale' => ['int|false', 'statement'=>'resource', 'field'=>'int'], - 'odbc_field_type' => ['string|false', 'statement'=>'resource', 'field'=>'int'], - 'odbc_foreignkeys' => ['resource|false', 'odbc'=>'resource', 'pk_catalog'=>'?string', 'pk_schema'=>'string', 'pk_table'=>'string', 'fk_catalog'=>'string', 'fk_schema'=>'string', 'fk_table'=>'string'], - 'odbc_free_result' => ['bool', 'statement'=>'resource'], - 'odbc_gettypeinfo' => ['resource', 'odbc'=>'resource', 'data_type='=>'int'], - 'odbc_longreadlen' => ['bool', 'statement'=>'resource', 'length'=>'int'], - 'odbc_next_result' => ['bool', 'statement'=>'resource'], - 'odbc_num_fields' => ['int', 'statement'=>'resource'], - 'odbc_num_rows' => ['int', 'statement'=>'resource'], - 'odbc_pconnect' => ['resource|false', 'dsn'=>'string', 'user'=>'string', 'password'=>'string', 'cursor_option='=>'int'], - 'odbc_prepare' => ['resource|false', 'odbc'=>'resource', 'query'=>'string'], - 'odbc_primarykeys' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string'], - 'odbc_procedurecolumns' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'procedure='=>'?string', 'column='=>'?string'], - 'odbc_procedures' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'?string', 'procedure='=>'?string'], - 'odbc_result' => ['string|bool|null', 'statement'=>'resource', 'field'=>'string|int'], - 'odbc_result_all' => ['int|false', 'statement'=>'resource', 'format='=>'string'], - 'odbc_rollback' => ['bool', 'odbc'=>'resource'], - 'odbc_setoption' => ['bool', 'odbc'=>'resource', 'which'=>'int', 'option'=>'int', 'value'=>'int'], - 'odbc_specialcolumns' => ['resource|false', 'odbc'=>'resource', 'type'=>'int', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'scope'=>'int', 'nullable'=>'int'], - 'odbc_statistics' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string', 'unique'=>'int', 'accuracy'=>'int'], - 'odbc_tableprivileges' => ['resource|false', 'odbc'=>'resource', 'catalog'=>'?string', 'schema'=>'string', 'table'=>'string'], - 'odbc_tables' => ['resource|false', 'odbc'=>'resource', 'catalog='=>'?string', 'schema='=>'string', 'table='=>'string', 'types='=>'string'], - 'opcache_compile_file' => ['bool', 'filename'=>'string'], - 'opcache_get_configuration' => ['array'], - 'opcache_get_status' => ['array|false', 'include_scripts='=>'bool'], - 'opcache_invalidate' => ['bool', 'filename'=>'string', 'force='=>'bool'], - 'opcache_is_script_cached' => ['bool', 'filename'=>'string'], - 'opcache_reset' => ['bool'], - 'openal_buffer_create' => ['resource'], - 'openal_buffer_data' => ['bool', 'buffer'=>'resource', 'format'=>'int', 'data'=>'string', 'freq'=>'int'], - 'openal_buffer_destroy' => ['bool', 'buffer'=>'resource'], - 'openal_buffer_get' => ['int', 'buffer'=>'resource', 'property'=>'int'], - 'openal_buffer_loadwav' => ['bool', 'buffer'=>'resource', 'wavfile'=>'string'], - 'openal_context_create' => ['resource', 'device'=>'resource'], - 'openal_context_current' => ['bool', 'context'=>'resource'], - 'openal_context_destroy' => ['bool', 'context'=>'resource'], - 'openal_context_process' => ['bool', 'context'=>'resource'], - 'openal_context_suspend' => ['bool', 'context'=>'resource'], - 'openal_device_close' => ['bool', 'device'=>'resource'], - 'openal_device_open' => ['resource|false', 'device_desc='=>'string'], - 'openal_listener_get' => ['mixed', 'property'=>'int'], - 'openal_listener_set' => ['bool', 'property'=>'int', 'setting'=>'mixed'], - 'openal_source_create' => ['resource'], - 'openal_source_destroy' => ['bool', 'source'=>'resource'], - 'openal_source_get' => ['mixed', 'source'=>'resource', 'property'=>'int'], - 'openal_source_pause' => ['bool', 'source'=>'resource'], - 'openal_source_play' => ['bool', 'source'=>'resource'], - 'openal_source_rewind' => ['bool', 'source'=>'resource'], - 'openal_source_set' => ['bool', 'source'=>'resource', 'property'=>'int', 'setting'=>'mixed'], - 'openal_source_stop' => ['bool', 'source'=>'resource'], - 'openal_stream' => ['resource', 'source'=>'resource', 'format'=>'int', 'rate'=>'int'], - 'opendir' => ['resource|false', 'directory'=>'string', 'context='=>'resource'], - 'openlog' => ['true', 'prefix'=>'string', 'flags'=>'int', 'facility'=>'int'], - 'openssl_cipher_iv_length' => ['int|false', 'cipher_algo'=>'string'], - 'openssl_csr_export' => ['bool', 'csr'=>'string|resource', '&w_output'=>'string', 'no_text='=>'bool'], - 'openssl_csr_export_to_file' => ['bool', 'csr'=>'string|resource', 'output_filename'=>'string', 'no_text='=>'bool'], - 'openssl_csr_get_public_key' => ['resource|false', 'csr'=>'string|resource', 'short_names='=>'bool'], - 'openssl_csr_get_subject' => ['array|false', 'csr'=>'string|resource', 'short_names='=>'bool'], - 'openssl_csr_new' => ['resource|false', 'distinguished_names'=>'array', '&w_private_key'=>'resource', 'options='=>'array', 'extra_attributes='=>'array'], - 'openssl_csr_sign' => ['resource|false', 'csr'=>'string|resource', 'ca_certificate'=>'string|resource|null', 'private_key'=>'string|resource|array', 'days'=>'int', 'options='=>'array', 'serial='=>'int'], - 'openssl_decrypt' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', 'tag='=>'string', 'aad='=>'string'], - 'openssl_dh_compute_key' => ['string|false', 'public_key'=>'string', 'private_key'=>'resource'], - 'openssl_digest' => ['string|false', 'data'=>'string', 'digest_algo'=>'string', 'binary='=>'bool'], - 'openssl_encrypt' => ['string|false', 'data'=>'string', 'cipher_algo'=>'string', 'passphrase'=>'string', 'options='=>'int', 'iv='=>'string', '&w_tag='=>'string', 'aad='=>'string', 'tag_length='=>'int'], - 'openssl_error_string' => ['string|false'], - 'openssl_free_key' => ['void', 'key'=>'resource'], - 'openssl_get_cert_locations' => ['array'], - 'openssl_get_cipher_methods' => ['array', 'aliases='=>'bool'], - 'openssl_get_md_methods' => ['array', 'aliases='=>'bool'], - 'openssl_get_privatekey' => ['resource|false', 'private_key'=>'string', 'passphrase='=>'string'], - 'openssl_get_publickey' => ['resource|false', 'public_key'=>'resource|string'], - 'openssl_open' => ['bool', 'data'=>'string', '&w_output'=>'string', 'encrypted_key'=>'string', 'private_key'=>'string|array|resource', 'cipher_algo='=>'string', 'iv='=>'string'], - 'openssl_pbkdf2' => ['string|false', 'password'=>'string', 'salt'=>'string', 'key_length'=>'int', 'iterations'=>'int', 'digest_algo='=>'string'], - 'openssl_pkcs12_export' => ['bool', 'certificate'=>'string|resource', '&w_output'=>'string', 'private_key'=>'string|array|resource', 'passphrase'=>'string', 'options='=>'array'], - 'openssl_pkcs12_export_to_file' => ['bool', 'certificate'=>'string|resource', 'output_filename'=>'string', 'private_key'=>'string|array|resource', 'passphrase'=>'string', 'options='=>'array'], - 'openssl_pkcs12_read' => ['bool', 'pkcs12'=>'string', '&w_certificates'=>'array', 'passphrase'=>'string'], - 'openssl_pkcs7_decrypt' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource', 'private_key='=>'string|resource|array'], - 'openssl_pkcs7_encrypt' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource|array', 'headers'=>'array', 'flags='=>'int', 'cipher_algo='=>'int'], - 'openssl_pkcs7_read' => ['bool', 'data'=>'string', '&w_certificates'=>'array'], - 'openssl_pkcs7_sign' => ['bool', 'input_filename'=>'string', 'output_filename'=>'string', 'certificate'=>'string|resource', 'private_key'=>'string|resource|array', 'headers'=>'array', 'flags='=>'int', 'untrusted_certificates_filename='=>'string'], - 'openssl_pkcs7_verify' => ['bool|int', 'input_filename'=>'string', 'flags'=>'int', 'signers_certificates_filename='=>'string', 'ca_info='=>'array', 'untrusted_certificates_filename='=>'string', 'content='=>'string', 'output_filename='=>'string'], - 'openssl_pkey_export' => ['bool', 'key'=>'resource', '&w_output'=>'string', 'passphrase='=>'string|null', 'options='=>'array'], - 'openssl_pkey_export_to_file' => ['bool', 'key'=>'resource|string|array', 'output_filename'=>'string', 'passphrase='=>'string|null', 'options='=>'array'], - 'openssl_pkey_free' => ['void', 'key'=>'resource'], - 'openssl_pkey_get_details' => ['array|false', 'key'=>'resource'], - 'openssl_pkey_get_private' => ['resource|false', 'private_key'=>'string', 'passphrase='=>'string'], - 'openssl_pkey_get_public' => ['resource|false', 'public_key'=>'resource|string'], - 'openssl_pkey_new' => ['resource|false', 'options='=>'array'], - 'openssl_private_decrypt' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'private_key'=>'string|resource|array', 'padding='=>'int'], - 'openssl_private_encrypt' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'private_key'=>'string|resource|array', 'padding='=>'int'], - 'openssl_public_decrypt' => ['bool', 'data'=>'string', '&w_decrypted_data'=>'string', 'public_key'=>'string|resource', 'padding='=>'int'], - 'openssl_public_encrypt' => ['bool', 'data'=>'string', '&w_encrypted_data'=>'string', 'public_key'=>'string|resource', 'padding='=>'int'], - 'openssl_random_pseudo_bytes' => ['string|false', 'length'=>'int', '&w_strong_result='=>'bool'], - 'openssl_seal' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_encrypted_keys'=>'array', 'public_key'=>'array', 'cipher_algo='=>'string', '&rw_iv='=>'string'], - 'openssl_sign' => ['bool', 'data'=>'string', '&w_signature'=>'string', 'private_key'=>'resource|string', 'algorithm='=>'int|string'], - 'openssl_spki_export' => ['string|false', 'spki'=>'string'], - 'openssl_spki_export_challenge' => ['string|false', 'spki'=>'string'], - 'openssl_spki_new' => ['?string', 'private_key'=>'resource', 'challenge'=>'string', 'digest_algo='=>'int'], - 'openssl_spki_verify' => ['bool', 'spki'=>'string'], - 'openssl_verify' => ['-1|0|1', 'data'=>'string', 'signature'=>'string', 'public_key'=>'resource|string', 'algorithm='=>'int|string'], - 'openssl_x509_check_private_key' => ['bool', 'certificate'=>'string|resource', 'private_key'=>'string|resource|array'], - 'openssl_x509_checkpurpose' => ['bool|int', 'certificate'=>'string|resource', 'purpose'=>'int', 'ca_info='=>'array', 'untrusted_certificates_file='=>'string'], - 'openssl_x509_export' => ['bool', 'certificate'=>'string|resource', '&w_output'=>'string', 'no_text='=>'bool'], - 'openssl_x509_export_to_file' => ['bool', 'certificate'=>'string|resource', 'output_filename'=>'string', 'no_text='=>'bool'], - 'openssl_x509_fingerprint' => ['string|false', 'certificate'=>'string|resource', 'digest_algo='=>'string', 'binary='=>'bool'], - 'openssl_x509_free' => ['void', 'certificate'=>'resource'], - 'openssl_x509_parse' => ['array|false', 'certificate'=>'string|resource', 'short_names='=>'bool'], - 'openssl_x509_read' => ['resource|false', 'certificate'=>'string|resource'], - 'ord' => ['int<0,255>', 'character'=>'string'], - 'output_add_rewrite_var' => ['bool', 'name'=>'string', 'value'=>'string'], - 'output_cache_disable' => ['void'], - 'output_cache_disable_compression' => ['void'], - 'output_cache_exists' => ['bool', 'key'=>'string', 'lifetime'=>'int'], - 'output_cache_fetch' => ['string', 'key'=>'string', 'function'=>'', 'lifetime'=>'int'], - 'output_cache_get' => ['mixed|false', 'key'=>'string', 'lifetime'=>'int'], - 'output_cache_output' => ['string', 'key'=>'string', 'function'=>'', 'lifetime'=>'int'], - 'output_cache_put' => ['bool', 'key'=>'string', 'data'=>'mixed'], - 'output_cache_remove' => ['bool', 'filename'=>''], - 'output_cache_remove_key' => ['bool', 'key'=>'string'], - 'output_cache_remove_url' => ['bool', 'url'=>'string'], - 'output_cache_stop' => ['void'], - 'output_reset_rewrite_vars' => ['bool'], - 'outputformatObj::getOption' => ['string', 'property_name'=>'string'], - 'outputformatObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'outputformatObj::setOption' => ['void', 'property_name'=>'string', 'new_value'=>'string'], - 'outputformatObj::validate' => ['int'], - 'overload' => ['', 'class_name'=>'string'], - 'override_function' => ['bool', 'function_name'=>'string', 'function_args'=>'string', 'function_code'=>'string'], - 'pack' => ['string|false', 'format'=>'string', '...values='=>'mixed'], - 'parallel\Future::done' => ['bool'], - 'parallel\Future::select' => ['mixed', '&resolving'=>'parallel\Future[]', '&w_resolved'=>'parallel\Future[]', '&w_errored'=>'parallel\Future[]', '&w_timedout='=>'parallel\Future[]', 'timeout='=>'int'], - 'parallel\Future::value' => ['mixed', 'timeout='=>'int'], - 'parallel\Runtime::__construct' => ['void', 'arg'=>'string|array'], - 'parallel\Runtime::__construct\'1' => ['void', 'bootstrap'=>'string', 'configuration'=>'array'], - 'parallel\Runtime::close' => ['void'], - 'parallel\Runtime::kill' => ['void'], - 'parallel\Runtime::run' => ['?parallel\Future', 'closure'=>'Closure', 'args='=>'array'], - 'parle\rlexer::insertMacro' => ['void', 'name'=>'string', 'regex'=>'string'], - 'parse_ini_file' => ['array|false', 'filename'=>'string', 'process_sections='=>'bool', 'scanner_mode='=>'int'], - 'parse_ini_string' => ['array|false', 'ini_string'=>'string', 'process_sections='=>'bool', 'scanner_mode='=>'int'], - 'parse_str' => ['void', 'string'=>'string', '&w_result='=>'array'], - 'parse_url' => ['int|string|array|null|false', 'url'=>'string', 'component='=>'int'], - 'parsekit_compile_file' => ['array', 'filename'=>'string', 'errors='=>'array', 'options='=>'int'], - 'parsekit_compile_string' => ['array', 'phpcode'=>'string', 'errors='=>'array', 'options='=>'int'], - 'parsekit_func_arginfo' => ['array', 'function'=>'mixed'], - 'passthru' => ['void', 'command'=>'string', '&w_result_code='=>'int'], - 'password_get_info' => ['array', 'hash'=>'string'], - 'password_hash' => ['string|false', 'password'=>'string', 'algo'=>'int', 'options='=>'array'], - 'password_make_salt' => ['bool', 'password'=>'string', 'hash'=>'string'], - 'password_needs_rehash' => ['bool', 'hash'=>'string', 'algo'=>'int', 'options='=>'array'], - 'password_verify' => ['bool', 'password'=>'string', 'hash'=>'string'], - 'pathinfo' => ['array|string', 'path'=>'string', 'flags='=>'int'], - 'pclose' => ['int', 'handle'=>'resource'], - 'pcnlt_sigwaitinfo' => ['int', 'set'=>'array', '&w_siginfo'=>'array'], - 'pcntl_alarm' => ['int', 'seconds'=>'int'], - 'pcntl_errno' => ['int'], - 'pcntl_exec' => ['null|false', 'path'=>'string', 'args='=>'array', 'env_vars='=>'array'], - 'pcntl_fork' => ['int'], - 'pcntl_get_last_error' => ['int'], - 'pcntl_getpriority' => ['int', 'process_id='=>'int', 'mode='=>'int'], - 'pcntl_setpriority' => ['bool', 'priority'=>'int', 'process_id='=>'int', 'mode='=>'int'], - 'pcntl_signal' => ['bool', 'signal'=>'int', 'handler'=>'callable():void|callable(int):void|callable(int,array):void|int', 'restart_syscalls='=>'bool'], - 'pcntl_signal_dispatch' => ['bool'], - 'pcntl_sigprocmask' => ['bool', 'mode'=>'int', 'signals'=>'array', '&w_old_signals='=>'array'], - 'pcntl_sigtimedwait' => ['int', 'signals'=>'array', '&w_info='=>'array', 'seconds='=>'int', 'nanoseconds='=>'int'], - 'pcntl_sigwaitinfo' => ['int', 'signals'=>'array', '&w_info='=>'array'], - 'pcntl_strerror' => ['string', 'error_code'=>'int'], - 'pcntl_wait' => ['int', '&w_status'=>'int', 'flags='=>'int', '&w_resource_usage='=>'array'], - 'pcntl_waitpid' => ['int', 'process_id'=>'int', '&w_status'=>'int', 'flags='=>'int', '&w_resource_usage='=>'array'], - 'pcntl_wexitstatus' => ['int', 'status'=>'int'], - 'pcntl_wifcontinued' => ['bool', 'status'=>'int'], - 'pcntl_wifexited' => ['bool', 'status'=>'int'], - 'pcntl_wifsignaled' => ['bool', 'status'=>'int'], - 'pcntl_wifstopped' => ['bool', 'status'=>'int'], - 'pcntl_wstopsig' => ['int', 'status'=>'int'], - 'pcntl_wtermsig' => ['int', 'status'=>'int'], - 'pdo_drivers' => ['array'], - 'pfsockopen' => ['resource|false', 'hostname'=>'string', 'port='=>'int', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float'], - 'pg_affected_rows' => ['int', 'result'=>'resource'], - 'pg_cancel_query' => ['bool', 'connection'=>'resource'], - 'pg_client_encoding' => ['string', 'connection='=>'resource'], - 'pg_close' => ['bool', 'connection='=>'resource'], - 'pg_connect' => ['resource|false', 'connection_string'=>'string', 'flags='=>'int'], - 'pg_connect_poll' => ['int', 'connection'=>'resource'], - 'pg_connection_busy' => ['bool', 'connection'=>'resource'], - 'pg_connection_reset' => ['bool', 'connection'=>'resource'], - 'pg_connection_status' => ['int', 'connection'=>'resource'], - 'pg_consume_input' => ['bool', 'connection'=>'resource'], - 'pg_convert' => ['array|false', 'connection'=>'resource', 'table_name'=>'string', 'values'=>'array', 'flags='=>'int'], - 'pg_copy_from' => ['bool', 'connection'=>'resource', 'table_name'=>'string', 'rows'=>'array', 'separator='=>'string', 'null_as='=>'string'], - 'pg_copy_to' => ['array|false', 'connection'=>'resource', 'table_name'=>'string', 'separator='=>'string', 'null_as='=>'string'], - 'pg_dbname' => ['string', 'connection='=>'resource'], - 'pg_delete' => ['string|bool', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int'], - 'pg_end_copy' => ['bool', 'connection='=>'resource'], - 'pg_escape_bytea' => ['string', 'connection'=>'resource', 'string'=>'string'], - 'pg_escape_bytea\'1' => ['string', 'connection'=>'string'], - 'pg_escape_identifier' => ['string|false', 'connection'=>'resource', 'string'=>'string'], - 'pg_escape_identifier\'1' => ['string|false', 'connection'=>'string'], - 'pg_escape_literal' => ['string|false', 'connection'=>'resource', 'string'=>'string'], - 'pg_escape_literal\'1' => ['string|false', 'connection'=>'string'], - 'pg_escape_string' => ['string', 'connection'=>'resource', 'string'=>'string'], - 'pg_escape_string\'1' => ['string', 'connection'=>'string'], - 'pg_exec' => ['resource|false', 'connection'=>'resource', 'query'=>'string'], - 'pg_exec\'1' => ['resource|false', 'connection'=>'string'], - 'pg_execute' => ['resource|false', 'connection'=>'resource', 'statement_name'=>'string', 'params'=>'array'], - 'pg_execute\'1' => ['resource|false', 'connection'=>'string', 'statement_name'=>'array'], - 'pg_fetch_all' => ['array', 'result'=>'resource'], - 'pg_fetch_all_columns' => ['array', 'result'=>'resource', 'field='=>'int'], - 'pg_fetch_array' => ['array|false', 'result'=>'resource', 'row='=>'?int', 'mode='=>'int'], - 'pg_fetch_assoc' => ['array|false', 'result'=>'resource', 'row='=>'?int'], - 'pg_fetch_object' => ['object|false', 'result'=>'resource', 'row='=>'?int', 'class='=>'string', 'constructor_args='=>'array'], - 'pg_fetch_result' => ['string|false|null', 'result'=>'resource', 'row'=>'string|int'], - 'pg_fetch_result\'1' => ['string|false|null', 'result'=>'resource', 'row'=>'?int', 'field'=>'string|int'], - 'pg_fetch_row' => ['array|false', 'result'=>'resource', 'row='=>'?int', 'mode='=>'int'], - 'pg_field_is_null' => ['int|false', 'result'=>'resource', 'row'=>'string|int'], - 'pg_field_is_null\'1' => ['int|false', 'result'=>'resource', 'row'=>'int', 'field'=>'string|int'], - 'pg_field_name' => ['string', 'result'=>'resource', 'field'=>'int'], - 'pg_field_num' => ['int', 'result'=>'resource', 'field'=>'string'], - 'pg_field_prtlen' => ['int|false', 'result'=>'resource', 'row'=>'string|int'], - 'pg_field_prtlen\'1' => ['int|false', 'result'=>'resource', 'row'=>'int', 'field'=>'string|int'], - 'pg_field_size' => ['int', 'result'=>'resource', 'field'=>'int'], - 'pg_field_table' => ['string|int|false', 'result'=>'resource', 'field'=>'int', 'oid_only='=>'bool'], - 'pg_field_type' => ['string', 'result'=>'resource', 'field'=>'int'], - 'pg_field_type_oid' => ['int|string', 'result'=>'resource', 'field'=>'int'], - 'pg_flush' => ['int|bool', 'connection'=>'resource'], - 'pg_free_result' => ['bool', 'result'=>'resource'], - 'pg_get_notify' => ['array|false', 'connection'=>'resource', 'mode='=>'int'], - 'pg_get_pid' => ['int', 'connection'=>'resource'], - 'pg_get_result' => ['resource|false', 'connection'=>'resource'], - 'pg_host' => ['string', 'connection='=>'resource'], - 'pg_insert' => ['resource|string|false', 'connection'=>'resource', 'table_name'=>'string', 'values'=>'array', 'flags='=>'int'], - 'pg_last_error' => ['string', 'connection='=>'resource'], - 'pg_last_notice' => ['string|array|bool', 'connection'=>'resource', 'mode='=>'int'], - 'pg_last_oid' => ['string|int|false', 'result'=>'resource'], - 'pg_lo_close' => ['bool', 'lob'=>'resource'], - 'pg_lo_create' => ['int|string|false', 'connection='=>'resource', 'oid='=>'int|string'], - 'pg_lo_export' => ['bool', 'connection'=>'resource', 'oid'=>'int|string', 'filename'=>'string'], - 'pg_lo_export\'1' => ['bool', 'connection'=>'int|string', 'oid'=>'string'], - 'pg_lo_import' => ['int|string|false', 'connection'=>'resource', 'filename'=>'string', 'oid'=>'string|int'], - 'pg_lo_import\'1' => ['int|string|false', 'connection'=>'string', 'filename'=>'string|int'], - 'pg_lo_open' => ['resource|false', 'connection'=>'resource', 'oid'=>'int|string', 'mode'=>'string'], - 'pg_lo_open\'1' => ['resource|false', 'connection'=>'int|string', 'oid'=>'string'], - 'pg_lo_read' => ['string|false', 'lob'=>'resource', 'length='=>'int'], - 'pg_lo_read_all' => ['int', 'lob'=>'resource'], - 'pg_lo_seek' => ['bool', 'lob'=>'resource', 'offset'=>'int', 'whence='=>'int'], - 'pg_lo_tell' => ['int', 'lob'=>'resource'], - 'pg_lo_truncate' => ['bool', 'lob'=>'resource', 'size'=>'int'], - 'pg_lo_unlink' => ['bool', 'connection'=>'resource', 'oid'=>'int|string'], - 'pg_lo_unlink\'1' => ['bool', 'connection'=>'int|string'], - 'pg_lo_write' => ['int|false', 'lob'=>'resource', 'data'=>'string', 'length='=>'int'], - 'pg_meta_data' => ['array|false', 'connection'=>'resource', 'table_name'=>'string', 'extended='=>'bool'], - 'pg_num_fields' => ['int', 'result'=>'resource'], - 'pg_num_rows' => ['int', 'result'=>'resource'], - 'pg_options' => ['string', 'connection='=>'resource'], - 'pg_parameter_status' => ['string|false', 'connection'=>'resource', 'name'=>'string'], - 'pg_parameter_status\'1' => ['string|false', 'connection'=>'string'], - 'pg_pconnect' => ['resource|false', 'connection_string'=>'string', 'flags='=>'int'], - 'pg_ping' => ['bool', 'connection='=>'resource'], - 'pg_port' => ['string', 'connection='=>'resource'], - 'pg_prepare' => ['resource|false', 'connection'=>'resource', 'statement_name'=>'string', 'query'=>'string'], - 'pg_prepare\'1' => ['resource|false', 'connection'=>'string', 'statement_name'=>'string'], - 'pg_put_line' => ['bool', 'connection'=>'resource', 'data'=>'string'], - 'pg_put_line\'1' => ['bool', 'connection'=>'string'], - 'pg_query' => ['resource|false', 'connection'=>'resource', 'query'=>'string'], - 'pg_query\'1' => ['resource|false', 'connection'=>'string'], - 'pg_query_params' => ['resource|false', 'connection'=>'resource', 'query'=>'string', 'params'=>'array'], - 'pg_query_params\'1' => ['resource|false', 'connection'=>'string', 'query'=>'array'], - 'pg_result_error' => ['string|false', 'result'=>'resource'], - 'pg_result_error_field' => ['string|false|null', 'result'=>'resource', 'field_code'=>'int'], - 'pg_result_seek' => ['bool', 'result'=>'resource', 'row'=>'int'], - 'pg_result_status' => ['string|int', 'result'=>'resource', 'mode='=>'int'], - 'pg_select' => ['string|array|false', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int'], - 'pg_send_execute' => ['bool|int', 'connection'=>'resource', 'statement_name'=>'string', 'params'=>'array'], - 'pg_send_prepare' => ['bool|int', 'connection'=>'resource', 'statement_name'=>'string', 'query'=>'string'], - 'pg_send_query' => ['bool|int', 'connection'=>'resource', 'query'=>'string'], - 'pg_send_query_params' => ['bool|int', 'connection'=>'resource', 'query'=>'string', 'params'=>'array'], - 'pg_set_client_encoding' => ['int', 'connection'=>'resource', 'encoding'=>'string'], - 'pg_set_client_encoding\'1' => ['int', 'connection'=>'string'], - 'pg_set_error_verbosity' => ['int|false', 'connection'=>'resource', 'verbosity'=>'int'], - 'pg_set_error_verbosity\'1' => ['int|false', 'connection'=>'int'], - 'pg_socket' => ['resource|false', 'connection'=>'resource'], - 'pg_trace' => ['bool', 'filename'=>'string', 'mode='=>'string', 'connection='=>'resource'], - 'pg_transaction_status' => ['int', 'connection'=>'resource'], - 'pg_tty' => ['string', 'connection='=>'resource'], - 'pg_unescape_bytea' => ['string', 'string'=>'string'], - 'pg_untrace' => ['bool', 'connection='=>'resource'], - 'pg_update' => ['string|bool', 'connection'=>'resource', 'table_name'=>'string', 'values'=>'array', 'conditions'=>'array', 'flags='=>'int'], - 'pg_version' => ['array', 'connection='=>'resource'], - 'phdfs::__construct' => ['void', 'ip'=>'string', 'port'=>'string'], - 'phdfs::__destruct' => ['void'], - 'phdfs::connect' => ['bool'], - 'phdfs::copy' => ['bool', 'source_file'=>'string', 'destination_file'=>'string'], - 'phdfs::create_directory' => ['bool', 'path'=>'string'], - 'phdfs::delete' => ['bool', 'path'=>'string'], - 'phdfs::disconnect' => ['bool'], - 'phdfs::exists' => ['bool', 'path'=>'string'], - 'phdfs::file_info' => ['array', 'path'=>'string'], - 'phdfs::list_directory' => ['array', 'path'=>'string'], - 'phdfs::read' => ['string', 'path'=>'string', 'length='=>'string'], - 'phdfs::rename' => ['bool', 'old_path'=>'string', 'new_path'=>'string'], - 'phdfs::tell' => ['int', 'path'=>'string'], - 'phdfs::write' => ['bool', 'path'=>'string', 'buffer'=>'string', 'mode='=>'string'], - 'php_check_syntax' => ['bool', 'filename'=>'string', 'error_message='=>'string'], - 'php_ini_loaded_file' => ['string|false'], - 'php_ini_scanned_files' => ['string|false'], - 'php_logo_guid' => ['string'], - 'php_sapi_name' => ['string'], - 'php_strip_whitespace' => ['string', 'filename'=>'string'], - 'php_uname' => ['string', 'mode='=>'string'], - 'php_user_filter::filter' => ['int', 'in'=>'resource', 'out'=>'resource', '&rw_consumed'=>'int', 'closing'=>'bool'], - 'php_user_filter::onClose' => ['void'], - 'php_user_filter::onCreate' => ['bool'], - 'phpcredits' => ['true', 'flags='=>'int'], - 'phpdbg_break_file' => ['void', 'file'=>'string', 'line'=>'int'], - 'phpdbg_break_function' => ['void', 'function'=>'string'], - 'phpdbg_break_method' => ['void', 'class'=>'string', 'method'=>'string'], - 'phpdbg_break_next' => ['void'], - 'phpdbg_clear' => ['void'], - 'phpdbg_color' => ['void', 'element'=>'int', 'color'=>'string'], - 'phpdbg_end_oplog' => ['array', 'options='=>'array'], - 'phpdbg_exec' => ['mixed', 'context='=>'string'], - 'phpdbg_get_executable' => ['array', 'options='=>'array'], - 'phpdbg_prompt' => ['void', 'string'=>'string'], - 'phpdbg_start_oplog' => ['void'], - 'phpinfo' => ['true', 'flags='=>'int'], - 'phpversion' => ['string|false', 'extension='=>'string'], - 'pht\AtomicInteger::__construct' => ['void', 'value='=>'int'], - 'pht\AtomicInteger::dec' => ['void'], - 'pht\AtomicInteger::get' => ['int'], - 'pht\AtomicInteger::inc' => ['void'], - 'pht\AtomicInteger::lock' => ['void'], - 'pht\AtomicInteger::set' => ['void', 'value'=>'int'], - 'pht\AtomicInteger::unlock' => ['void'], - 'pht\HashTable::lock' => ['void'], - 'pht\HashTable::size' => ['int'], - 'pht\HashTable::unlock' => ['void'], - 'pht\Queue::front' => ['mixed'], - 'pht\Queue::lock' => ['void'], - 'pht\Queue::pop' => ['mixed'], - 'pht\Queue::push' => ['void', 'value'=>'mixed'], - 'pht\Queue::size' => ['int'], - 'pht\Queue::unlock' => ['void'], - 'pht\Runnable::run' => ['void'], - 'pht\Vector::__construct' => ['void', 'size='=>'int', 'value='=>'mixed'], - 'pht\Vector::deleteAt' => ['void', 'offset'=>'int'], - 'pht\Vector::insertAt' => ['void', 'value'=>'mixed', 'offset'=>'int'], - 'pht\Vector::lock' => ['void'], - 'pht\Vector::pop' => ['mixed'], - 'pht\Vector::push' => ['void', 'value'=>'mixed'], - 'pht\Vector::resize' => ['void', 'size'=>'int', 'value='=>'mixed'], - 'pht\Vector::shift' => ['mixed'], - 'pht\Vector::size' => ['int'], - 'pht\Vector::unlock' => ['void'], - 'pht\Vector::unshift' => ['void', 'value'=>'mixed'], - 'pht\Vector::updateAt' => ['void', 'value'=>'mixed', 'offset'=>'int'], - 'pht\thread::addClassTask' => ['void', 'className'=>'string', '...ctorArgs='=>'mixed'], - 'pht\thread::addFileTask' => ['void', 'fileName'=>'string', '...globals='=>'mixed'], - 'pht\thread::addFunctionTask' => ['void', 'func'=>'callable', '...funcArgs='=>'mixed'], - 'pht\thread::join' => ['void'], - 'pht\thread::start' => ['void'], - 'pht\thread::taskCount' => ['int'], - 'pht\threaded::lock' => ['void'], - 'pht\threaded::unlock' => ['void'], - 'pi' => ['float'], - 'png2wbmp' => ['bool', 'pngname'=>'string', 'wbmpname'=>'string', 'dest_height'=>'int', 'dest_width'=>'int', 'threshold'=>'int'], - 'pointObj::__construct' => ['void'], - 'pointObj::distanceToLine' => ['float', 'p1'=>'pointObj', 'p2'=>'pointObj'], - 'pointObj::distanceToPoint' => ['float', 'poPoint'=>'pointObj'], - 'pointObj::distanceToShape' => ['float', 'shape'=>'shapeObj'], - 'pointObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj', 'class_index'=>'int', 'text'=>'string'], - 'pointObj::ms_newPointObj' => ['pointObj'], - 'pointObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], - 'pointObj::setXY' => ['int', 'x'=>'float', 'y'=>'float', 'm'=>'float'], - 'pointObj::setXYZ' => ['int', 'x'=>'float', 'y'=>'float', 'z'=>'float', 'm'=>'float'], - 'popen' => ['resource|false', 'command'=>'string', 'mode'=>'string'], - 'pos' => ['mixed', 'array'=>'array'], - 'posix_access' => ['bool', 'filename'=>'string', 'flags='=>'int'], - 'posix_ctermid' => ['string|false'], - 'posix_errno' => ['int'], - 'posix_get_last_error' => ['int'], - 'posix_getcwd' => ['string|false'], - 'posix_getegid' => ['int'], - 'posix_geteuid' => ['int'], - 'posix_getgid' => ['int'], - 'posix_getgrgid' => ['array{name: string, passwd: string, gid: int, members: list}|false', 'group_id'=>'int'], - 'posix_getgrnam' => ['array{name: string, passwd: string, gid: int, members: list}|false', 'name'=>'string'], - 'posix_getgroups' => ['list|false'], - 'posix_getlogin' => ['string|false'], - 'posix_getpgid' => ['int|false', 'process_id'=>'int'], - 'posix_getpgrp' => ['int'], - 'posix_getpid' => ['int'], - 'posix_getppid' => ['int'], - 'posix_getpwnam' => ['array{name: string, passwd: string, uid: int, gid: int, gecos: string, dir: string, shell: string}|false', 'username'=>'string'], - 'posix_getpwuid' => ['array{name: string, passwd: string, uid: int, gid: int, gecos: string, dir: string, shell: string}|false', 'user_id'=>'int'], - 'posix_getrlimit' => ['array{"soft core": string, "hard core": string, "soft data": string, "hard data": string, "soft stack": integer, "hard stack": string, "soft totalmem": string, "hard totalmem": string, "soft rss": string, "hard rss": string, "soft maxproc": integer, "hard maxproc": integer, "soft memlock": integer, "hard memlock": integer, "soft cpu": string, "hard cpu": string, "soft filesize": string, "hard filesize": string, "soft openfiles": integer, "hard openfiles": integer}|false'], - 'posix_getsid' => ['int|false', 'process_id'=>'int'], - 'posix_getuid' => ['int'], - 'posix_initgroups' => ['bool', 'username'=>'string', 'group_id'=>'int'], - 'posix_isatty' => ['bool', 'file_descriptor'=>'resource|int'], - 'posix_kill' => ['bool', 'process_id'=>'int', 'signal'=>'int'], - 'posix_mkfifo' => ['bool', 'filename'=>'string', 'permissions'=>'int'], - 'posix_mknod' => ['bool', 'filename'=>'string', 'flags'=>'int', 'major='=>'int', 'minor='=>'int'], - 'posix_setegid' => ['bool', 'group_id'=>'int'], - 'posix_seteuid' => ['bool', 'user_id'=>'int'], - 'posix_setgid' => ['bool', 'group_id'=>'int'], - 'posix_setpgid' => ['bool', 'process_id'=>'int', 'process_group_id'=>'int'], - 'posix_setrlimit' => ['bool', 'resource'=>'int', 'soft_limit'=>'int', 'hard_limit'=>'int'], - 'posix_setsid' => ['int'], - 'posix_setuid' => ['bool', 'user_id'=>'int'], - 'posix_strerror' => ['string', 'error_code'=>'int'], - 'posix_times' => ['array{ticks: int, utime: int, stime: int, cutime: int, cstime: int}|false'], - 'posix_ttyname' => ['string|false', 'file_descriptor'=>'resource|int'], - 'posix_uname' => ['array{sysname: string, nodename: string, release: string, version: string, machine: string, domainname: string}|false'], - 'pow' => ['float|int', 'num'=>'int|float', 'exponent'=>'int|float'], - 'preg_filter' => ['string|string[]|null', 'pattern'=>'string|string[]', 'replacement'=>'string|string[]', 'subject'=>'string|string[]', 'limit='=>'int', '&w_count='=>'int'], - 'preg_grep' => ['array|false', 'pattern'=>'string', 'array'=>'array', 'flags='=>'int'], - 'preg_last_error' => ['int'], - 'preg_match' => ['0|1|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'string[]', 'flags='=>'0', 'offset='=>'int'], - 'preg_match\'1' => ['0|1|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'array', 'flags='=>'int', 'offset='=>'int'], - 'preg_match_all' => ['int<0,max>|false', 'pattern'=>'string', 'subject'=>'string', '&w_matches='=>'array', 'flags='=>'int', 'offset='=>'int'], - 'preg_quote' => ['string', 'str'=>'string', 'delimiter='=>'string'], - 'preg_replace' => ['string|string[]|null', 'pattern'=>'string|array', 'replacement'=>'string|array', 'subject'=>'string|array', 'limit='=>'int', '&w_count='=>'int'], - 'preg_replace_callback' => ['string|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int'], - 'preg_replace_callback\'1' => ['string[]|null', 'pattern'=>'string|array', 'callback'=>'callable(string[]):string', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int'], - 'preg_replace_callback_array' => ['string|null', 'pattern'=>'array', 'subject'=>'string', 'limit='=>'int', '&w_count='=>'int'], - 'preg_replace_callback_array\'1' => ['string[]|null', 'pattern'=>'array', 'subject'=>'string[]', 'limit='=>'int', '&w_count='=>'int'], - 'preg_split' => ['list|false', 'pattern'=>'string', 'subject'=>'string', 'limit'=>'int', 'flags='=>'null'], - 'preg_split\'1' => ['list|list>|false', 'pattern'=>'string', 'subject'=>'string', 'limit='=>'int', 'flags='=>'int'], - 'prev' => ['mixed', '&r_array'=>'array|object'], - 'print' => ['int', 'arg'=>'string'], - 'print_r' => ['string', 'value'=>'mixed'], - 'print_r\'1' => ['true', 'value'=>'mixed', 'return='=>'bool'], - 'printf' => ['int<0, max>', 'format'=>'string', '...values='=>'string|int|float'], - 'proc_close' => ['int', 'process'=>'resource'], - 'proc_get_status' => ['array{command: string, pid: int, running: bool, signaled: bool, stopped: bool, exitcode: int, termsig: int, stopsig: int}|false', 'process'=>'resource'], - 'proc_nice' => ['bool', 'priority'=>'int'], - 'proc_open' => ['resource|false', 'command'=>'string', 'descriptor_spec'=>'array', '&pipes'=>'resource[]', 'cwd='=>'?string', 'env_vars='=>'?array', 'options='=>'?array'], - 'proc_terminate' => ['bool', 'process'=>'resource', 'signal='=>'int'], - 'projectionObj::__construct' => ['void', 'projectionString'=>'string'], - 'projectionObj::getUnits' => ['int'], - 'projectionObj::ms_newProjectionObj' => ['projectionObj', 'projectionString'=>'string'], - 'property_exists' => ['bool', 'object_or_class'=>'object|string', 'property'=>'string'], - 'ps_add_bookmark' => ['int', 'psdoc'=>'resource', 'text'=>'string', 'parent='=>'int', 'open='=>'int'], - 'ps_add_launchlink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string'], - 'ps_add_locallink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'page'=>'int', 'dest'=>'string'], - 'ps_add_note' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'contents'=>'string', 'title'=>'string', 'icon'=>'string', 'open'=>'int'], - 'ps_add_pdflink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'filename'=>'string', 'page'=>'int', 'dest'=>'string'], - 'ps_add_weblink' => ['bool', 'psdoc'=>'resource', 'llx'=>'float', 'lly'=>'float', 'urx'=>'float', 'ury'=>'float', 'url'=>'string'], - 'ps_arc' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'ps_arcn' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float', 'alpha'=>'float', 'beta'=>'float'], - 'ps_begin_page' => ['bool', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float'], - 'ps_begin_pattern' => ['int', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float', 'xstep'=>'float', 'ystep'=>'float', 'painttype'=>'int'], - 'ps_begin_template' => ['int', 'psdoc'=>'resource', 'width'=>'float', 'height'=>'float'], - 'ps_circle' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'radius'=>'float'], - 'ps_clip' => ['bool', 'psdoc'=>'resource'], - 'ps_close' => ['bool', 'psdoc'=>'resource'], - 'ps_close_image' => ['void', 'psdoc'=>'resource', 'imageid'=>'int'], - 'ps_closepath' => ['bool', 'psdoc'=>'resource'], - 'ps_closepath_stroke' => ['bool', 'psdoc'=>'resource'], - 'ps_continue_text' => ['bool', 'psdoc'=>'resource', 'text'=>'string'], - 'ps_curveto' => ['bool', 'psdoc'=>'resource', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'ps_delete' => ['bool', 'psdoc'=>'resource'], - 'ps_end_page' => ['bool', 'psdoc'=>'resource'], - 'ps_end_pattern' => ['bool', 'psdoc'=>'resource'], - 'ps_end_template' => ['bool', 'psdoc'=>'resource'], - 'ps_fill' => ['bool', 'psdoc'=>'resource'], - 'ps_fill_stroke' => ['bool', 'psdoc'=>'resource'], - 'ps_findfont' => ['int', 'psdoc'=>'resource', 'fontname'=>'string', 'encoding'=>'string', 'embed='=>'bool'], - 'ps_get_buffer' => ['string', 'psdoc'=>'resource'], - 'ps_get_parameter' => ['string', 'psdoc'=>'resource', 'name'=>'string', 'modifier='=>'float'], - 'ps_get_value' => ['float', 'psdoc'=>'resource', 'name'=>'string', 'modifier='=>'float'], - 'ps_hyphenate' => ['array', 'psdoc'=>'resource', 'text'=>'string'], - 'ps_include_file' => ['bool', 'psdoc'=>'resource', 'file'=>'string'], - 'ps_lineto' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], - 'ps_makespotcolor' => ['int', 'psdoc'=>'resource', 'name'=>'string', 'reserved='=>'int'], - 'ps_moveto' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], - 'ps_new' => ['resource'], - 'ps_open_file' => ['bool', 'psdoc'=>'resource', 'filename='=>'string'], - 'ps_open_image' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'source'=>'string', 'data'=>'string', 'length'=>'int', 'width'=>'int', 'height'=>'int', 'components'=>'int', 'bpc'=>'int', 'params'=>'string'], - 'ps_open_image_file' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'filename'=>'string', 'stringparam='=>'string', 'intparam='=>'int'], - 'ps_open_memory_image' => ['int', 'psdoc'=>'resource', 'gd'=>'int'], - 'ps_place_image' => ['bool', 'psdoc'=>'resource', 'imageid'=>'int', 'x'=>'float', 'y'=>'float', 'scale'=>'float'], - 'ps_rect' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float', 'width'=>'float', 'height'=>'float'], - 'ps_restore' => ['bool', 'psdoc'=>'resource'], - 'ps_rotate' => ['bool', 'psdoc'=>'resource', 'rot'=>'float'], - 'ps_save' => ['bool', 'psdoc'=>'resource'], - 'ps_scale' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], - 'ps_set_border_color' => ['bool', 'psdoc'=>'resource', 'red'=>'float', 'green'=>'float', 'blue'=>'float'], - 'ps_set_border_dash' => ['bool', 'psdoc'=>'resource', 'black'=>'float', 'white'=>'float'], - 'ps_set_border_style' => ['bool', 'psdoc'=>'resource', 'style'=>'string', 'width'=>'float'], - 'ps_set_info' => ['bool', 'p'=>'resource', 'key'=>'string', 'value'=>'string'], - 'ps_set_parameter' => ['bool', 'psdoc'=>'resource', 'name'=>'string', 'value'=>'string'], - 'ps_set_text_pos' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], - 'ps_set_value' => ['bool', 'psdoc'=>'resource', 'name'=>'string', 'value'=>'float'], - 'ps_setcolor' => ['bool', 'psdoc'=>'resource', 'type'=>'string', 'colorspace'=>'string', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float'], - 'ps_setdash' => ['bool', 'psdoc'=>'resource', 'on'=>'float', 'off'=>'float'], - 'ps_setflat' => ['bool', 'psdoc'=>'resource', 'value'=>'float'], - 'ps_setfont' => ['bool', 'psdoc'=>'resource', 'fontid'=>'int', 'size'=>'float'], - 'ps_setgray' => ['bool', 'psdoc'=>'resource', 'gray'=>'float'], - 'ps_setlinecap' => ['bool', 'psdoc'=>'resource', 'type'=>'int'], - 'ps_setlinejoin' => ['bool', 'psdoc'=>'resource', 'type'=>'int'], - 'ps_setlinewidth' => ['bool', 'psdoc'=>'resource', 'width'=>'float'], - 'ps_setmiterlimit' => ['bool', 'psdoc'=>'resource', 'value'=>'float'], - 'ps_setoverprintmode' => ['bool', 'psdoc'=>'resource', 'mode'=>'int'], - 'ps_setpolydash' => ['bool', 'psdoc'=>'resource', 'arr'=>'float'], - 'ps_shading' => ['int', 'psdoc'=>'resource', 'type'=>'string', 'x0'=>'float', 'y0'=>'float', 'x1'=>'float', 'y1'=>'float', 'c1'=>'float', 'c2'=>'float', 'c3'=>'float', 'c4'=>'float', 'optlist'=>'string'], - 'ps_shading_pattern' => ['int', 'psdoc'=>'resource', 'shadingid'=>'int', 'optlist'=>'string'], - 'ps_shfill' => ['bool', 'psdoc'=>'resource', 'shadingid'=>'int'], - 'ps_show' => ['bool', 'psdoc'=>'resource', 'text'=>'string'], - 'ps_show2' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'length'=>'int'], - 'ps_show_boxed' => ['int', 'psdoc'=>'resource', 'text'=>'string', 'left'=>'float', 'bottom'=>'float', 'width'=>'float', 'height'=>'float', 'hmode'=>'string', 'feature='=>'string'], - 'ps_show_xy' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'x'=>'float', 'y'=>'float'], - 'ps_show_xy2' => ['bool', 'psdoc'=>'resource', 'text'=>'string', 'length'=>'int', 'xcoor'=>'float', 'ycoor'=>'float'], - 'ps_string_geometry' => ['array', 'psdoc'=>'resource', 'text'=>'string', 'fontid='=>'int', 'size='=>'float'], - 'ps_stringwidth' => ['float', 'psdoc'=>'resource', 'text'=>'string', 'fontid='=>'int', 'size='=>'float'], - 'ps_stroke' => ['bool', 'psdoc'=>'resource'], - 'ps_symbol' => ['bool', 'psdoc'=>'resource', 'ord'=>'int'], - 'ps_symbol_name' => ['string', 'psdoc'=>'resource', 'ord'=>'int', 'fontid='=>'int'], - 'ps_symbol_width' => ['float', 'psdoc'=>'resource', 'ord'=>'int', 'fontid='=>'int', 'size='=>'float'], - 'ps_translate' => ['bool', 'psdoc'=>'resource', 'x'=>'float', 'y'=>'float'], - 'pspell_add_to_personal' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'pspell_add_to_session' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'pspell_check' => ['bool', 'dictionary'=>'int', 'word'=>'string'], - 'pspell_clear_session' => ['bool', 'dictionary'=>'int'], - 'pspell_config_create' => ['int', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string'], - 'pspell_config_data_dir' => ['bool', 'config'=>'int', 'directory'=>'string'], - 'pspell_config_dict_dir' => ['bool', 'config'=>'int', 'directory'=>'string'], - 'pspell_config_ignore' => ['bool', 'config'=>'int', 'min_length'=>'int'], - 'pspell_config_mode' => ['bool', 'config'=>'int', 'mode'=>'int'], - 'pspell_config_personal' => ['bool', 'config'=>'int', 'filename'=>'string'], - 'pspell_config_repl' => ['bool', 'config'=>'int', 'filename'=>'string'], - 'pspell_config_runtogether' => ['bool', 'config'=>'int', 'allow'=>'bool'], - 'pspell_config_save_repl' => ['bool', 'config'=>'int', 'save'=>'bool'], - 'pspell_new' => ['int|false', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - 'pspell_new_config' => ['int|false', 'config'=>'int'], - 'pspell_new_personal' => ['int|false', 'filename'=>'string', 'language'=>'string', 'spelling='=>'string', 'jargon='=>'string', 'encoding='=>'string', 'mode='=>'int'], - 'pspell_save_wordlist' => ['bool', 'dictionary'=>'int'], - 'pspell_store_replacement' => ['bool', 'dictionary'=>'int', 'misspelled'=>'string', 'correct'=>'string'], - 'pspell_suggest' => ['array', 'dictionary'=>'int', 'word'=>'string'], - 'putenv' => ['bool', 'assignment'=>'string'], - 'px_close' => ['bool', 'pxdoc'=>'resource'], - 'px_create_fp' => ['bool', 'pxdoc'=>'resource', 'file'=>'resource', 'fielddesc'=>'array'], - 'px_date2string' => ['string', 'pxdoc'=>'resource', 'value'=>'int', 'format'=>'string'], - 'px_delete' => ['bool', 'pxdoc'=>'resource'], - 'px_delete_record' => ['bool', 'pxdoc'=>'resource', 'num'=>'int'], - 'px_get_field' => ['array', 'pxdoc'=>'resource', 'fieldno'=>'int'], - 'px_get_info' => ['array', 'pxdoc'=>'resource'], - 'px_get_parameter' => ['string', 'pxdoc'=>'resource', 'name'=>'string'], - 'px_get_record' => ['array', 'pxdoc'=>'resource', 'num'=>'int', 'mode='=>'int'], - 'px_get_schema' => ['array', 'pxdoc'=>'resource', 'mode='=>'int'], - 'px_get_value' => ['float', 'pxdoc'=>'resource', 'name'=>'string'], - 'px_insert_record' => ['int', 'pxdoc'=>'resource', 'data'=>'array'], - 'px_new' => ['resource'], - 'px_numfields' => ['int', 'pxdoc'=>'resource'], - 'px_numrecords' => ['int', 'pxdoc'=>'resource'], - 'px_open_fp' => ['bool', 'pxdoc'=>'resource', 'file'=>'resource'], - 'px_put_record' => ['bool', 'pxdoc'=>'resource', 'record'=>'array', 'recpos='=>'int'], - 'px_retrieve_record' => ['array', 'pxdoc'=>'resource', 'num'=>'int', 'mode='=>'int'], - 'px_set_blob_file' => ['bool', 'pxdoc'=>'resource', 'filename'=>'string'], - 'px_set_parameter' => ['bool', 'pxdoc'=>'resource', 'name'=>'string', 'value'=>'string'], - 'px_set_tablename' => ['void', 'pxdoc'=>'resource', 'name'=>'string'], - 'px_set_targetencoding' => ['bool', 'pxdoc'=>'resource', 'encoding'=>'string'], - 'px_set_value' => ['bool', 'pxdoc'=>'resource', 'name'=>'string', 'value'=>'float'], - 'px_timestamp2string' => ['string', 'pxdoc'=>'resource', 'value'=>'float', 'format'=>'string'], - 'px_update_record' => ['bool', 'pxdoc'=>'resource', 'data'=>'array', 'num'=>'int'], - 'qdom_error' => ['string'], - 'qdom_tree' => ['QDomDocument', 'doc'=>'string'], - 'querymapObj::convertToString' => ['string'], - 'querymapObj::free' => ['void'], - 'querymapObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'querymapObj::updateFromString' => ['int', 'snippet'=>'string'], - 'quoted_printable_decode' => ['string', 'string'=>'string'], - 'quoted_printable_encode' => ['string', 'string'=>'string'], - 'quotemeta' => ['string', 'string'=>'string'], - 'rad2deg' => ['float', 'num'=>'float'], - 'radius_acct_open' => ['resource|false'], - 'radius_add_server' => ['bool', 'radius_handle'=>'resource', 'hostname'=>'string', 'port'=>'int', 'secret'=>'string', 'timeout'=>'int', 'max_tries'=>'int'], - 'radius_auth_open' => ['resource|false'], - 'radius_close' => ['bool', 'radius_handle'=>'resource'], - 'radius_config' => ['bool', 'radius_handle'=>'resource', 'file'=>'string'], - 'radius_create_request' => ['bool', 'radius_handle'=>'resource', 'type'=>'int'], - 'radius_cvt_addr' => ['string', 'data'=>'string'], - 'radius_cvt_int' => ['int', 'data'=>'string'], - 'radius_cvt_string' => ['string', 'data'=>'string'], - 'radius_demangle' => ['string', 'radius_handle'=>'resource', 'mangled'=>'string'], - 'radius_demangle_mppe_key' => ['string', 'radius_handle'=>'resource', 'mangled'=>'string'], - 'radius_get_attr' => ['mixed', 'radius_handle'=>'resource'], - 'radius_get_tagged_attr_data' => ['string', 'data'=>'string'], - 'radius_get_tagged_attr_tag' => ['int', 'data'=>'string'], - 'radius_get_vendor_attr' => ['array', 'data'=>'string'], - 'radius_put_addr' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'addr'=>'string'], - 'radius_put_attr' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'string'], - 'radius_put_int' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'int'], - 'radius_put_string' => ['bool', 'radius_handle'=>'resource', 'type'=>'int', 'value'=>'string'], - 'radius_put_vendor_addr' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'addr'=>'string'], - 'radius_put_vendor_attr' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'string'], - 'radius_put_vendor_int' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'int'], - 'radius_put_vendor_string' => ['bool', 'radius_handle'=>'resource', 'vendor'=>'int', 'type'=>'int', 'value'=>'string'], - 'radius_request_authenticator' => ['string', 'radius_handle'=>'resource'], - 'radius_salt_encrypt_attr' => ['string', 'radius_handle'=>'resource', 'data'=>'string'], - 'radius_send_request' => ['int|false', 'radius_handle'=>'resource'], - 'radius_server_secret' => ['string', 'radius_handle'=>'resource'], - 'radius_strerror' => ['string', 'radius_handle'=>'resource'], - 'rand' => ['int', 'min'=>'int', 'max'=>'int'], - 'rand\'1' => ['int'], - 'random_bytes' => ['non-empty-string', 'length'=>'positive-int'], - 'random_int' => ['int', 'min'=>'int', 'max'=>'int'], - 'range' => ['non-empty-array', 'start'=>'string|int|float', 'end'=>'string|int|float', 'step='=>'int<1, max>|float'], - 'rar_allow_broken_set' => ['bool', 'rarfile'=>'RarArchive', 'allow_broken'=>'bool'], - 'rar_broken_is' => ['bool', 'rarfile'=>'rararchive'], - 'rar_close' => ['bool', 'rarfile'=>'rararchive'], - 'rar_comment_get' => ['string', 'rarfile'=>'rararchive'], - 'rar_entry_get' => ['RarEntry', 'rarfile'=>'RarArchive', 'entryname'=>'string'], - 'rar_list' => ['RarArchive', 'rarfile'=>'rararchive'], - 'rar_open' => ['RarArchive', 'filename'=>'string', 'password='=>'string', 'volume_callback='=>'callable'], - 'rar_solid_is' => ['bool', 'rarfile'=>'rararchive'], - 'rar_wrapper_cache_stats' => ['string'], - 'rawurldecode' => ['string', 'string'=>'string'], - 'rawurlencode' => ['string', 'string'=>'string'], - 'read_exif_data' => ['array', 'filename'=>'string', 'sections_needed='=>'string', 'sub_arrays='=>'bool', 'read_thumbnail='=>'bool'], - 'readdir' => ['string|false', 'dir_handle='=>'resource'], - 'readfile' => ['int|false', 'filename'=>'string', 'use_include_path='=>'bool', 'context='=>'resource'], - 'readgzfile' => ['int|false', 'filename'=>'string', 'use_include_path='=>'int'], - 'readline' => ['string|false', 'prompt='=>'?string'], - 'readline_add_history' => ['bool', 'prompt'=>'string'], - 'readline_callback_handler_install' => ['bool', 'prompt'=>'string', 'callback'=>'callable'], - 'readline_callback_handler_remove' => ['bool'], - 'readline_callback_read_char' => ['void'], - 'readline_clear_history' => ['bool'], - 'readline_completion_function' => ['bool', 'callback'=>'callable'], - 'readline_info' => ['mixed', 'var_name='=>'string', 'value='=>'string|int|bool'], - 'readline_list_history' => ['array'], - 'readline_on_new_line' => ['void'], - 'readline_read_history' => ['bool', 'filename='=>'string'], - 'readline_redisplay' => ['void'], - 'readline_write_history' => ['bool', 'filename='=>'string'], - 'readlink' => ['non-falsy-string|false', 'path'=>'string'], - 'realpath' => ['non-falsy-string|false', 'path'=>'string'], - 'realpath_cache_get' => ['array'], - 'realpath_cache_size' => ['int'], - 'recode' => ['string', 'request'=>'string', 'string'=>'string'], - 'recode_file' => ['bool', 'request'=>'string', 'input'=>'resource', 'output'=>'resource'], - 'recode_string' => ['string|false', 'request'=>'string', 'string'=>'string'], - 'rectObj::__construct' => ['void'], - 'rectObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj', 'class_index'=>'int', 'text'=>'string'], - 'rectObj::fit' => ['float', 'width'=>'int', 'height'=>'int'], - 'rectObj::ms_newRectObj' => ['rectObj'], - 'rectObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], - 'rectObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'rectObj::setextent' => ['void', 'minx'=>'float', 'miny'=>'float', 'maxx'=>'float', 'maxy'=>'float'], - 'register_event_handler' => ['bool', 'event_handler_func'=>'string', 'handler_register_name'=>'string', 'event_type_mask'=>'int'], - 'register_shutdown_function' => ['void', 'callback'=>'callable', '...args='=>'mixed'], - 'register_tick_function' => ['bool', 'callback'=>'callable():void', '...args='=>'mixed'], - 'rename' => ['bool', 'from'=>'string', 'to'=>'string', 'context='=>'resource'], - 'rename_function' => ['bool', 'original_name'=>'string', 'new_name'=>'string'], - 'reset' => ['mixed|false', '&r_array'=>'array|object'], - 'resourcebundle_count' => ['int', 'bundle'=>'ResourceBundle'], - 'resourcebundle_create' => ['?ResourceBundle', 'locale'=>'?string', 'bundle'=>'?string', 'fallback='=>'bool'], - 'resourcebundle_get' => ['mixed|null', 'bundle'=>'ResourceBundle', 'index'=>'string|int', 'fallback='=>'bool'], - 'resourcebundle_get_error_code' => ['int', 'bundle'=>'ResourceBundle'], - 'resourcebundle_get_error_message' => ['string', 'bundle'=>'ResourceBundle'], - 'resourcebundle_locales' => ['array', 'bundle'=>'string'], - 'restore_error_handler' => ['true'], - 'restore_exception_handler' => ['true'], - 'restore_include_path' => ['void'], - 'rewind' => ['bool', 'stream'=>'resource'], - 'rewinddir' => ['void', 'dir_handle='=>'resource'], - 'rmdir' => ['bool', 'directory'=>'string', 'context='=>'resource'], - 'round' => ['float', 'num'=>'float|int', 'precision='=>'int', 'mode='=>'0|positive-int'], - 'rpm_close' => ['bool', 'rpmr'=>'resource'], - 'rpm_get_tag' => ['mixed', 'rpmr'=>'resource', 'tagnum'=>'int'], - 'rpm_is_valid' => ['bool', 'filename'=>'string'], - 'rpm_open' => ['resource|false', 'filename'=>'string'], - 'rpm_version' => ['string'], - 'rpmaddtag' => ['bool', 'tag'=>'int'], - 'rpmdbinfo' => ['array', 'nevr'=>'string', 'full='=>'bool'], - 'rpmdbsearch' => ['array', 'pattern'=>'string', 'rpmtag='=>'int', 'rpmmire='=>'int', 'full='=>'bool'], - 'rpminfo' => ['array', 'path'=>'string', 'full='=>'bool', 'error='=>'string'], - 'rpmvercmp' => ['int', 'evr1'=>'string', 'evr2'=>'string'], - 'rrd_create' => ['bool', 'filename'=>'string', 'options'=>'array'], - 'rrd_disconnect' => ['void'], - 'rrd_error' => ['string'], - 'rrd_fetch' => ['array', 'filename'=>'string', 'options'=>'array'], - 'rrd_first' => ['int|false', 'file'=>'string', 'raaindex='=>'int'], - 'rrd_graph' => ['array|false', 'filename'=>'string', 'options'=>'array'], - 'rrd_info' => ['array|false', 'filename'=>'string'], - 'rrd_last' => ['int', 'filename'=>'string'], - 'rrd_lastupdate' => ['array|false', 'filename'=>'string'], - 'rrd_restore' => ['bool', 'xml_file'=>'string', 'rrd_file'=>'string', 'options='=>'array'], - 'rrd_tune' => ['bool', 'filename'=>'string', 'options'=>'array'], - 'rrd_update' => ['bool', 'filename'=>'string', 'options'=>'array'], - 'rrd_version' => ['string'], - 'rrd_xport' => ['array|false', 'options'=>'array'], - 'rrdc_disconnect' => ['void'], - 'rsort' => ['bool', '&rw_array'=>'array', 'flags='=>'int'], - 'rtrim' => ['string', 'string'=>'string', 'characters='=>'string'], - 'runkit7_constant_add' => ['bool', 'constant_name'=>'string', 'value'=>'mixed', 'new_visibility='=>'int'], - 'runkit7_constant_redefine' => ['bool', 'constant_name'=>'string', 'value'=>'mixed', 'new_visibility='=>'?int'], - 'runkit7_constant_remove' => ['bool', 'constant_name'=>'string'], - 'runkit7_function_add' => ['bool', 'function_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_doc_comment='=>'?string', 'return_by_reference='=>'?bool', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], - 'runkit7_function_copy' => ['bool', 'source_name'=>'string', 'target_name'=>'string'], - 'runkit7_function_redefine' => ['bool', 'function_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_doc_comment='=>'?string', 'return_by_reference='=>'?bool', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], - 'runkit7_function_remove' => ['bool', 'function_name'=>'string'], - 'runkit7_function_rename' => ['bool', 'source_name'=>'string', 'target_name'=>'string'], - 'runkit7_import' => ['bool', 'filename'=>'string', 'flags='=>'?int'], - 'runkit7_method_add' => ['bool', 'class_name'=>'string', 'method_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_flags='=>'int|null|string', 'flags_or_doc_comment='=>'int|null|string', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], - 'runkit7_method_copy' => ['bool', 'destination_class'=>'string', 'destination_method'=>'string', 'source_class'=>'string', 'source_method='=>'?string'], - 'runkit7_method_redefine' => ['bool', 'class_name'=>'string', 'method_name'=>'string', 'argument_list_or_closure'=>'Closure|string', 'code_or_flags='=>'int|null|string', 'flags_or_doc_comment='=>'int|null|string', 'doc_comment='=>'?string', 'return_type='=>'?string', 'is_strict='=>'?bool'], - 'runkit7_method_remove' => ['bool', 'class_name'=>'string', 'method_name'=>'string'], - 'runkit7_method_rename' => ['bool', 'class_name'=>'string', 'source_method_name'=>'string', 'source_target_name'=>'string'], - 'runkit7_superglobals' => ['array'], - 'runkit7_zval_inspect' => ['array', 'value'=>'mixed'], - 'runkit_class_adopt' => ['bool', 'classname'=>'string', 'parentname'=>'string'], - 'runkit_class_emancipate' => ['bool', 'classname'=>'string'], - 'runkit_constant_add' => ['bool', 'constname'=>'string', 'value'=>'mixed'], - 'runkit_constant_redefine' => ['bool', 'constname'=>'string', 'newvalue'=>'mixed'], - 'runkit_constant_remove' => ['bool', 'constname'=>'string'], - 'runkit_function_add' => ['bool', 'funcname'=>'string', 'arglist'=>'string', 'code'=>'string', 'doccomment='=>'?string'], - 'runkit_function_add\'1' => ['bool', 'funcname'=>'string', 'closure'=>'Closure', 'doccomment='=>'?string'], - 'runkit_function_copy' => ['bool', 'funcname'=>'string', 'targetname'=>'string'], - 'runkit_function_redefine' => ['bool', 'funcname'=>'string', 'arglist'=>'string', 'code'=>'string', 'doccomment='=>'?string'], - 'runkit_function_redefine\'1' => ['bool', 'funcname'=>'string', 'closure'=>'Closure', 'doccomment='=>'?string'], - 'runkit_function_remove' => ['bool', 'funcname'=>'string'], - 'runkit_function_rename' => ['bool', 'funcname'=>'string', 'newname'=>'string'], - 'runkit_import' => ['bool', 'filename'=>'string', 'flags='=>'int'], - 'runkit_lint' => ['bool', 'code'=>'string'], - 'runkit_lint_file' => ['bool', 'filename'=>'string'], - 'runkit_method_add' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int', 'doccomment='=>'?string'], - 'runkit_method_add\'1' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'closure'=>'Closure', 'flags='=>'int', 'doccomment='=>'?string'], - 'runkit_method_copy' => ['bool', 'dclass'=>'string', 'dmethod'=>'string', 'sclass'=>'string', 'smethod='=>'string'], - 'runkit_method_redefine' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'args'=>'string', 'code'=>'string', 'flags='=>'int', 'doccomment='=>'?string'], - 'runkit_method_redefine\'1' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'closure'=>'Closure', 'flags='=>'int', 'doccomment='=>'?string'], - 'runkit_method_remove' => ['bool', 'classname'=>'string', 'methodname'=>'string'], - 'runkit_method_rename' => ['bool', 'classname'=>'string', 'methodname'=>'string', 'newname'=>'string'], - 'runkit_return_value_used' => ['bool'], - 'runkit_sandbox_output_handler' => ['mixed', 'sandbox'=>'object', 'callback='=>'mixed'], - 'runkit_superglobals' => ['array'], - 'runkit_zval_inspect' => ['array', 'value'=>'mixed'], - 'scalebarObj::convertToString' => ['string'], - 'scalebarObj::free' => ['void'], - 'scalebarObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'scalebarObj::setImageColor' => ['int', 'red'=>'int', 'green'=>'int', 'blue'=>'int'], - 'scalebarObj::updateFromString' => ['int', 'snippet'=>'string'], - 'scandir' => ['list|false', 'directory'=>'string', 'sorting_order='=>'int', 'context='=>'resource'], - 'seaslog_get_author' => ['string'], - 'seaslog_get_version' => ['string'], - 'sem_acquire' => ['bool', 'semaphore'=>'resource', 'non_blocking='=>'bool'], - 'sem_get' => ['resource|false', 'key'=>'int', 'max_acquire='=>'int', 'permissions='=>'int', 'auto_release='=>'bool'], - 'sem_release' => ['bool', 'semaphore'=>'resource'], - 'sem_remove' => ['bool', 'semaphore'=>'resource'], - 'serialize' => ['string', 'value'=>'mixed'], - 'session_abort' => ['bool'], - 'session_cache_expire' => ['int|false', 'value='=>'int'], - 'session_cache_limiter' => ['string|false', 'value='=>'string'], - 'session_commit' => ['bool'], - 'session_decode' => ['bool', 'data'=>'string'], - 'session_destroy' => ['bool'], - 'session_encode' => ['string|false'], - 'session_get_cookie_params' => ['array{lifetime:?int,path:?string,domain:?string,secure:?bool,httponly:?bool}'], - 'session_id' => ['string|false', 'id='=>'string'], - 'session_is_registered' => ['bool', 'name'=>'string'], - 'session_module_name' => ['string|false', 'module='=>'string'], - 'session_name' => ['string|false', 'name='=>'string'], - 'session_pgsql_add_error' => ['bool', 'error_level'=>'int', 'error_message='=>'string'], - 'session_pgsql_get_error' => ['array', 'with_error_message='=>'bool'], - 'session_pgsql_get_field' => ['string'], - 'session_pgsql_reset' => ['bool'], - 'session_pgsql_set_field' => ['bool', 'value'=>'string'], - 'session_pgsql_status' => ['array'], - 'session_regenerate_id' => ['bool', 'delete_old_session='=>'bool'], - 'session_register' => ['bool', 'name'=>'mixed', '...args='=>'mixed'], - 'session_register_shutdown' => ['void'], - 'session_reset' => ['bool'], - 'session_save_path' => ['string|false', 'path='=>'string'], - 'session_set_cookie_params' => ['bool', 'lifetime'=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool'], - 'session_set_save_handler' => ['bool', 'open'=>'callable(string,string):bool', 'close'=>'callable():bool', 'read'=>'callable(string):string', 'write'=>'callable(string,string):bool', 'destroy'=>'callable(string):bool', 'gc'=>'callable(string):bool', 'create_sid='=>'callable():string', 'validate_sid='=>'callable(string):bool', 'update_timestamp='=>'callable(string):bool'], - 'session_set_save_handler\'1' => ['bool', 'open'=>'SessionHandlerInterface', 'close='=>'bool'], - 'session_start' => ['bool', 'options='=>'array'], - 'session_status' => ['int'], - 'session_unregister' => ['bool', 'name'=>'string'], - 'session_unset' => ['bool'], - 'session_write_close' => ['bool'], - 'setLeftFill' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'setLine' => ['void', 'width'=>'int', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'setRightFill' => ['void', 'red'=>'int', 'green'=>'int', 'blue'=>'int', 'a='=>'int'], - 'set_error_handler' => ['null|callable(int,string,string=,int=,array=):bool', 'callback'=>'null|callable(int,string,string=,int=,array=):bool', 'error_levels='=>'int'], - 'set_exception_handler' => ['null|callable(Throwable):void', 'callback'=>'null|callable(Throwable):void'], - 'set_file_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], - 'set_include_path' => ['string|false', 'include_path'=>'string'], - 'set_magic_quotes_runtime' => ['bool', 'new_setting'=>'bool'], - 'set_time_limit' => ['bool', 'seconds'=>'int'], - 'setcookie' => ['bool', 'name'=>'string', 'value='=>'string', 'expires='=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool', 'samesite='=>'string', 'url_encode='=>'int'], - 'setlocale' => ['string|false', 'category'=>'int', 'locales'=>'string|0|null', '...rest='=>'string'], - 'setlocale\'1' => ['string|false', 'category'=>'int', 'locales'=>'?array'], - 'setproctitle' => ['void', 'title'=>'string'], - 'setrawcookie' => ['bool', 'name'=>'string', 'value='=>'string', 'expires='=>'int', 'path='=>'string', 'domain='=>'string', 'secure='=>'bool', 'httponly='=>'bool'], - 'setthreadtitle' => ['bool', 'title'=>'string'], - 'settype' => ['bool', '&rw_var'=>'mixed', 'type'=>'string'], - 'sha1' => ['string', 'string'=>'string', 'binary='=>'bool'], - 'sha1_file' => ['string|false', 'filename'=>'string', 'binary='=>'bool'], - 'sha256' => ['string', 'string'=>'string', 'raw_output='=>'bool'], - 'sha256_file' => ['string', 'filename'=>'string', 'raw_output='=>'bool'], - 'shapeObj::__construct' => ['void', 'type'=>'int'], - 'shapeObj::add' => ['int', 'line'=>'lineObj'], - 'shapeObj::boundary' => ['shapeObj'], - 'shapeObj::contains' => ['bool', 'point'=>'pointObj'], - 'shapeObj::containsShape' => ['int', 'shape2'=>'shapeObj'], - 'shapeObj::convexhull' => ['shapeObj'], - 'shapeObj::crosses' => ['int', 'shape'=>'shapeObj'], - 'shapeObj::difference' => ['shapeObj', 'shape'=>'shapeObj'], - 'shapeObj::disjoint' => ['int', 'shape'=>'shapeObj'], - 'shapeObj::draw' => ['int', 'map'=>'mapObj', 'layer'=>'layerObj', 'img'=>'imageObj'], - 'shapeObj::equals' => ['int', 'shape'=>'shapeObj'], - 'shapeObj::free' => ['void'], - 'shapeObj::getArea' => ['float'], - 'shapeObj::getCentroid' => ['pointObj'], - 'shapeObj::getLabelPoint' => ['pointObj'], - 'shapeObj::getLength' => ['float'], - 'shapeObj::getPointUsingMeasure' => ['pointObj', 'm'=>'float'], - 'shapeObj::getValue' => ['string', 'layer'=>'layerObj', 'filedname'=>'string'], - 'shapeObj::intersection' => ['shapeObj', 'shape'=>'shapeObj'], - 'shapeObj::intersects' => ['bool', 'shape'=>'shapeObj'], - 'shapeObj::line' => ['lineObj', 'i'=>'int'], - 'shapeObj::ms_shapeObjFromWkt' => ['shapeObj', 'wkt'=>'string'], - 'shapeObj::overlaps' => ['int', 'shape'=>'shapeObj'], - 'shapeObj::project' => ['int', 'in'=>'projectionObj', 'out'=>'projectionObj'], - 'shapeObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'shapeObj::setBounds' => ['int'], - 'shapeObj::simplify' => ['shapeObj|null', 'tolerance'=>'float'], - 'shapeObj::symdifference' => ['shapeObj', 'shape'=>'shapeObj'], - 'shapeObj::toWkt' => ['string'], - 'shapeObj::topologyPreservingSimplify' => ['shapeObj|null', 'tolerance'=>'float'], - 'shapeObj::touches' => ['int', 'shape'=>'shapeObj'], - 'shapeObj::union' => ['shapeObj', 'shape'=>'shapeObj'], - 'shapeObj::within' => ['int', 'shape2'=>'shapeObj'], - 'shapefileObj::__construct' => ['void', 'filename'=>'string', 'type'=>'int'], - 'shapefileObj::addPoint' => ['int', 'point'=>'pointObj'], - 'shapefileObj::addShape' => ['int', 'shape'=>'shapeObj'], - 'shapefileObj::free' => ['void'], - 'shapefileObj::getExtent' => ['rectObj', 'i'=>'int'], - 'shapefileObj::getPoint' => ['shapeObj', 'i'=>'int'], - 'shapefileObj::getShape' => ['shapeObj', 'i'=>'int'], - 'shapefileObj::getTransformed' => ['shapeObj', 'map'=>'mapObj', 'i'=>'int'], - 'shapefileObj::ms_newShapefileObj' => ['shapefileObj', 'filename'=>'string', 'type'=>'int'], - 'shell_exec' => ['string|false|null', 'command'=>'string'], - 'shm_attach' => ['resource|false', 'key'=>'int', 'size='=>'int', 'permissions='=>'int'], - 'shm_detach' => ['bool', 'shm'=>'resource'], - 'shm_get_var' => ['mixed', 'shm'=>'resource', 'key'=>'int'], - 'shm_has_var' => ['bool', 'shm'=>'resource', 'key'=>'int'], - 'shm_put_var' => ['bool', 'shm'=>'resource', 'key'=>'int', 'value'=>'mixed'], - 'shm_remove' => ['bool', 'shm'=>'resource'], - 'shm_remove_var' => ['bool', 'shm'=>'resource', 'key'=>'int'], - 'shmop_close' => ['void', 'shmop'=>'resource'], - 'shmop_delete' => ['bool', 'shmop'=>'resource'], - 'shmop_open' => ['resource|false', 'key'=>'int', 'mode'=>'string', 'permissions'=>'int', 'size'=>'int'], - 'shmop_read' => ['string|false', 'shmop'=>'resource', 'offset'=>'int', 'size'=>'int'], - 'shmop_size' => ['int', 'shmop'=>'resource'], - 'shmop_write' => ['int|false', 'shmop'=>'resource', 'data'=>'string', 'offset'=>'int'], - 'show_source' => ['string|bool', 'filename'=>'string', 'return='=>'bool'], - 'shuffle' => ['true', '&rw_array'=>'array'], - 'signeurlpaiement' => ['string', 'clent'=>'string', 'data'=>'string'], - 'similar_text' => ['int', 'string1'=>'string', 'string2'=>'string', '&w_percent='=>'float'], - 'simplexml_import_dom' => ['?SimpleXMLElement', 'node'=>'DOMNode', 'class_name='=>'?string'], - 'simplexml_load_file' => ['SimpleXMLElement|false', 'filename'=>'string', 'class_name='=>'?string', 'options='=>'int', 'namespace_or_prefix='=>'string', 'is_prefix='=>'bool'], - 'simplexml_load_string' => ['SimpleXMLElement|false', 'data'=>'string', 'class_name='=>'?string', 'options='=>'int', 'namespace_or_prefix='=>'string', 'is_prefix='=>'bool'], - 'sin' => ['float', 'num'=>'float'], - 'sinh' => ['float', 'num'=>'float'], - 'sizeof' => ['int<0, max>', 'value'=>'Countable|array|SimpleXMLElement', 'mode='=>'int'], - 'sleep' => ['int|false', 'seconds'=>'0|positive-int'], - 'snmp2_get' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp2_getnext' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp2_real_walk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp2_set' => ['bool', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'type'=>'array|string', 'value'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp2_walk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp3_get' => ['string|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp3_getnext' => ['string|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp3_real_walk' => ['array|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp3_set' => ['bool', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'type'=>'array|string', 'value'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp3_walk' => ['array|false', 'hostname'=>'string', 'security_name'=>'string', 'security_level'=>'string', 'auth_protocol'=>'string', 'auth_passphrase'=>'string', 'privacy_protocol'=>'string', 'privacy_passphrase'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmp_get_quick_print' => ['bool'], - 'snmp_get_valueretrieval' => ['int'], - 'snmp_read_mib' => ['bool', 'filename'=>'string'], - 'snmp_set_enum_print' => ['true', 'enable'=>'bool'], - 'snmp_set_oid_numeric_print' => ['true', 'format'=>'int'], - 'snmp_set_oid_output_format' => ['true', 'format'=>'int'], - 'snmp_set_quick_print' => ['bool', 'enable'=>'bool'], - 'snmp_set_valueretrieval' => ['true', 'method'=>'int'], - 'snmpget' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmpgetnext' => ['string|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmprealwalk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmpset' => ['bool', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'type'=>'string|string[]', 'value'=>'string|string[]', 'timeout='=>'int', 'retries='=>'int'], - 'snmpwalk' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'snmpwalkoid' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'array|string', 'timeout='=>'int', 'retries='=>'int'], - 'socket_accept' => ['resource|false', 'socket'=>'resource'], - 'socket_bind' => ['bool', 'socket'=>'resource', 'address'=>'string', 'port='=>'int'], - 'socket_clear_error' => ['void', 'socket='=>'resource'], - 'socket_close' => ['void', 'socket'=>'resource'], - 'socket_cmsg_space' => ['?int', 'level'=>'int', 'type'=>'int', 'num='=>'int'], - 'socket_connect' => ['bool', 'socket'=>'resource', 'address'=>'string', 'port='=>'int'], - 'socket_create' => ['resource|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], - 'socket_create_listen' => ['resource|false', 'port'=>'int', 'backlog='=>'int'], - 'socket_create_pair' => ['bool', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int', '&w_pair'=>'resource[]'], - 'socket_export_stream' => ['resource|false', 'socket'=>'resource'], - 'socket_get_option' => ['array|int|false', 'socket'=>'resource', 'level'=>'int', 'option'=>'int'], - 'socket_get_status' => ['array', 'stream'=>'resource'], - 'socket_getopt' => ['array|int|false', 'socket'=>'resource', 'level'=>'int', 'option'=>'int'], - 'socket_getpeername' => ['bool', 'socket'=>'resource', '&w_address'=>'string', '&w_port='=>'int'], - 'socket_getsockname' => ['bool', 'socket'=>'resource', '&w_address'=>'string', '&w_port='=>'int'], - 'socket_import_stream' => ['resource|false', 'stream'=>'resource'], - 'socket_last_error' => ['int', 'socket='=>'resource'], - 'socket_listen' => ['bool', 'socket'=>'resource', 'backlog='=>'int'], - 'socket_read' => ['string|false', 'socket'=>'resource', 'length'=>'int', 'mode='=>'int'], - 'socket_recv' => ['int|false', 'socket'=>'resource', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int'], - 'socket_recvfrom' => ['int|false', 'socket'=>'resource', '&w_data'=>'string', 'length'=>'int', 'flags'=>'int', '&w_address'=>'string', '&w_port='=>'int'], - 'socket_recvmsg' => ['int|false', 'socket'=>'resource', '&w_message'=>'array', 'flags='=>'int'], - 'socket_select' => ['int|false', '&rw_read'=>'resource[]|null', '&rw_write'=>'resource[]|null', '&rw_except'=>'resource[]|null', 'seconds'=>'int|null', 'microseconds='=>'int'], - 'socket_send' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length'=>'int', 'flags'=>'int'], - 'socket_sendmsg' => ['int|false', 'socket'=>'resource', 'message'=>'array', 'flags='=>'int'], - 'socket_sendto' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length'=>'int', 'flags'=>'int', 'address'=>'string', 'port='=>'int'], - 'socket_set_block' => ['bool', 'socket'=>'resource'], - 'socket_set_blocking' => ['bool', 'stream'=>'resource', 'enable'=>'bool'], - 'socket_set_nonblock' => ['bool', 'socket'=>'resource'], - 'socket_set_option' => ['bool', 'socket'=>'resource', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - 'socket_set_timeout' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], - 'socket_setopt' => ['bool', 'socket'=>'resource', 'level'=>'int', 'option'=>'int', 'value'=>'int|string|array'], - 'socket_shutdown' => ['bool', 'socket'=>'resource', 'mode='=>'int'], - 'socket_strerror' => ['string', 'error_code'=>'int'], - 'socket_write' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'length='=>'int'], - 'solid_fetch_prev' => ['bool', 'result_id'=>''], - 'solr_get_version' => ['string|false'], - 'sort' => ['true', '&rw_array'=>'array', 'flags='=>'int'], - 'soundex' => ['string', 'string'=>'string'], - 'spl_autoload' => ['void', 'class'=>'string', 'file_extensions='=>'string'], - 'spl_autoload_call' => ['void', 'class'=>'string'], - 'spl_autoload_extensions' => ['string', 'file_extensions='=>'string'], - 'spl_autoload_functions' => ['false|list'], - 'spl_autoload_register' => ['bool', 'callback='=>'callable(string):void', 'throw='=>'bool', 'prepend='=>'bool'], - 'spl_autoload_unregister' => ['bool', 'callback'=>'callable(string):void'], - 'spl_classes' => ['array'], - 'spl_object_hash' => ['string', 'object'=>'object'], - 'spl_object_id' => ['int', 'object'=>'object'], - 'sprintf' => ['string', 'format'=>'string', '...values='=>'string|int|float'], - 'sqlite_array_query' => ['array|false', 'dbhandle'=>'resource', 'query'=>'string', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'sqlite_busy_timeout' => ['void', 'dbhandle'=>'resource', 'milliseconds'=>'int'], - 'sqlite_changes' => ['int', 'dbhandle'=>'resource'], - 'sqlite_close' => ['void', 'dbhandle'=>'resource'], - 'sqlite_column' => ['mixed', 'result'=>'resource', 'index_or_name'=>'mixed', 'decode_binary='=>'bool'], - 'sqlite_create_aggregate' => ['void', 'dbhandle'=>'resource', 'function_name'=>'string', 'step_func'=>'callable', 'finalize_func'=>'callable', 'num_args='=>'int'], - 'sqlite_create_function' => ['void', 'dbhandle'=>'resource', 'function_name'=>'string', 'callback'=>'callable', 'num_args='=>'int'], - 'sqlite_current' => ['array|false', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'sqlite_error_string' => ['string', 'error_code'=>'int'], - 'sqlite_escape_string' => ['string', 'item'=>'string'], - 'sqlite_exec' => ['bool', 'dbhandle'=>'resource', 'query'=>'string', 'error_msg='=>'string'], - 'sqlite_factory' => ['SQLiteDatabase', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], - 'sqlite_fetch_all' => ['array', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'sqlite_fetch_array' => ['array|false', 'result'=>'resource', 'result_type='=>'int', 'decode_binary='=>'bool'], - 'sqlite_fetch_column_types' => ['array|false', 'table_name'=>'string', 'dbhandle'=>'resource', 'result_type='=>'int'], - 'sqlite_fetch_object' => ['object', 'result'=>'resource', 'class_name='=>'string', 'ctor_params='=>'array', 'decode_binary='=>'bool'], - 'sqlite_fetch_single' => ['string', 'result'=>'resource', 'decode_binary='=>'bool'], - 'sqlite_fetch_string' => ['string', 'result'=>'resource', 'decode_binary'=>'bool'], - 'sqlite_field_name' => ['string', 'result'=>'resource', 'field_index'=>'int'], - 'sqlite_has_more' => ['bool', 'result'=>'resource'], - 'sqlite_has_prev' => ['bool', 'result'=>'resource'], - 'sqlite_key' => ['int', 'result'=>'resource'], - 'sqlite_last_error' => ['int', 'dbhandle'=>'resource'], - 'sqlite_last_insert_rowid' => ['int', 'dbhandle'=>'resource'], - 'sqlite_libencoding' => ['string'], - 'sqlite_libversion' => ['string'], - 'sqlite_next' => ['bool', 'result'=>'resource'], - 'sqlite_num_fields' => ['int', 'result'=>'resource'], - 'sqlite_num_rows' => ['int', 'result'=>'resource'], - 'sqlite_open' => ['resource|false', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], - 'sqlite_popen' => ['resource|false', 'filename'=>'string', 'mode='=>'int', 'error_message='=>'string'], - 'sqlite_prev' => ['bool', 'result'=>'resource'], - 'sqlite_query' => ['resource|false', 'dbhandle'=>'resource', 'query'=>'resource|string', 'result_type='=>'int', 'error_msg='=>'string'], - 'sqlite_rewind' => ['bool', 'result'=>'resource'], - 'sqlite_seek' => ['bool', 'result'=>'resource', 'rownum'=>'int'], - 'sqlite_single_query' => ['array', 'db'=>'resource', 'query'=>'string', 'first_row_only='=>'bool', 'decode_binary='=>'bool'], - 'sqlite_udf_decode_binary' => ['string', 'data'=>'string'], - 'sqlite_udf_encode_binary' => ['string', 'data'=>'string'], - 'sqlite_unbuffered_query' => ['SQLiteUnbuffered|false', 'dbhandle'=>'resource', 'query'=>'string', 'result_type='=>'int', 'error_msg='=>'string'], - 'sqlite_valid' => ['bool', 'result'=>'resource'], - 'sqlsrv_begin_transaction' => ['bool', 'conn'=>'resource'], - 'sqlsrv_cancel' => ['bool', 'stmt'=>'resource'], - 'sqlsrv_client_info' => ['array|false', 'conn'=>'resource'], - 'sqlsrv_close' => ['bool', 'conn'=>'?resource'], - 'sqlsrv_commit' => ['bool', 'conn'=>'resource'], - 'sqlsrv_configure' => ['bool', 'setting'=>'string', 'value'=>'mixed'], - 'sqlsrv_connect' => ['resource|false', 'server_name'=>'string', 'connection_info='=>'array'], - 'sqlsrv_errors' => ['?array', 'errors_and_or_warnings='=>'int'], - 'sqlsrv_execute' => ['bool', 'stmt'=>'resource'], - 'sqlsrv_fetch' => ['?bool', 'stmt'=>'resource', 'row='=>'int', 'offset='=>'int'], - 'sqlsrv_fetch_array' => ['array|null|false', 'stmt'=>'resource', 'fetchType='=>'int', 'row='=>'int', 'offset='=>'int'], - 'sqlsrv_fetch_object' => ['object|null|false', 'stmt'=>'resource', 'className='=>'string', 'ctorParams='=>'array', 'row='=>'int', 'offset='=>'int'], - 'sqlsrv_field_metadata' => ['array|false', 'stmt'=>'resource'], - 'sqlsrv_free_stmt' => ['bool', 'stmt'=>'resource'], - 'sqlsrv_get_config' => ['mixed', 'setting'=>'string'], - 'sqlsrv_get_field' => ['mixed', 'stmt'=>'resource', 'fieldIndex'=>'int', 'getAsType='=>'int'], - 'sqlsrv_has_rows' => ['bool', 'stmt'=>'resource'], - 'sqlsrv_next_result' => ['?bool', 'stmt'=>'resource'], - 'sqlsrv_num_fields' => ['int|false', 'stmt'=>'resource'], - 'sqlsrv_num_rows' => ['int|false', 'stmt'=>'resource'], - 'sqlsrv_prepare' => ['resource|false', 'conn'=>'resource', 'sql'=>'string', 'params='=>'array', 'options='=>'array'], - 'sqlsrv_query' => ['resource|false', 'conn'=>'resource', 'sql'=>'string', 'params='=>'array', 'options='=>'array'], - 'sqlsrv_rollback' => ['bool', 'conn'=>'resource'], - 'sqlsrv_rows_affected' => ['int|false', 'stmt'=>'resource'], - 'sqlsrv_send_stream_data' => ['bool', 'stmt'=>'resource'], - 'sqlsrv_server_info' => ['array', 'conn'=>'resource'], - 'sqrt' => ['float', 'num'=>'float'], - 'srand' => ['void', 'seed='=>'int', 'mode='=>'int'], - 'sscanf' => ['list|int|null', 'string'=>'string', 'format'=>'string', '&...w_vars='=>'string|int|float|null'], - 'ssdeep_fuzzy_compare' => ['int', 'signature1'=>'string', 'signature2'=>'string'], - 'ssdeep_fuzzy_hash' => ['string', 'to_hash'=>'string'], - 'ssdeep_fuzzy_hash_filename' => ['string', 'file_name'=>'string'], - 'ssh2_auth_agent' => ['bool', 'session'=>'resource', 'username'=>'string'], - 'ssh2_auth_hostbased_file' => ['bool', 'session'=>'resource', 'username'=>'string', 'hostname'=>'string', 'pubkeyfile'=>'string', 'privkeyfile'=>'string', 'passphrase='=>'string', 'local_username='=>'string'], - 'ssh2_auth_none' => ['bool|string[]', 'session'=>'resource', 'username'=>'string'], - 'ssh2_auth_password' => ['bool', 'session'=>'resource', 'username'=>'string', 'password'=>'string'], - 'ssh2_auth_pubkey_file' => ['bool', 'session'=>'resource', 'username'=>'string', 'pubkeyfile'=>'string', 'privkeyfile'=>'string', 'passphrase='=>'string'], - 'ssh2_connect' => ['resource|false', 'host'=>'string', 'port='=>'int', 'methods='=>'array', 'callbacks='=>'array'], - 'ssh2_disconnect' => ['bool', 'session'=>'resource'], - 'ssh2_exec' => ['resource|false', 'session'=>'resource', 'command'=>'string', 'pty='=>'string', 'env='=>'array', 'width='=>'int', 'height='=>'int', 'width_height_type='=>'int'], - 'ssh2_fetch_stream' => ['resource|false', 'channel'=>'resource', 'streamid'=>'int'], - 'ssh2_fingerprint' => ['string|false', 'session'=>'resource', 'flags='=>'int'], - 'ssh2_forward_accept' => ['resource|false', 'listener'=>'resource'], - 'ssh2_forward_listen' => ['resource|false', 'session'=>'resource', 'port'=>'int', 'host='=>'string', 'max_connections='=>'string'], - 'ssh2_methods_negotiated' => ['array|false', 'session'=>'resource'], - 'ssh2_poll' => ['int', '&polldes'=>'array', 'timeout='=>'int'], - 'ssh2_publickey_add' => ['bool', 'pkey'=>'resource', 'algoname'=>'string', 'blob'=>'string', 'overwrite='=>'bool', 'attributes='=>'array'], - 'ssh2_publickey_init' => ['resource|false', 'session'=>'resource'], - 'ssh2_publickey_list' => ['array|false', 'pkey'=>'resource'], - 'ssh2_publickey_remove' => ['bool', 'pkey'=>'resource', 'algoname'=>'string', 'blob'=>'string'], - 'ssh2_scp_recv' => ['bool', 'session'=>'resource', 'remote_file'=>'string', 'local_file'=>'string'], - 'ssh2_scp_send' => ['bool', 'session'=>'resource', 'local_file'=>'string', 'remote_file'=>'string', 'create_mode='=>'int'], - 'ssh2_sftp' => ['resource|false', 'session'=>'resource'], - 'ssh2_sftp_chmod' => ['bool', 'sftp'=>'resource', 'filename'=>'string', 'mode'=>'int'], - 'ssh2_sftp_lstat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'sftp'=>'resource', 'path'=>'string'], - 'ssh2_sftp_mkdir' => ['bool', 'sftp'=>'resource', 'dirname'=>'string', 'mode='=>'int', 'recursive='=>'bool'], - 'ssh2_sftp_readlink' => ['non-falsy-string|false', 'sftp'=>'resource', 'link'=>'string'], - 'ssh2_sftp_realpath' => ['non-falsy-string|false', 'sftp'=>'resource', 'filename'=>'string'], - 'ssh2_sftp_rename' => ['bool', 'sftp'=>'resource', 'from'=>'string', 'to'=>'string'], - 'ssh2_sftp_rmdir' => ['bool', 'sftp'=>'resource', 'dirname'=>'string'], - 'ssh2_sftp_stat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'sftp'=>'resource', 'path'=>'string'], - 'ssh2_sftp_symlink' => ['bool', 'sftp'=>'resource', 'target'=>'string', 'link'=>'string'], - 'ssh2_sftp_unlink' => ['bool', 'sftp'=>'resource', 'filename'=>'string'], - 'ssh2_shell' => ['resource|false', 'session'=>'resource', 'termtype='=>'string', 'env='=>'array', 'width='=>'int', 'height='=>'int', 'width_height_type='=>'int'], - 'ssh2_tunnel' => ['resource|false', 'session'=>'resource', 'host'=>'string', 'port'=>'int'], - 'stat' => ['array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, 10: int, 11: int, 12: int, dev: int, ino: int, mode: int, nlink: int, uid: int, gid: int, rdev: int, size: int, atime: int, mtime: int, ctime: int, blksize: int, blocks: int}|false', 'filename'=>'string'], - 'stats_absolute_deviation' => ['float', 'a'=>'array'], - 'stats_cdf_beta' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_binomial' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_cauchy' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_chisquare' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], - 'stats_cdf_exponential' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], - 'stats_cdf_f' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_gamma' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_laplace' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_logistic' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_negative_binomial' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_noncentral_chisquare' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_noncentral_f' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'par4'=>'float', 'which'=>'int'], - 'stats_cdf_noncentral_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_normal' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_poisson' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], - 'stats_cdf_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'which'=>'int'], - 'stats_cdf_uniform' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_cdf_weibull' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_covariance' => ['float', 'a'=>'array', 'b'=>'array'], - 'stats_den_uniform' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], - 'stats_dens_beta' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], - 'stats_dens_cauchy' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], - 'stats_dens_chisquare' => ['float', 'x'=>'float', 'dfr'=>'float'], - 'stats_dens_exponential' => ['float', 'x'=>'float', 'scale'=>'float'], - 'stats_dens_f' => ['float', 'x'=>'float', 'dfr1'=>'float', 'dfr2'=>'float'], - 'stats_dens_gamma' => ['float', 'x'=>'float', 'shape'=>'float', 'scale'=>'float'], - 'stats_dens_laplace' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], - 'stats_dens_logistic' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], - 'stats_dens_negative_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], - 'stats_dens_normal' => ['float', 'x'=>'float', 'ave'=>'float', 'stdev'=>'float'], - 'stats_dens_pmf_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], - 'stats_dens_pmf_hypergeometric' => ['float', 'n1'=>'float', 'n2'=>'float', 'N1'=>'float', 'N2'=>'float'], - 'stats_dens_pmf_negative_binomial' => ['float', 'x'=>'float', 'n'=>'float', 'pi'=>'float'], - 'stats_dens_pmf_poisson' => ['float', 'x'=>'float', 'lb'=>'float'], - 'stats_dens_t' => ['float', 'x'=>'float', 'dfr'=>'float'], - 'stats_dens_uniform' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], - 'stats_dens_weibull' => ['float', 'x'=>'float', 'a'=>'float', 'b'=>'float'], - 'stats_harmonic_mean' => ['float', 'a'=>'array'], - 'stats_kurtosis' => ['float', 'a'=>'array'], - 'stats_rand_gen_beta' => ['float', 'a'=>'float', 'b'=>'float'], - 'stats_rand_gen_chisquare' => ['float', 'df'=>'float'], - 'stats_rand_gen_exponential' => ['float', 'av'=>'float'], - 'stats_rand_gen_f' => ['float', 'dfn'=>'float', 'dfd'=>'float'], - 'stats_rand_gen_funiform' => ['float', 'low'=>'float', 'high'=>'float'], - 'stats_rand_gen_gamma' => ['float', 'a'=>'float', 'r'=>'float'], - 'stats_rand_gen_ibinomial' => ['int', 'n'=>'int', 'pp'=>'float'], - 'stats_rand_gen_ibinomial_negative' => ['int', 'n'=>'int', 'p'=>'float'], - 'stats_rand_gen_int' => ['int'], - 'stats_rand_gen_ipoisson' => ['int', 'mu'=>'float'], - 'stats_rand_gen_iuniform' => ['int', 'low'=>'int', 'high'=>'int'], - 'stats_rand_gen_noncenral_chisquare' => ['float', 'df'=>'float', 'xnonc'=>'float'], - 'stats_rand_gen_noncentral_chisquare' => ['float', 'df'=>'float', 'xnonc'=>'float'], - 'stats_rand_gen_noncentral_f' => ['float', 'dfn'=>'float', 'dfd'=>'float', 'xnonc'=>'float'], - 'stats_rand_gen_noncentral_t' => ['float', 'df'=>'float', 'xnonc'=>'float'], - 'stats_rand_gen_normal' => ['float', 'av'=>'float', 'sd'=>'float'], - 'stats_rand_gen_t' => ['float', 'df'=>'float'], - 'stats_rand_get_seeds' => ['array'], - 'stats_rand_phrase_to_seeds' => ['array', 'phrase'=>'string'], - 'stats_rand_ranf' => ['float'], - 'stats_rand_setall' => ['void', 'iseed1'=>'int', 'iseed2'=>'int'], - 'stats_skew' => ['float', 'a'=>'array'], - 'stats_standard_deviation' => ['float', 'a'=>'array', 'sample='=>'bool'], - 'stats_stat_binomial_coef' => ['float', 'x'=>'int', 'n'=>'int'], - 'stats_stat_correlation' => ['float', 'array1'=>'array', 'array2'=>'array'], - 'stats_stat_factorial' => ['float', 'n'=>'int'], - 'stats_stat_gennch' => ['float', 'n'=>'int'], - 'stats_stat_independent_t' => ['float', 'array1'=>'array', 'array2'=>'array'], - 'stats_stat_innerproduct' => ['float', 'array1'=>'array', 'array2'=>'array'], - 'stats_stat_noncentral_t' => ['float', 'par1'=>'float', 'par2'=>'float', 'par3'=>'float', 'which'=>'int'], - 'stats_stat_paired_t' => ['float', 'array1'=>'array', 'array2'=>'array'], - 'stats_stat_percentile' => ['float', 'arr'=>'array', 'perc'=>'float'], - 'stats_stat_powersum' => ['float', 'arr'=>'array', 'power'=>'float'], - 'stats_variance' => ['float', 'a'=>'array', 'sample='=>'bool'], - 'stomp_abort' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], - 'stomp_ack' => ['bool', 'link'=>'resource', 'msg'=>'', 'headers='=>'?array'], - 'stomp_begin' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], - 'stomp_close' => ['bool', 'link'=>'resource'], - 'stomp_commit' => ['bool', 'link'=>'resource', 'transaction_id'=>'string', 'headers='=>'?array'], - 'stomp_connect' => ['resource', 'link'=>'resource', 'broker='=>'string', 'username='=>'string', 'password='=>'string', 'headers='=>'?array'], - 'stomp_connect_error' => ['string'], - 'stomp_error' => ['string', 'link'=>'resource'], - 'stomp_get_read_timeout' => ['array', 'link'=>'resource'], - 'stomp_get_session_id' => ['string', 'link'=>'resource'], - 'stomp_has_frame' => ['bool', 'link'=>'resource'], - 'stomp_read_frame' => ['array', 'link'=>'resource', 'class_name='=>'string'], - 'stomp_send' => ['bool', 'link'=>'resource', 'destination'=>'string', 'msg'=>'', 'headers='=>'?array'], - 'stomp_set_read_timeout' => ['void', 'link'=>'resource', 'seconds'=>'int', 'microseconds='=>'?int'], - 'stomp_subscribe' => ['bool', 'link'=>'resource', 'destination'=>'string', 'headers='=>'?array'], - 'stomp_unsubscribe' => ['bool', 'link'=>'resource', 'destination'=>'string', 'headers='=>'?array'], - 'stomp_version' => ['string'], - 'str_getcsv' => ['non-empty-list', 'string'=>'string', 'separator='=>'string', 'enclosure='=>'string', 'escape='=>'string'], - 'str_ireplace' => ['string', 'search'=>'string', 'replace'=>'string', 'subject'=>'string', '&w_count='=>'int'], - 'str_ireplace\'1' => ['string[]', 'search'=>'string', 'replace'=>'string', 'subject'=>'array', '&w_count='=>'int'], - 'str_ireplace\'2' => ['string', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'string', '&w_count='=>'int'], - 'str_ireplace\'3' => ['string[]', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'array', '&w_count='=>'int'], - 'str_pad' => ['string', 'string'=>'string', 'length'=>'int', 'pad_string='=>'string', 'pad_type='=>'int'], - 'str_repeat' => ['string', 'string'=>'string', 'times'=>'int'], - 'str_replace' => ['string', 'search'=>'string', 'replace'=>'string', 'subject'=>'string', '&w_count='=>'int'], - 'str_replace\'1' => ['string[]', 'search'=>'string', 'replace'=>'string', 'subject'=>'array', '&w_count='=>'int'], - 'str_replace\'2' => ['string', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'string', '&w_count='=>'int'], - 'str_replace\'3' => ['string[]', 'search'=>'array', 'replace'=>'string|string[]', 'subject'=>'array', '&w_count='=>'int'], - 'str_rot13' => ['string', 'string'=>'string'], - 'str_shuffle' => ['string', 'string'=>'string'], - 'str_split' => ['non-empty-list', 'string'=>'string', 'length='=>'positive-int'], - 'str_word_count' => ['array|int', 'string'=>'string', 'format='=>'int', 'characters='=>'string'], - 'strcasecmp' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'strchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'strcmp' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'strcoll' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'strcspn' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'int'], - 'streamWrapper::__construct' => ['void'], - 'streamWrapper::__destruct' => ['void'], - 'streamWrapper::dir_closedir' => ['bool'], - 'streamWrapper::dir_opendir' => ['bool', 'path'=>'string', 'options'=>'int'], - 'streamWrapper::dir_readdir' => ['string'], - 'streamWrapper::dir_rewinddir' => ['bool'], - 'streamWrapper::mkdir' => ['bool', 'path'=>'string', 'mode'=>'int', 'options'=>'int'], - 'streamWrapper::rename' => ['bool', 'path_from'=>'string', 'path_to'=>'string'], - 'streamWrapper::rmdir' => ['bool', 'path'=>'string', 'options'=>'int'], - 'streamWrapper::stream_cast' => ['resource', 'cast_as'=>'int'], - 'streamWrapper::stream_close' => ['void'], - 'streamWrapper::stream_eof' => ['bool'], - 'streamWrapper::stream_flush' => ['bool'], - 'streamWrapper::stream_lock' => ['bool', 'operation'=>'mode'], - 'streamWrapper::stream_metadata' => ['bool', 'path'=>'string', 'option'=>'int', 'value'=>'mixed'], - 'streamWrapper::stream_open' => ['bool', 'path'=>'string', 'mode'=>'string', 'options'=>'int', 'opened_path'=>'string'], - 'streamWrapper::stream_read' => ['string', 'count'=>'int'], - 'streamWrapper::stream_seek' => ['bool', 'offset'=>'int', 'whence'=>'int'], - 'streamWrapper::stream_set_option' => ['bool', 'option'=>'int', 'arg1'=>'int', 'arg2'=>'int'], - 'streamWrapper::stream_stat' => ['array'], - 'streamWrapper::stream_tell' => ['int'], - 'streamWrapper::stream_truncate' => ['bool', 'new_size'=>'int'], - 'streamWrapper::stream_write' => ['int', 'data'=>'string'], - 'streamWrapper::unlink' => ['bool', 'path'=>'string'], - 'streamWrapper::url_stat' => ['array', 'path'=>'string', 'flags'=>'int'], - 'stream_bucket_append' => ['void', 'brigade'=>'resource', 'bucket'=>'object'], - 'stream_bucket_make_writeable' => ['?object', 'brigade'=>'resource'], - 'stream_bucket_new' => ['object', 'stream'=>'resource', 'buffer'=>'string'], - 'stream_bucket_prepend' => ['void', 'brigade'=>'resource', 'bucket'=>'object'], - 'stream_context_create' => ['resource', 'options='=>'array', 'params='=>'array'], - 'stream_context_get_default' => ['resource', 'options='=>'array'], - 'stream_context_get_options' => ['array', 'stream_or_context'=>'resource'], - 'stream_context_get_params' => ['array{notification:string,options:array}', 'context'=>'resource'], - 'stream_context_set_default' => ['resource', 'options'=>'array'], - 'stream_context_set_option' => ['bool', 'context'=>'', 'wrapper_or_options'=>'string', 'option_name'=>'string', 'value'=>''], - 'stream_context_set_option\'1' => ['bool', 'context'=>'', 'wrapper_or_options'=>'array'], - 'stream_context_set_params' => ['bool', 'context'=>'resource', 'params'=>'array'], - 'stream_copy_to_stream' => ['int|false', 'from'=>'resource', 'to'=>'resource', 'length='=>'int', 'offset='=>'int'], - 'stream_encoding' => ['bool', 'stream'=>'resource', 'encoding='=>'string'], - 'stream_filter_append' => ['resource|false', 'stream'=>'resource', 'filter_name'=>'string', 'mode='=>'int', 'params='=>'mixed'], - 'stream_filter_prepend' => ['resource|false', 'stream'=>'resource', 'filter_name'=>'string', 'mode='=>'int', 'params='=>'mixed'], - 'stream_filter_register' => ['bool', 'filter_name'=>'string', 'class'=>'string'], - 'stream_filter_remove' => ['bool', 'stream_filter'=>'resource'], - 'stream_get_contents' => ['string|false', 'stream'=>'resource', 'length='=>'int', 'offset='=>'int'], - 'stream_get_filters' => ['array'], - 'stream_get_line' => ['string|false', 'stream'=>'resource', 'length'=>'int', 'ending='=>'string'], - 'stream_get_meta_data' => ['array{timed_out:bool,blocked:bool,eof:bool,unread_bytes:int,stream_type:string,wrapper_type:string,wrapper_data:mixed,mode:string,seekable:bool,uri:string,mediatype:string,crypto?:array{protocol:string,cipher_name:string,cipher_bits:int,cipher_version:string}}', 'stream'=>'resource'], - 'stream_get_transports' => ['list'], - 'stream_get_wrappers' => ['list'], - 'stream_is_local' => ['bool', 'stream'=>'resource|string'], - 'stream_notification_callback' => ['callback', 'notification_code'=>'int', 'severity'=>'int', 'message'=>'string', 'message_code'=>'int', 'bytes_transferred'=>'int', 'bytes_max'=>'int'], - 'stream_register_wrapper' => ['bool', 'protocol'=>'string', 'class'=>'string', 'flags='=>'int'], - 'stream_resolve_include_path' => ['string|false', 'filename'=>'string'], - 'stream_select' => ['int|false', '&rw_read'=>'?resource[]', '&rw_write'=>'?resource[]', '&rw_except'=>'?resource[]', 'seconds'=>'?int', 'microseconds='=>'int'], - 'stream_set_blocking' => ['bool', 'stream'=>'resource', 'enable'=>'bool'], - 'stream_set_chunk_size' => ['int|false', 'stream'=>'resource', 'size'=>'int'], - 'stream_set_read_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], - 'stream_set_timeout' => ['bool', 'stream'=>'resource', 'seconds'=>'int', 'microseconds='=>'int'], - 'stream_set_write_buffer' => ['int', 'stream'=>'resource', 'size'=>'int'], - 'stream_socket_accept' => ['resource|false', 'socket'=>'resource', 'timeout='=>'float', '&w_peer_name='=>'string'], - 'stream_socket_client' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'timeout='=>'float', 'flags='=>'int', 'context='=>'resource'], - 'stream_socket_enable_crypto' => ['int|bool', 'stream'=>'resource', 'enable'=>'bool', 'crypto_method='=>'?int', 'session_stream='=>'resource'], - 'stream_socket_get_name' => ['string|false', 'socket'=>'resource', 'remote'=>'bool'], - 'stream_socket_pair' => ['resource[]|false', 'domain'=>'int', 'type'=>'int', 'protocol'=>'int'], - 'stream_socket_recvfrom' => ['string|false', 'socket'=>'resource', 'length'=>'int', 'flags='=>'int', '&w_address='=>'string'], - 'stream_socket_sendto' => ['int|false', 'socket'=>'resource', 'data'=>'string', 'flags='=>'int', 'address='=>'string'], - 'stream_socket_server' => ['resource|false', 'address'=>'string', '&w_error_code='=>'int', '&w_error_message='=>'string', 'flags='=>'int', 'context='=>'resource'], - 'stream_socket_shutdown' => ['bool', 'stream'=>'resource', 'mode'=>'int'], - 'stream_supports_lock' => ['bool', 'stream'=>'resource'], - 'stream_wrapper_register' => ['bool', 'protocol'=>'string', 'class'=>'string', 'flags='=>'int'], - 'stream_wrapper_restore' => ['bool', 'protocol'=>'string'], - 'stream_wrapper_unregister' => ['bool', 'protocol'=>'string'], - 'strftime' => ['string|false', 'format'=>'string', 'timestamp='=>'int'], - 'strip_tags' => ['string', 'string'=>'string', 'allowed_tags='=>'string'], - 'stripcslashes' => ['string', 'string'=>'string'], - 'stripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'stripslashes' => ['string', 'string'=>'string'], - 'stristr' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'strlen' => ['0|positive-int', 'string'=>'string'], - 'strnatcasecmp' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'strnatcmp' => ['int', 'string1'=>'string', 'string2'=>'string'], - 'strncasecmp' => ['int', 'string1'=>'string', 'string2'=>'string', 'length'=>'int'], - 'strncmp' => ['int', 'string1'=>'string', 'string2'=>'string', 'length'=>'int'], - 'strpbrk' => ['string|false', 'string'=>'string', 'characters'=>'string'], - 'strpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'strptime' => ['array|false', 'timestamp'=>'string', 'format'=>'string'], - 'strrchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int'], - 'strrev' => ['string', 'string'=>'string'], - 'strripos' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'strrpos' => ['int|false', 'haystack'=>'string', 'needle'=>'string|int', 'offset='=>'int'], - 'strspn' => ['int', 'string'=>'string', 'characters'=>'string', 'offset='=>'int', 'length='=>'int'], - 'strstr' => ['string|false', 'haystack'=>'string', 'needle'=>'string|int', 'before_needle='=>'bool'], - 'strtok' => ['non-empty-string|false', 'string'=>'string', 'token'=>'string'], - 'strtok\'1' => ['non-empty-string|false', 'string'=>'string'], - 'strtolower' => ['lowercase-string', 'string'=>'string'], - 'strtotime' => ['int|false', 'datetime'=>'string', 'baseTimestamp='=>'int'], - 'strtoupper' => ['string', 'string'=>'string'], - 'strtr' => ['string', 'string'=>'string', 'from'=>'string', 'to'=>'string'], - 'strtr\'1' => ['string', 'string'=>'string', 'from'=>'array'], - 'strval' => ['string', 'value'=>'mixed'], - 'styleObj::__construct' => ['void', 'label'=>'labelObj', 'style'=>'styleObj'], - 'styleObj::convertToString' => ['string'], - 'styleObj::free' => ['void'], - 'styleObj::getBinding' => ['string', 'stylebinding'=>'mixed'], - 'styleObj::getGeomTransform' => ['string'], - 'styleObj::ms_newStyleObj' => ['styleObj', 'class'=>'classObj', 'style'=>'styleObj'], - 'styleObj::removeBinding' => ['int', 'stylebinding'=>'mixed'], - 'styleObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'styleObj::setBinding' => ['int', 'stylebinding'=>'mixed', 'value'=>'string'], - 'styleObj::setGeomTransform' => ['int', 'value'=>'string'], - 'styleObj::updateFromString' => ['int', 'snippet'=>'string'], - 'substr' => ['string|false', 'string'=>'string', 'offset'=>'int', 'length='=>'int'], - 'substr_compare' => ['int|false', 'haystack'=>'string', 'needle'=>'string', 'offset'=>'int', 'length='=>'int', 'case_insensitive='=>'bool'], - 'substr_count' => ['int', 'haystack'=>'string', 'needle'=>'string', 'offset='=>'int', 'length='=>'int'], - 'substr_replace' => ['string', 'string'=>'string', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]'], - 'substr_replace\'1' => ['string[]', 'string'=>'string[]', 'replace'=>'string|string[]', 'offset'=>'int|int[]', 'length='=>'int|int[]'], - 'suhosin_encrypt_cookie' => ['string|false', 'name'=>'string', 'value'=>'string'], - 'suhosin_get_raw_cookies' => ['array'], - 'svm::crossvalidate' => ['float', 'problem'=>'array', 'number_of_folds'=>'int'], - 'svm::train' => ['SVMModel', 'problem'=>'array', 'weights='=>'array'], - 'svn_add' => ['bool', 'path'=>'string', 'recursive='=>'bool', 'force='=>'bool'], - 'svn_auth_get_parameter' => ['?string', 'key'=>'string'], - 'svn_auth_set_parameter' => ['void', 'key'=>'string', 'value'=>'string'], - 'svn_blame' => ['array', 'repository_url'=>'string', 'revision_no='=>'int'], - 'svn_cat' => ['string', 'repos_url'=>'string', 'revision_no='=>'int'], - 'svn_checkout' => ['bool', 'repos'=>'string', 'targetpath'=>'string', 'revision='=>'int', 'flags='=>'int'], - 'svn_cleanup' => ['bool', 'workingdir'=>'string'], - 'svn_client_version' => ['string'], - 'svn_commit' => ['array', 'log'=>'string', 'targets'=>'array', 'dontrecurse='=>'bool'], - 'svn_delete' => ['bool', 'path'=>'string', 'force='=>'bool'], - 'svn_diff' => ['array', 'path1'=>'string', 'rev1'=>'int', 'path2'=>'string', 'rev2'=>'int'], - 'svn_export' => ['bool', 'frompath'=>'string', 'topath'=>'string', 'working_copy='=>'bool', 'revision_no='=>'int'], - 'svn_fs_abort_txn' => ['bool', 'txn'=>'resource'], - 'svn_fs_apply_text' => ['resource', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_begin_txn2' => ['resource', 'repos'=>'resource', 'rev'=>'int'], - 'svn_fs_change_node_prop' => ['bool', 'root'=>'resource', 'path'=>'string', 'name'=>'string', 'value'=>'string'], - 'svn_fs_check_path' => ['int', 'fsroot'=>'resource', 'path'=>'string'], - 'svn_fs_contents_changed' => ['bool', 'root1'=>'resource', 'path1'=>'string', 'root2'=>'resource', 'path2'=>'string'], - 'svn_fs_copy' => ['bool', 'from_root'=>'resource', 'from_path'=>'string', 'to_root'=>'resource', 'to_path'=>'string'], - 'svn_fs_delete' => ['bool', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_dir_entries' => ['array', 'fsroot'=>'resource', 'path'=>'string'], - 'svn_fs_file_contents' => ['resource', 'fsroot'=>'resource', 'path'=>'string'], - 'svn_fs_file_length' => ['int', 'fsroot'=>'resource', 'path'=>'string'], - 'svn_fs_is_dir' => ['bool', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_is_file' => ['bool', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_make_dir' => ['bool', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_make_file' => ['bool', 'root'=>'resource', 'path'=>'string'], - 'svn_fs_node_created_rev' => ['int', 'fsroot'=>'resource', 'path'=>'string'], - 'svn_fs_node_prop' => ['string', 'fsroot'=>'resource', 'path'=>'string', 'propname'=>'string'], - 'svn_fs_props_changed' => ['bool', 'root1'=>'resource', 'path1'=>'string', 'root2'=>'resource', 'path2'=>'string'], - 'svn_fs_revision_prop' => ['string', 'fs'=>'resource', 'revnum'=>'int', 'propname'=>'string'], - 'svn_fs_revision_root' => ['resource', 'fs'=>'resource', 'revnum'=>'int'], - 'svn_fs_txn_root' => ['resource', 'txn'=>'resource'], - 'svn_fs_youngest_rev' => ['int', 'fs'=>'resource'], - 'svn_import' => ['bool', 'path'=>'string', 'url'=>'string', 'nonrecursive'=>'bool'], - 'svn_log' => ['array', 'repos_url'=>'string', 'start_revision='=>'int', 'end_revision='=>'int', 'limit='=>'int', 'flags='=>'int'], - 'svn_ls' => ['array', 'repos_url'=>'string', 'revision_no='=>'int', 'recurse='=>'bool', 'peg='=>'bool'], - 'svn_mkdir' => ['bool', 'path'=>'string', 'log_message='=>'string'], - 'svn_move' => ['mixed', 'src_path'=>'string', 'dst_path'=>'string', 'force='=>'bool'], - 'svn_propget' => ['mixed', 'path'=>'string', 'property_name'=>'string', 'recurse='=>'bool', 'revision'=>'int'], - 'svn_proplist' => ['mixed', 'path'=>'string', 'recurse='=>'bool', 'revision'=>'int'], - 'svn_repos_create' => ['resource', 'path'=>'string', 'config='=>'array', 'fsconfig='=>'array'], - 'svn_repos_fs' => ['resource', 'repos'=>'resource'], - 'svn_repos_fs_begin_txn_for_commit' => ['resource', 'repos'=>'resource', 'rev'=>'int', 'author'=>'string', 'log_msg'=>'string'], - 'svn_repos_fs_commit_txn' => ['int', 'txn'=>'resource'], - 'svn_repos_hotcopy' => ['bool', 'repospath'=>'string', 'destpath'=>'string', 'cleanlogs'=>'bool'], - 'svn_repos_open' => ['resource', 'path'=>'string'], - 'svn_repos_recover' => ['bool', 'path'=>'string'], - 'svn_revert' => ['bool', 'path'=>'string', 'recursive='=>'bool'], - 'svn_status' => ['array', 'path'=>'string', 'flags='=>'int'], - 'svn_update' => ['int|false', 'path'=>'string', 'revno='=>'int', 'recurse='=>'bool'], - 'swf_actiongeturl' => ['', 'url'=>'string', 'target'=>'string'], - 'swf_actiongotoframe' => ['', 'framenumber'=>'int'], - 'swf_actiongotolabel' => ['', 'label'=>'string'], - 'swf_actionnextframe' => [''], - 'swf_actionplay' => [''], - 'swf_actionprevframe' => [''], - 'swf_actionsettarget' => ['', 'target'=>'string'], - 'swf_actionstop' => [''], - 'swf_actiontogglequality' => [''], - 'swf_actionwaitforframe' => ['', 'framenumber'=>'int', 'skipcount'=>'int'], - 'swf_addbuttonrecord' => ['', 'states'=>'int', 'shapeid'=>'int', 'depth'=>'int'], - 'swf_addcolor' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], - 'swf_closefile' => ['', 'return_file='=>'int'], - 'swf_definebitmap' => ['', 'objid'=>'int', 'image_name'=>'string'], - 'swf_definefont' => ['', 'fontid'=>'int', 'fontname'=>'string'], - 'swf_defineline' => ['', 'objid'=>'int', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'width'=>'float'], - 'swf_definepoly' => ['', 'objid'=>'int', 'coords'=>'array', 'npoints'=>'int', 'width'=>'float'], - 'swf_definerect' => ['', 'objid'=>'int', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'width'=>'float'], - 'swf_definetext' => ['', 'objid'=>'int', 'string'=>'string', 'docenter'=>'int'], - 'swf_endbutton' => [''], - 'swf_enddoaction' => [''], - 'swf_endshape' => [''], - 'swf_endsymbol' => [''], - 'swf_fontsize' => ['', 'size'=>'float'], - 'swf_fontslant' => ['', 'slant'=>'float'], - 'swf_fonttracking' => ['', 'tracking'=>'float'], - 'swf_getbitmapinfo' => ['array', 'bitmapid'=>'int'], - 'swf_getfontinfo' => ['array'], - 'swf_getframe' => ['int'], - 'swf_labelframe' => ['', 'name'=>'string'], - 'swf_lookat' => ['', 'view_x'=>'float', 'view_y'=>'float', 'view_z'=>'float', 'reference_x'=>'float', 'reference_y'=>'float', 'reference_z'=>'float', 'twist'=>'float'], - 'swf_modifyobject' => ['', 'depth'=>'int', 'how'=>'int'], - 'swf_mulcolor' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], - 'swf_nextid' => ['int'], - 'swf_oncondition' => ['', 'transition'=>'int'], - 'swf_openfile' => ['', 'filename'=>'string', 'width'=>'float', 'height'=>'float', 'framerate'=>'float', 'r'=>'float', 'g'=>'float', 'b'=>'float'], - 'swf_ortho' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float', 'zmin'=>'float', 'zmax'=>'float'], - 'swf_ortho2' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float'], - 'swf_perspective' => ['', 'fovy'=>'float', 'aspect'=>'float', 'near'=>'float', 'far'=>'float'], - 'swf_placeobject' => ['', 'objid'=>'int', 'depth'=>'int'], - 'swf_polarview' => ['', 'dist'=>'float', 'azimuth'=>'float', 'incidence'=>'float', 'twist'=>'float'], - 'swf_popmatrix' => [''], - 'swf_posround' => ['', 'round'=>'int'], - 'swf_pushmatrix' => [''], - 'swf_removeobject' => ['', 'depth'=>'int'], - 'swf_rotate' => ['', 'angle'=>'float', 'axis'=>'string'], - 'swf_scale' => ['', 'x'=>'float', 'y'=>'float', 'z'=>'float'], - 'swf_setfont' => ['', 'fontid'=>'int'], - 'swf_setframe' => ['', 'framenumber'=>'int'], - 'swf_shapearc' => ['', 'x'=>'float', 'y'=>'float', 'r'=>'float', 'ang1'=>'float', 'ang2'=>'float'], - 'swf_shapecurveto' => ['', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float'], - 'swf_shapecurveto3' => ['', 'x1'=>'float', 'y1'=>'float', 'x2'=>'float', 'y2'=>'float', 'x3'=>'float', 'y3'=>'float'], - 'swf_shapefillbitmapclip' => ['', 'bitmapid'=>'int'], - 'swf_shapefillbitmaptile' => ['', 'bitmapid'=>'int'], - 'swf_shapefilloff' => [''], - 'swf_shapefillsolid' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float'], - 'swf_shapelinesolid' => ['', 'r'=>'float', 'g'=>'float', 'b'=>'float', 'a'=>'float', 'width'=>'float'], - 'swf_shapelineto' => ['', 'x'=>'float', 'y'=>'float'], - 'swf_shapemoveto' => ['', 'x'=>'float', 'y'=>'float'], - 'swf_showframe' => [''], - 'swf_startbutton' => ['', 'objid'=>'int', 'type'=>'int'], - 'swf_startdoaction' => [''], - 'swf_startshape' => ['', 'objid'=>'int'], - 'swf_startsymbol' => ['', 'objid'=>'int'], - 'swf_textwidth' => ['float', 'string'=>'string'], - 'swf_translate' => ['', 'x'=>'float', 'y'=>'float', 'z'=>'float'], - 'swf_viewport' => ['', 'xmin'=>'float', 'xmax'=>'float', 'ymin'=>'float', 'ymax'=>'float'], - 'swoole\async::dnsLookup' => ['void', 'hostname'=>'string', 'callback'=>'callable'], - 'swoole\async::read' => ['bool', 'filename'=>'string', 'callback'=>'callable', 'chunk_size='=>'integer', 'offset='=>'integer'], - 'swoole\async::readFile' => ['void', 'filename'=>'string', 'callback'=>'callable'], - 'swoole\async::set' => ['void', 'settings'=>'array'], - 'swoole\async::write' => ['void', 'filename'=>'string', 'content'=>'string', 'offset='=>'integer', 'callback='=>'callable'], - 'swoole\async::writeFile' => ['void', 'filename'=>'string', 'content'=>'string', 'callback='=>'callable', 'flags='=>'string'], - 'swoole\atomic::add' => ['integer', 'add_value='=>'integer'], - 'swoole\atomic::cmpset' => ['integer', 'cmp_value'=>'integer', 'new_value'=>'integer'], - 'swoole\atomic::get' => ['integer'], - 'swoole\atomic::set' => ['integer', 'value'=>'integer'], - 'swoole\atomic::sub' => ['integer', 'sub_value='=>'integer'], - 'swoole\buffer::__destruct' => ['void'], - 'swoole\buffer::__toString' => ['string'], - 'swoole\buffer::append' => ['integer', 'data'=>'string'], - 'swoole\buffer::clear' => ['void'], - 'swoole\buffer::expand' => ['integer', 'size'=>'integer'], - 'swoole\buffer::read' => ['string', 'offset'=>'integer', 'length'=>'integer'], - 'swoole\buffer::recycle' => ['void'], - 'swoole\buffer::substr' => ['string', 'offset'=>'integer', 'length='=>'integer', 'remove='=>'bool'], - 'swoole\buffer::write' => ['void', 'offset'=>'integer', 'data'=>'string'], - 'swoole\channel::__destruct' => ['void'], - 'swoole\channel::pop' => ['mixed'], - 'swoole\channel::push' => ['bool', 'data'=>'string'], - 'swoole\channel::stats' => ['array'], - 'swoole\client::__destruct' => ['void'], - 'swoole\client::close' => ['bool', 'force='=>'bool'], - 'swoole\client::connect' => ['bool', 'host'=>'string', 'port='=>'integer', 'timeout='=>'integer', 'flag='=>'integer'], - 'swoole\client::getpeername' => ['array'], - 'swoole\client::getsockname' => ['array'], - 'swoole\client::isConnected' => ['bool'], - 'swoole\client::on' => ['void', 'event'=>'string', 'callback'=>'callable'], - 'swoole\client::pause' => ['void'], - 'swoole\client::pipe' => ['void', 'socket'=>'string'], - 'swoole\client::recv' => ['void', 'size='=>'string', 'flag='=>'string'], - 'swoole\client::resume' => ['void'], - 'swoole\client::send' => ['integer', 'data'=>'string', 'flag='=>'string'], - 'swoole\client::sendfile' => ['bool', 'filename'=>'string', 'offset='=>'int'], - 'swoole\client::sendto' => ['bool', 'ip'=>'string', 'port'=>'integer', 'data'=>'string'], - 'swoole\client::set' => ['void', 'settings'=>'array'], - 'swoole\client::sleep' => ['void'], - 'swoole\client::wakeup' => ['void'], - 'swoole\connection\iterator::count' => ['int'], - 'swoole\connection\iterator::current' => ['Connection'], - 'swoole\connection\iterator::key' => ['int'], - 'swoole\connection\iterator::next' => ['Connection'], - 'swoole\connection\iterator::offsetExists' => ['bool', 'index'=>'int'], - 'swoole\connection\iterator::offsetGet' => ['Connection', 'index'=>'string'], - 'swoole\connection\iterator::offsetSet' => ['void', 'offset'=>'int', 'connection'=>'mixed'], - 'swoole\connection\iterator::offsetUnset' => ['void', 'offset'=>'int'], - 'swoole\connection\iterator::rewind' => ['void'], - 'swoole\connection\iterator::valid' => ['bool'], - 'swoole\coroutine::call_user_func' => ['mixed', 'callback'=>'callable', 'parameter='=>'mixed', '...args='=>'mixed'], - 'swoole\coroutine::call_user_func_array' => ['mixed', 'callback'=>'callable', 'param_array'=>'array'], - 'swoole\coroutine::cli_wait' => ['ReturnType'], - 'swoole\coroutine::create' => ['ReturnType'], - 'swoole\coroutine::getuid' => ['ReturnType'], - 'swoole\coroutine::resume' => ['ReturnType'], - 'swoole\coroutine::suspend' => ['ReturnType'], - 'swoole\coroutine\client::__destruct' => ['ReturnType'], - 'swoole\coroutine\client::close' => ['ReturnType'], - 'swoole\coroutine\client::connect' => ['ReturnType'], - 'swoole\coroutine\client::getpeername' => ['ReturnType'], - 'swoole\coroutine\client::getsockname' => ['ReturnType'], - 'swoole\coroutine\client::isConnected' => ['ReturnType'], - 'swoole\coroutine\client::recv' => ['ReturnType'], - 'swoole\coroutine\client::send' => ['ReturnType'], - 'swoole\coroutine\client::sendfile' => ['ReturnType'], - 'swoole\coroutine\client::sendto' => ['ReturnType'], - 'swoole\coroutine\client::set' => ['ReturnType'], - 'swoole\coroutine\http\client::__destruct' => ['ReturnType'], - 'swoole\coroutine\http\client::addFile' => ['ReturnType'], - 'swoole\coroutine\http\client::close' => ['ReturnType'], - 'swoole\coroutine\http\client::execute' => ['ReturnType'], - 'swoole\coroutine\http\client::get' => ['ReturnType'], - 'swoole\coroutine\http\client::getDefer' => ['ReturnType'], - 'swoole\coroutine\http\client::isConnected' => ['ReturnType'], - 'swoole\coroutine\http\client::post' => ['ReturnType'], - 'swoole\coroutine\http\client::recv' => ['ReturnType'], - 'swoole\coroutine\http\client::set' => ['ReturnType'], - 'swoole\coroutine\http\client::setCookies' => ['ReturnType'], - 'swoole\coroutine\http\client::setData' => ['ReturnType'], - 'swoole\coroutine\http\client::setDefer' => ['ReturnType'], - 'swoole\coroutine\http\client::setHeaders' => ['ReturnType'], - 'swoole\coroutine\http\client::setMethod' => ['ReturnType'], - 'swoole\coroutine\mysql::__destruct' => ['ReturnType'], - 'swoole\coroutine\mysql::close' => ['ReturnType'], - 'swoole\coroutine\mysql::connect' => ['ReturnType'], - 'swoole\coroutine\mysql::getDefer' => ['ReturnType'], - 'swoole\coroutine\mysql::query' => ['ReturnType'], - 'swoole\coroutine\mysql::recv' => ['ReturnType'], - 'swoole\coroutine\mysql::setDefer' => ['ReturnType'], - 'swoole\event::add' => ['bool', 'fd'=>'int', 'read_callback'=>'callable', 'write_callback='=>'callable', 'events='=>'string'], - 'swoole\event::defer' => ['void', 'callback'=>'mixed'], - 'swoole\event::del' => ['bool', 'fd'=>'string'], - 'swoole\event::exit' => ['void'], - 'swoole\event::set' => ['bool', 'fd'=>'int', 'read_callback='=>'string', 'write_callback='=>'string', 'events='=>'string'], - 'swoole\event::wait' => ['void'], - 'swoole\event::write' => ['void', 'fd'=>'string', 'data'=>'string'], - 'swoole\http\client::__destruct' => ['void'], - 'swoole\http\client::addFile' => ['void', 'path'=>'string', 'name'=>'string', 'type='=>'string', 'filename='=>'string', 'offset='=>'string'], - 'swoole\http\client::close' => ['void'], - 'swoole\http\client::download' => ['void', 'path'=>'string', 'file'=>'string', 'callback'=>'callable', 'offset='=>'integer'], - 'swoole\http\client::execute' => ['void', 'path'=>'string', 'callback'=>'string'], - 'swoole\http\client::get' => ['void', 'path'=>'string', 'callback'=>'callable'], - 'swoole\http\client::isConnected' => ['bool'], - 'swoole\http\client::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\http\client::post' => ['void', 'path'=>'string', 'data'=>'string', 'callback'=>'callable'], - 'swoole\http\client::push' => ['void', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string'], - 'swoole\http\client::set' => ['void', 'settings'=>'array'], - 'swoole\http\client::setCookies' => ['void', 'cookies'=>'array'], - 'swoole\http\client::setData' => ['ReturnType', 'data'=>'string'], - 'swoole\http\client::setHeaders' => ['void', 'headers'=>'array'], - 'swoole\http\client::setMethod' => ['void', 'method'=>'string'], - 'swoole\http\client::upgrade' => ['void', 'path'=>'string', 'callback'=>'string'], - 'swoole\http\request::__destruct' => ['void'], - 'swoole\http\request::rawcontent' => ['string'], - 'swoole\http\response::__destruct' => ['void'], - 'swoole\http\response::cookie' => ['string', 'name'=>'string', 'value='=>'string', 'expires='=>'string', 'path='=>'string', 'domain='=>'string', 'secure='=>'string', 'httponly='=>'string'], - 'swoole\http\response::end' => ['void', 'content='=>'string'], - 'swoole\http\response::gzip' => ['ReturnType', 'compress_level='=>'string'], - 'swoole\http\response::header' => ['void', 'key'=>'string', 'value'=>'string', 'ucwords='=>'string'], - 'swoole\http\response::initHeader' => ['ReturnType'], - 'swoole\http\response::rawcookie' => ['ReturnType', 'name'=>'string', 'value='=>'string', 'expires='=>'string', 'path='=>'string', 'domain='=>'string', 'secure='=>'string', 'httponly='=>'string'], - 'swoole\http\response::sendfile' => ['ReturnType', 'filename'=>'string', 'offset='=>'int'], - 'swoole\http\response::status' => ['ReturnType', 'http_code'=>'string'], - 'swoole\http\response::write' => ['void', 'content'=>'string'], - 'swoole\http\server::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\http\server::start' => ['void'], - 'swoole\lock::__destruct' => ['void'], - 'swoole\lock::lock' => ['void'], - 'swoole\lock::lock_read' => ['void'], - 'swoole\lock::trylock' => ['void'], - 'swoole\lock::trylock_read' => ['void'], - 'swoole\lock::unlock' => ['void'], - 'swoole\mmap::open' => ['ReturnType', 'filename'=>'string', 'size='=>'string', 'offset='=>'string'], - 'swoole\mysql::__destruct' => ['void'], - 'swoole\mysql::close' => ['void'], - 'swoole\mysql::connect' => ['void', 'server_config'=>'array', 'callback'=>'callable'], - 'swoole\mysql::getBuffer' => ['ReturnType'], - 'swoole\mysql::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\mysql::query' => ['ReturnType', 'sql'=>'string', 'callback'=>'callable'], - 'swoole\process::__destruct' => ['void'], - 'swoole\process::alarm' => ['void', 'interval_usec'=>'integer'], - 'swoole\process::close' => ['void'], - 'swoole\process::daemon' => ['void', 'nochdir='=>'bool', 'noclose='=>'bool'], - 'swoole\process::exec' => ['ReturnType', 'exec_file'=>'string', 'args'=>'string'], - 'swoole\process::exit' => ['void', 'exit_code='=>'string'], - 'swoole\process::freeQueue' => ['void'], - 'swoole\process::kill' => ['void', 'pid'=>'integer', 'signal_no='=>'string'], - 'swoole\process::name' => ['void', 'process_name'=>'string'], - 'swoole\process::pop' => ['mixed', 'maxsize='=>'integer'], - 'swoole\process::push' => ['bool', 'data'=>'string'], - 'swoole\process::read' => ['string', 'maxsize='=>'integer'], - 'swoole\process::signal' => ['void', 'signal_no'=>'string', 'callback'=>'callable'], - 'swoole\process::start' => ['void'], - 'swoole\process::statQueue' => ['array'], - 'swoole\process::useQueue' => ['bool', 'key'=>'integer', 'mode='=>'integer'], - 'swoole\process::wait' => ['array', 'blocking='=>'bool'], - 'swoole\process::write' => ['integer', 'data'=>'string'], - 'swoole\redis\server::format' => ['ReturnType', 'type'=>'string', 'value='=>'string'], - 'swoole\redis\server::setHandler' => ['ReturnType', 'command'=>'string', 'callback'=>'string', 'number_of_string_param='=>'string', 'type_of_array_param='=>'string'], - 'swoole\redis\server::start' => ['ReturnType'], - 'swoole\serialize::pack' => ['ReturnType', 'data'=>'string', 'is_fast='=>'int'], - 'swoole\serialize::unpack' => ['ReturnType', 'data'=>'string', 'args='=>'string'], - 'swoole\server::addProcess' => ['bool', 'process'=>'swoole_process'], - 'swoole\server::addlistener' => ['void', 'host'=>'string', 'port'=>'integer', 'socket_type'=>'string'], - 'swoole\server::after' => ['ReturnType', 'after_time_ms'=>'integer', 'callback'=>'callable', 'param='=>'string'], - 'swoole\server::bind' => ['bool', 'fd'=>'integer', 'uid'=>'integer'], - 'swoole\server::close' => ['bool', 'fd'=>'integer', 'reset='=>'bool'], - 'swoole\server::confirm' => ['bool', 'fd'=>'integer'], - 'swoole\server::connection_info' => ['array', 'fd'=>'integer', 'reactor_id='=>'integer'], - 'swoole\server::connection_list' => ['array', 'start_fd'=>'integer', 'pagesize='=>'integer'], - 'swoole\server::defer' => ['void', 'callback'=>'callable'], - 'swoole\server::exist' => ['bool', 'fd'=>'integer'], - 'swoole\server::finish' => ['void', 'data'=>'string'], - 'swoole\server::getClientInfo' => ['ReturnType', 'fd'=>'integer', 'reactor_id='=>'integer'], - 'swoole\server::getClientList' => ['array', 'start_fd'=>'integer', 'pagesize='=>'integer'], - 'swoole\server::getLastError' => ['integer'], - 'swoole\server::heartbeat' => ['mixed', 'if_close_connection'=>'bool'], - 'swoole\server::listen' => ['bool', 'host'=>'string', 'port'=>'integer', 'socket_type'=>'string'], - 'swoole\server::on' => ['void', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\server::pause' => ['void', 'fd'=>'integer'], - 'swoole\server::protect' => ['void', 'fd'=>'integer', 'is_protected='=>'bool'], - 'swoole\server::reload' => ['bool'], - 'swoole\server::resume' => ['void', 'fd'=>'integer'], - 'swoole\server::send' => ['bool', 'fd'=>'integer', 'data'=>'string', 'reactor_id='=>'integer'], - 'swoole\server::sendMessage' => ['bool', 'worker_id'=>'integer', 'data'=>'string'], - 'swoole\server::sendfile' => ['bool', 'fd'=>'integer', 'filename'=>'string', 'offset='=>'integer'], - 'swoole\server::sendto' => ['bool', 'ip'=>'string', 'port'=>'integer', 'data'=>'string', 'server_socket='=>'string'], - 'swoole\server::sendwait' => ['bool', 'fd'=>'integer', 'data'=>'string'], - 'swoole\server::set' => ['ReturnType', 'settings'=>'array'], - 'swoole\server::shutdown' => ['void'], - 'swoole\server::start' => ['void'], - 'swoole\server::stats' => ['array'], - 'swoole\server::stop' => ['bool', 'worker_id='=>'integer'], - 'swoole\server::task' => ['mixed', 'data'=>'string', 'dst_worker_id='=>'integer', 'callback='=>'callable'], - 'swoole\server::taskWaitMulti' => ['void', 'tasks'=>'array', 'timeout_ms='=>'double'], - 'swoole\server::taskwait' => ['void', 'data'=>'string', 'timeout='=>'float', 'worker_id='=>'integer'], - 'swoole\server::tick' => ['void', 'interval_ms'=>'integer', 'callback'=>'callable'], - 'swoole\server\port::__destruct' => ['void'], - 'swoole\server\port::on' => ['ReturnType', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\server\port::set' => ['void', 'settings'=>'array'], - 'swoole\table::column' => ['ReturnType', 'name'=>'string', 'type'=>'string', 'size='=>'integer'], - 'swoole\table::count' => ['integer'], - 'swoole\table::create' => ['void'], - 'swoole\table::current' => ['array'], - 'swoole\table::decr' => ['ReturnType', 'key'=>'string', 'column'=>'string', 'decrby='=>'integer'], - 'swoole\table::del' => ['void', 'key'=>'string'], - 'swoole\table::destroy' => ['void'], - 'swoole\table::exist' => ['bool', 'key'=>'string'], - 'swoole\table::get' => ['integer', 'row_key'=>'string', 'column_key'=>'string'], - 'swoole\table::incr' => ['void', 'key'=>'string', 'column'=>'string', 'incrby='=>'integer'], - 'swoole\table::key' => ['string'], - 'swoole\table::next' => ['ReturnType'], - 'swoole\table::rewind' => ['void'], - 'swoole\table::set' => ['VOID', 'key'=>'string', 'value'=>'array'], - 'swoole\table::valid' => ['bool'], - 'swoole\timer::after' => ['void', 'after_time_ms'=>'int', 'callback'=>'callable'], - 'swoole\timer::clear' => ['void', 'timer_id'=>'integer'], - 'swoole\timer::exists' => ['bool', 'timer_id'=>'integer'], - 'swoole\timer::tick' => ['void', 'interval_ms'=>'integer', 'callback'=>'callable', 'param='=>'string'], - 'swoole\websocket\server::exist' => ['bool', 'fd'=>'integer'], - 'swoole\websocket\server::on' => ['ReturnType', 'event_name'=>'string', 'callback'=>'callable'], - 'swoole\websocket\server::pack' => ['binary', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string', 'mask='=>'string'], - 'swoole\websocket\server::push' => ['void', 'fd'=>'string', 'data'=>'string', 'opcode='=>'string', 'finish='=>'string'], - 'swoole\websocket\server::unpack' => ['string', 'data'=>'binary'], - 'swoole_async_dns_lookup' => ['bool', 'hostname'=>'string', 'callback'=>'callable'], - 'swoole_async_read' => ['bool', 'filename'=>'string', 'callback'=>'callable', 'chunk_size='=>'int', 'offset='=>'int'], - 'swoole_async_readfile' => ['bool', 'filename'=>'string', 'callback'=>'string'], - 'swoole_async_set' => ['void', 'settings'=>'array'], - 'swoole_async_write' => ['bool', 'filename'=>'string', 'content'=>'string', 'offset='=>'int', 'callback='=>'callable'], - 'swoole_async_writefile' => ['bool', 'filename'=>'string', 'content'=>'string', 'callback='=>'callable', 'flags='=>'int'], - 'swoole_client_select' => ['int', 'read_array'=>'array', 'write_array'=>'array', 'error_array'=>'array', 'timeout='=>'float'], - 'swoole_cpu_num' => ['int'], - 'swoole_errno' => ['int'], - 'swoole_event_add' => ['int', 'fd'=>'int', 'read_callback='=>'callable', 'write_callback='=>'callable', 'events='=>'int'], - 'swoole_event_defer' => ['bool', 'callback'=>'callable'], - 'swoole_event_del' => ['bool', 'fd'=>'int'], - 'swoole_event_exit' => ['void'], - 'swoole_event_set' => ['bool', 'fd'=>'int', 'read_callback='=>'callable', 'write_callback='=>'callable', 'events='=>'int'], - 'swoole_event_wait' => ['void'], - 'swoole_event_write' => ['bool', 'fd'=>'int', 'data'=>'string'], - 'swoole_get_local_ip' => ['array'], - 'swoole_last_error' => ['int'], - 'swoole_load_module' => ['mixed', 'filename'=>'string'], - 'swoole_select' => ['int', 'read_array'=>'array', 'write_array'=>'array', 'error_array'=>'array', 'timeout='=>'float'], - 'swoole_set_process_name' => ['void', 'process_name'=>'string', 'size='=>'int'], - 'swoole_strerror' => ['string', 'errno'=>'int', 'error_type='=>'int'], - 'swoole_timer_after' => ['int', 'ms'=>'int', 'callback'=>'callable', 'param='=>'mixed'], - 'swoole_timer_exists' => ['bool', 'timer_id'=>'int'], - 'swoole_timer_tick' => ['int', 'ms'=>'int', 'callback'=>'callable', 'param='=>'mixed'], - 'swoole_version' => ['string'], - 'symbolObj::__construct' => ['void', 'map'=>'mapObj', 'symbolname'=>'string'], - 'symbolObj::free' => ['void'], - 'symbolObj::getPatternArray' => ['array'], - 'symbolObj::getPointsArray' => ['array'], - 'symbolObj::ms_newSymbolObj' => ['int', 'map'=>'mapObj', 'symbolname'=>'string'], - 'symbolObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'symbolObj::setImagePath' => ['int', 'filename'=>'string'], - 'symbolObj::setPattern' => ['int', 'int'=>'array'], - 'symbolObj::setPoints' => ['int', 'double'=>'array'], - 'symlink' => ['bool', 'target'=>'string', 'link'=>'string'], - 'sys_get_temp_dir' => ['string'], - 'sys_getloadavg' => ['array|false'], - 'syslog' => ['true', 'priority'=>'int', 'message'=>'string'], - 'system' => ['string|false', 'command'=>'string', '&w_result_code='=>'int'], - 'taint' => ['bool', '&rw_string'=>'string', '&...w_other_strings='=>'string'], - 'tan' => ['float', 'num'=>'float'], - 'tanh' => ['float', 'num'=>'float'], - 'tcpwrap_check' => ['bool', 'daemon'=>'string', 'address'=>'string', 'user='=>'string', 'nodns='=>'bool'], - 'tempnam' => ['string|false', 'directory'=>'string', 'prefix'=>'string'], - 'textdomain' => ['string', 'domain'=>'?string'], - 'tidy::__construct' => ['void', 'filename='=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'tidy::body' => ['?tidyNode'], - 'tidy::cleanRepair' => ['bool'], - 'tidy::diagnose' => ['bool'], - 'tidy::getConfig' => ['array'], - 'tidy::getHtmlVer' => ['int'], - 'tidy::getOpt' => ['string|int|bool', 'option'=>'string'], - 'tidy::getOptDoc' => ['string', 'option'=>'string'], - 'tidy::getRelease' => ['string'], - 'tidy::getStatus' => ['int'], - 'tidy::head' => ['?tidyNode'], - 'tidy::html' => ['?tidyNode'], - 'tidy::isXhtml' => ['bool'], - 'tidy::isXml' => ['bool'], - 'tidy::parseFile' => ['bool', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'tidy::parseString' => ['bool', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'tidy::repairFile' => ['string', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'tidy::repairString' => ['string', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'tidy::root' => ['?tidyNode'], - 'tidyNode::__construct' => ['void'], - 'tidyNode::getParent' => ['?tidyNode'], - 'tidyNode::hasChildren' => ['bool'], - 'tidyNode::hasSiblings' => ['bool'], - 'tidyNode::isAsp' => ['bool'], - 'tidyNode::isComment' => ['bool'], - 'tidyNode::isHtml' => ['bool'], - 'tidyNode::isJste' => ['bool'], - 'tidyNode::isPhp' => ['bool'], - 'tidyNode::isText' => ['bool'], - 'tidy_access_count' => ['int', 'tidy'=>'tidy'], - 'tidy_clean_repair' => ['bool', 'tidy'=>'tidy'], - 'tidy_config_count' => ['int', 'tidy'=>'tidy'], - 'tidy_diagnose' => ['bool', 'tidy'=>'tidy'], - 'tidy_error_count' => ['int', 'tidy'=>'tidy'], - 'tidy_get_body' => ['?tidyNode', 'tidy'=>'tidy'], - 'tidy_get_config' => ['array', 'tidy'=>'tidy'], - 'tidy_get_error_buffer' => ['string', 'tidy'=>'tidy'], - 'tidy_get_head' => ['?tidyNode', 'tidy'=>'tidy'], - 'tidy_get_html' => ['?tidyNode', 'tidy'=>'tidy'], - 'tidy_get_html_ver' => ['int', 'tidy'=>'tidy'], - 'tidy_get_opt_doc' => ['string', 'tidy'=>'tidy', 'option'=>'string'], - 'tidy_get_output' => ['string', 'tidy'=>'tidy'], - 'tidy_get_release' => ['string'], - 'tidy_get_root' => ['?tidyNode', 'tidy'=>'tidy'], - 'tidy_get_status' => ['int', 'tidy'=>'tidy'], - 'tidy_getopt' => ['string|int|bool', 'tidy'=>'tidy', 'option'=>'string'], - 'tidy_is_xhtml' => ['bool', 'tidy'=>'tidy'], - 'tidy_is_xml' => ['bool', 'tidy'=>'tidy'], - 'tidy_load_config' => ['void', 'filename'=>'string', 'encoding'=>'string'], - 'tidy_parse_file' => ['tidy', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'tidy_parse_string' => ['tidy', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'tidy_repair_file' => ['string', 'filename'=>'string', 'config='=>'array|string', 'encoding='=>'string', 'useIncludePath='=>'bool'], - 'tidy_repair_string' => ['string', 'string'=>'string', 'config='=>'array|string', 'encoding='=>'string'], - 'tidy_reset_config' => ['bool'], - 'tidy_save_config' => ['bool', 'filename'=>'string'], - 'tidy_set_encoding' => ['bool', 'encoding'=>'string'], - 'tidy_setopt' => ['bool', 'option'=>'string', 'value'=>'mixed'], - 'tidy_warning_count' => ['int', 'tidy'=>'tidy'], - 'time' => ['positive-int'], - 'time_nanosleep' => ['array{0:0|positive-int,1:0|positive-int}|bool', 'seconds'=>'positive-int', 'nanoseconds'=>'positive-int'], - 'time_sleep_until' => ['bool', 'timestamp'=>'float'], - 'timezone_abbreviations_list' => ['array>'], - 'timezone_identifiers_list' => ['list|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'], - 'timezone_location_get' => ['array|false', 'object'=>'DateTimeZone'], - 'timezone_name_from_abbr' => ['string|false', 'abbr'=>'string', 'utcOffset='=>'int', 'isDST='=>'int'], - 'timezone_name_get' => ['string', 'object'=>'DateTimeZone'], - 'timezone_offset_get' => ['int|false', 'object'=>'DateTimeZone', 'datetime'=>'DateTimeInterface'], - 'timezone_open' => ['DateTimeZone|false', 'timezone'=>'string'], - 'timezone_transitions_get' => ['list|false', 'object'=>'DateTimeZone', 'timestampBegin='=>'int', 'timestampEnd='=>'int'], - 'timezone_version_get' => ['string'], - 'tmpfile' => ['resource|false'], - 'token_get_all' => ['list', 'code'=>'string', 'flags='=>'int'], - 'token_name' => ['string', 'id'=>'int'], - 'touch' => ['bool', 'filename'=>'string', 'mtime='=>'int', 'atime='=>'int'], - 'trader_acos' => ['array', 'real'=>'array'], - 'trader_ad' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array'], - 'trader_add' => ['array', 'real0'=>'array', 'real1'=>'array'], - 'trader_adosc' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int'], - 'trader_adx' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_adxr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_apo' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'mAType='=>'int'], - 'trader_aroon' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], - 'trader_aroonosc' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], - 'trader_asin' => ['array', 'real'=>'array'], - 'trader_atan' => ['array', 'real'=>'array'], - 'trader_atr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_avgprice' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_bbands' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDevUp='=>'float', 'nbDevDn='=>'float', 'mAType='=>'int'], - 'trader_beta' => ['array', 'real0'=>'array', 'real1'=>'array', 'timePeriod='=>'int'], - 'trader_bop' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cci' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_cdl2crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3blackcrows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3inside' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3linestrike' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3outside' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3starsinsouth' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdl3whitesoldiers' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlabandonedbaby' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdladvanceblock' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlbelthold' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlbreakaway' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlclosingmarubozu' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlconcealbabyswall' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlcounterattack' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdldarkcloudcover' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdldoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdldojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdldragonflydoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlengulfing' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdleveningdojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdleveningstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdlgapsidesidewhite' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlgravestonedoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhammer' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhangingman' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlharami' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlharamicross' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhighwave' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhikkake' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhikkakemod' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlhomingpigeon' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlidentical3crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlinneck' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlinvertedhammer' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlkicking' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlkickingbylength' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlladderbottom' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdllongleggeddoji' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdllongline' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlmarubozu' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlmatchinglow' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlmathold' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdlmorningdojistar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdlmorningstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'penetration='=>'float'], - 'trader_cdlonneck' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlpiercing' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlrickshawman' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlrisefall3methods' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlseparatinglines' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlshootingstar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlshortline' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlspinningtop' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlstalledpattern' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlsticksandwich' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdltakuri' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdltasukigap' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlthrusting' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdltristar' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlunique3river' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlupsidegap2crows' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_cdlxsidegap3methods' => ['array', 'open'=>'array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_ceil' => ['array', 'real'=>'array'], - 'trader_cmo' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_correl' => ['array', 'real0'=>'array', 'real1'=>'array', 'timePeriod='=>'int'], - 'trader_cos' => ['array', 'real'=>'array'], - 'trader_cosh' => ['array', 'real'=>'array'], - 'trader_dema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_div' => ['array', 'real0'=>'array', 'real1'=>'array'], - 'trader_dx' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_ema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_errno' => ['int'], - 'trader_exp' => ['array', 'real'=>'array'], - 'trader_floor' => ['array', 'real'=>'array'], - 'trader_get_compat' => ['int'], - 'trader_get_unstable_period' => ['int', 'functionId'=>'int'], - 'trader_ht_dcperiod' => ['array', 'real'=>'array'], - 'trader_ht_dcphase' => ['array', 'real'=>'array'], - 'trader_ht_phasor' => ['array', 'real'=>'array'], - 'trader_ht_sine' => ['array', 'real'=>'array'], - 'trader_ht_trendline' => ['array', 'real'=>'array'], - 'trader_ht_trendmode' => ['array', 'real'=>'array'], - 'trader_kama' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_linearreg' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_linearreg_angle' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_linearreg_intercept' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_linearreg_slope' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_ln' => ['array', 'real'=>'array'], - 'trader_log10' => ['array', 'real'=>'array'], - 'trader_ma' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'mAType='=>'int'], - 'trader_macd' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'signalPeriod='=>'int'], - 'trader_macdext' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'fastMAType='=>'int', 'slowPeriod='=>'int', 'slowMAType='=>'int', 'signalPeriod='=>'int', 'signalMAType='=>'int'], - 'trader_macdfix' => ['array', 'real'=>'array', 'signalPeriod='=>'int'], - 'trader_mama' => ['array', 'real'=>'array', 'fastLimit='=>'float', 'slowLimit='=>'float'], - 'trader_mavp' => ['array', 'real'=>'array', 'periods'=>'array', 'minPeriod='=>'int', 'maxPeriod='=>'int', 'mAType='=>'int'], - 'trader_max' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_maxindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_medprice' => ['array', 'high'=>'array', 'low'=>'array'], - 'trader_mfi' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'volume'=>'array', 'timePeriod='=>'int'], - 'trader_midpoint' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_midprice' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], - 'trader_min' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_minindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_minmax' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_minmaxindex' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_minus_di' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_minus_dm' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], - 'trader_mom' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_mult' => ['array', 'real0'=>'array', 'real1'=>'array'], - 'trader_natr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_obv' => ['array', 'real'=>'array', 'volume'=>'array'], - 'trader_plus_di' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_plus_dm' => ['array', 'high'=>'array', 'low'=>'array', 'timePeriod='=>'int'], - 'trader_ppo' => ['array', 'real'=>'array', 'fastPeriod='=>'int', 'slowPeriod='=>'int', 'mAType='=>'int'], - 'trader_roc' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_rocp' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_rocr' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_rocr100' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_rsi' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_sar' => ['array', 'high'=>'array', 'low'=>'array', 'acceleration='=>'float', 'maximum='=>'float'], - 'trader_sarext' => ['array', 'high'=>'array', 'low'=>'array', 'startValue='=>'float', 'offsetOnReverse='=>'float', 'accelerationInitLong='=>'float', 'accelerationLong='=>'float', 'accelerationMaxLong='=>'float', 'accelerationInitShort='=>'float', 'accelerationShort='=>'float', 'accelerationMaxShort='=>'float'], - 'trader_set_compat' => ['void', 'compatId'=>'int'], - 'trader_set_unstable_period' => ['void', 'functionId'=>'int', 'timePeriod'=>'int'], - 'trader_sin' => ['array', 'real'=>'array'], - 'trader_sinh' => ['array', 'real'=>'array'], - 'trader_sma' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_sqrt' => ['array', 'real'=>'array'], - 'trader_stddev' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDev='=>'float'], - 'trader_stoch' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'fastK_Period='=>'int', 'slowK_Period='=>'int', 'slowK_MAType='=>'int', 'slowD_Period='=>'int', 'slowD_MAType='=>'int'], - 'trader_stochf' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'fastK_Period='=>'int', 'fastD_Period='=>'int', 'fastD_MAType='=>'int'], - 'trader_stochrsi' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'fastK_Period='=>'int', 'fastD_Period='=>'int', 'fastD_MAType='=>'int'], - 'trader_sub' => ['array', 'real0'=>'array', 'real1'=>'array'], - 'trader_sum' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_t3' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'vFactor='=>'float'], - 'trader_tan' => ['array', 'real'=>'array'], - 'trader_tanh' => ['array', 'real'=>'array'], - 'trader_tema' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_trange' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_trima' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_trix' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_tsf' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trader_typprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_ultosc' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod1='=>'int', 'timePeriod2='=>'int', 'timePeriod3='=>'int'], - 'trader_var' => ['array', 'real'=>'array', 'timePeriod='=>'int', 'nbDev='=>'float'], - 'trader_wclprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'], - 'trader_willr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'], - 'trader_wma' => ['array', 'real'=>'array', 'timePeriod='=>'int'], - 'trait_exists' => ['bool', 'trait'=>'string', 'autoload='=>'bool'], - 'transliterator_create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'], - 'transliterator_create_from_rules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'], - 'transliterator_create_inverse' => ['?Transliterator', 'transliterator'=>'Transliterator'], - 'transliterator_get_error_code' => ['int', 'transliterator'=>'Transliterator'], - 'transliterator_get_error_message' => ['string', 'transliterator'=>'Transliterator'], - 'transliterator_list_ids' => ['array'], - 'transliterator_transliterate' => ['string|false', 'transliterator'=>'Transliterator|string', 'string'=>'string', 'start='=>'int', 'end='=>'int'], - 'trigger_error' => ['bool', 'message'=>'string', 'error_level='=>'256|512|1024|16384'], - 'trim' => ['string', 'string'=>'string', 'characters='=>'string'], - 'uasort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], - 'ucfirst' => ['string', 'string'=>'string'], - 'ucwords' => ['string', 'string'=>'string', 'separators='=>'string'], - 'udm_add_search_limit' => ['bool', 'agent'=>'resource', 'var'=>'int', 'value'=>'string'], - 'udm_alloc_agent' => ['resource', 'dbaddr'=>'string', 'dbmode='=>'string'], - 'udm_alloc_agent_array' => ['resource', 'databases'=>'array'], - 'udm_api_version' => ['int'], - 'udm_cat_list' => ['array', 'agent'=>'resource', 'category'=>'string'], - 'udm_cat_path' => ['array', 'agent'=>'resource', 'category'=>'string'], - 'udm_check_charset' => ['bool', 'agent'=>'resource', 'charset'=>'string'], - 'udm_check_stored' => ['int', 'agent'=>'', 'link'=>'int', 'doc_id'=>'string'], - 'udm_clear_search_limits' => ['bool', 'agent'=>'resource'], - 'udm_close_stored' => ['int', 'agent'=>'', 'link'=>'int'], - 'udm_crc32' => ['int', 'agent'=>'resource', 'string'=>'string'], - 'udm_errno' => ['int', 'agent'=>'resource'], - 'udm_error' => ['string', 'agent'=>'resource'], - 'udm_find' => ['resource', 'agent'=>'resource', 'query'=>'string'], - 'udm_free_agent' => ['int', 'agent'=>'resource'], - 'udm_free_ispell_data' => ['bool', 'agent'=>'int'], - 'udm_free_res' => ['bool', 'res'=>'resource'], - 'udm_get_doc_count' => ['int', 'agent'=>'resource'], - 'udm_get_res_field' => ['string', 'res'=>'resource', 'row'=>'int', 'field'=>'int'], - 'udm_get_res_param' => ['string', 'res'=>'resource', 'param'=>'int'], - 'udm_hash32' => ['int', 'agent'=>'resource', 'string'=>'string'], - 'udm_load_ispell_data' => ['bool', 'agent'=>'resource', 'var'=>'int', 'val1'=>'string', 'val2'=>'string', 'flag'=>'int'], - 'udm_open_stored' => ['int', 'agent'=>'', 'storedaddr'=>'string'], - 'udm_set_agent_param' => ['bool', 'agent'=>'resource', 'var'=>'int', 'val'=>'string'], - 'ui\area::onDraw' => ['', 'pen'=>'UI\Draw\Pen', 'areaSize'=>'UI\Size', 'clipPoint'=>'UI\Point', 'clipSize'=>'UI\Size'], - 'ui\area::onKey' => ['', 'key'=>'string', 'ext'=>'int', 'flags'=>'int'], - 'ui\area::onMouse' => ['', 'areaPoint'=>'UI\Point', 'areaSize'=>'UI\Size', 'flags'=>'int'], - 'ui\area::redraw' => [''], - 'ui\area::scrollTo' => ['', 'point'=>'UI\Point', 'size'=>'UI\Size'], - 'ui\area::setSize' => ['', 'size'=>'UI\Size'], - 'ui\control::destroy' => [''], - 'ui\control::disable' => [''], - 'ui\control::enable' => [''], - 'ui\control::getParent' => ['UI\Control'], - 'ui\control::getTopLevel' => ['int'], - 'ui\control::hide' => [''], - 'ui\control::isEnabled' => ['bool'], - 'ui\control::isVisible' => ['bool'], - 'ui\control::setParent' => ['', 'parent'=>'UI\Control'], - 'ui\control::show' => [''], - 'ui\controls\box::append' => ['int', 'control'=>'Control', 'stretchy='=>'bool'], - 'ui\controls\box::delete' => ['bool', 'index'=>'int'], - 'ui\controls\box::getOrientation' => ['int'], - 'ui\controls\box::isPadded' => ['bool'], - 'ui\controls\box::setPadded' => ['', 'padded'=>'bool'], - 'ui\controls\button::getText' => ['string'], - 'ui\controls\button::onClick' => [''], - 'ui\controls\button::setText' => ['', 'text'=>'string'], - 'ui\controls\check::getText' => ['string'], - 'ui\controls\check::isChecked' => ['bool'], - 'ui\controls\check::onToggle' => [''], - 'ui\controls\check::setChecked' => ['', 'checked'=>'bool'], - 'ui\controls\check::setText' => ['', 'text'=>'string'], - 'ui\controls\colorbutton::getColor' => ['UI\Color'], - 'ui\controls\colorbutton::onChange' => [''], - 'ui\controls\combo::append' => ['', 'text'=>'string'], - 'ui\controls\combo::getSelected' => ['int'], - 'ui\controls\combo::onSelected' => [''], - 'ui\controls\combo::setSelected' => ['', 'index'=>'int'], - 'ui\controls\editablecombo::append' => ['', 'text'=>'string'], - 'ui\controls\editablecombo::getText' => ['string'], - 'ui\controls\editablecombo::onChange' => [''], - 'ui\controls\editablecombo::setText' => ['', 'text'=>'string'], - 'ui\controls\entry::getText' => ['string'], - 'ui\controls\entry::isReadOnly' => ['bool'], - 'ui\controls\entry::onChange' => [''], - 'ui\controls\entry::setReadOnly' => ['', 'readOnly'=>'bool'], - 'ui\controls\entry::setText' => ['', 'text'=>'string'], - 'ui\controls\form::append' => ['int', 'label'=>'string', 'control'=>'UI\Control', 'stretchy='=>'bool'], - 'ui\controls\form::delete' => ['bool', 'index'=>'int'], - 'ui\controls\form::isPadded' => ['bool'], - 'ui\controls\form::setPadded' => ['', 'padded'=>'bool'], - 'ui\controls\grid::append' => ['', 'control'=>'UI\Control', 'left'=>'int', 'top'=>'int', 'xspan'=>'int', 'yspan'=>'int', 'hexpand'=>'bool', 'halign'=>'int', 'vexpand'=>'bool', 'valign'=>'int'], - 'ui\controls\grid::isPadded' => ['bool'], - 'ui\controls\grid::setPadded' => ['', 'padding'=>'bool'], - 'ui\controls\group::append' => ['', 'control'=>'UI\Control'], - 'ui\controls\group::getTitle' => ['string'], - 'ui\controls\group::hasMargin' => ['bool'], - 'ui\controls\group::setMargin' => ['', 'margin'=>'bool'], - 'ui\controls\group::setTitle' => ['', 'title'=>'string'], - 'ui\controls\label::getText' => ['string'], - 'ui\controls\label::setText' => ['', 'text'=>'string'], - 'ui\controls\multilineentry::append' => ['', 'text'=>'string'], - 'ui\controls\multilineentry::getText' => ['string'], - 'ui\controls\multilineentry::isReadOnly' => ['bool'], - 'ui\controls\multilineentry::onChange' => [''], - 'ui\controls\multilineentry::setReadOnly' => ['', 'readOnly'=>'bool'], - 'ui\controls\multilineentry::setText' => ['', 'text'=>'string'], - 'ui\controls\progress::getValue' => ['int'], - 'ui\controls\progress::setValue' => ['', 'value'=>'int'], - 'ui\controls\radio::append' => ['', 'text'=>'string'], - 'ui\controls\radio::getSelected' => ['int'], - 'ui\controls\radio::onSelected' => [''], - 'ui\controls\radio::setSelected' => ['', 'index'=>'int'], - 'ui\controls\slider::getValue' => ['int'], - 'ui\controls\slider::onChange' => [''], - 'ui\controls\slider::setValue' => ['', 'value'=>'int'], - 'ui\controls\spin::getValue' => ['int'], - 'ui\controls\spin::onChange' => [''], - 'ui\controls\spin::setValue' => ['', 'value'=>'int'], - 'ui\controls\tab::append' => ['int', 'name'=>'string', 'control'=>'UI\Control'], - 'ui\controls\tab::delete' => ['bool', 'index'=>'int'], - 'ui\controls\tab::hasMargin' => ['bool', 'page'=>'int'], - 'ui\controls\tab::insertAt' => ['', 'name'=>'string', 'page'=>'int', 'control'=>'UI\Control'], - 'ui\controls\tab::pages' => ['int'], - 'ui\controls\tab::setMargin' => ['', 'page'=>'int', 'margin'=>'bool'], - 'ui\draw\brush::getColor' => ['UI\Draw\Color'], - 'ui\draw\brush\gradient::delStop' => ['int', 'index'=>'int'], - 'ui\draw\color::getChannel' => ['float', 'channel'=>'int'], - 'ui\draw\color::setChannel' => ['void', 'channel'=>'int', 'value'=>'float'], - 'ui\draw\matrix::invert' => [''], - 'ui\draw\matrix::isInvertible' => ['bool'], - 'ui\draw\matrix::multiply' => ['UI\Draw\Matrix', 'matrix'=>'UI\Draw\Matrix'], - 'ui\draw\matrix::rotate' => ['', 'point'=>'UI\Point', 'amount'=>'float'], - 'ui\draw\matrix::scale' => ['', 'center'=>'UI\Point', 'point'=>'UI\Point'], - 'ui\draw\matrix::skew' => ['', 'point'=>'UI\Point', 'amount'=>'UI\Point'], - 'ui\draw\matrix::translate' => ['', 'point'=>'UI\Point'], - 'ui\draw\path::addRectangle' => ['', 'point'=>'UI\Point', 'size'=>'UI\Size'], - 'ui\draw\path::arcTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], - 'ui\draw\path::bezierTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], - 'ui\draw\path::closeFigure' => [''], - 'ui\draw\path::end' => [''], - 'ui\draw\path::lineTo' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], - 'ui\draw\path::newFigure' => ['', 'point'=>'UI\Point'], - 'ui\draw\path::newFigureWithArc' => ['', 'point'=>'UI\Point', 'radius'=>'float', 'angle'=>'float', 'sweep'=>'float', 'negative'=>'float'], - 'ui\draw\pen::clip' => ['', 'path'=>'UI\Draw\Path'], - 'ui\draw\pen::restore' => [''], - 'ui\draw\pen::save' => [''], - 'ui\draw\pen::transform' => ['', 'matrix'=>'UI\Draw\Matrix'], - 'ui\draw\pen::write' => ['', 'point'=>'UI\Point', 'layout'=>'UI\Draw\Text\Layout'], - 'ui\draw\stroke::getCap' => ['int'], - 'ui\draw\stroke::getJoin' => ['int'], - 'ui\draw\stroke::getMiterLimit' => ['float'], - 'ui\draw\stroke::getThickness' => ['float'], - 'ui\draw\stroke::setCap' => ['', 'cap'=>'int'], - 'ui\draw\stroke::setJoin' => ['', 'join'=>'int'], - 'ui\draw\stroke::setMiterLimit' => ['', 'limit'=>'float'], - 'ui\draw\stroke::setThickness' => ['', 'thickness'=>'float'], - 'ui\draw\text\font::getAscent' => ['float'], - 'ui\draw\text\font::getDescent' => ['float'], - 'ui\draw\text\font::getLeading' => ['float'], - 'ui\draw\text\font::getUnderlinePosition' => ['float'], - 'ui\draw\text\font::getUnderlineThickness' => ['float'], - 'ui\draw\text\font\descriptor::getFamily' => ['string'], - 'ui\draw\text\font\descriptor::getItalic' => ['int'], - 'ui\draw\text\font\descriptor::getSize' => ['float'], - 'ui\draw\text\font\descriptor::getStretch' => ['int'], - 'ui\draw\text\font\descriptor::getWeight' => ['int'], - 'ui\draw\text\font\fontfamilies' => ['array'], - 'ui\draw\text\layout::setWidth' => ['', 'width'=>'float'], - 'ui\executor::kill' => ['void'], - 'ui\executor::onExecute' => ['void'], - 'ui\menu::append' => ['UI\MenuItem', 'name'=>'string', 'type='=>'string'], - 'ui\menu::appendAbout' => ['UI\MenuItem', 'type='=>'string'], - 'ui\menu::appendCheck' => ['UI\MenuItem', 'name'=>'string', 'type='=>'string'], - 'ui\menu::appendPreferences' => ['UI\MenuItem', 'type='=>'string'], - 'ui\menu::appendQuit' => ['UI\MenuItem', 'type='=>'string'], - 'ui\menu::appendSeparator' => [''], - 'ui\menuitem::disable' => [''], - 'ui\menuitem::enable' => [''], - 'ui\menuitem::isChecked' => ['bool'], - 'ui\menuitem::onClick' => [''], - 'ui\menuitem::setChecked' => ['', 'checked'=>'bool'], - 'ui\point::getX' => ['float'], - 'ui\point::getY' => ['float'], - 'ui\point::setX' => ['', 'point'=>'float'], - 'ui\point::setY' => ['', 'point'=>'float'], - 'ui\quit' => ['void'], - 'ui\run' => ['void', 'flags='=>'int'], - 'ui\size::getHeight' => ['float'], - 'ui\size::getWidth' => ['float'], - 'ui\size::setHeight' => ['', 'size'=>'float'], - 'ui\size::setWidth' => ['', 'size'=>'float'], - 'ui\window::add' => ['', 'control'=>'UI\Control'], - 'ui\window::error' => ['', 'title'=>'string', 'msg'=>'string'], - 'ui\window::getSize' => ['UI\Size'], - 'ui\window::getTitle' => ['string'], - 'ui\window::hasBorders' => ['bool'], - 'ui\window::hasMargin' => ['bool'], - 'ui\window::isFullScreen' => ['bool'], - 'ui\window::msg' => ['', 'title'=>'string', 'msg'=>'string'], - 'ui\window::onClosing' => ['int'], - 'ui\window::open' => ['string'], - 'ui\window::save' => ['string'], - 'ui\window::setBorders' => ['', 'borders'=>'bool'], - 'ui\window::setFullScreen' => ['', 'full'=>'bool'], - 'ui\window::setMargin' => ['', 'margin'=>'bool'], - 'ui\window::setSize' => ['', 'size'=>'UI\Size'], - 'ui\window::setTitle' => ['', 'title'=>'string'], - 'uksort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], - 'umask' => ['int', 'mask='=>'int'], - 'uniqid' => ['non-empty-string', 'prefix='=>'string', 'more_entropy='=>'bool'], - 'unixtojd' => ['int|false', 'timestamp='=>'int'], - 'unlink' => ['bool', 'filename'=>'string', 'context='=>'resource'], - 'unpack' => ['array', 'format'=>'string', 'string'=>'string'], - 'unregister_tick_function' => ['void', 'callback'=>'callable'], - 'unserialize' => ['mixed', 'data'=>'string', 'options='=>'array{allowed_classes?:class-string[]|bool}'], - 'unset' => ['void', 'var='=>'mixed', '...args='=>'mixed'], - 'untaint' => ['bool', '&rw_string'=>'string', '&...rw_strings='=>'string'], - 'uopz_allow_exit' => ['void', 'allow'=>'bool'], - 'uopz_backup' => ['void', 'class'=>'string', 'function'=>'string'], - 'uopz_backup\'1' => ['void', 'function'=>'string'], - 'uopz_compose' => ['void', 'name'=>'string', 'classes'=>'array', 'methods='=>'array', 'properties='=>'array', 'flags='=>'int'], - 'uopz_copy' => ['Closure', 'class'=>'string', 'function'=>'string'], - 'uopz_copy\'1' => ['Closure', 'function'=>'string'], - 'uopz_delete' => ['void', 'class'=>'string', 'function'=>'string'], - 'uopz_delete\'1' => ['void', 'function'=>'string'], - 'uopz_extend' => ['bool', 'class'=>'string', 'parent'=>'string'], - 'uopz_flags' => ['int', 'class'=>'string', 'function'=>'string', 'flags'=>'int'], - 'uopz_flags\'1' => ['int', 'function'=>'string', 'flags'=>'int'], - 'uopz_function' => ['void', 'class'=>'string', 'function'=>'string', 'handler'=>'Closure', 'modifiers='=>'int'], - 'uopz_function\'1' => ['void', 'function'=>'string', 'handler'=>'Closure', 'modifiers='=>'int'], - 'uopz_get_exit_status' => ['?int'], - 'uopz_get_hook' => ['?Closure', 'class'=>'string', 'function'=>'string'], - 'uopz_get_hook\'1' => ['?Closure', 'function'=>'string'], - 'uopz_get_mock' => ['string|object|null', 'class'=>'string'], - 'uopz_get_property' => ['mixed', 'class'=>'object|string', 'property'=>'string'], - 'uopz_get_return' => ['mixed', 'class='=>'class-string', 'function='=>'string'], - 'uopz_get_static' => ['?array', 'class'=>'string', 'function'=>'string'], - 'uopz_implement' => ['bool', 'class'=>'string', 'interface'=>'string'], - 'uopz_overload' => ['void', 'opcode'=>'int', 'callable'=>'Callable'], - 'uopz_redefine' => ['bool', 'class'=>'string', 'constant'=>'string', 'value'=>'mixed'], - 'uopz_redefine\'1' => ['bool', 'constant'=>'string', 'value'=>'mixed'], - 'uopz_rename' => ['void', 'class'=>'string', 'function'=>'string', 'rename'=>'string'], - 'uopz_rename\'1' => ['void', 'function'=>'string', 'rename'=>'string'], - 'uopz_restore' => ['void', 'class'=>'string', 'function'=>'string'], - 'uopz_restore\'1' => ['void', 'function'=>'string'], - 'uopz_set_hook' => ['bool', 'class'=>'string', 'function'=>'string', 'hook'=>'Closure'], - 'uopz_set_hook\'1' => ['bool', 'function'=>'string', 'hook'=>'Closure'], - 'uopz_set_mock' => ['void', 'class'=>'string', 'mock'=>'object|string'], - 'uopz_set_property' => ['void', 'class'=>'object|string', 'property'=>'string', 'value'=>'mixed'], - 'uopz_set_return' => ['bool', 'class'=>'string', 'function'=>'string', 'value'=>'mixed', 'execute='=>'bool'], - 'uopz_set_return\'1' => ['bool', 'function'=>'string', 'value'=>'mixed', 'execute='=>'bool'], - 'uopz_set_static' => ['void', 'class'=>'string', 'function'=>'string', 'static'=>'array'], - 'uopz_undefine' => ['bool', 'class'=>'string', 'constant'=>'string'], - 'uopz_undefine\'1' => ['bool', 'constant'=>'string'], - 'uopz_unset_hook' => ['bool', 'class'=>'string', 'function'=>'string'], - 'uopz_unset_hook\'1' => ['bool', 'function'=>'string'], - 'uopz_unset_mock' => ['void', 'class'=>'string'], - 'uopz_unset_return' => ['bool', 'class='=>'class-string', 'function='=>'string'], - 'uopz_unset_return\'1' => ['bool', 'function'=>'string'], - 'urldecode' => ['string', 'string'=>'string'], - 'urlencode' => ['string', 'string'=>'string'], - 'use_soap_error_handler' => ['bool', 'enable='=>'bool'], - 'user_error' => ['bool', 'message'=>'string', 'error_level='=>'int'], - 'usleep' => ['void', 'microseconds'=>'positive-int|0'], - 'usort' => ['true', '&rw_array'=>'array', 'callback'=>'callable(mixed,mixed):int'], - 'utf8_decode' => ['string', 'string'=>'string'], - 'utf8_encode' => ['string', 'string'=>'string'], - 'var_dump' => ['void', 'value'=>'mixed', '...values='=>'mixed'], - 'var_export' => ['?string', 'value'=>'mixed', 'return='=>'bool'], - 'variant_abs' => ['mixed', 'value'=>'mixed'], - 'variant_add' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_and' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_cast' => ['VARIANT', 'variant'=>'VARIANT', 'type'=>'int'], - 'variant_cat' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_cmp' => ['int', 'left'=>'mixed', 'right'=>'mixed', 'locale_id='=>'int', 'flags='=>'int'], - 'variant_date_from_timestamp' => ['VARIANT', 'timestamp'=>'int'], - 'variant_date_to_timestamp' => ['int', 'variant'=>'VARIANT'], - 'variant_div' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_eqv' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_fix' => ['mixed', 'value'=>'mixed'], - 'variant_get_type' => ['int', 'variant'=>'VARIANT'], - 'variant_idiv' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_imp' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_int' => ['mixed', 'value'=>'mixed'], - 'variant_mod' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_mul' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_neg' => ['mixed', 'value'=>'mixed'], - 'variant_not' => ['mixed', 'value'=>'mixed'], - 'variant_or' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_pow' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_round' => ['mixed', 'value'=>'mixed', 'decimals'=>'int'], - 'variant_set' => ['void', 'variant'=>'object', 'value'=>'mixed'], - 'variant_set_type' => ['void', 'variant'=>'object', 'type'=>'int'], - 'variant_sub' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'variant_xor' => ['mixed', 'left'=>'mixed', 'right'=>'mixed'], - 'version_compare' => ['bool', 'version1'=>'string', 'version2'=>'string', 'operator'=>'\'<\'|\'lt\'|\'<=\'|\'le\'|\'>\'|\'gt\'|\'>=\'|\'ge\'|\'==\'|\'=\'|\'eq\'|\'!=\'|\'<>\'|\'ne\''], - 'version_compare\'1' => ['int', 'version1'=>'string', 'version2'=>'string'], - 'vfprintf' => ['int<0, max>', 'stream'=>'resource', 'format'=>'string', 'values'=>'array'], - 'virtual' => ['bool', 'uri'=>'string'], - 'vpopmail_add_alias_domain' => ['bool', 'domain'=>'string', 'aliasdomain'=>'string'], - 'vpopmail_add_alias_domain_ex' => ['bool', 'olddomain'=>'string', 'newdomain'=>'string'], - 'vpopmail_add_domain' => ['bool', 'domain'=>'string', 'dir'=>'string', 'uid'=>'int', 'gid'=>'int'], - 'vpopmail_add_domain_ex' => ['bool', 'domain'=>'string', 'passwd'=>'string', 'quota='=>'string', 'bounce='=>'string', 'apop='=>'bool'], - 'vpopmail_add_user' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'gecos='=>'string', 'apop='=>'bool'], - 'vpopmail_alias_add' => ['bool', 'user'=>'string', 'domain'=>'string', 'alias'=>'string'], - 'vpopmail_alias_del' => ['bool', 'user'=>'string', 'domain'=>'string'], - 'vpopmail_alias_del_domain' => ['bool', 'domain'=>'string'], - 'vpopmail_alias_get' => ['array', 'alias'=>'string', 'domain'=>'string'], - 'vpopmail_alias_get_all' => ['array', 'domain'=>'string'], - 'vpopmail_auth_user' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'apop='=>'string'], - 'vpopmail_del_domain' => ['bool', 'domain'=>'string'], - 'vpopmail_del_domain_ex' => ['bool', 'domain'=>'string'], - 'vpopmail_del_user' => ['bool', 'user'=>'string', 'domain'=>'string'], - 'vpopmail_error' => ['string'], - 'vpopmail_passwd' => ['bool', 'user'=>'string', 'domain'=>'string', 'password'=>'string', 'apop='=>'bool'], - 'vpopmail_set_user_quota' => ['bool', 'user'=>'string', 'domain'=>'string', 'quota'=>'string'], - 'vprintf' => ['int<0, max>', 'format'=>'string', 'values'=>'array'], - 'vsprintf' => ['string', 'format'=>'string', 'values'=>'array'], - 'w32api_deftype' => ['bool', 'typename'=>'string', 'member1_type'=>'string', 'member1_name'=>'string', '...args='=>'string'], - 'w32api_init_dtype' => ['resource', 'typename'=>'string', 'value'=>'', '...args='=>''], - 'w32api_invoke_function' => ['', 'funcname'=>'string', 'argument'=>'', '...args='=>''], - 'w32api_register_function' => ['bool', 'library'=>'string', 'function_name'=>'string', 'return_type'=>'string'], - 'w32api_set_call_method' => ['', 'method'=>'int'], - 'wddx_add_vars' => ['bool', 'packet_id'=>'resource', 'var_names'=>'mixed', '...vars='=>'mixed'], - 'wddx_deserialize' => ['mixed', 'packet'=>'string'], - 'wddx_packet_end' => ['string', 'packet_id'=>'resource'], - 'wddx_packet_start' => ['resource|false', 'comment='=>'string'], - 'wddx_serialize_value' => ['string|false', 'value'=>'mixed', 'comment='=>'string'], - 'wddx_serialize_vars' => ['string|false', 'var_name'=>'mixed', '...vars='=>'mixed'], - 'webObj::convertToString' => ['string'], - 'webObj::free' => ['void'], - 'webObj::set' => ['int', 'property_name'=>'string', 'new_value'=>''], - 'webObj::updateFromString' => ['int', 'snippet'=>'string'], - 'win32_continue_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], - 'win32_create_service' => ['int|false', 'details'=>'array', 'machine='=>'string'], - 'win32_delete_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], - 'win32_get_last_control_message' => ['int'], - 'win32_pause_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], - 'win32_ps_list_procs' => ['array'], - 'win32_ps_stat_mem' => ['array'], - 'win32_ps_stat_proc' => ['array', 'pid='=>'int'], - 'win32_query_service_status' => ['array|false|int', 'servicename'=>'string', 'machine='=>'string'], - 'win32_send_custom_control' => ['int', 'servicename'=>'string', 'control'=>'int', 'machine='=>'string'], - 'win32_set_service_exit_code' => ['int', 'exitCode='=>'int'], - 'win32_set_service_exit_mode' => ['bool', 'gracefulMode='=>'bool'], - 'win32_set_service_status' => ['bool|int', 'status'=>'int', 'checkpoint='=>'int'], - 'win32_start_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], - 'win32_start_service_ctrl_dispatcher' => ['bool|int', 'name'=>'string'], - 'win32_stop_service' => ['int|false', 'servicename'=>'string', 'machine='=>'string'], - 'wincache_fcache_fileinfo' => ['array|false', 'summaryonly='=>'bool'], - 'wincache_fcache_meminfo' => ['array|false'], - 'wincache_lock' => ['bool', 'key'=>'string', 'isglobal='=>'bool'], - 'wincache_ocache_fileinfo' => ['array|false', 'summaryonly='=>'bool'], - 'wincache_ocache_meminfo' => ['array|false'], - 'wincache_refresh_if_changed' => ['bool', 'files='=>'array'], - 'wincache_rplist_fileinfo' => ['array|false', 'summaryonly='=>'bool'], - 'wincache_rplist_meminfo' => ['array|false'], - 'wincache_scache_info' => ['array|false', 'summaryonly='=>'bool'], - 'wincache_scache_meminfo' => ['array|false'], - 'wincache_ucache_add' => ['bool', 'key'=>'string', 'value'=>'mixed', 'ttl='=>'int'], - 'wincache_ucache_add\'1' => ['bool', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'wincache_ucache_cas' => ['bool', 'key'=>'string', 'old_value'=>'int', 'new_value'=>'int'], - 'wincache_ucache_clear' => ['bool'], - 'wincache_ucache_dec' => ['int|false', 'key'=>'string', 'dec_by='=>'int', 'success='=>'bool'], - 'wincache_ucache_delete' => ['bool', 'key'=>'mixed'], - 'wincache_ucache_exists' => ['bool', 'key'=>'string'], - 'wincache_ucache_get' => ['mixed', 'key'=>'mixed', '&w_success='=>'bool'], - 'wincache_ucache_inc' => ['int|false', 'key'=>'string', 'inc_by='=>'int', 'success='=>'bool'], - 'wincache_ucache_info' => ['array|false', 'summaryonly='=>'bool', 'key='=>'string'], - 'wincache_ucache_meminfo' => ['array|false'], - 'wincache_ucache_set' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int'], - 'wincache_ucache_set\'1' => ['bool', 'values'=>'array', 'unused='=>'', 'ttl='=>'int'], - 'wincache_unlock' => ['bool', 'key'=>'string'], - 'wkhtmltox\image\converter::convert' => ['?string'], - 'wkhtmltox\image\converter::getVersion' => ['string'], - 'wkhtmltox\pdf\converter::add' => ['void', 'object'=>'wkhtmltox\PDF\Object'], - 'wkhtmltox\pdf\converter::convert' => ['?string'], - 'wkhtmltox\pdf\converter::getVersion' => ['string'], - 'wordwrap' => ['string', 'string'=>'string', 'width='=>'int', 'break='=>'string', 'cut_long_words='=>'bool'], - 'xattr_get' => ['string', 'filename'=>'string', 'name'=>'string', 'flags='=>'int'], - 'xattr_list' => ['array', 'filename'=>'string', 'flags='=>'int'], - 'xattr_remove' => ['bool', 'filename'=>'string', 'name'=>'string', 'flags='=>'int'], - 'xattr_set' => ['bool', 'filename'=>'string', 'name'=>'string', 'value'=>'string', 'flags='=>'int'], - 'xattr_supported' => ['bool', 'filename'=>'string', 'flags='=>'int'], - 'xcache_asm' => ['string', 'filename'=>'string'], - 'xcache_clear_cache' => ['void', 'type'=>'int', 'id='=>'int'], - 'xcache_coredump' => ['string', 'op_type'=>'int'], - 'xcache_count' => ['int', 'type'=>'int'], - 'xcache_coverager_decode' => ['array', 'data'=>'string'], - 'xcache_coverager_get' => ['array', 'clean='=>'bool'], - 'xcache_coverager_start' => ['void', 'clean='=>'bool'], - 'xcache_coverager_stop' => ['void', 'clean='=>'bool'], - 'xcache_dasm_file' => ['string', 'filename'=>'string'], - 'xcache_dasm_string' => ['string', 'code'=>'string'], - 'xcache_dec' => ['int', 'name'=>'string', 'value='=>'int|mixed', 'ttl='=>'int'], - 'xcache_decode' => ['bool', 'filename'=>'string'], - 'xcache_encode' => ['string', 'filename'=>'string'], - 'xcache_get' => ['mixed', 'name'=>'string'], - 'xcache_get_data_type' => ['string', 'type'=>'int'], - 'xcache_get_op_spec' => ['string', 'op_type'=>'int'], - 'xcache_get_op_type' => ['string', 'op_type'=>'int'], - 'xcache_get_opcode' => ['string', 'opcode'=>'int'], - 'xcache_get_opcode_spec' => ['string', 'opcode'=>'int'], - 'xcache_inc' => ['int', 'name'=>'string', 'value='=>'int|mixed', 'ttl='=>'int'], - 'xcache_info' => ['array', 'type'=>'int', 'id'=>'int'], - 'xcache_is_autoglobal' => ['string', 'name'=>'string'], - 'xcache_isset' => ['bool', 'name'=>'string'], - 'xcache_list' => ['array', 'type'=>'int', 'id'=>'int'], - 'xcache_set' => ['bool', 'name'=>'string', 'value'=>'mixed', 'ttl='=>'int'], - 'xcache_unset' => ['bool', 'name'=>'string'], - 'xcache_unset_by_prefix' => ['bool', 'prefix'=>'string'], - 'xdebug_break' => ['bool'], - 'xdebug_call_class' => ['string', 'depth='=>'int'], - 'xdebug_call_file' => ['string', 'depth='=>'int'], - 'xdebug_call_function' => ['string', 'depth='=>'int'], - 'xdebug_call_line' => ['int', 'depth='=>'int'], - 'xdebug_clear_aggr_profiling_data' => ['bool'], - 'xdebug_code_coverage_started' => ['bool'], - 'xdebug_debug_zval' => ['void', '...varName'=>'string'], - 'xdebug_debug_zval_stdout' => ['void', '...varName'=>'string'], - 'xdebug_disable' => ['void'], - 'xdebug_dump_aggr_profiling_data' => ['bool'], - 'xdebug_dump_superglobals' => ['void'], - 'xdebug_enable' => ['void'], - 'xdebug_get_code_coverage' => ['array'], - 'xdebug_get_collected_errors' => ['string', 'clean='=>'bool'], - 'xdebug_get_declared_vars' => ['array'], - 'xdebug_get_formatted_function_stack' => [''], - 'xdebug_get_function_count' => ['int'], - 'xdebug_get_function_stack' => ['array', 'message='=>'string', 'options='=>'int'], - 'xdebug_get_headers' => ['array'], - 'xdebug_get_monitored_functions' => ['array'], - 'xdebug_get_profiler_filename' => ['string|false'], - 'xdebug_get_stack_depth' => ['int'], - 'xdebug_get_tracefile_name' => ['string'], - 'xdebug_is_debugger_active' => ['bool'], - 'xdebug_is_enabled' => ['bool'], - 'xdebug_memory_usage' => ['int'], - 'xdebug_peak_memory_usage' => ['int'], - 'xdebug_print_function_stack' => ['array', 'message='=>'string', 'options='=>'int'], - 'xdebug_set_filter' => ['void', 'group'=>'int', 'list_type'=>'int', 'configuration'=>'array'], - 'xdebug_start_code_coverage' => ['void', 'options='=>'int'], - 'xdebug_start_error_collection' => ['void'], - 'xdebug_start_function_monitor' => ['void', 'list_of_functions_to_monitor'=>'string[]'], - 'xdebug_start_trace' => ['void', 'trace_file'=>'', 'options='=>'int|mixed'], - 'xdebug_stop_code_coverage' => ['void', 'cleanup='=>'bool'], - 'xdebug_stop_error_collection' => ['void'], - 'xdebug_stop_function_monitor' => ['void'], - 'xdebug_stop_trace' => ['void'], - 'xdebug_time_index' => ['float'], - 'xdebug_var_dump' => ['void', '...var'=>''], - 'xdiff_file_bdiff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], - 'xdiff_file_bdiff_size' => ['int', 'file'=>'string'], - 'xdiff_file_bpatch' => ['bool', 'file'=>'string', 'patch'=>'string', 'dest'=>'string'], - 'xdiff_file_diff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string', 'context='=>'int', 'minimal='=>'bool'], - 'xdiff_file_diff_binary' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], - 'xdiff_file_merge3' => ['mixed', 'old_file'=>'string', 'new_file1'=>'string', 'new_file2'=>'string', 'dest'=>'string'], - 'xdiff_file_patch' => ['mixed', 'file'=>'string', 'patch'=>'string', 'dest'=>'string', 'flags='=>'int'], - 'xdiff_file_patch_binary' => ['bool', 'file'=>'string', 'patch'=>'string', 'dest'=>'string'], - 'xdiff_file_rabdiff' => ['bool', 'old_file'=>'string', 'new_file'=>'string', 'dest'=>'string'], - 'xdiff_string_bdiff' => ['string', 'old_data'=>'string', 'new_data'=>'string'], - 'xdiff_string_bdiff_size' => ['int', 'patch'=>'string'], - 'xdiff_string_bpatch' => ['string', 'string'=>'string', 'patch'=>'string'], - 'xdiff_string_diff' => ['string', 'old_data'=>'string', 'new_data'=>'string', 'context='=>'int', 'minimal='=>'bool'], - 'xdiff_string_diff_binary' => ['string', 'old_data'=>'string', 'new_data'=>'string'], - 'xdiff_string_merge3' => ['mixed', 'old_data'=>'string', 'new_data1'=>'string', 'new_data2'=>'string', 'error='=>'string'], - 'xdiff_string_patch' => ['string', 'string'=>'string', 'patch'=>'string', 'flags='=>'int', '&w_error='=>'string'], - 'xdiff_string_patch_binary' => ['string', 'string'=>'string', 'patch'=>'string'], - 'xdiff_string_rabdiff' => ['string', 'old_data'=>'string', 'new_data'=>'string'], - 'xhprof_disable' => ['array'], - 'xhprof_enable' => ['void', 'flags='=>'int', 'options='=>'array'], - 'xhprof_sample_disable' => ['array'], - 'xhprof_sample_enable' => ['void'], - 'xlswriter_get_author' => ['string'], - 'xlswriter_get_version' => ['string'], - 'xml_error_string' => ['?string', 'error_code'=>'int'], - 'xml_get_current_byte_index' => ['int|false', 'parser'=>'resource'], - 'xml_get_current_column_number' => ['int|false', 'parser'=>'resource'], - 'xml_get_current_line_number' => ['int|false', 'parser'=>'resource'], - 'xml_get_error_code' => ['int|false', 'parser'=>'resource'], - 'xml_parse' => ['int', 'parser'=>'resource', 'data'=>'string', 'is_final='=>'bool'], - 'xml_parse_into_struct' => ['int', 'parser'=>'resource', 'data'=>'string', '&w_values'=>'array', '&w_index='=>'array'], - 'xml_parser_create' => ['resource', 'encoding='=>'string'], - 'xml_parser_create_ns' => ['resource', 'encoding='=>'string', 'separator='=>'string'], - 'xml_parser_free' => ['bool', 'parser'=>'resource'], - 'xml_parser_get_option' => ['string|int', 'parser'=>'resource', 'option'=>'int'], - 'xml_parser_set_option' => ['bool', 'parser'=>'resource', 'option'=>'int', 'value'=>'mixed'], - 'xml_set_character_data_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_default_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_element_handler' => ['true', 'parser'=>'resource', 'start_handler'=>'callable', 'end_handler'=>'callable'], - 'xml_set_end_namespace_decl_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_external_entity_ref_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_notation_decl_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_object' => ['true', 'parser'=>'resource', 'object'=>'object'], - 'xml_set_processing_instruction_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_start_namespace_decl_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xml_set_unparsed_entity_decl_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'], - 'xmlrpc_decode' => ['mixed', 'xml'=>'string', 'encoding='=>'string'], - 'xmlrpc_decode_request' => ['?array', 'xml'=>'string', '&w_method'=>'string', 'encoding='=>'string'], - 'xmlrpc_encode' => ['string', 'value'=>'mixed'], - 'xmlrpc_encode_request' => ['string', 'method'=>'string', 'params'=>'mixed', 'output_options='=>'array'], - 'xmlrpc_get_type' => ['string', 'value'=>'mixed'], - 'xmlrpc_is_fault' => ['bool', 'arg'=>'array'], - 'xmlrpc_parse_method_descriptions' => ['array', 'xml'=>'string'], - 'xmlrpc_server_add_introspection_data' => ['int', 'server'=>'resource', 'desc'=>'array'], - 'xmlrpc_server_call_method' => ['string', 'server'=>'resource', 'xml'=>'string', 'user_data'=>'mixed', 'output_options='=>'array'], - 'xmlrpc_server_create' => ['resource'], - 'xmlrpc_server_destroy' => ['int', 'server'=>'resource'], - 'xmlrpc_server_register_introspection_callback' => ['bool', 'server'=>'resource', 'function'=>'string'], - 'xmlrpc_server_register_method' => ['bool', 'server'=>'resource', 'method_name'=>'string', 'function'=>'string'], - 'xmlrpc_set_type' => ['bool', '&rw_value'=>'string|DateTime', 'type'=>'string'], - 'xmlwriter_end_attribute' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_cdata' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_comment' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_document' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_dtd' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_dtd_attlist' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_dtd_element' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_dtd_entity' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_element' => ['bool', 'writer'=>'resource'], - 'xmlwriter_end_pi' => ['bool', 'writer'=>'resource'], - 'xmlwriter_flush' => ['string|int|false', 'writer'=>'resource', 'empty='=>'bool'], - 'xmlwriter_full_end_element' => ['bool', 'writer'=>'resource'], - 'xmlwriter_open_memory' => ['resource|false'], - 'xmlwriter_open_uri' => ['resource|false', 'uri'=>'string'], - 'xmlwriter_output_memory' => ['string', 'writer'=>'resource', 'flush='=>'bool'], - 'xmlwriter_set_indent' => ['bool', 'writer'=>'resource', 'enable'=>'bool'], - 'xmlwriter_set_indent_string' => ['bool', 'writer'=>'resource', 'indentation'=>'string'], - 'xmlwriter_start_attribute' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'xmlwriter_start_attribute_ns' => ['bool', 'writer'=>'resource', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string'], - 'xmlwriter_start_cdata' => ['bool', 'writer'=>'resource'], - 'xmlwriter_start_comment' => ['bool', 'writer'=>'resource'], - 'xmlwriter_start_document' => ['bool', 'writer'=>'resource', 'version='=>'?string', 'encoding='=>'?string', 'standalone='=>'?string'], - 'xmlwriter_start_dtd' => ['bool', 'writer'=>'resource', 'qualifiedName'=>'string', 'publicId='=>'?string', 'systemId='=>'?string'], - 'xmlwriter_start_dtd_attlist' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'xmlwriter_start_dtd_element' => ['bool', 'writer'=>'resource', 'qualifiedName'=>'string'], - 'xmlwriter_start_dtd_entity' => ['bool', 'writer'=>'resource', 'name'=>'string', 'isParam'=>'bool'], - 'xmlwriter_start_element' => ['bool', 'writer'=>'resource', 'name'=>'string'], - 'xmlwriter_start_element_ns' => ['bool', 'writer'=>'resource', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'?string'], - 'xmlwriter_start_pi' => ['bool', 'writer'=>'resource', 'target'=>'string'], - 'xmlwriter_text' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'xmlwriter_write_attribute' => ['bool', 'writer'=>'resource', 'name'=>'string', 'value'=>'string'], - 'xmlwriter_write_attribute_ns' => ['bool', 'writer'=>'resource', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string', 'value'=>'string'], - 'xmlwriter_write_cdata' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'xmlwriter_write_comment' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'xmlwriter_write_dtd' => ['bool', 'writer'=>'resource', 'name'=>'string', 'publicId='=>'?string', 'systemId='=>'?string', 'content='=>'?string'], - 'xmlwriter_write_dtd_attlist' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string'], - 'xmlwriter_write_dtd_element' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string'], - 'xmlwriter_write_dtd_entity' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'string', 'isParam'=>'bool', 'publicId'=>'string', 'systemId'=>'string', 'notationData'=>'string'], - 'xmlwriter_write_element' => ['bool', 'writer'=>'resource', 'name'=>'string', 'content'=>'?string'], - 'xmlwriter_write_element_ns' => ['bool', 'writer'=>'resource', 'prefix'=>'?string', 'name'=>'string', 'namespace'=>'string', 'content'=>'?string'], - 'xmlwriter_write_pi' => ['bool', 'writer'=>'resource', 'target'=>'string', 'content'=>'string'], - 'xmlwriter_write_raw' => ['bool', 'writer'=>'resource', 'content'=>'string'], - 'xpath_new_context' => ['XPathContext', 'dom_document'=>'DOMDocument'], - 'xpath_register_ns' => ['bool', 'xpath_context'=>'xpathcontext', 'prefix'=>'string', 'uri'=>'string'], - 'xpath_register_ns_auto' => ['bool', 'xpath_context'=>'xpathcontext', 'context_node='=>'object'], - 'xptr_new_context' => ['XPathContext'], - 'yac::__construct' => ['void', 'prefix='=>'string'], - 'yac::__get' => ['mixed', 'key'=>'string'], - 'yac::__set' => ['mixed', 'key'=>'string', 'value'=>'mixed'], - 'yac::delete' => ['bool', 'keys'=>'string|array', 'ttl='=>'int'], - 'yac::dump' => ['mixed', 'num'=>'int'], - 'yac::flush' => ['bool'], - 'yac::get' => ['mixed', 'key'=>'string|array', 'cas='=>'int'], - 'yac::info' => ['array'], - 'yaml_emit' => ['string', 'data'=>'mixed', 'encoding='=>'int', 'linebreak='=>'int', 'callbacks='=>'array'], - 'yaml_emit_file' => ['bool', 'filename'=>'string', 'data'=>'mixed', 'encoding='=>'int', 'linebreak='=>'int', 'callbacks='=>'array'], - 'yaml_parse' => ['mixed|false', 'input'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], - 'yaml_parse_file' => ['mixed|false', 'filename'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], - 'yaml_parse_url' => ['mixed|false', 'url'=>'string', 'pos='=>'int', '&w_ndocs='=>'int', 'callbacks='=>'array'], - 'yaz_addinfo' => ['string', 'id'=>'resource'], - 'yaz_ccl_conf' => ['void', 'id'=>'resource', 'config'=>'array'], - 'yaz_ccl_parse' => ['bool', 'id'=>'resource', 'query'=>'string', '&w_result'=>'array'], - 'yaz_close' => ['bool', 'id'=>'resource'], - 'yaz_connect' => ['mixed', 'zurl'=>'string', 'options='=>'mixed'], - 'yaz_database' => ['bool', 'id'=>'resource', 'databases'=>'string'], - 'yaz_element' => ['bool', 'id'=>'resource', 'elementset'=>'string'], - 'yaz_errno' => ['int', 'id'=>'resource'], - 'yaz_error' => ['string', 'id'=>'resource'], - 'yaz_es' => ['void', 'id'=>'resource', 'type'=>'string', 'args'=>'array'], - 'yaz_es_result' => ['array', 'id'=>'resource'], - 'yaz_get_option' => ['string', 'id'=>'resource', 'name'=>'string'], - 'yaz_hits' => ['int', 'id'=>'resource', 'searchresult='=>'array'], - 'yaz_itemorder' => ['void', 'id'=>'resource', 'args'=>'array'], - 'yaz_present' => ['bool', 'id'=>'resource'], - 'yaz_range' => ['void', 'id'=>'resource', 'start'=>'int', 'number'=>'int'], - 'yaz_record' => ['string', 'id'=>'resource', 'pos'=>'int', 'type'=>'string'], - 'yaz_scan' => ['void', 'id'=>'resource', 'type'=>'string', 'startterm'=>'string', 'flags='=>'array'], - 'yaz_scan_result' => ['array', 'id'=>'resource', 'result='=>'array'], - 'yaz_schema' => ['void', 'id'=>'resource', 'schema'=>'string'], - 'yaz_search' => ['bool', 'id'=>'resource', 'type'=>'string', 'query'=>'string'], - 'yaz_set_option' => ['', 'id'=>'', 'name'=>'string', 'value'=>'string', 'options'=>'array'], - 'yaz_sort' => ['void', 'id'=>'resource', 'criteria'=>'string'], - 'yaz_syntax' => ['void', 'id'=>'resource', 'syntax'=>'string'], - 'yaz_wait' => ['mixed', '&rw_options='=>'array'], - 'yp_all' => ['void', 'domain'=>'string', 'map'=>'string', 'callback'=>'string'], - 'yp_cat' => ['array', 'domain'=>'string', 'map'=>'string'], - 'yp_err_string' => ['string', 'errorcode'=>'int'], - 'yp_errno' => ['int'], - 'yp_first' => ['array', 'domain'=>'string', 'map'=>'string'], - 'yp_get_default_domain' => ['string'], - 'yp_master' => ['string', 'domain'=>'string', 'map'=>'string'], - 'yp_match' => ['string', 'domain'=>'string', 'map'=>'string', 'key'=>'string'], - 'yp_next' => ['array', 'domain'=>'string', 'map'=>'string', 'key'=>'string'], - 'yp_order' => ['int', 'domain'=>'string', 'map'=>'string'], - 'zem_get_extension_info_by_id' => [''], - 'zem_get_extension_info_by_name' => [''], - 'zem_get_extensions_info' => [''], - 'zem_get_license_info' => [''], - 'zend_current_obfuscation_level' => ['int'], - 'zend_disk_cache_clear' => ['bool', 'namespace='=>'mixed|string'], - 'zend_disk_cache_delete' => ['mixed|null', 'key'=>'string'], - 'zend_disk_cache_fetch' => ['mixed|null', 'key'=>'string'], - 'zend_disk_cache_store' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int|mixed'], - 'zend_get_id' => ['array', 'all_ids='=>'all_ids|false'], - 'zend_is_configuration_changed' => [''], - 'zend_loader_current_file' => ['string'], - 'zend_loader_enabled' => ['bool'], - 'zend_loader_file_encoded' => ['bool'], - 'zend_loader_file_licensed' => ['array'], - 'zend_loader_install_license' => ['bool', 'license_file'=>'string', 'override'=>'bool'], - 'zend_logo_guid' => ['string'], - 'zend_obfuscate_class_name' => ['string', 'class_name'=>'string'], - 'zend_obfuscate_function_name' => ['string', 'function_name'=>'string'], - 'zend_optimizer_version' => ['string'], - 'zend_runtime_obfuscate' => ['void'], - 'zend_send_buffer' => ['null|false', 'buffer'=>'string', 'mime_type='=>'string', 'custom_headers='=>'string'], - 'zend_send_file' => ['null|false', 'filename'=>'string', 'mime_type='=>'string', 'custom_headers='=>'string'], - 'zend_set_configuration_changed' => [''], - 'zend_shm_cache_clear' => ['bool', 'namespace='=>'mixed|string'], - 'zend_shm_cache_delete' => ['mixed|null', 'key'=>'string'], - 'zend_shm_cache_fetch' => ['mixed|null', 'key'=>'string'], - 'zend_shm_cache_store' => ['bool', 'key'=>'', 'value'=>'', 'ttl='=>'int|mixed'], - 'zend_thread_id' => ['int'], - 'zend_version' => ['string'], - 'zip_close' => ['void', 'zip'=>'resource'], - 'zip_entry_close' => ['bool', 'zip_entry'=>'resource'], - 'zip_entry_compressedsize' => ['int', 'zip_entry'=>'resource'], - 'zip_entry_compressionmethod' => ['string', 'zip_entry'=>'resource'], - 'zip_entry_filesize' => ['int', 'zip_entry'=>'resource'], - 'zip_entry_name' => ['string|false', 'zip_entry'=>'resource'], - 'zip_entry_open' => ['bool', 'zip_dp'=>'resource', 'zip_entry'=>'resource', 'mode='=>'string'], - 'zip_entry_read' => ['string|false', 'zip_entry'=>'resource', 'len='=>'int'], - 'zip_open' => ['resource|int|false', 'filename'=>'string'], - 'zip_read' => ['resource', 'zip'=>'resource'], - 'zlib_decode' => ['string|false', 'data'=>'string', 'max_length='=>'int'], - 'zlib_encode' => ['string|false', 'data'=>'string', 'encoding'=>'int', 'level='=>'int'], - 'zlib_get_coding_type' => ['string|false'], - 'zookeeper_dispatch' => ['void'], -]; +return array ( + 'AMQPBasicProperties::__construct' => + array ( + 0 => 'void', + 'content_type=' => 'string', + 'content_encoding=' => 'string', + 'headers=' => 'array', + 'delivery_mode=' => 'int', + 'priority=' => 'int', + 'correlation_id=' => 'string', + 'reply_to=' => 'string', + 'expiration=' => 'string', + 'message_id=' => 'string', + 'timestamp=' => 'int', + 'type=' => 'string', + 'user_id=' => 'string', + 'app_id=' => 'string', + 'cluster_id=' => 'string', + ), + 'AMQPBasicProperties::getAppId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getClusterId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getContentEncoding' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getContentType' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getCorrelationId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getDeliveryMode' => + array ( + 0 => 'int', + ), + 'AMQPBasicProperties::getExpiration' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getHeaders' => + array ( + 0 => 'array', + ), + 'AMQPBasicProperties::getMessageId' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getPriority' => + array ( + 0 => 'int', + ), + 'AMQPBasicProperties::getReplyTo' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getTimestamp' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getType' => + array ( + 0 => 'string', + ), + 'AMQPBasicProperties::getUserId' => + array ( + 0 => 'string', + ), + 'AMQPChannel::__construct' => + array ( + 0 => 'void', + 'amqp_connection' => 'AMQPConnection', + ), + 'AMQPChannel::basicRecover' => + array ( + 0 => 'mixed', + 'requeue=' => 'bool', + ), + 'AMQPChannel::close' => + array ( + 0 => 'mixed', + ), + 'AMQPChannel::commitTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::confirmSelect' => + array ( + 0 => 'mixed', + ), + 'AMQPChannel::getChannelId' => + array ( + 0 => 'int', + ), + 'AMQPChannel::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPChannel::getConsumers' => + array ( + 0 => 'array', + ), + 'AMQPChannel::getPrefetchCount' => + array ( + 0 => 'int', + ), + 'AMQPChannel::getPrefetchSize' => + array ( + 0 => 'int', + ), + 'AMQPChannel::isConnected' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::qos' => + array ( + 0 => 'bool', + 'size' => 'int', + 'count' => 'int', + ), + 'AMQPChannel::rollbackTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::setConfirmCallback' => + array ( + 0 => 'mixed', + 'ack_callback=' => 'callable|null', + 'nack_callback=' => 'callable|null', + ), + 'AMQPChannel::setPrefetchCount' => + array ( + 0 => 'bool', + 'count' => 'int', + ), + 'AMQPChannel::setPrefetchSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'AMQPChannel::setReturnCallback' => + array ( + 0 => 'mixed', + 'return_callback=' => 'callable|null', + ), + 'AMQPChannel::startTransaction' => + array ( + 0 => 'bool', + ), + 'AMQPChannel::waitForBasicReturn' => + array ( + 0 => 'mixed', + 'timeout=' => 'float', + ), + 'AMQPChannel::waitForConfirm' => + array ( + 0 => 'mixed', + 'timeout=' => 'float', + ), + 'AMQPConnection::__construct' => + array ( + 0 => 'void', + 'credentials=' => 'array', + ), + 'AMQPConnection::connect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::disconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::getCACert' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getCert' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getHeartbeatInterval' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getHost' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getKey' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getLogin' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getMaxChannels' => + array ( + 0 => 'int|null', + ), + 'AMQPConnection::getMaxFrameSize' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getPassword' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getPort' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getReadTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::getTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::getUsedChannels' => + array ( + 0 => 'int', + ), + 'AMQPConnection::getVerify' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::getVhost' => + array ( + 0 => 'string', + ), + 'AMQPConnection::getWriteTimeout' => + array ( + 0 => 'float', + ), + 'AMQPConnection::isConnected' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::isPersistent' => + array ( + 0 => 'bool|null', + ), + 'AMQPConnection::pconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::pdisconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::preconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::reconnect' => + array ( + 0 => 'bool', + ), + 'AMQPConnection::setCACert' => + array ( + 0 => 'mixed', + 'cacert' => 'string', + ), + 'AMQPConnection::setCert' => + array ( + 0 => 'mixed', + 'cert' => 'string', + ), + 'AMQPConnection::setHost' => + array ( + 0 => 'bool', + 'host' => 'string', + ), + 'AMQPConnection::setKey' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'AMQPConnection::setLogin' => + array ( + 0 => 'bool', + 'login' => 'string', + ), + 'AMQPConnection::setPassword' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'AMQPConnection::setPort' => + array ( + 0 => 'bool', + 'port' => 'int', + ), + 'AMQPConnection::setReadTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPConnection::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPConnection::setVerify' => + array ( + 0 => 'mixed', + 'verify' => 'bool', + ), + 'AMQPConnection::setVhost' => + array ( + 0 => 'bool', + 'vhost' => 'string', + ), + 'AMQPConnection::setWriteTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'AMQPDecimal::__construct' => + array ( + 0 => 'void', + 'exponent' => 'mixed', + 'significand' => 'mixed', + ), + 'AMQPDecimal::getExponent' => + array ( + 0 => 'int', + ), + 'AMQPDecimal::getSignificand' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::__construct' => + array ( + 0 => 'void', + ), + 'AMQPEnvelope::getAppId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getBody' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getClusterId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getConsumerTag' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getContentEncoding' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getContentType' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getCorrelationId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getDeliveryMode' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::getDeliveryTag' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getExchangeName' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getExpiration' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getHeader' => + array ( + 0 => 'false|string', + 'header_key' => 'string', + ), + 'AMQPEnvelope::getHeaders' => + array ( + 0 => 'array', + ), + 'AMQPEnvelope::getMessageId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getPriority' => + array ( + 0 => 'int', + ), + 'AMQPEnvelope::getReplyTo' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getRoutingKey' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getTimeStamp' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getType' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::getUserId' => + array ( + 0 => 'string', + ), + 'AMQPEnvelope::hasHeader' => + array ( + 0 => 'bool', + 'header_key' => 'string', + ), + 'AMQPEnvelope::isRedelivery' => + array ( + 0 => 'bool', + ), + 'AMQPExchange::__construct' => + array ( + 0 => 'void', + 'amqp_channel' => 'AMQPChannel', + ), + 'AMQPExchange::bind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPExchange::declareExchange' => + array ( + 0 => 'bool', + ), + 'AMQPExchange::delete' => + array ( + 0 => 'bool', + 'exchangeName=' => 'string', + 'flags=' => 'int', + ), + 'AMQPExchange::getArgument' => + array ( + 0 => 'false|int|string', + 'key' => 'string', + ), + 'AMQPExchange::getArguments' => + array ( + 0 => 'array', + ), + 'AMQPExchange::getChannel' => + array ( + 0 => 'AMQPChannel', + ), + 'AMQPExchange::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPExchange::getFlags' => + array ( + 0 => 'int', + ), + 'AMQPExchange::getName' => + array ( + 0 => 'string', + ), + 'AMQPExchange::getType' => + array ( + 0 => 'string', + ), + 'AMQPExchange::hasArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'AMQPExchange::publish' => + array ( + 0 => 'bool', + 'message' => 'string', + 'routing_key=' => 'string', + 'flags=' => 'int', + 'attributes=' => 'array', + ), + 'AMQPExchange::setArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int|string', + ), + 'AMQPExchange::setArguments' => + array ( + 0 => 'bool', + 'arguments' => 'array', + ), + 'AMQPExchange::setFlags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'AMQPExchange::setName' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + ), + 'AMQPExchange::setType' => + array ( + 0 => 'bool', + 'exchange_type' => 'string', + ), + 'AMQPExchange::unbind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPQueue::__construct' => + array ( + 0 => 'void', + 'amqp_channel' => 'AMQPChannel', + ), + 'AMQPQueue::ack' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::bind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPQueue::cancel' => + array ( + 0 => 'bool', + 'consumer_tag=' => 'string', + ), + 'AMQPQueue::consume' => + array ( + 0 => 'void', + 'callback=' => 'callable|null', + 'flags=' => 'int', + 'consumerTag=' => 'string', + ), + 'AMQPQueue::declareQueue' => + array ( + 0 => 'int', + ), + 'AMQPQueue::delete' => + array ( + 0 => 'int', + 'flags=' => 'int', + ), + 'AMQPQueue::get' => + array ( + 0 => 'AMQPEnvelope|false', + 'flags=' => 'int', + ), + 'AMQPQueue::getArgument' => + array ( + 0 => 'false|int|string', + 'key' => 'string', + ), + 'AMQPQueue::getArguments' => + array ( + 0 => 'array', + ), + 'AMQPQueue::getChannel' => + array ( + 0 => 'AMQPChannel', + ), + 'AMQPQueue::getConnection' => + array ( + 0 => 'AMQPConnection', + ), + 'AMQPQueue::getConsumerTag' => + array ( + 0 => 'null|string', + ), + 'AMQPQueue::getFlags' => + array ( + 0 => 'int', + ), + 'AMQPQueue::getName' => + array ( + 0 => 'string', + ), + 'AMQPQueue::hasArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'AMQPQueue::nack' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::purge' => + array ( + 0 => 'bool', + ), + 'AMQPQueue::reject' => + array ( + 0 => 'bool', + 'delivery_tag' => 'string', + 'flags=' => 'int', + ), + 'AMQPQueue::setArgument' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + ), + 'AMQPQueue::setArguments' => + array ( + 0 => 'bool', + 'arguments' => 'array', + ), + 'AMQPQueue::setFlags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'AMQPQueue::setName' => + array ( + 0 => 'bool', + 'queue_name' => 'string', + ), + 'AMQPQueue::unbind' => + array ( + 0 => 'bool', + 'exchange_name' => 'string', + 'routing_key=' => 'string', + 'arguments=' => 'array', + ), + 'AMQPTimestamp::__construct' => + array ( + 0 => 'void', + 'timestamp' => 'string', + ), + 'AMQPTimestamp::__toString' => + array ( + 0 => 'string', + ), + 'AMQPTimestamp::getTimestamp' => + array ( + 0 => 'string', + ), + 'APCIterator::__construct' => + array ( + 0 => 'void', + 'cache' => 'string', + 'search=' => 'array|null|string', + 'format=' => 'int', + 'chunk_size=' => 'int', + 'list=' => 'int', + ), + 'APCIterator::current' => + array ( + 0 => 'false|mixed', + ), + 'APCIterator::getTotalCount' => + array ( + 0 => 'false|int', + ), + 'APCIterator::getTotalHits' => + array ( + 0 => 'false|int', + ), + 'APCIterator::getTotalSize' => + array ( + 0 => 'false|int', + ), + 'APCIterator::key' => + array ( + 0 => 'string', + ), + 'APCIterator::next' => + array ( + 0 => 'void', + ), + 'APCIterator::rewind' => + array ( + 0 => 'void', + ), + 'APCIterator::valid' => + array ( + 0 => 'bool', + ), + 'APCuIterator::__construct' => + array ( + 0 => 'void', + 'search=' => 'array|null|string', + 'format=' => 'int', + 'chunk_size=' => 'int', + 'list=' => 'int', + ), + 'APCuIterator::current' => + array ( + 0 => 'mixed', + ), + 'APCuIterator::getTotalCount' => + array ( + 0 => 'int', + ), + 'APCuIterator::getTotalHits' => + array ( + 0 => 'int', + ), + 'APCuIterator::getTotalSize' => + array ( + 0 => 'int', + ), + 'APCuIterator::key' => + array ( + 0 => 'string', + ), + 'APCuIterator::next' => + array ( + 0 => 'void', + ), + 'APCuIterator::rewind' => + array ( + 0 => 'void', + ), + 'APCuIterator::valid' => + array ( + 0 => 'bool', + ), + 'AppendIterator::__construct' => + array ( + 0 => 'void', + ), + 'AppendIterator::append' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'AppendIterator::current' => + array ( + 0 => 'mixed', + ), + 'AppendIterator::getArrayIterator' => + array ( + 0 => 'ArrayIterator', + ), + 'AppendIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'AppendIterator::getIteratorIndex' => + array ( + 0 => 'int', + ), + 'AppendIterator::key' => + array ( + 0 => 'scalar', + ), + 'AppendIterator::next' => + array ( + 0 => 'void', + ), + 'AppendIterator::rewind' => + array ( + 0 => 'void', + ), + 'AppendIterator::valid' => + array ( + 0 => 'bool', + ), + 'ArgumentCountError::__clone' => + array ( + 0 => 'void', + ), + 'ArgumentCountError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ArgumentCountError::__toString' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::__wakeup' => + array ( + 0 => 'void', + ), + 'ArgumentCountError::getCode' => + array ( + 0 => 'int', + ), + 'ArgumentCountError::getFile' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::getLine' => + array ( + 0 => 'int', + ), + 'ArgumentCountError::getMessage' => + array ( + 0 => 'string', + ), + 'ArgumentCountError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ArgumentCountError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ArgumentCountError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'ArithmeticError::__clone' => + array ( + 0 => 'void', + ), + 'ArithmeticError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ArithmeticError::__toString' => + array ( + 0 => 'string', + ), + 'ArithmeticError::__wakeup' => + array ( + 0 => 'void', + ), + 'ArithmeticError::getCode' => + array ( + 0 => 'int', + ), + 'ArithmeticError::getFile' => + array ( + 0 => 'string', + ), + 'ArithmeticError::getLine' => + array ( + 0 => 'int', + ), + 'ArithmeticError::getMessage' => + array ( + 0 => 'string', + ), + 'ArithmeticError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ArithmeticError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ArithmeticError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'ArrayAccess::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'ArrayAccess::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'ArrayAccess::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayAccess::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'ArrayIterator::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + ), + 'ArrayIterator::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ArrayIterator::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayIterator::count' => + array ( + 0 => 'int', + ), + 'ArrayIterator::current' => + array ( + 0 => 'mixed', + ), + 'ArrayIterator::getArrayCopy' => + array ( + 0 => 'array', + ), + 'ArrayIterator::getFlags' => + array ( + 0 => 'int', + ), + 'ArrayIterator::key' => + array ( + 0 => 'int|null|string', + ), + 'ArrayIterator::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayIterator::natcasesort' => + array ( + 0 => 'true', + ), + 'ArrayIterator::natsort' => + array ( + 0 => 'true', + ), + 'ArrayIterator::next' => + array ( + 0 => 'void', + ), + 'ArrayIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'ArrayIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'int|string', + ), + 'ArrayIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'ArrayIterator::rewind' => + array ( + 0 => 'void', + ), + 'ArrayIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'ArrayIterator::serialize' => + array ( + 0 => 'string', + ), + 'ArrayIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'ArrayIterator::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayIterator::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayIterator::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'ArrayIterator::valid' => + array ( + 0 => 'bool', + ), + 'ArrayObject::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + 'iteratorClass=' => 'class-string', + ), + 'ArrayObject::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ArrayObject::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayObject::count' => + array ( + 0 => 'int', + ), + 'ArrayObject::exchangeArray' => + array ( + 0 => 'array', + 'array' => 'array|object', + ), + 'ArrayObject::getArrayCopy' => + array ( + 0 => 'array', + ), + 'ArrayObject::getFlags' => + array ( + 0 => 'int', + ), + 'ArrayObject::getIterator' => + array ( + 0 => 'ArrayIterator', + ), + 'ArrayObject::getIteratorClass' => + array ( + 0 => 'string', + ), + 'ArrayObject::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'ArrayObject::natcasesort' => + array ( + 0 => 'true', + ), + 'ArrayObject::natsort' => + array ( + 0 => 'true', + ), + 'ArrayObject::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'ArrayObject::offsetGet' => + array ( + 0 => 'mixed|null', + 'key' => 'int|string', + ), + 'ArrayObject::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'mixed', + ), + 'ArrayObject::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'ArrayObject::serialize' => + array ( + 0 => 'string', + ), + 'ArrayObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'ArrayObject::setIteratorClass' => + array ( + 0 => 'void', + 'iteratorClass' => 'class-string', + ), + 'ArrayObject::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayObject::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ArrayObject::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'BadFunctionCallException::__clone' => + array ( + 0 => 'void', + ), + 'BadFunctionCallException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'BadFunctionCallException::__toString' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getCode' => + array ( + 0 => 'int', + ), + 'BadFunctionCallException::getFile' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getLine' => + array ( + 0 => 'int', + ), + 'BadFunctionCallException::getMessage' => + array ( + 0 => 'string', + ), + 'BadFunctionCallException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'BadFunctionCallException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'BadFunctionCallException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::__clone' => + array ( + 0 => 'void', + ), + 'BadMethodCallException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'BadMethodCallException::__toString' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getCode' => + array ( + 0 => 'int', + ), + 'BadMethodCallException::getFile' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getLine' => + array ( + 0 => 'int', + ), + 'BadMethodCallException::getMessage' => + array ( + 0 => 'string', + ), + 'BadMethodCallException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'BadMethodCallException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'BadMethodCallException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'COM::__call' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'args' => 'mixed', + ), + 'COM::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'server_name=' => 'mixed', + 'codepage=' => 'int', + 'typelib=' => 'string', + ), + 'COM::__get' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + ), + 'COM::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'COMPersistHelper::GetCurFile' => + array ( + 0 => 'string', + ), + 'COMPersistHelper::GetCurFileName' => + array ( + 0 => 'string', + ), + 'COMPersistHelper::GetMaxStreamSize' => + array ( + 0 => 'int', + ), + 'COMPersistHelper::InitNew' => + array ( + 0 => 'int', + ), + 'COMPersistHelper::LoadFromFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + ), + 'COMPersistHelper::LoadFromStream' => + array ( + 0 => 'mixed', + 'stream' => 'mixed', + ), + 'COMPersistHelper::SaveToFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'remember' => 'bool', + ), + 'COMPersistHelper::SaveToStream' => + array ( + 0 => 'int', + 'stream' => 'mixed', + ), + 'COMPersistHelper::__construct' => + array ( + 0 => 'void', + 'variant' => 'object', + ), + 'CURLFile::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mime_type=' => 'string', + 'posted_filename=' => 'string', + ), + 'CURLFile::getFilename' => + array ( + 0 => 'string', + ), + 'CURLFile::getMimeType' => + array ( + 0 => 'string', + ), + 'CURLFile::getPostFilename' => + array ( + 0 => 'string', + ), + 'CURLFile::setMimeType' => + array ( + 0 => 'void', + 'mime_type' => 'string', + ), + 'CURLFile::setPostFilename' => + array ( + 0 => 'void', + 'posted_filename' => 'string', + ), + 'CachingIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'flags=' => 'mixed', + ), + 'CachingIterator::__toString' => + array ( + 0 => 'string', + ), + 'CachingIterator::count' => + array ( + 0 => 'int', + ), + 'CachingIterator::current' => + array ( + 0 => 'mixed', + ), + 'CachingIterator::getCache' => + array ( + 0 => 'array', + ), + 'CachingIterator::getFlags' => + array ( + 0 => 'int', + ), + 'CachingIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'CachingIterator::hasNext' => + array ( + 0 => 'bool', + ), + 'CachingIterator::key' => + array ( + 0 => 'scalar', + ), + 'CachingIterator::next' => + array ( + 0 => 'void', + ), + 'CachingIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'CachingIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'CachingIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'mixed', + ), + 'CachingIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'CachingIterator::rewind' => + array ( + 0 => 'void', + ), + 'CachingIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'CachingIterator::valid' => + array ( + 0 => 'bool', + ), + 'CallbackFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'callback' => 'callable(mixed, mixed=, mixed=):bool', + ), + 'CallbackFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'CallbackFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'CallbackFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'CallbackFilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'CallbackFilterIterator::next' => + array ( + 0 => 'void', + ), + 'CallbackFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'CallbackFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'ClosedGeneratorException::__clone' => + array ( + 0 => 'void', + ), + 'ClosedGeneratorException::__toString' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getCode' => + array ( + 0 => 'int', + ), + 'ClosedGeneratorException::getFile' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getLine' => + array ( + 0 => 'int', + ), + 'ClosedGeneratorException::getMessage' => + array ( + 0 => 'string', + ), + 'ClosedGeneratorException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ClosedGeneratorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ClosedGeneratorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Closure::__construct' => + array ( + 0 => 'void', + ), + 'Closure::__invoke' => + array ( + 0 => 'mixed', + '...args=' => 'mixed', + ), + 'Closure::bind' => + array ( + 0 => 'Closure|null', + 'closure' => 'Closure', + 'newThis' => 'null|object', + 'newScope=' => 'null|object|string', + ), + 'Closure::bindTo' => + array ( + 0 => 'Closure|null', + 'newThis' => 'null|object', + 'newScope=' => 'null|object|string', + ), + 'Closure::call' => + array ( + 0 => 'mixed', + 'newThis' => 'object', + '...args=' => 'mixed', + ), + 'Collator::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + ), + 'Collator::asort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'Collator::compare' => + array ( + 0 => 'false|int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'Collator::create' => + array ( + 0 => 'Collator|null', + 'locale' => 'string', + ), + 'Collator::getAttribute' => + array ( + 0 => 'false|int', + 'attribute' => 'int', + ), + 'Collator::getErrorCode' => + array ( + 0 => 'int', + ), + 'Collator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'Collator::getLocale' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'Collator::getSortKey' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'Collator::getStrength' => + array ( + 0 => 'false|int', + ), + 'Collator::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'int', + ), + 'Collator::setStrength' => + array ( + 0 => 'bool', + 'strength' => 'int', + ), + 'Collator::sort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'Collator::sortWithSortKeys' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'Collectable::isGarbage' => + array ( + 0 => 'bool', + ), + 'Collectable::setGarbage' => + array ( + 0 => 'void', + ), + 'Cond::broadcast' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::create' => + array ( + 0 => 'long', + ), + 'Cond::destroy' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::signal' => + array ( + 0 => 'bool', + 'condition' => 'long', + ), + 'Cond::wait' => + array ( + 0 => 'bool', + 'condition' => 'long', + 'mutex' => 'long', + 'timeout=' => 'long', + ), + 'Couchbase\\AnalyticsQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\AnalyticsQuery::fromString' => + array ( + 0 => 'Couchbase\\AnalyticsQuery', + 'statement' => 'string', + ), + 'Couchbase\\BooleanFieldSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BooleanFieldSearchQuery::boost' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\BooleanFieldSearchQuery::field' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\BooleanFieldSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\BooleanSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BooleanSearchQuery::boost' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\BooleanSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\BooleanSearchQuery::must' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\BooleanSearchQuery::mustNot' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\BooleanSearchQuery::should' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\Bucket::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\Bucket::__get' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'Couchbase\\Bucket::__set' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'int', + ), + 'Couchbase\\Bucket::append' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::counter' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'delta=' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::decryptFields' => + array ( + 0 => 'array', + 'document' => 'array', + 'fieldOptions' => 'mixed', + 'prefix=' => 'string', + ), + 'Couchbase\\Bucket::diag' => + array ( + 0 => 'array', + 'reportId=' => 'string', + ), + 'Couchbase\\Bucket::encryptFields' => + array ( + 0 => 'array', + 'document' => 'array', + 'fieldOptions' => 'mixed', + 'prefix=' => 'string', + ), + 'Couchbase\\Bucket::get' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getAndLock' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'lockTime' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getAndTouch' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'expiry' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getFromReplica' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::getName' => + array ( + 0 => 'string', + ), + 'Couchbase\\Bucket::insert' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::listExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listGet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + ), + 'Couchbase\\Bucket::listPush' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + ), + 'Couchbase\\Bucket::listSet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listShift' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::listSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::lookupIn' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'id' => 'string', + ), + 'Couchbase\\Bucket::manager' => + array ( + 0 => 'Couchbase\\BucketManager', + ), + 'Couchbase\\Bucket::mapAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::mapGet' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + ), + 'Couchbase\\Bucket::mapRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'key' => 'string', + ), + 'Couchbase\\Bucket::mapSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::mutateIn' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'id' => 'string', + 'cas' => 'string', + ), + 'Couchbase\\Bucket::ping' => + array ( + 0 => 'array', + 'services=' => 'int', + 'reportId=' => 'string', + ), + 'Couchbase\\Bucket::prepend' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::query' => + array ( + 0 => 'object', + 'query' => 'Couchbase\\AnalyticsQuery|Couchbase\\N1qlQuery|Couchbase\\SearchQuery|Couchbase\\SpatialViewQuery|Couchbase\\ViewQuery', + 'jsonAsArray=' => 'bool', + ), + 'Couchbase\\Bucket::queueAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::queueExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'mixed', + ), + 'Couchbase\\Bucket::queueRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + ), + 'Couchbase\\Bucket::queueSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::remove' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::replace' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::retrieveIn' => + array ( + 0 => 'Couchbase\\DocumentFragment', + 'id' => 'string', + '...paths=' => 'array', + ), + 'Couchbase\\Bucket::setAdd' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setExists' => + array ( + 0 => 'bool', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setRemove' => + array ( + 0 => 'mixed', + 'id' => 'string', + 'value' => 'scalar', + ), + 'Couchbase\\Bucket::setSize' => + array ( + 0 => 'int', + 'id' => 'string', + ), + 'Couchbase\\Bucket::setTranscoder' => + array ( + 0 => 'mixed', + 'encoder' => 'callable', + 'decoder' => 'callable', + ), + 'Couchbase\\Bucket::touch' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'expiry' => 'int', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::unlock' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'options=' => 'array', + ), + 'Couchbase\\Bucket::upsert' => + array ( + 0 => 'Couchbase\\Document|array', + 'ids' => 'array|string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\BucketManager::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\BucketManager::createN1qlIndex' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'fields' => 'array', + 'whereClause=' => 'string', + 'ignoreIfExist=' => 'bool', + 'defer=' => 'bool', + ), + 'Couchbase\\BucketManager::createN1qlPrimaryIndex' => + array ( + 0 => 'mixed', + 'customName=' => 'string', + 'ignoreIfExist=' => 'bool', + 'defer=' => 'bool', + ), + 'Couchbase\\BucketManager::dropN1qlIndex' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'ignoreIfNotExist=' => 'bool', + ), + 'Couchbase\\BucketManager::dropN1qlPrimaryIndex' => + array ( + 0 => 'mixed', + 'customName=' => 'string', + 'ignoreIfNotExist=' => 'bool', + ), + 'Couchbase\\BucketManager::flush' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\BucketManager::getDesignDocument' => + array ( + 0 => 'array', + 'name' => 'string', + ), + 'Couchbase\\BucketManager::info' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::insertDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'document' => 'array', + ), + 'Couchbase\\BucketManager::listDesignDocuments' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::listN1qlIndexes' => + array ( + 0 => 'array', + ), + 'Couchbase\\BucketManager::removeDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Couchbase\\BucketManager::upsertDesignDocument' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'document' => 'array', + ), + 'Couchbase\\ClassicAuthenticator::bucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'password' => 'string', + ), + 'Couchbase\\ClassicAuthenticator::cluster' => + array ( + 0 => 'mixed', + 'username' => 'string', + 'password' => 'string', + ), + 'Couchbase\\Cluster::__construct' => + array ( + 0 => 'void', + 'connstr' => 'string', + ), + 'Couchbase\\Cluster::authenticate' => + array ( + 0 => 'null', + 'authenticator' => 'Couchbase\\Authenticator', + ), + 'Couchbase\\Cluster::authenticateAs' => + array ( + 0 => 'null', + 'username' => 'string', + 'password' => 'string', + ), + 'Couchbase\\Cluster::manager' => + array ( + 0 => 'Couchbase\\ClusterManager', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Couchbase\\Cluster::openBucket' => + array ( + 0 => 'Couchbase\\Bucket', + 'name=' => 'string', + 'password=' => 'string', + ), + 'Couchbase\\ClusterManager::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ClusterManager::createBucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\ClusterManager::getUser' => + array ( + 0 => 'array', + 'username' => 'string', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::info' => + array ( + 0 => 'array', + ), + 'Couchbase\\ClusterManager::listBuckets' => + array ( + 0 => 'array', + ), + 'Couchbase\\ClusterManager::listUsers' => + array ( + 0 => 'array', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::removeBucket' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Couchbase\\ClusterManager::removeUser' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'domain=' => 'int', + ), + 'Couchbase\\ClusterManager::upsertUser' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'settings' => 'Couchbase\\UserSettings', + 'domain=' => 'int', + ), + 'Couchbase\\ConjunctionSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ConjunctionSearchQuery::boost' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\ConjunctionSearchQuery::every' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\ConjunctionSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DateRangeSearchFacet::addRange' => + array ( + 0 => 'Couchbase\\DateRangeSearchFacet', + 'name' => 'string', + 'start' => 'int|string', + 'end' => 'int|string', + ), + 'Couchbase\\DateRangeSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DateRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DateRangeSearchQuery::dateTimeParser' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'dateTimeParser' => 'string', + ), + 'Couchbase\\DateRangeSearchQuery::end' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'end' => 'int|string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\DateRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\DateRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DateRangeSearchQuery::start' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + 'start' => 'int|string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\DisjunctionSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DisjunctionSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DisjunctionSearchQuery::either' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\DisjunctionSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\DisjunctionSearchQuery::min' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + 'min' => 'int', + ), + 'Couchbase\\DocIdSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\DocIdSearchQuery::boost' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\DocIdSearchQuery::docIds' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + '...documentIds=' => 'array', + ), + 'Couchbase\\DocIdSearchQuery::field' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\DocIdSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::boost' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::field' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\GeoBoundingBoxSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\GeoDistanceSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\GeoDistanceSearchQuery::boost' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\GeoDistanceSearchQuery::field' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\GeoDistanceSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\LookupInBuilder::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\LookupInBuilder::execute' => + array ( + 0 => 'Couchbase\\DocumentFragment', + ), + 'Couchbase\\LookupInBuilder::exists' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\LookupInBuilder::get' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\LookupInBuilder::getCount' => + array ( + 0 => 'Couchbase\\LookupInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\MatchAllSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchAllSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchAllSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchAllSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchNoneSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchNoneSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchNoneSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchNoneSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchPhraseSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchPhraseSearchQuery::analyzer' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'analyzer' => 'string', + ), + 'Couchbase\\MatchPhraseSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchPhraseSearchQuery::field' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\MatchPhraseSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MatchSearchQuery::analyzer' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'analyzer' => 'string', + ), + 'Couchbase\\MatchSearchQuery::boost' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\MatchSearchQuery::field' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\MatchSearchQuery::fuzziness' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'fuzziness' => 'int', + ), + 'Couchbase\\MatchSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\MatchSearchQuery::prefixLength' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'prefixLength' => 'int', + ), + 'Couchbase\\MutateInBuilder::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutateInBuilder::arrayAddUnique' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayAppend' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayAppendAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayInsert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::arrayInsertAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::arrayPrepend' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::arrayPrependAll' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'values' => 'array', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::counter' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'delta' => 'int', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::execute' => + array ( + 0 => 'Couchbase\\DocumentFragment', + ), + 'Couchbase\\MutateInBuilder::insert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::modeDocument' => + array ( + 0 => 'mixed', + 'mode' => 'int', + ), + 'Couchbase\\MutateInBuilder::remove' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::replace' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Couchbase\\MutateInBuilder::upsert' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'path' => 'string', + 'value' => 'mixed', + 'options=' => 'array|bool', + ), + 'Couchbase\\MutateInBuilder::withExpiry' => + array ( + 0 => 'Couchbase\\MutateInBuilder', + 'expiry' => 'Couchbase\\expiry', + ), + 'Couchbase\\MutationState::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutationState::add' => + array ( + 0 => 'mixed', + 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', + ), + 'Couchbase\\MutationState::from' => + array ( + 0 => 'Couchbase\\MutationState', + 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', + ), + 'Couchbase\\MutationToken::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\MutationToken::bucketName' => + array ( + 0 => 'string', + ), + 'Couchbase\\MutationToken::from' => + array ( + 0 => 'mixed', + 'bucketName' => 'string', + 'vbucketId' => 'int', + 'vbucketUuid' => 'string', + 'sequenceNumber' => 'string', + ), + 'Couchbase\\MutationToken::sequenceNumber' => + array ( + 0 => 'string', + ), + 'Couchbase\\MutationToken::vbucketId' => + array ( + 0 => 'int', + ), + 'Couchbase\\MutationToken::vbucketUuid' => + array ( + 0 => 'string', + ), + 'Couchbase\\N1qlIndex::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\N1qlQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\N1qlQuery::adhoc' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'adhoc' => 'bool', + ), + 'Couchbase\\N1qlQuery::consistency' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'consistency' => 'int', + ), + 'Couchbase\\N1qlQuery::consistentWith' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'state' => 'Couchbase\\MutationState', + ), + 'Couchbase\\N1qlQuery::crossBucket' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'crossBucket' => 'bool', + ), + 'Couchbase\\N1qlQuery::fromString' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'statement' => 'string', + ), + 'Couchbase\\N1qlQuery::maxParallelism' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'maxParallelism' => 'int', + ), + 'Couchbase\\N1qlQuery::namedParams' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'params' => 'array', + ), + 'Couchbase\\N1qlQuery::pipelineBatch' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'pipelineBatch' => 'int', + ), + 'Couchbase\\N1qlQuery::pipelineCap' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'pipelineCap' => 'int', + ), + 'Couchbase\\N1qlQuery::positionalParams' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'params' => 'array', + ), + 'Couchbase\\N1qlQuery::profile' => + array ( + 0 => 'mixed', + 'profileType' => 'string', + ), + 'Couchbase\\N1qlQuery::readonly' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'readonly' => 'bool', + ), + 'Couchbase\\N1qlQuery::scanCap' => + array ( + 0 => 'Couchbase\\N1qlQuery', + 'scanCap' => 'int', + ), + 'Couchbase\\NumericRangeSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\NumericRangeSearchFacet::addRange' => + array ( + 0 => 'Couchbase\\NumericRangeSearchFacet', + 'name' => 'string', + 'min' => 'float', + 'max' => 'float', + ), + 'Couchbase\\NumericRangeSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\NumericRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\NumericRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\NumericRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\NumericRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\NumericRangeSearchQuery::max' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'max' => 'float', + 'inclusive=' => 'bool', + ), + 'Couchbase\\NumericRangeSearchQuery::min' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + 'min' => 'float', + 'inclusive=' => 'bool', + ), + 'Couchbase\\PasswordAuthenticator::password' => + array ( + 0 => 'Couchbase\\PasswordAuthenticator', + 'password' => 'string', + ), + 'Couchbase\\PasswordAuthenticator::username' => + array ( + 0 => 'Couchbase\\PasswordAuthenticator', + 'username' => 'string', + ), + 'Couchbase\\PhraseSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\PhraseSearchQuery::boost' => + array ( + 0 => 'Couchbase\\PhraseSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\PhraseSearchQuery::field' => + array ( + 0 => 'Couchbase\\PhraseSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\PhraseSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\PrefixSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\PrefixSearchQuery::boost' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\PrefixSearchQuery::field' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\PrefixSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\QueryStringSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\QueryStringSearchQuery::boost' => + array ( + 0 => 'Couchbase\\QueryStringSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\QueryStringSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\RegexpSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\RegexpSearchQuery::boost' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\RegexpSearchQuery::field' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\RegexpSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\SearchQuery::__construct' => + array ( + 0 => 'void', + 'indexName' => 'string', + 'queryPart' => 'Couchbase\\SearchQueryPart', + ), + 'Couchbase\\SearchQuery::addFacet' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'name' => 'string', + 'facet' => 'Couchbase\\SearchFacet', + ), + 'Couchbase\\SearchQuery::boolean' => + array ( + 0 => 'Couchbase\\BooleanSearchQuery', + ), + 'Couchbase\\SearchQuery::booleanField' => + array ( + 0 => 'Couchbase\\BooleanFieldSearchQuery', + 'value' => 'bool', + ), + 'Couchbase\\SearchQuery::conjuncts' => + array ( + 0 => 'Couchbase\\ConjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\SearchQuery::consistentWith' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'state' => 'Couchbase\\MutationState', + ), + 'Couchbase\\SearchQuery::dateRange' => + array ( + 0 => 'Couchbase\\DateRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::dateRangeFacet' => + array ( + 0 => 'Couchbase\\DateRangeSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::disjuncts' => + array ( + 0 => 'Couchbase\\DisjunctionSearchQuery', + '...queries=' => 'array', + ), + 'Couchbase\\SearchQuery::docId' => + array ( + 0 => 'Couchbase\\DocIdSearchQuery', + '...documentIds=' => 'array', + ), + 'Couchbase\\SearchQuery::explain' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'explain' => 'bool', + ), + 'Couchbase\\SearchQuery::fields' => + array ( + 0 => 'Couchbase\\SearchQuery', + '...fields=' => 'array', + ), + 'Couchbase\\SearchQuery::geoBoundingBox' => + array ( + 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', + 'topLeftLongitude' => 'float', + 'topLeftLatitude' => 'float', + 'bottomRightLongitude' => 'float', + 'bottomRightLatitude' => 'float', + ), + 'Couchbase\\SearchQuery::geoDistance' => + array ( + 0 => 'Couchbase\\GeoDistanceSearchQuery', + 'longitude' => 'float', + 'latitude' => 'float', + 'distance' => 'string', + ), + 'Couchbase\\SearchQuery::highlight' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'style' => 'string', + '...fields=' => 'array', + ), + 'Couchbase\\SearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\SearchQuery::limit' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::match' => + array ( + 0 => 'Couchbase\\MatchSearchQuery', + 'match' => 'string', + ), + 'Couchbase\\SearchQuery::matchAll' => + array ( + 0 => 'Couchbase\\MatchAllSearchQuery', + ), + 'Couchbase\\SearchQuery::matchNone' => + array ( + 0 => 'Couchbase\\MatchNoneSearchQuery', + ), + 'Couchbase\\SearchQuery::matchPhrase' => + array ( + 0 => 'Couchbase\\MatchPhraseSearchQuery', + '...terms=' => 'array', + ), + 'Couchbase\\SearchQuery::numericRange' => + array ( + 0 => 'Couchbase\\NumericRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::numericRangeFacet' => + array ( + 0 => 'Couchbase\\NumericRangeSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::prefix' => + array ( + 0 => 'Couchbase\\PrefixSearchQuery', + 'prefix' => 'string', + ), + 'Couchbase\\SearchQuery::queryString' => + array ( + 0 => 'Couchbase\\QueryStringSearchQuery', + 'queryString' => 'string', + ), + 'Couchbase\\SearchQuery::regexp' => + array ( + 0 => 'Couchbase\\RegexpSearchQuery', + 'regexp' => 'string', + ), + 'Couchbase\\SearchQuery::serverSideTimeout' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'serverSideTimeout' => 'int', + ), + 'Couchbase\\SearchQuery::skip' => + array ( + 0 => 'Couchbase\\SearchQuery', + 'skip' => 'int', + ), + 'Couchbase\\SearchQuery::sort' => + array ( + 0 => 'Couchbase\\SearchQuery', + '...sort=' => 'array', + ), + 'Couchbase\\SearchQuery::term' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'term' => 'string', + ), + 'Couchbase\\SearchQuery::termFacet' => + array ( + 0 => 'Couchbase\\TermSearchFacet', + 'field' => 'string', + 'limit' => 'int', + ), + 'Couchbase\\SearchQuery::termRange' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + ), + 'Couchbase\\SearchQuery::wildcard' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'wildcard' => 'string', + ), + 'Couchbase\\SearchSort::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSort::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSort::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSort::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSort::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortField::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortField::descending' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortField::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortField::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortField::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortField::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortField::missing' => + array ( + 0 => 'mixed', + 'missing' => 'string', + ), + 'Couchbase\\SearchSortField::mode' => + array ( + 0 => 'mixed', + 'mode' => 'string', + ), + 'Couchbase\\SearchSortField::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortField::type' => + array ( + 0 => 'mixed', + 'type' => 'string', + ), + 'Couchbase\\SearchSortGeoDistance::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortGeoDistance::descending' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortGeoDistance::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortGeoDistance::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortGeoDistance::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortGeoDistance::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortGeoDistance::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortGeoDistance::unit' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'unit' => 'string', + ), + 'Couchbase\\SearchSortId::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortId::descending' => + array ( + 0 => 'Couchbase\\SearchSortId', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortId::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortId::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortId::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortId::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortId::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SearchSortScore::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SearchSortScore::descending' => + array ( + 0 => 'Couchbase\\SearchSortScore', + 'descending' => 'bool', + ), + 'Couchbase\\SearchSortScore::field' => + array ( + 0 => 'Couchbase\\SearchSortField', + 'field' => 'string', + ), + 'Couchbase\\SearchSortScore::geoDistance' => + array ( + 0 => 'Couchbase\\SearchSortGeoDistance', + 'field' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + ), + 'Couchbase\\SearchSortScore::id' => + array ( + 0 => 'Couchbase\\SearchSortId', + ), + 'Couchbase\\SearchSortScore::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Couchbase\\SearchSortScore::score' => + array ( + 0 => 'Couchbase\\SearchSortScore', + ), + 'Couchbase\\SpatialViewQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\SpatialViewQuery::bbox' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'bbox' => 'array', + ), + 'Couchbase\\SpatialViewQuery::consistency' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'consistency' => 'int', + ), + 'Couchbase\\SpatialViewQuery::custom' => + array ( + 0 => 'mixed', + 'customParameters' => 'array', + ), + 'Couchbase\\SpatialViewQuery::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\SpatialViewQuery::endRange' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'range' => 'array', + ), + 'Couchbase\\SpatialViewQuery::limit' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'limit' => 'int', + ), + 'Couchbase\\SpatialViewQuery::order' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'order' => 'int', + ), + 'Couchbase\\SpatialViewQuery::skip' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'skip' => 'int', + ), + 'Couchbase\\SpatialViewQuery::startRange' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'range' => 'array', + ), + 'Couchbase\\TermRangeSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermRangeSearchQuery::boost' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\TermRangeSearchQuery::field' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\TermRangeSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermRangeSearchQuery::max' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'max' => 'string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\TermRangeSearchQuery::min' => + array ( + 0 => 'Couchbase\\TermRangeSearchQuery', + 'min' => 'string', + 'inclusive=' => 'bool', + ), + 'Couchbase\\TermSearchFacet::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermSearchFacet::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\TermSearchQuery::boost' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\TermSearchQuery::field' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\TermSearchQuery::fuzziness' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'fuzziness' => 'int', + ), + 'Couchbase\\TermSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\TermSearchQuery::prefixLength' => + array ( + 0 => 'Couchbase\\TermSearchQuery', + 'prefixLength' => 'int', + ), + 'Couchbase\\UserSettings::fullName' => + array ( + 0 => 'Couchbase\\UserSettings', + 'fullName' => 'string', + ), + 'Couchbase\\UserSettings::password' => + array ( + 0 => 'Couchbase\\UserSettings', + 'password' => 'string', + ), + 'Couchbase\\UserSettings::role' => + array ( + 0 => 'Couchbase\\UserSettings', + 'role' => 'string', + 'bucket=' => 'string', + ), + 'Couchbase\\ViewQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\ViewQuery::consistency' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'consistency' => 'int', + ), + 'Couchbase\\ViewQuery::custom' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'customParameters' => 'array', + ), + 'Couchbase\\ViewQuery::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\ViewQuery::from' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'designDocumentName' => 'string', + 'viewName' => 'string', + ), + 'Couchbase\\ViewQuery::fromSpatial' => + array ( + 0 => 'Couchbase\\SpatialViewQuery', + 'designDocumentName' => 'string', + 'viewName' => 'string', + ), + 'Couchbase\\ViewQuery::group' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'group' => 'bool', + ), + 'Couchbase\\ViewQuery::groupLevel' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'groupLevel' => 'int', + ), + 'Couchbase\\ViewQuery::idRange' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'startKeyDocumentId' => 'string', + 'endKeyDocumentId' => 'string', + ), + 'Couchbase\\ViewQuery::key' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'key' => 'mixed', + ), + 'Couchbase\\ViewQuery::keys' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'keys' => 'array', + ), + 'Couchbase\\ViewQuery::limit' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'limit' => 'int', + ), + 'Couchbase\\ViewQuery::order' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'order' => 'int', + ), + 'Couchbase\\ViewQuery::range' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'startKey' => 'mixed', + 'endKey' => 'mixed', + 'inclusiveEnd=' => 'bool', + ), + 'Couchbase\\ViewQuery::reduce' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'reduce' => 'bool', + ), + 'Couchbase\\ViewQuery::skip' => + array ( + 0 => 'Couchbase\\ViewQuery', + 'skip' => 'int', + ), + 'Couchbase\\ViewQueryEncodable::encode' => + array ( + 0 => 'array', + ), + 'Couchbase\\WildcardSearchQuery::__construct' => + array ( + 0 => 'void', + ), + 'Couchbase\\WildcardSearchQuery::boost' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'boost' => 'float', + ), + 'Couchbase\\WildcardSearchQuery::field' => + array ( + 0 => 'Couchbase\\WildcardSearchQuery', + 'field' => 'string', + ), + 'Couchbase\\WildcardSearchQuery::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Couchbase\\basicDecoderV1' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + 'options' => 'array', + ), + 'Couchbase\\basicEncoderV1' => + array ( + 0 => 'array', + 'value' => 'mixed', + 'options' => 'array', + ), + 'Couchbase\\defaultDecoder' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + ), + 'Couchbase\\defaultEncoder' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'Couchbase\\fastlzCompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\fastlzDecompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\passthruDecoder' => + array ( + 0 => 'string', + 'bytes' => 'string', + 'flags' => 'int', + 'datatype' => 'int', + ), + 'Couchbase\\passthruEncoder' => + array ( + 0 => 'array', + 'value' => 'string', + ), + 'Couchbase\\zlibCompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Couchbase\\zlibDecompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'Countable::count' => + array ( + 0 => 'int', + ), + 'DOMAttr::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'DOMAttr::getLineNo' => + array ( + 0 => 'int', + ), + 'DOMAttr::getNodePath' => + array ( + 0 => 'null|string', + ), + 'DOMAttr::hasAttributes' => + array ( + 0 => 'bool', + ), + 'DOMAttr::hasChildNodes' => + array ( + 0 => 'bool', + ), + 'DOMAttr::insertBefore' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child=' => 'DOMNode|null', + ), + 'DOMAttr::isDefaultNamespace' => + array ( + 0 => 'bool', + 'namespace' => 'string', + ), + 'DOMAttr::isId' => + array ( + 0 => 'bool', + ), + 'DOMAttr::isSameNode' => + array ( + 0 => 'bool', + 'otherNode' => 'DOMNode', + ), + 'DOMAttr::isSupported' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMAttr::lookupNamespaceUri' => + array ( + 0 => 'null|string', + 'prefix' => 'null|string', + ), + 'DOMAttr::lookupPrefix' => + array ( + 0 => 'null|string', + 'namespace' => 'string', + ), + 'DOMAttr::normalize' => + array ( + 0 => 'void', + ), + 'DOMAttr::removeChild' => + array ( + 0 => 'DOMNode|false', + 'child' => 'DOMNode', + ), + 'DOMAttr::replaceChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child' => 'DOMNode', + ), + 'DOMCdataSection::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'DOMCharacterData::appendData' => + array ( + 0 => 'true', + 'data' => 'string', + ), + 'DOMCharacterData::deleteData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'count' => 'int', + ), + 'DOMCharacterData::insertData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'data' => 'string', + ), + 'DOMCharacterData::replaceData' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'count' => 'int', + 'data' => 'string', + ), + 'DOMCharacterData::substringData' => + array ( + 0 => 'string', + 'offset' => 'int', + 'count' => 'int', + ), + 'DOMComment::__construct' => + array ( + 0 => 'void', + 'data=' => 'string', + ), + 'DOMDocument::__construct' => + array ( + 0 => 'void', + 'version=' => 'string', + 'encoding=' => 'string', + ), + 'DOMDocument::createAttribute' => + array ( + 0 => 'DOMAttr|false', + 'localName' => 'string', + ), + 'DOMDocument::createAttributeNS' => + array ( + 0 => 'DOMAttr|false', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + ), + 'DOMDocument::createCDATASection' => + array ( + 0 => 'DOMCDATASection|false', + 'data' => 'string', + ), + 'DOMDocument::createComment' => + array ( + 0 => 'DOMComment|false', + 'data' => 'string', + ), + 'DOMDocument::createDocumentFragment' => + array ( + 0 => 'DOMDocumentFragment|false', + ), + 'DOMDocument::createElement' => + array ( + 0 => 'DOMElement|false', + 'localName' => 'string', + 'value=' => 'string', + ), + 'DOMDocument::createElementNS' => + array ( + 0 => 'DOMElement|false', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + 'value=' => 'string', + ), + 'DOMDocument::createEntityReference' => + array ( + 0 => 'DOMEntityReference|false', + 'name' => 'string', + ), + 'DOMDocument::createProcessingInstruction' => + array ( + 0 => 'DOMProcessingInstruction|false', + 'target' => 'string', + 'data=' => 'string', + ), + 'DOMDocument::createTextNode' => + array ( + 0 => 'DOMText|false', + 'data' => 'string', + ), + 'DOMDocument::getElementById' => + array ( + 0 => 'DOMElement|null', + 'elementId' => 'string', + ), + 'DOMDocument::getElementsByTagName' => + array ( + 0 => 'DOMNodeList', + 'qualifiedName' => 'string', + ), + 'DOMDocument::getElementsByTagNameNS' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'string', + 'localName' => 'string', + ), + 'DOMDocument::importNode' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'deep=' => 'bool', + ), + 'DOMDocument::load' => + array ( + 0 => 'DOMDocument|bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::loadHTML' => + array ( + 0 => 'DOMDocument|bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'DOMDocument::loadHTMLFile' => + array ( + 0 => 'DOMDocument|bool', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::loadXML' => + array ( + 0 => 'DOMDocument|bool', + 'source' => 'non-empty-string', + 'options=' => 'int', + ), + 'DOMDocument::normalizeDocument' => + array ( + 0 => 'void', + ), + 'DOMDocument::registerNodeClass' => + array ( + 0 => 'bool', + 'baseClass' => 'string', + 'extendedClass' => 'null|string', + ), + 'DOMDocument::relaxNGValidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'DOMDocument::relaxNGValidateSource' => + array ( + 0 => 'bool', + 'source' => 'string', + ), + 'DOMDocument::save' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'options=' => 'int', + ), + 'DOMDocument::saveHTML' => + array ( + 0 => 'false|string', + 'node=' => 'DOMNode|null', + ), + 'DOMDocument::saveHTMLFile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'DOMDocument::saveXML' => + array ( + 0 => 'false|string', + 'node=' => 'DOMNode|null', + 'options=' => 'int', + ), + 'DOMDocument::schemaValidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'DOMDocument::schemaValidateSource' => + array ( + 0 => 'bool', + 'source' => 'string', + 'flags=' => 'int', + ), + 'DOMDocument::validate' => + array ( + 0 => 'bool', + ), + 'DOMDocument::xinclude' => + array ( + 0 => 'int', + 'options=' => 'int', + ), + 'DOMDocumentFragment::__construct' => + array ( + 0 => 'void', + ), + 'DOMDocumentFragment::appendXML' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'DOMElement::__construct' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'value=' => 'null|string', + 'namespace=' => 'string', + ), + 'DOMElement::getAttribute' => + array ( + 0 => 'string', + 'qualifiedName' => 'string', + ), + 'DOMElement::getAttributeNS' => + array ( + 0 => 'string', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::getAttributeNode' => + array ( + 0 => 'DOMAttr', + 'qualifiedName' => 'string', + ), + 'DOMElement::getAttributeNodeNS' => + array ( + 0 => 'DOMAttr', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::getElementsByTagName' => + array ( + 0 => 'DOMNodeList', + 'qualifiedName' => 'string', + ), + 'DOMElement::getElementsByTagNameNS' => + array ( + 0 => 'DOMNodeList', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::hasAttribute' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'DOMElement::hasAttributeNS' => + array ( + 0 => 'bool', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::removeAttribute' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'DOMElement::removeAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMElement::removeAttributeNode' => + array ( + 0 => 'DOMAttr|false', + 'attr' => 'DOMAttr', + ), + 'DOMElement::setAttribute' => + array ( + 0 => 'DOMAttr|false', + 'qualifiedName' => 'string', + 'value' => 'string', + ), + 'DOMElement::setAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'null|string', + 'qualifiedName' => 'string', + 'value' => 'string', + ), + 'DOMElement::setAttributeNode' => + array ( + 0 => 'DOMAttr|null', + 'attr' => 'DOMAttr', + ), + 'DOMElement::setAttributeNodeNS' => + array ( + 0 => 'DOMAttr', + 'attr' => 'DOMAttr', + ), + 'DOMElement::setIdAttribute' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'isId' => 'bool', + ), + 'DOMElement::setIdAttributeNS' => + array ( + 0 => 'void', + 'namespace' => 'string', + 'qualifiedName' => 'string', + 'isId' => 'bool', + ), + 'DOMElement::setIdAttributeNode' => + array ( + 0 => 'void', + 'attr' => 'DOMAttr', + 'isId' => 'bool', + ), + 'DOMEntityReference::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'DOMImplementation::__construct' => + array ( + 0 => 'void', + ), + 'DOMImplementation::createDocument' => + array ( + 0 => 'DOMDocument|false', + 'namespace=' => 'string', + 'qualifiedName=' => 'string', + 'doctype=' => 'DOMDocumentType', + ), + 'DOMImplementation::createDocumentType' => + array ( + 0 => 'DOMDocumentType|false', + 'qualifiedName' => 'string', + 'publicId=' => 'string', + 'systemId=' => 'string', + ), + 'DOMImplementation::hasFeature' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMNamedNodeMap::count' => + array ( + 0 => 'int', + ), + 'DOMNamedNodeMap::getNamedItem' => + array ( + 0 => 'DOMNode|null', + 'qualifiedName' => 'string', + ), + 'DOMNamedNodeMap::getNamedItemNS' => + array ( + 0 => 'DOMNode|null', + 'namespace' => 'null|string', + 'localName' => 'string', + ), + 'DOMNamedNodeMap::item' => + array ( + 0 => 'DOMNode|null', + 'index' => 'int', + ), + 'DOMNode::C14N' => + array ( + 0 => 'false|string', + 'exclusive=' => 'bool', + 'withComments=' => 'bool', + 'xpath=' => 'array|null', + 'nsPrefixes=' => 'array|null', + ), + 'DOMNode::C14NFile' => + array ( + 0 => 'false|int', + 'uri' => 'string', + 'exclusive=' => 'bool', + 'withComments=' => 'bool', + 'xpath=' => 'array|null', + 'nsPrefixes=' => 'array|null', + ), + 'DOMNode::appendChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + ), + 'DOMNode::cloneNode' => + array ( + 0 => 'DOMNode', + 'deep=' => 'bool', + ), + 'DOMNode::getLineNo' => + array ( + 0 => 'int', + ), + 'DOMNode::getNodePath' => + array ( + 0 => 'null|string', + ), + 'DOMNode::hasAttributes' => + array ( + 0 => 'bool', + ), + 'DOMNode::hasChildNodes' => + array ( + 0 => 'bool', + ), + 'DOMNode::insertBefore' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child=' => 'DOMNode|null', + ), + 'DOMNode::isDefaultNamespace' => + array ( + 0 => 'bool', + 'namespace' => 'string', + ), + 'DOMNode::isSameNode' => + array ( + 0 => 'bool', + 'otherNode' => 'DOMNode', + ), + 'DOMNode::isSupported' => + array ( + 0 => 'bool', + 'feature' => 'string', + 'version' => 'string', + ), + 'DOMNode::lookupNamespaceURI' => + array ( + 0 => 'null|string', + 'prefix' => 'null|string', + ), + 'DOMNode::lookupPrefix' => + array ( + 0 => 'null|string', + 'namespace' => 'string', + ), + 'DOMNode::normalize' => + array ( + 0 => 'void', + ), + 'DOMNode::removeChild' => + array ( + 0 => 'DOMNode|false', + 'child' => 'DOMNode', + ), + 'DOMNode::replaceChild' => + array ( + 0 => 'DOMNode|false', + 'node' => 'DOMNode', + 'child' => 'DOMNode', + ), + 'DOMNodeList::item' => + array ( + 0 => 'DOMNode|null', + 'index' => 'int', + ), + 'DOMProcessingInstruction::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'DOMText::__construct' => + array ( + 0 => 'void', + 'data=' => 'string', + ), + 'DOMText::isElementContentWhitespace' => + array ( + 0 => 'bool', + ), + 'DOMText::isWhitespaceInElementContent' => + array ( + 0 => 'bool', + ), + 'DOMText::splitText' => + array ( + 0 => 'DOMText', + 'offset' => 'int', + ), + 'DOMXPath::__construct' => + array ( + 0 => 'void', + 'document' => 'DOMDocument', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::evaluate' => + array ( + 0 => 'mixed', + 'expression' => 'string', + 'contextNode=' => 'DOMNode|null', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::query' => + array ( + 0 => 'DOMNodeList|false', + 'expression' => 'string', + 'contextNode=' => 'DOMNode|null', + 'registerNodeNS=' => 'bool', + ), + 'DOMXPath::registerNamespace' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'DOMXPath::registerPhpFunctions' => + array ( + 0 => 'void', + 'restrict=' => 'array|null|string', + ), + 'DOTNET::__call' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'args' => 'mixed', + ), + 'DOTNET::__construct' => + array ( + 0 => 'void', + 'assembly_name' => 'string', + 'datatype_name' => 'string', + 'codepage=' => 'int', + ), + 'DOTNET::__get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'DOTNET::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'DateInterval::__construct' => + array ( + 0 => 'void', + 'duration' => 'string', + ), + 'DateInterval::__set_state' => + array ( + 0 => 'DateInterval', + 'array' => 'array', + ), + 'DateInterval::__wakeup' => + array ( + 0 => 'void', + ), + 'DateInterval::createFromDateString' => + array ( + 0 => 'DateInterval|false', + 'datetime' => 'string', + ), + 'DateInterval::format' => + array ( + 0 => 'string', + 'format' => 'string', + ), + 'DatePeriod::__construct' => + array ( + 0 => 'void', + 'start' => 'DateTimeInterface', + 'interval' => 'DateInterval', + 'recur' => 'int', + 'options=' => 'int', + ), + 'DatePeriod::__construct\'1' => + array ( + 0 => 'void', + 'start' => 'DateTimeInterface', + 'interval' => 'DateInterval', + 'end' => 'DateTimeInterface', + 'options=' => 'int', + ), + 'DatePeriod::__construct\'2' => + array ( + 0 => 'void', + 'iso' => 'string', + 'options=' => 'int', + ), + 'DatePeriod::__wakeup' => + array ( + 0 => 'void', + ), + 'DatePeriod::getDateInterval' => + array ( + 0 => 'DateInterval', + ), + 'DatePeriod::getEndDate' => + array ( + 0 => 'DateTimeInterface|null', + ), + 'DatePeriod::getStartDate' => + array ( + 0 => 'DateTimeInterface', + ), + 'DateTime::__construct' => + array ( + 0 => 'void', + 'time=' => 'string', + ), + 'DateTime::__construct\'1' => + array ( + 0 => 'void', + 'time' => 'null|string', + 'timezone' => 'DateTimeZone|null', + ), + 'DateTime::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTime::add' => + array ( + 0 => 'static', + 'interval' => 'DateInterval', + ), + 'DateTime::createFromFormat' => + array ( + 0 => 'false|static', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'DateTime::diff' => + array ( + 0 => 'DateInterval', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'DateTime::format' => + array ( + 0 => 'false|string', + 'format' => 'string', + ), + 'DateTime::getLastErrors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'DateTime::getOffset' => + array ( + 0 => 'int', + ), + 'DateTime::getTimestamp' => + array ( + 0 => 'false|int', + ), + 'DateTime::getTimezone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'DateTime::modify' => + array ( + 0 => 'false|static', + 'modifier' => 'string', + ), + 'DateTime::setDate' => + array ( + 0 => 'static', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + 'DateTime::setISODate' => + array ( + 0 => 'static', + 'year' => 'int', + 'week' => 'int', + 'dayOfWeek=' => 'int', + ), + 'DateTime::setTime' => + array ( + 0 => 'static', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', + ), + 'DateTime::setTimestamp' => + array ( + 0 => 'static', + 'timestamp' => 'int', + ), + 'DateTime::setTimezone' => + array ( + 0 => 'static', + 'timezone' => 'DateTimeZone', + ), + 'DateTime::sub' => + array ( + 0 => 'static', + 'interval' => 'DateInterval', + ), + 'DateTimeImmutable::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTimeImmutable::getLastErrors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'DateTimeInterface::diff' => + array ( + 0 => 'DateInterval', + 'datetime2' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'DateTimeInterface::format' => + array ( + 0 => 'string', + 'format' => 'string', + ), + 'DateTimeInterface::getOffset' => + array ( + 0 => 'int', + ), + 'DateTimeInterface::getTimestamp' => + array ( + 0 => 'false|int', + ), + 'DateTimeInterface::getTimezone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'DateTimeZone::__construct' => + array ( + 0 => 'void', + 'timezone' => 'non-empty-string', + ), + 'DateTimeZone::__set_state' => + array ( + 0 => 'DateTimeZone', + 'array' => 'array', + ), + 'DateTimeZone::__wakeup' => + array ( + 0 => 'void', + ), + 'DateTimeZone::getLocation' => + array ( + 0 => 'array|false', + ), + 'DateTimeZone::getName' => + array ( + 0 => 'non-empty-string', + ), + 'DateTimeZone::getOffset' => + array ( + 0 => 'false|int', + 'datetime' => 'DateTimeInterface', + ), + 'DateTimeZone::getTransitions' => + array ( + 0 => 'false|list', + 'timestampBegin=' => 'int', + 'timestampEnd=' => 'int', + ), + 'DateTimeZone::listAbbreviations' => + array ( + 0 => 'array>', + ), + 'DateTimeZone::listIdentifiers' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'string', + ), + 'Directory::close' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'Directory::read' => + array ( + 0 => 'false|string', + 'dir_handle=' => 'resource', + ), + 'Directory::rewind' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'DirectoryIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'DirectoryIterator::__toString' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::current' => + array ( + 0 => 'DirectoryIterator', + ), + 'DirectoryIterator::getATime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'DirectoryIterator::getCTime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getExtension' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'DirectoryIterator::getFilename' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getGroup' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getInode' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getMTime' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getOwner' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getPath' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'DirectoryIterator::getPathname' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::getPerms' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'DirectoryIterator::getSize' => + array ( + 0 => 'int', + ), + 'DirectoryIterator::getType' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::isDir' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isDot' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isFile' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isLink' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'DirectoryIterator::key' => + array ( + 0 => 'string', + ), + 'DirectoryIterator::next' => + array ( + 0 => 'void', + ), + 'DirectoryIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'DirectoryIterator::rewind' => + array ( + 0 => 'void', + ), + 'DirectoryIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'DirectoryIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'DirectoryIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'DirectoryIterator::valid' => + array ( + 0 => 'bool', + ), + 'DomAttribute::name' => + array ( + 0 => 'string', + ), + 'DomAttribute::set_value' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'DomAttribute::specified' => + array ( + 0 => 'bool', + ), + 'DomAttribute::value' => + array ( + 0 => 'string', + ), + 'DomXsltStylesheet::process' => + array ( + 0 => 'DomDocument', + 'xml_doc' => 'DOMDocument', + 'xslt_params=' => 'array', + 'is_xpath_param=' => 'bool', + 'profile_filename=' => 'string', + ), + 'DomXsltStylesheet::result_dump_file' => + array ( + 0 => 'string', + 'xmldoc' => 'DOMDocument', + 'filename' => 'string', + ), + 'DomXsltStylesheet::result_dump_mem' => + array ( + 0 => 'string', + 'xmldoc' => 'DOMDocument', + ), + 'DomainException::__clone' => + array ( + 0 => 'void', + ), + 'DomainException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'DomainException::__toString' => + array ( + 0 => 'string', + ), + 'DomainException::__wakeup' => + array ( + 0 => 'void', + ), + 'DomainException::getCode' => + array ( + 0 => 'int', + ), + 'DomainException::getFile' => + array ( + 0 => 'string', + ), + 'DomainException::getLine' => + array ( + 0 => 'int', + ), + 'DomainException::getMessage' => + array ( + 0 => 'string', + ), + 'DomainException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'DomainException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'DomainException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Ds\\Collection::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Collection::copy' => + array ( + 0 => 'Ds\\Collection', + ), + 'Ds\\Collection::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Collection::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Deque::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Deque::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Deque::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Deque::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Deque::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Deque::copy' => + array ( + 0 => 'Ds\\Deque', + ), + 'Ds\\Deque::count' => + array ( + 0 => 'int', + ), + 'Ds\\Deque::filter' => + array ( + 0 => 'Ds\\Deque', + 'callback=' => 'callable', + ), + 'Ds\\Deque::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Deque::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::get' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'Ds\\Deque::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Deque::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Deque::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Deque::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::map' => + array ( + 0 => 'Ds\\Deque', + 'callback' => 'callable', + ), + 'Ds\\Deque::merge' => + array ( + 0 => 'Ds\\Deque', + 'values' => 'mixed', + ), + 'Ds\\Deque::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Deque::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Deque::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Deque::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Deque::reversed' => + array ( + 0 => 'Ds\\Deque', + ), + 'Ds\\Deque::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Deque::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Deque::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Deque::slice' => + array ( + 0 => 'Ds\\Deque', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Deque::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Deque::sorted' => + array ( + 0 => 'Ds\\Deque', + 'comparator=' => 'callable', + ), + 'Ds\\Deque::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Deque::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Deque::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Hashable::equals' => + array ( + 0 => 'bool', + 'object' => 'mixed', + ), + 'Ds\\Hashable::hash' => + array ( + 0 => 'mixed', + ), + 'Ds\\Map::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Map::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Map::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Map::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Map::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Map::copy' => + array ( + 0 => 'Ds\\Map', + ), + 'Ds\\Map::count' => + array ( + 0 => 'int', + ), + 'Ds\\Map::diff' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::filter' => + array ( + 0 => 'Ds\\Map', + 'callback=' => 'callable', + ), + 'Ds\\Map::first' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Map::get' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'default=' => 'mixed', + ), + 'Ds\\Map::hasKey' => + array ( + 0 => 'bool', + 'key' => 'mixed', + ), + 'Ds\\Map::hasValue' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'Ds\\Map::intersect' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Map::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Map::keys' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Map::ksort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Map::ksorted' => + array ( + 0 => 'Ds\\Map', + 'comparator=' => 'callable', + ), + 'Ds\\Map::last' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Map::map' => + array ( + 0 => 'Ds\\Map', + 'callback' => 'callable', + ), + 'Ds\\Map::merge' => + array ( + 0 => 'Ds\\Map', + 'values' => 'mixed', + ), + 'Ds\\Map::pairs' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Map::put' => + array ( + 0 => 'void', + 'key' => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Map::putAll' => + array ( + 0 => 'void', + 'values' => 'mixed', + ), + 'Ds\\Map::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Map::remove' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'default=' => 'mixed', + ), + 'Ds\\Map::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Map::reversed' => + array ( + 0 => 'Ds\\Map', + ), + 'Ds\\Map::skip' => + array ( + 0 => 'Ds\\Pair', + 'position' => 'int', + ), + 'Ds\\Map::slice' => + array ( + 0 => 'Ds\\Map', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Map::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Map::sorted' => + array ( + 0 => 'Ds\\Map', + 'comparator=' => 'callable', + ), + 'Ds\\Map::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Map::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Map::union' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Map::values' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Map::xor' => + array ( + 0 => 'Ds\\Map', + 'map' => 'Ds\\Map', + ), + 'Ds\\Pair::__construct' => + array ( + 0 => 'void', + 'key=' => 'mixed', + 'value=' => 'mixed', + ), + 'Ds\\Pair::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Pair::copy' => + array ( + 0 => 'Ds\\Pair', + ), + 'Ds\\Pair::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Pair::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Pair::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\PriorityQueue::__construct' => + array ( + 0 => 'void', + ), + 'Ds\\PriorityQueue::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\PriorityQueue::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\PriorityQueue::clear' => + array ( + 0 => 'void', + ), + 'Ds\\PriorityQueue::copy' => + array ( + 0 => 'Ds\\PriorityQueue', + ), + 'Ds\\PriorityQueue::count' => + array ( + 0 => 'int', + ), + 'Ds\\PriorityQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\PriorityQueue::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\PriorityQueue::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\PriorityQueue::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\PriorityQueue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'priority' => 'int', + ), + 'Ds\\PriorityQueue::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Queue::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Queue::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Queue::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Queue::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Queue::copy' => + array ( + 0 => 'Ds\\Queue', + ), + 'Ds\\Queue::count' => + array ( + 0 => 'int', + ), + 'Ds\\Queue::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Queue::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Queue::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\Queue::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Queue::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Queue::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Sequence::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Sequence::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Sequence::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Sequence::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::filter' => + array ( + 0 => 'Ds\\Sequence', + 'callback=' => 'callable', + ), + 'Ds\\Sequence::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Sequence::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Sequence::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Sequence::last' => + array ( + 0 => 'void', + ), + 'Ds\\Sequence::map' => + array ( + 0 => 'Ds\\Sequence', + 'callback' => 'callable', + ), + 'Ds\\Sequence::merge' => + array ( + 0 => 'Ds\\Sequence', + 'values' => 'mixed', + ), + 'Ds\\Sequence::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Sequence::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Sequence::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Sequence::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Sequence::reversed' => + array ( + 0 => 'Ds\\Sequence', + ), + 'Ds\\Sequence::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Sequence::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Sequence::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Sequence::slice' => + array ( + 0 => 'Ds\\Sequence', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Sequence::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Sequence::sorted' => + array ( + 0 => 'Ds\\Sequence', + 'comparator=' => 'callable', + ), + 'Ds\\Sequence::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Sequence::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Set::add' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Set::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Set::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Set::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Set::copy' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Set::count' => + array ( + 0 => 'int', + ), + 'Ds\\Set::diff' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::filter' => + array ( + 0 => 'Ds\\Set', + 'callback=' => 'callable', + ), + 'Ds\\Set::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Set::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Set::intersect' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Set::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Set::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Set::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Set::merge' => + array ( + 0 => 'Ds\\Set', + 'values' => 'mixed', + ), + 'Ds\\Set::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Set::remove' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Set::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Set::reversed' => + array ( + 0 => 'Ds\\Set', + ), + 'Ds\\Set::slice' => + array ( + 0 => 'Ds\\Set', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Set::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Set::sorted' => + array ( + 0 => 'Ds\\Set', + 'comparator=' => 'callable', + ), + 'Ds\\Set::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Set::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Set::union' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Set::xor' => + array ( + 0 => 'Ds\\Set', + 'set' => 'Ds\\Set', + ), + 'Ds\\Stack::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Stack::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Stack::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Stack::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Stack::copy' => + array ( + 0 => 'Ds\\Stack', + ), + 'Ds\\Stack::count' => + array ( + 0 => 'int', + ), + 'Ds\\Stack::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Stack::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Stack::peek' => + array ( + 0 => 'mixed', + ), + 'Ds\\Stack::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Stack::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Stack::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::__construct' => + array ( + 0 => 'void', + 'values=' => 'mixed', + ), + 'Ds\\Vector::allocate' => + array ( + 0 => 'void', + 'capacity' => 'int', + ), + 'Ds\\Vector::apply' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Ds\\Vector::capacity' => + array ( + 0 => 'int', + ), + 'Ds\\Vector::clear' => + array ( + 0 => 'void', + ), + 'Ds\\Vector::contains' => + array ( + 0 => 'bool', + '...values=' => 'mixed', + ), + 'Ds\\Vector::copy' => + array ( + 0 => 'Ds\\Vector', + ), + 'Ds\\Vector::count' => + array ( + 0 => 'int', + ), + 'Ds\\Vector::filter' => + array ( + 0 => 'Ds\\Vector', + 'callback=' => 'callable', + ), + 'Ds\\Vector::find' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Ds\\Vector::first' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Vector::insert' => + array ( + 0 => 'void', + 'index' => 'int', + '...values=' => 'mixed', + ), + 'Ds\\Vector::isEmpty' => + array ( + 0 => 'bool', + ), + 'Ds\\Vector::join' => + array ( + 0 => 'string', + 'glue=' => 'string', + ), + 'Ds\\Vector::jsonSerialize' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::last' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::map' => + array ( + 0 => 'Ds\\Vector', + 'callback' => 'callable', + ), + 'Ds\\Vector::merge' => + array ( + 0 => 'Ds\\Vector', + 'values' => 'mixed', + ), + 'Ds\\Vector::pop' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::push' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'Ds\\Vector::reduce' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'initial=' => 'mixed', + ), + 'Ds\\Vector::remove' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'Ds\\Vector::reverse' => + array ( + 0 => 'void', + ), + 'Ds\\Vector::reversed' => + array ( + 0 => 'Ds\\Vector', + ), + 'Ds\\Vector::rotate' => + array ( + 0 => 'void', + 'rotations' => 'int', + ), + 'Ds\\Vector::set' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'Ds\\Vector::shift' => + array ( + 0 => 'mixed', + ), + 'Ds\\Vector::slice' => + array ( + 0 => 'Ds\\Vector', + 'index' => 'int', + 'length=' => 'int|null', + ), + 'Ds\\Vector::sort' => + array ( + 0 => 'void', + 'comparator=' => 'callable', + ), + 'Ds\\Vector::sorted' => + array ( + 0 => 'Ds\\Vector', + 'comparator=' => 'callable', + ), + 'Ds\\Vector::sum' => + array ( + 0 => 'float|int', + ), + 'Ds\\Vector::toArray' => + array ( + 0 => 'array', + ), + 'Ds\\Vector::unshift' => + array ( + 0 => 'void', + '...values=' => 'mixed', + ), + 'EmptyIterator::current' => + array ( + 0 => 'never', + ), + 'EmptyIterator::key' => + array ( + 0 => 'never', + ), + 'EmptyIterator::next' => + array ( + 0 => 'void', + ), + 'EmptyIterator::rewind' => + array ( + 0 => 'void', + ), + 'EmptyIterator::valid' => + array ( + 0 => 'false', + ), + 'Error::__clone' => + array ( + 0 => 'void', + ), + 'Error::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'Error::__toString' => + array ( + 0 => 'string', + ), + 'Error::getCode' => + array ( + 0 => 'int', + ), + 'Error::getFile' => + array ( + 0 => 'string', + ), + 'Error::getLine' => + array ( + 0 => 'int', + ), + 'Error::getMessage' => + array ( + 0 => 'string', + ), + 'Error::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Error::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Error::getTraceAsString' => + array ( + 0 => 'string', + ), + 'ErrorException::__clone' => + array ( + 0 => 'void', + ), + 'ErrorException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'severity=' => 'int', + 'filename=' => 'string', + 'line=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ErrorException::__toString' => + array ( + 0 => 'string', + ), + 'ErrorException::getCode' => + array ( + 0 => 'int', + ), + 'ErrorException::getFile' => + array ( + 0 => 'string', + ), + 'ErrorException::getLine' => + array ( + 0 => 'int', + ), + 'ErrorException::getMessage' => + array ( + 0 => 'string', + ), + 'ErrorException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ErrorException::getSeverity' => + array ( + 0 => 'int', + ), + 'ErrorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ErrorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Ev::backend' => + array ( + 0 => 'int', + ), + 'Ev::depth' => + array ( + 0 => 'int', + ), + 'Ev::embeddableBackends' => + array ( + 0 => 'int', + ), + 'Ev::feedSignal' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'Ev::feedSignalEvent' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'Ev::iteration' => + array ( + 0 => 'int', + ), + 'Ev::now' => + array ( + 0 => 'float', + ), + 'Ev::nowUpdate' => + array ( + 0 => 'void', + ), + 'Ev::recommendedBackends' => + array ( + 0 => 'int', + ), + 'Ev::resume' => + array ( + 0 => 'void', + ), + 'Ev::run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'Ev::sleep' => + array ( + 0 => 'void', + 'seconds' => 'float', + ), + 'Ev::stop' => + array ( + 0 => 'void', + 'how=' => 'int', + ), + 'Ev::supportedBackends' => + array ( + 0 => 'int', + ), + 'Ev::suspend' => + array ( + 0 => 'void', + ), + 'Ev::time' => + array ( + 0 => 'float', + ), + 'Ev::verify' => + array ( + 0 => 'void', + ), + 'EvCheck::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvCheck::clear' => + array ( + 0 => 'int', + ), + 'EvCheck::createStopped' => + array ( + 0 => 'EvCheck', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvCheck::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvCheck::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvCheck::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvCheck::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvCheck::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvCheck::start' => + array ( + 0 => 'void', + ), + 'EvCheck::stop' => + array ( + 0 => 'void', + ), + 'EvChild::__construct' => + array ( + 0 => 'void', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvChild::clear' => + array ( + 0 => 'int', + ), + 'EvChild::createStopped' => + array ( + 0 => 'EvChild', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvChild::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvChild::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvChild::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvChild::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvChild::set' => + array ( + 0 => 'void', + 'pid' => 'int', + 'trace' => 'bool', + ), + 'EvChild::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvChild::start' => + array ( + 0 => 'void', + ), + 'EvChild::stop' => + array ( + 0 => 'void', + ), + 'EvEmbed::__construct' => + array ( + 0 => 'void', + 'other' => 'object', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvEmbed::clear' => + array ( + 0 => 'int', + ), + 'EvEmbed::createStopped' => + array ( + 0 => 'EvEmbed', + 'other' => 'object', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvEmbed::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvEmbed::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvEmbed::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvEmbed::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvEmbed::set' => + array ( + 0 => 'void', + 'other' => 'object', + ), + 'EvEmbed::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvEmbed::start' => + array ( + 0 => 'void', + ), + 'EvEmbed::stop' => + array ( + 0 => 'void', + ), + 'EvEmbed::sweep' => + array ( + 0 => 'void', + ), + 'EvFork::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvFork::clear' => + array ( + 0 => 'int', + ), + 'EvFork::createStopped' => + array ( + 0 => 'EvFork', + 'callback' => 'callable', + 'data=' => 'string', + 'priority=' => 'string', + ), + 'EvFork::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvFork::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvFork::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvFork::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvFork::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvFork::start' => + array ( + 0 => 'void', + ), + 'EvFork::stop' => + array ( + 0 => 'void', + ), + 'EvIdle::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIdle::clear' => + array ( + 0 => 'int', + ), + 'EvIdle::createStopped' => + array ( + 0 => 'EvIdle', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIdle::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIdle::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvIdle::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIdle::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvIdle::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvIdle::start' => + array ( + 0 => 'void', + ), + 'EvIdle::stop' => + array ( + 0 => 'void', + ), + 'EvIo::__construct' => + array ( + 0 => 'void', + 'fd' => 'mixed', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIo::clear' => + array ( + 0 => 'int', + ), + 'EvIo::createStopped' => + array ( + 0 => 'EvIo', + 'fd' => 'resource', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvIo::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIo::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvIo::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvIo::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvIo::set' => + array ( + 0 => 'void', + 'fd' => 'resource', + 'events' => 'int', + ), + 'EvIo::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvIo::start' => + array ( + 0 => 'void', + ), + 'EvIo::stop' => + array ( + 0 => 'void', + ), + 'EvLoop::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'data=' => 'mixed', + 'io_interval=' => 'float', + 'timeout_interval=' => 'float', + ), + 'EvLoop::backend' => + array ( + 0 => 'int', + ), + 'EvLoop::check' => + array ( + 0 => 'EvCheck', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::child' => + array ( + 0 => 'EvChild', + 'pid' => 'int', + 'trace' => 'bool', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::defaultLoop' => + array ( + 0 => 'EvLoop', + 'flags=' => 'int', + 'data=' => 'mixed', + 'io_interval=' => 'float', + 'timeout_interval=' => 'float', + ), + 'EvLoop::embed' => + array ( + 0 => 'EvEmbed', + 'other' => 'EvLoop', + 'callback=' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::fork' => + array ( + 0 => 'EvFork', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::idle' => + array ( + 0 => 'EvIdle', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::invokePending' => + array ( + 0 => 'void', + ), + 'EvLoop::io' => + array ( + 0 => 'EvIo', + 'fd' => 'resource', + 'events' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::loopFork' => + array ( + 0 => 'void', + ), + 'EvLoop::now' => + array ( + 0 => 'float', + ), + 'EvLoop::nowUpdate' => + array ( + 0 => 'void', + ), + 'EvLoop::periodic' => + array ( + 0 => 'EvPeriodic', + 'offset' => 'float', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::prepare' => + array ( + 0 => 'EvPrepare', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::resume' => + array ( + 0 => 'void', + ), + 'EvLoop::run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'EvLoop::signal' => + array ( + 0 => 'EvSignal', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::stat' => + array ( + 0 => 'EvStat', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::stop' => + array ( + 0 => 'void', + 'how=' => 'int', + ), + 'EvLoop::suspend' => + array ( + 0 => 'void', + ), + 'EvLoop::timer' => + array ( + 0 => 'EvTimer', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvLoop::verify' => + array ( + 0 => 'void', + ), + 'EvPeriodic::__construct' => + array ( + 0 => 'void', + 'offset' => 'float', + 'interval' => 'string', + 'reschedule_cb' => 'callable', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPeriodic::again' => + array ( + 0 => 'void', + ), + 'EvPeriodic::at' => + array ( + 0 => 'float', + ), + 'EvPeriodic::clear' => + array ( + 0 => 'int', + ), + 'EvPeriodic::createStopped' => + array ( + 0 => 'EvPeriodic', + 'offset' => 'float', + 'interval' => 'float', + 'reschedule_cb' => 'callable', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPeriodic::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPeriodic::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvPeriodic::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPeriodic::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvPeriodic::set' => + array ( + 0 => 'void', + 'offset' => 'float', + 'interval' => 'float', + ), + 'EvPeriodic::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvPeriodic::start' => + array ( + 0 => 'void', + ), + 'EvPeriodic::stop' => + array ( + 0 => 'void', + ), + 'EvPrepare::__construct' => + array ( + 0 => 'void', + 'callback' => 'string', + 'data=' => 'string', + 'priority=' => 'string', + ), + 'EvPrepare::clear' => + array ( + 0 => 'int', + ), + 'EvPrepare::createStopped' => + array ( + 0 => 'EvPrepare', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvPrepare::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPrepare::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvPrepare::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvPrepare::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvPrepare::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvPrepare::start' => + array ( + 0 => 'void', + ), + 'EvPrepare::stop' => + array ( + 0 => 'void', + ), + 'EvSignal::__construct' => + array ( + 0 => 'void', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvSignal::clear' => + array ( + 0 => 'int', + ), + 'EvSignal::createStopped' => + array ( + 0 => 'EvSignal', + 'signum' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvSignal::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvSignal::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvSignal::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvSignal::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvSignal::set' => + array ( + 0 => 'void', + 'signum' => 'int', + ), + 'EvSignal::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvSignal::start' => + array ( + 0 => 'void', + ), + 'EvSignal::stop' => + array ( + 0 => 'void', + ), + 'EvStat::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvStat::attr' => + array ( + 0 => 'array', + ), + 'EvStat::clear' => + array ( + 0 => 'int', + ), + 'EvStat::createStopped' => + array ( + 0 => 'EvStat', + 'path' => 'string', + 'interval' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvStat::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvStat::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvStat::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvStat::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvStat::prev' => + array ( + 0 => 'array', + ), + 'EvStat::set' => + array ( + 0 => 'void', + 'path' => 'string', + 'interval' => 'float', + ), + 'EvStat::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvStat::start' => + array ( + 0 => 'void', + ), + 'EvStat::stat' => + array ( + 0 => 'bool', + ), + 'EvStat::stop' => + array ( + 0 => 'void', + ), + 'EvTimer::__construct' => + array ( + 0 => 'void', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvTimer::again' => + array ( + 0 => 'void', + ), + 'EvTimer::clear' => + array ( + 0 => 'int', + ), + 'EvTimer::createStopped' => + array ( + 0 => 'EvTimer', + 'after' => 'float', + 'repeat' => 'float', + 'callback' => 'callable', + 'data=' => 'mixed', + 'priority=' => 'int', + ), + 'EvTimer::feed' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvTimer::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvTimer::invoke' => + array ( + 0 => 'void', + 'events' => 'int', + ), + 'EvTimer::keepAlive' => + array ( + 0 => 'void', + 'value' => 'bool', + ), + 'EvTimer::set' => + array ( + 0 => 'void', + 'after' => 'float', + 'repeat' => 'float', + ), + 'EvTimer::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvTimer::start' => + array ( + 0 => 'void', + ), + 'EvTimer::stop' => + array ( + 0 => 'void', + ), + 'EvWatcher::__construct' => + array ( + 0 => 'void', + ), + 'EvWatcher::clear' => + array ( + 0 => 'int', + ), + 'EvWatcher::feed' => + array ( + 0 => 'void', + 'revents' => 'int', + ), + 'EvWatcher::getLoop' => + array ( + 0 => 'EvLoop', + ), + 'EvWatcher::invoke' => + array ( + 0 => 'void', + 'revents' => 'int', + ), + 'EvWatcher::keepalive' => + array ( + 0 => 'bool', + 'value=' => 'bool', + ), + 'EvWatcher::setCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'EvWatcher::start' => + array ( + 0 => 'void', + ), + 'EvWatcher::stop' => + array ( + 0 => 'void', + ), + 'Event::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'fd' => 'mixed', + 'what' => 'int', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::add' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::addSignal' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::addTimer' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'Event::del' => + array ( + 0 => 'bool', + ), + 'Event::delSignal' => + array ( + 0 => 'bool', + ), + 'Event::delTimer' => + array ( + 0 => 'bool', + ), + 'Event::free' => + array ( + 0 => 'void', + ), + 'Event::getSupportedMethods' => + array ( + 0 => 'array', + ), + 'Event::pending' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'Event::set' => + array ( + 0 => 'bool', + 'base' => 'EventBase', + 'fd' => 'mixed', + 'what=' => 'int', + 'cb=' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::setPriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'Event::setTimer' => + array ( + 0 => 'bool', + 'base' => 'EventBase', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::signal' => + array ( + 0 => 'Event', + 'base' => 'EventBase', + 'signum' => 'int', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'Event::timer' => + array ( + 0 => 'Event', + 'base' => 'EventBase', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'EventBase::__construct' => + array ( + 0 => 'void', + 'cfg=' => 'EventConfig', + ), + 'EventBase::dispatch' => + array ( + 0 => 'void', + ), + 'EventBase::exit' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'EventBase::free' => + array ( + 0 => 'void', + ), + 'EventBase::getFeatures' => + array ( + 0 => 'int', + ), + 'EventBase::getMethod' => + array ( + 0 => 'string', + 'cfg=' => 'EventConfig', + ), + 'EventBase::getTimeOfDayCached' => + array ( + 0 => 'float', + ), + 'EventBase::gotExit' => + array ( + 0 => 'bool', + ), + 'EventBase::gotStop' => + array ( + 0 => 'bool', + ), + 'EventBase::loop' => + array ( + 0 => 'bool', + 'flags=' => 'int', + ), + 'EventBase::priorityInit' => + array ( + 0 => 'bool', + 'n_priorities' => 'int', + ), + 'EventBase::reInit' => + array ( + 0 => 'bool', + ), + 'EventBase::stop' => + array ( + 0 => 'bool', + ), + 'EventBuffer::__construct' => + array ( + 0 => 'void', + ), + 'EventBuffer::add' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBuffer::addBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBuffer::appendFrom' => + array ( + 0 => 'int', + 'buf' => 'EventBuffer', + 'length' => 'int', + ), + 'EventBuffer::copyout' => + array ( + 0 => 'int', + '&w_data' => 'string', + 'max_bytes' => 'int', + ), + 'EventBuffer::drain' => + array ( + 0 => 'bool', + 'length' => 'int', + ), + 'EventBuffer::enableLocking' => + array ( + 0 => 'void', + ), + 'EventBuffer::expand' => + array ( + 0 => 'bool', + 'length' => 'int', + ), + 'EventBuffer::freeze' => + array ( + 0 => 'bool', + 'at_front' => 'bool', + ), + 'EventBuffer::lock' => + array ( + 0 => 'void', + ), + 'EventBuffer::prepend' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBuffer::prependBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBuffer::pullup' => + array ( + 0 => 'string', + 'size' => 'int', + ), + 'EventBuffer::read' => + array ( + 0 => 'string', + 'max_bytes' => 'int', + ), + 'EventBuffer::readFrom' => + array ( + 0 => 'int', + 'fd' => 'mixed', + 'howmuch' => 'int', + ), + 'EventBuffer::readLine' => + array ( + 0 => 'string', + 'eol_style' => 'int', + ), + 'EventBuffer::search' => + array ( + 0 => 'mixed', + 'what' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'EventBuffer::searchEol' => + array ( + 0 => 'mixed', + 'start=' => 'int', + 'eol_style=' => 'int', + ), + 'EventBuffer::substr' => + array ( + 0 => 'string', + 'start' => 'int', + 'length=' => 'int', + ), + 'EventBuffer::unfreeze' => + array ( + 0 => 'bool', + 'at_front' => 'bool', + ), + 'EventBuffer::unlock' => + array ( + 0 => 'bool', + ), + 'EventBuffer::write' => + array ( + 0 => 'int', + 'fd' => 'mixed', + 'howmuch=' => 'int', + ), + 'EventBufferEvent::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'socket=' => 'mixed', + 'options=' => 'int', + 'readcb=' => 'callable', + 'writecb=' => 'callable', + 'eventcb=' => 'callable', + ), + 'EventBufferEvent::close' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::connect' => + array ( + 0 => 'bool', + 'addr' => 'string', + ), + 'EventBufferEvent::connectHost' => + array ( + 0 => 'bool', + 'dns_base' => 'EventDnsBase', + 'hostname' => 'string', + 'port' => 'int', + 'family=' => 'int', + ), + 'EventBufferEvent::createPair' => + array ( + 0 => 'array', + 'base' => 'EventBase', + 'options=' => 'int', + ), + 'EventBufferEvent::disable' => + array ( + 0 => 'bool', + 'events' => 'int', + ), + 'EventBufferEvent::enable' => + array ( + 0 => 'bool', + 'events' => 'int', + ), + 'EventBufferEvent::free' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::getDnsErrorString' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::getEnabled' => + array ( + 0 => 'int', + ), + 'EventBufferEvent::getInput' => + array ( + 0 => 'EventBuffer', + ), + 'EventBufferEvent::getOutput' => + array ( + 0 => 'EventBuffer', + ), + 'EventBufferEvent::read' => + array ( + 0 => 'string', + 'size' => 'int', + ), + 'EventBufferEvent::readBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventBufferEvent::setCallbacks' => + array ( + 0 => 'void', + 'readcb' => 'callable', + 'writecb' => 'callable', + 'eventcb' => 'callable', + 'arg=' => 'string', + ), + 'EventBufferEvent::setPriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'EventBufferEvent::setTimeouts' => + array ( + 0 => 'bool', + 'timeout_read' => 'float', + 'timeout_write' => 'float', + ), + 'EventBufferEvent::setWatermark' => + array ( + 0 => 'void', + 'events' => 'int', + 'lowmark' => 'int', + 'highmark' => 'int', + ), + 'EventBufferEvent::sslError' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslFilter' => + array ( + 0 => 'EventBufferEvent', + 'base' => 'EventBase', + 'underlying' => 'EventBufferEvent', + 'ctx' => 'EventSslContext', + 'state' => 'int', + 'options=' => 'int', + ), + 'EventBufferEvent::sslGetCipherInfo' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetCipherName' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetCipherVersion' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslGetProtocol' => + array ( + 0 => 'string', + ), + 'EventBufferEvent::sslRenegotiate' => + array ( + 0 => 'void', + ), + 'EventBufferEvent::sslSocket' => + array ( + 0 => 'EventBufferEvent', + 'base' => 'EventBase', + 'socket' => 'mixed', + 'ctx' => 'EventSslContext', + 'state' => 'int', + 'options=' => 'int', + ), + 'EventBufferEvent::write' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'EventBufferEvent::writeBuffer' => + array ( + 0 => 'bool', + 'buf' => 'EventBuffer', + ), + 'EventConfig::__construct' => + array ( + 0 => 'void', + ), + 'EventConfig::avoidMethod' => + array ( + 0 => 'bool', + 'method' => 'string', + ), + 'EventConfig::requireFeatures' => + array ( + 0 => 'bool', + 'feature' => 'int', + ), + 'EventConfig::setMaxDispatchInterval' => + array ( + 0 => 'void', + 'max_interval' => 'int', + 'max_callbacks' => 'int', + 'min_priority' => 'int', + ), + 'EventDnsBase::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'initialize' => 'bool', + ), + 'EventDnsBase::addNameserverIp' => + array ( + 0 => 'bool', + 'ip' => 'string', + ), + 'EventDnsBase::addSearch' => + array ( + 0 => 'void', + 'domain' => 'string', + ), + 'EventDnsBase::clearSearch' => + array ( + 0 => 'void', + ), + 'EventDnsBase::countNameservers' => + array ( + 0 => 'int', + ), + 'EventDnsBase::loadHosts' => + array ( + 0 => 'bool', + 'hosts' => 'string', + ), + 'EventDnsBase::parseResolvConf' => + array ( + 0 => 'bool', + 'flags' => 'int', + 'filename' => 'string', + ), + 'EventDnsBase::setOption' => + array ( + 0 => 'bool', + 'option' => 'string', + 'value' => 'string', + ), + 'EventDnsBase::setSearchNdots' => + array ( + 0 => 'bool', + 'ndots' => 'int', + ), + 'EventHttp::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'ctx=' => 'EventSslContext', + ), + 'EventHttp::accept' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + ), + 'EventHttp::addServerAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'EventHttp::bind' => + array ( + 0 => 'void', + 'address' => 'string', + 'port' => 'int', + ), + 'EventHttp::removeServerAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'EventHttp::setAllowedMethods' => + array ( + 0 => 'void', + 'methods' => 'int', + ), + 'EventHttp::setCallback' => + array ( + 0 => 'void', + 'path' => 'string', + 'cb' => 'string', + 'arg=' => 'string', + ), + 'EventHttp::setDefaultCallback' => + array ( + 0 => 'void', + 'cb' => 'string', + 'arg=' => 'string', + ), + 'EventHttp::setMaxBodySize' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttp::setMaxHeadersSize' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttp::setTimeout' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'EventHttpConnection::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'dns_base' => 'EventDnsBase', + 'address' => 'string', + 'port' => 'int', + 'ctx=' => 'EventSslContext', + ), + 'EventHttpConnection::getBase' => + array ( + 0 => 'EventBase', + ), + 'EventHttpConnection::getPeer' => + array ( + 0 => 'void', + '&w_address' => 'string', + '&w_port' => 'int', + ), + 'EventHttpConnection::makeRequest' => + array ( + 0 => 'bool', + 'req' => 'EventHttpRequest', + 'type' => 'int', + 'uri' => 'string', + ), + 'EventHttpConnection::setCloseCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'EventHttpConnection::setLocalAddress' => + array ( + 0 => 'void', + 'address' => 'string', + ), + 'EventHttpConnection::setLocalPort' => + array ( + 0 => 'void', + 'port' => 'int', + ), + 'EventHttpConnection::setMaxBodySize' => + array ( + 0 => 'void', + 'max_size' => 'string', + ), + 'EventHttpConnection::setMaxHeadersSize' => + array ( + 0 => 'void', + 'max_size' => 'string', + ), + 'EventHttpConnection::setRetries' => + array ( + 0 => 'void', + 'retries' => 'int', + ), + 'EventHttpConnection::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'EventHttpRequest::__construct' => + array ( + 0 => 'void', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'EventHttpRequest::addHeader' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + 'type' => 'int', + ), + 'EventHttpRequest::cancel' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::clearHeaders' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::closeConnection' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::findHeader' => + array ( + 0 => 'void', + 'key' => 'string', + 'type' => 'string', + ), + 'EventHttpRequest::free' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getBufferEvent' => + array ( + 0 => 'EventBufferEvent', + ), + 'EventHttpRequest::getCommand' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getConnection' => + array ( + 0 => 'EventHttpConnection', + ), + 'EventHttpRequest::getHost' => + array ( + 0 => 'string', + ), + 'EventHttpRequest::getInputBuffer' => + array ( + 0 => 'EventBuffer', + ), + 'EventHttpRequest::getInputHeaders' => + array ( + 0 => 'array', + ), + 'EventHttpRequest::getOutputBuffer' => + array ( + 0 => 'EventBuffer', + ), + 'EventHttpRequest::getOutputHeaders' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::getResponseCode' => + array ( + 0 => 'int', + ), + 'EventHttpRequest::getUri' => + array ( + 0 => 'string', + ), + 'EventHttpRequest::removeHeader' => + array ( + 0 => 'void', + 'key' => 'string', + 'type' => 'string', + ), + 'EventHttpRequest::sendError' => + array ( + 0 => 'void', + 'error' => 'int', + 'reason=' => 'string', + ), + 'EventHttpRequest::sendReply' => + array ( + 0 => 'void', + 'code' => 'int', + 'reason' => 'string', + 'buf=' => 'EventBuffer', + ), + 'EventHttpRequest::sendReplyChunk' => + array ( + 0 => 'void', + 'buf' => 'EventBuffer', + ), + 'EventHttpRequest::sendReplyEnd' => + array ( + 0 => 'void', + ), + 'EventHttpRequest::sendReplyStart' => + array ( + 0 => 'void', + 'code' => 'int', + 'reason' => 'string', + ), + 'EventListener::__construct' => + array ( + 0 => 'void', + 'base' => 'EventBase', + 'cb' => 'callable', + 'data' => 'mixed', + 'flags' => 'int', + 'backlog' => 'int', + 'target' => 'mixed', + ), + 'EventListener::disable' => + array ( + 0 => 'bool', + ), + 'EventListener::enable' => + array ( + 0 => 'bool', + ), + 'EventListener::getBase' => + array ( + 0 => 'void', + ), + 'EventListener::getSocketName' => + array ( + 0 => 'bool', + '&w_address' => 'string', + '&w_port=' => 'mixed', + ), + 'EventListener::setCallback' => + array ( + 0 => 'void', + 'cb' => 'callable', + 'arg=' => 'mixed', + ), + 'EventListener::setErrorCallback' => + array ( + 0 => 'void', + 'cb' => 'string', + ), + 'EventSslContext::__construct' => + array ( + 0 => 'void', + 'method' => 'string', + 'options' => 'string', + ), + 'EventUtil::__construct' => + array ( + 0 => 'void', + ), + 'EventUtil::getLastSocketErrno' => + array ( + 0 => 'int', + 'socket=' => 'mixed', + ), + 'EventUtil::getLastSocketError' => + array ( + 0 => 'string', + 'socket=' => 'mixed', + ), + 'EventUtil::getSocketFd' => + array ( + 0 => 'int', + 'socket' => 'mixed', + ), + 'EventUtil::getSocketName' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + '&w_address' => 'string', + '&w_port=' => 'mixed', + ), + 'EventUtil::setSocketOption' => + array ( + 0 => 'bool', + 'socket' => 'mixed', + 'level' => 'int', + 'optname' => 'int', + 'optval' => 'mixed', + ), + 'EventUtil::sslRandPoll' => + array ( + 0 => 'void', + ), + 'Exception::__clone' => + array ( + 0 => 'void', + ), + 'Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'Exception::__toString' => + array ( + 0 => 'string', + ), + 'Exception::getCode' => + array ( + 0 => 'int|string', + ), + 'Exception::getFile' => + array ( + 0 => 'string', + ), + 'Exception::getLine' => + array ( + 0 => 'int', + ), + 'Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Exception::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'FANNConnection::__construct' => + array ( + 0 => 'void', + 'from_neuron' => 'int', + 'to_neuron' => 'int', + 'weight' => 'float', + ), + 'FANNConnection::getFromNeuron' => + array ( + 0 => 'int', + ), + 'FANNConnection::getToNeuron' => + array ( + 0 => 'int', + ), + 'FANNConnection::getWeight' => + array ( + 0 => 'void', + ), + 'FANNConnection::setWeight' => + array ( + 0 => 'bool', + 'weight' => 'float', + ), + 'FilesystemIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + 'flags=' => 'int', + ), + 'FilesystemIterator::__toString' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'FilesystemIterator::getATime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'FilesystemIterator::getCTime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getExtension' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'FilesystemIterator::getFilename' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getFlags' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getGroup' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getInode' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getMTime' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getOwner' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getPath' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'FilesystemIterator::getPathname' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::getPerms' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'FilesystemIterator::getSize' => + array ( + 0 => 'int', + ), + 'FilesystemIterator::getType' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::isDir' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isDot' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isFile' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isLink' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'FilesystemIterator::key' => + array ( + 0 => 'string', + ), + 'FilesystemIterator::next' => + array ( + 0 => 'void', + ), + 'FilesystemIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'FilesystemIterator::rewind' => + array ( + 0 => 'void', + ), + 'FilesystemIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'FilesystemIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'FilesystemIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'FilesystemIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'FilesystemIterator::valid' => + array ( + 0 => 'bool', + ), + 'FilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'FilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'FilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'FilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'FilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'FilterIterator::next' => + array ( + 0 => 'void', + ), + 'FilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'FilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::__toString' => + array ( + 0 => 'string', + ), + 'GEOSGeometry::area' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::boundary' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::buffer' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'styleArray=' => 'array', + ), + 'GEOSGeometry::centroid' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::checkValidity' => + array ( + 0 => 'array{location?: GEOSGeometry, reason?: string, valid: bool}', + ), + 'GEOSGeometry::contains' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::convexHull' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::coordinateDimension' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::coveredBy' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::covers' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::crosses' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::delaunayTriangulation' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'onlyEdges' => 'bool', + ), + 'GEOSGeometry::difference' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::dimension' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::disjoint' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::distance' => + array ( + 0 => 'float', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::endPoint' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::envelope' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::equals' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::equalsExact' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + 'tolerance' => 'float', + ), + 'GEOSGeometry::exteriorRing' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::extractUniquePoints' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::geometryN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::getSRID' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::getX' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::getY' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::hasZ' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::hausdorffDistance' => + array ( + 0 => 'float', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::interiorRingN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::interpolate' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'normalized' => 'bool', + ), + 'GEOSGeometry::intersection' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::intersects' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::isClosed' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::isEmpty' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::isRing' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::isSimple' => + array ( + 0 => 'bool', + ), + 'GEOSGeometry::length' => + array ( + 0 => 'float', + ), + 'GEOSGeometry::node' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::normalize' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::numCoordinates' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::numGeometries' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::numInteriorRings' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::numPoints' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::offsetCurve' => + array ( + 0 => 'GEOSGeometry', + 'dist' => 'float', + 'styleArray' => 'array', + ), + 'GEOSGeometry::overlaps' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::pointN' => + array ( + 0 => 'GEOSGeometry', + 'num' => 'int', + ), + 'GEOSGeometry::pointOnSurface' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::project' => + array ( + 0 => 'float', + 'other' => 'GEOSGeometry', + 'normalized' => 'bool', + ), + 'GEOSGeometry::relate' => + array ( + 0 => 'bool|string', + 'otherGeom' => 'GEOSGeometry', + 'pattern' => 'string', + ), + 'GEOSGeometry::relateBoundaryNodeRule' => + array ( + 0 => 'string', + 'otherGeom' => 'GEOSGeometry', + 'rule' => 'int', + ), + 'GEOSGeometry::setSRID' => + array ( + 0 => 'void', + 'srid' => 'int', + ), + 'GEOSGeometry::simplify' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'preserveTopology=' => 'bool', + ), + 'GEOSGeometry::snapTo' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + 'tolerance' => 'float', + ), + 'GEOSGeometry::startPoint' => + array ( + 0 => 'GEOSGeometry', + ), + 'GEOSGeometry::symDifference' => + array ( + 0 => 'GEOSGeometry', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::touches' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSGeometry::typeId' => + array ( + 0 => 'int', + ), + 'GEOSGeometry::typeName' => + array ( + 0 => 'string', + ), + 'GEOSGeometry::union' => + array ( + 0 => 'GEOSGeometry', + 'otherGeom=' => 'GEOSGeometry', + ), + 'GEOSGeometry::voronoiDiagram' => + array ( + 0 => 'GEOSGeometry', + 'tolerance' => 'float', + 'onlyEdges' => 'bool', + 'extent' => 'GEOSGeometry|null', + ), + 'GEOSGeometry::within' => + array ( + 0 => 'bool', + 'geom' => 'GEOSGeometry', + ), + 'GEOSLineMerge' => + array ( + 0 => 'array', + 'geom' => 'GEOSGeometry', + ), + 'GEOSPolygonize' => + array ( + 0 => 'array{cut_edges?: array, dangles: array, invalid_rings: array, rings: array}', + 'geom' => 'GEOSGeometry', + ), + 'GEOSRelateMatch' => + array ( + 0 => 'bool', + 'matrix' => 'string', + 'pattern' => 'string', + ), + 'GEOSSharedPaths' => + array ( + 0 => 'GEOSGeometry', + 'geom1' => 'GEOSGeometry', + 'geom2' => 'GEOSGeometry', + ), + 'GEOSVersion' => + array ( + 0 => 'string', + ), + 'GEOSWKBReader::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKBReader::read' => + array ( + 0 => 'GEOSGeometry', + 'wkb' => 'string', + ), + 'GEOSWKBReader::readHEX' => + array ( + 0 => 'GEOSGeometry', + 'wkb' => 'string', + ), + 'GEOSWKBWriter::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKBWriter::getByteOrder' => + array ( + 0 => 'int', + ), + 'GEOSWKBWriter::getIncludeSRID' => + array ( + 0 => 'bool', + ), + 'GEOSWKBWriter::getOutputDimension' => + array ( + 0 => 'int', + ), + 'GEOSWKBWriter::setByteOrder' => + array ( + 0 => 'void', + 'byteOrder' => 'int', + ), + 'GEOSWKBWriter::setIncludeSRID' => + array ( + 0 => 'void', + 'inc' => 'bool', + ), + 'GEOSWKBWriter::setOutputDimension' => + array ( + 0 => 'void', + 'dim' => 'int', + ), + 'GEOSWKBWriter::write' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GEOSWKBWriter::writeHEX' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GEOSWKTReader::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKTReader::read' => + array ( + 0 => 'GEOSGeometry', + 'wkt' => 'string', + ), + 'GEOSWKTWriter::__construct' => + array ( + 0 => 'void', + ), + 'GEOSWKTWriter::getOutputDimension' => + array ( + 0 => 'int', + ), + 'GEOSWKTWriter::setOld3D' => + array ( + 0 => 'void', + 'val' => 'bool', + ), + 'GEOSWKTWriter::setOutputDimension' => + array ( + 0 => 'void', + 'dim' => 'int', + ), + 'GEOSWKTWriter::setRoundingPrecision' => + array ( + 0 => 'void', + 'prec' => 'int', + ), + 'GEOSWKTWriter::setTrim' => + array ( + 0 => 'void', + 'trim' => 'bool', + ), + 'GEOSWKTWriter::write' => + array ( + 0 => 'string', + 'geom' => 'GEOSGeometry', + ), + 'GearmanClient::__construct' => + array ( + 0 => 'void', + ), + 'GearmanClient::addOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::addServer' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'GearmanClient::addServers' => + array ( + 0 => 'bool', + 'servers=' => 'string', + ), + 'GearmanClient::addTask' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskHigh' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskHighBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskLow' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskLowBackground' => + array ( + 0 => 'GearmanTask|false', + 'function_name' => 'string', + 'workload' => 'string', + 'context=' => 'mixed', + 'unique=' => 'string', + ), + 'GearmanClient::addTaskStatus' => + array ( + 0 => 'GearmanTask', + 'job_handle' => 'string', + 'context=' => 'string', + ), + 'GearmanClient::clearCallbacks' => + array ( + 0 => 'bool', + ), + 'GearmanClient::clone' => + array ( + 0 => 'GearmanClient', + ), + 'GearmanClient::context' => + array ( + 0 => 'string', + ), + 'GearmanClient::data' => + array ( + 0 => 'string', + ), + 'GearmanClient::do' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doHigh' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doHighBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doJobHandle' => + array ( + 0 => 'string', + ), + 'GearmanClient::doLow' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doLowBackground' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doNormal' => + array ( + 0 => 'string', + 'function_name' => 'string', + 'workload' => 'string', + 'unique=' => 'string', + ), + 'GearmanClient::doStatus' => + array ( + 0 => 'array', + ), + 'GearmanClient::echo' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanClient::error' => + array ( + 0 => 'string', + ), + 'GearmanClient::getErrno' => + array ( + 0 => 'int', + ), + 'GearmanClient::jobStatus' => + array ( + 0 => 'array', + 'job_handle' => 'string', + ), + 'GearmanClient::options' => + array ( + 0 => 'mixed', + ), + 'GearmanClient::ping' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanClient::removeOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanClient::runTasks' => + array ( + 0 => 'bool', + ), + 'GearmanClient::setClientCallback' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'GearmanClient::setCompleteCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setContext' => + array ( + 0 => 'bool', + 'context' => 'string', + ), + 'GearmanClient::setCreatedCallback' => + array ( + 0 => 'bool', + 'callback' => 'string', + ), + 'GearmanClient::setData' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanClient::setDataCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setExceptionCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setFailCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setOptions' => + array ( + 0 => 'bool', + 'options' => 'int', + ), + 'GearmanClient::setStatusCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'GearmanClient::setWarningCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::setWorkloadCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'GearmanClient::timeout' => + array ( + 0 => 'int', + ), + 'GearmanClient::wait' => + array ( + 0 => 'mixed', + ), + 'GearmanJob::__construct' => + array ( + 0 => 'void', + ), + 'GearmanJob::complete' => + array ( + 0 => 'bool', + 'result' => 'string', + ), + 'GearmanJob::data' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanJob::exception' => + array ( + 0 => 'bool', + 'exception' => 'string', + ), + 'GearmanJob::fail' => + array ( + 0 => 'bool', + ), + 'GearmanJob::functionName' => + array ( + 0 => 'string', + ), + 'GearmanJob::handle' => + array ( + 0 => 'string', + ), + 'GearmanJob::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanJob::sendComplete' => + array ( + 0 => 'bool', + 'result' => 'string', + ), + 'GearmanJob::sendData' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'GearmanJob::sendException' => + array ( + 0 => 'bool', + 'exception' => 'string', + ), + 'GearmanJob::sendFail' => + array ( + 0 => 'bool', + ), + 'GearmanJob::sendStatus' => + array ( + 0 => 'bool', + 'numerator' => 'int', + 'denominator' => 'int', + ), + 'GearmanJob::sendWarning' => + array ( + 0 => 'bool', + 'warning' => 'string', + ), + 'GearmanJob::setReturn' => + array ( + 0 => 'bool', + 'gearman_return_t' => 'string', + ), + 'GearmanJob::status' => + array ( + 0 => 'bool', + 'numerator' => 'int', + 'denominator' => 'int', + ), + 'GearmanJob::unique' => + array ( + 0 => 'string', + ), + 'GearmanJob::warning' => + array ( + 0 => 'bool', + 'warning' => 'string', + ), + 'GearmanJob::workload' => + array ( + 0 => 'string', + ), + 'GearmanJob::workloadSize' => + array ( + 0 => 'int', + ), + 'GearmanTask::__construct' => + array ( + 0 => 'void', + ), + 'GearmanTask::create' => + array ( + 0 => 'GearmanTask', + ), + 'GearmanTask::data' => + array ( + 0 => 'false|string', + ), + 'GearmanTask::dataSize' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::function' => + array ( + 0 => 'string', + ), + 'GearmanTask::functionName' => + array ( + 0 => 'string', + ), + 'GearmanTask::isKnown' => + array ( + 0 => 'bool', + ), + 'GearmanTask::isRunning' => + array ( + 0 => 'bool', + ), + 'GearmanTask::jobHandle' => + array ( + 0 => 'string', + ), + 'GearmanTask::recvData' => + array ( + 0 => 'array|false', + 'data_len' => 'int', + ), + 'GearmanTask::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanTask::sendData' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'GearmanTask::sendWorkload' => + array ( + 0 => 'false|int', + 'data' => 'string', + ), + 'GearmanTask::taskDenominator' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::taskNumerator' => + array ( + 0 => 'false|int', + ), + 'GearmanTask::unique' => + array ( + 0 => 'false|string', + ), + 'GearmanTask::uuid' => + array ( + 0 => 'string', + ), + 'GearmanWorker::__construct' => + array ( + 0 => 'void', + ), + 'GearmanWorker::addFunction' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'function' => 'callable', + 'context=' => 'mixed', + 'timeout=' => 'int', + ), + 'GearmanWorker::addOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::addServer' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'GearmanWorker::addServers' => + array ( + 0 => 'bool', + 'servers' => 'string', + ), + 'GearmanWorker::clone' => + array ( + 0 => 'void', + ), + 'GearmanWorker::echo' => + array ( + 0 => 'bool', + 'workload' => 'string', + ), + 'GearmanWorker::error' => + array ( + 0 => 'string', + ), + 'GearmanWorker::getErrno' => + array ( + 0 => 'int', + ), + 'GearmanWorker::grabJob' => + array ( + 0 => 'mixed', + ), + 'GearmanWorker::options' => + array ( + 0 => 'int', + ), + 'GearmanWorker::register' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'timeout=' => 'int', + ), + 'GearmanWorker::removeOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::returnCode' => + array ( + 0 => 'int', + ), + 'GearmanWorker::setId' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'GearmanWorker::setOptions' => + array ( + 0 => 'bool', + 'option' => 'int', + ), + 'GearmanWorker::setTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'int', + ), + 'GearmanWorker::timeout' => + array ( + 0 => 'int', + ), + 'GearmanWorker::unregister' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'GearmanWorker::unregisterAll' => + array ( + 0 => 'bool', + ), + 'GearmanWorker::wait' => + array ( + 0 => 'bool', + ), + 'GearmanWorker::work' => + array ( + 0 => 'bool', + ), + 'Gender\\Gender::__construct' => + array ( + 0 => 'void', + 'dsn=' => 'string', + ), + 'Gender\\Gender::connect' => + array ( + 0 => 'bool', + 'dsn' => 'string', + ), + 'Gender\\Gender::country' => + array ( + 0 => 'array', + 'country' => 'int', + ), + 'Gender\\Gender::get' => + array ( + 0 => 'int', + 'name' => 'string', + 'country=' => 'int', + ), + 'Gender\\Gender::isNick' => + array ( + 0 => 'array', + 'name0' => 'string', + 'name1' => 'string', + 'country=' => 'int', + ), + 'Gender\\Gender::similarNames' => + array ( + 0 => 'array', + 'name' => 'string', + 'country=' => 'int', + ), + 'Generator::current' => + array ( + 0 => 'mixed', + ), + 'Generator::getReturn' => + array ( + 0 => 'mixed', + ), + 'Generator::key' => + array ( + 0 => 'mixed', + ), + 'Generator::next' => + array ( + 0 => 'void', + ), + 'Generator::rewind' => + array ( + 0 => 'void', + ), + 'Generator::send' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Generator::throw' => + array ( + 0 => 'mixed', + 'exception' => 'Throwable', + ), + 'Generator::valid' => + array ( + 0 => 'bool', + ), + 'GlobIterator::__construct' => + array ( + 0 => 'void', + 'pattern' => 'string', + 'flags=' => 'int', + ), + 'GlobIterator::count' => + array ( + 0 => 'int', + ), + 'GlobIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'GlobIterator::getATime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'GlobIterator::getCTime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getExtension' => + array ( + 0 => 'string', + ), + 'GlobIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'GlobIterator::getFilename' => + array ( + 0 => 'string', + ), + 'GlobIterator::getFlags' => + array ( + 0 => 'int', + ), + 'GlobIterator::getGroup' => + array ( + 0 => 'int', + ), + 'GlobIterator::getInode' => + array ( + 0 => 'int', + ), + 'GlobIterator::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'GlobIterator::getMTime' => + array ( + 0 => 'int', + ), + 'GlobIterator::getOwner' => + array ( + 0 => 'int', + ), + 'GlobIterator::getPath' => + array ( + 0 => 'string', + ), + 'GlobIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'GlobIterator::getPathname' => + array ( + 0 => 'string', + ), + 'GlobIterator::getPerms' => + array ( + 0 => 'int', + ), + 'GlobIterator::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'GlobIterator::getSize' => + array ( + 0 => 'int', + ), + 'GlobIterator::getType' => + array ( + 0 => 'false|string', + ), + 'GlobIterator::isDir' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isDot' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isFile' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isLink' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'GlobIterator::key' => + array ( + 0 => 'string', + ), + 'GlobIterator::next' => + array ( + 0 => 'void', + ), + 'GlobIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'GlobIterator::rewind' => + array ( + 0 => 'void', + ), + 'GlobIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'GlobIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'GlobIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'GlobIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'GlobIterator::valid' => + array ( + 0 => 'bool', + ), + 'Gmagick::__construct' => + array ( + 0 => 'void', + 'filename=' => 'string', + ), + 'Gmagick::addimage' => + array ( + 0 => 'Gmagick', + 'gmagick' => 'gmagick', + ), + 'Gmagick::addnoiseimage' => + array ( + 0 => 'Gmagick', + 'noise' => 'int', + ), + 'Gmagick::annotateimage' => + array ( + 0 => 'Gmagick', + 'gmagickdraw' => 'gmagickdraw', + 'x' => 'float', + 'y' => 'float', + 'angle' => 'float', + 'text' => 'string', + ), + 'Gmagick::blurimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::borderimage' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + 'width' => 'int', + 'height' => 'int', + ), + 'Gmagick::charcoalimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Gmagick::chopimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::clear' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::commentimage' => + array ( + 0 => 'Gmagick', + 'comment' => 'string', + ), + 'Gmagick::compositeimage' => + array ( + 0 => 'Gmagick', + 'source' => 'gmagick', + 'compose' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::cropimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::cropthumbnailimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + ), + 'Gmagick::current' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::cyclecolormapimage' => + array ( + 0 => 'Gmagick', + 'displace' => 'int', + ), + 'Gmagick::deconstructimages' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::despeckleimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::destroy' => + array ( + 0 => 'bool', + ), + 'Gmagick::drawimage' => + array ( + 0 => 'Gmagick', + 'gmagickdraw' => 'gmagickdraw', + ), + 'Gmagick::edgeimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::embossimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Gmagick::enhanceimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::equalizeimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::flipimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::flopimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::frameimage' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + 'width' => 'int', + 'height' => 'int', + 'inner_bevel' => 'int', + 'outer_bevel' => 'int', + ), + 'Gmagick::gammaimage' => + array ( + 0 => 'Gmagick', + 'gamma' => 'float', + ), + 'Gmagick::getcopyright' => + array ( + 0 => 'string', + ), + 'Gmagick::getfilename' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagebackgroundcolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimageblueprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagebordercolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimagechanneldepth' => + array ( + 0 => 'int', + 'channel_type' => 'int', + ), + 'Gmagick::getimagecolors' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagecolorspace' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagecompose' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedelay' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedepth' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagedispose' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageextrema' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagefilename' => + array ( + 0 => 'string', + ), + 'Gmagick::getimageformat' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagegamma' => + array ( + 0 => 'float', + ), + 'Gmagick::getimagegreenprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimageheight' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagehistogram' => + array ( + 0 => 'array', + ), + 'Gmagick::getimageindex' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageinterlacescheme' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageiterations' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagematte' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagemattecolor' => + array ( + 0 => 'GmagickPixel', + ), + 'Gmagick::getimageprofile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Gmagick::getimageredprimary' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagerenderingintent' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageresolution' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagescene' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagesignature' => + array ( + 0 => 'string', + ), + 'Gmagick::getimagetype' => + array ( + 0 => 'int', + ), + 'Gmagick::getimageunits' => + array ( + 0 => 'int', + ), + 'Gmagick::getimagewhitepoint' => + array ( + 0 => 'array', + ), + 'Gmagick::getimagewidth' => + array ( + 0 => 'int', + ), + 'Gmagick::getpackagename' => + array ( + 0 => 'string', + ), + 'Gmagick::getquantumdepth' => + array ( + 0 => 'array', + ), + 'Gmagick::getreleasedate' => + array ( + 0 => 'string', + ), + 'Gmagick::getsamplingfactors' => + array ( + 0 => 'array', + ), + 'Gmagick::getsize' => + array ( + 0 => 'array', + ), + 'Gmagick::getversion' => + array ( + 0 => 'array', + ), + 'Gmagick::hasnextimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::haspreviousimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::implodeimage' => + array ( + 0 => 'mixed', + 'radius' => 'float', + ), + 'Gmagick::labelimage' => + array ( + 0 => 'mixed', + 'label' => 'string', + ), + 'Gmagick::levelimage' => + array ( + 0 => 'mixed', + 'blackpoint' => 'float', + 'gamma' => 'float', + 'whitepoint' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::magnifyimage' => + array ( + 0 => 'mixed', + ), + 'Gmagick::mapimage' => + array ( + 0 => 'Gmagick', + 'gmagick' => 'gmagick', + 'dither' => 'bool', + ), + 'Gmagick::medianfilterimage' => + array ( + 0 => 'void', + 'radius' => 'float', + ), + 'Gmagick::minifyimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::modulateimage' => + array ( + 0 => 'Gmagick', + 'brightness' => 'float', + 'saturation' => 'float', + 'hue' => 'float', + ), + 'Gmagick::motionblurimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + ), + 'Gmagick::newimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'background' => 'string', + 'format=' => 'string', + ), + 'Gmagick::nextimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::normalizeimage' => + array ( + 0 => 'Gmagick', + 'channel=' => 'int', + ), + 'Gmagick::oilpaintimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::previousimage' => + array ( + 0 => 'bool', + ), + 'Gmagick::profileimage' => + array ( + 0 => 'Gmagick', + 'name' => 'string', + 'profile' => 'string', + ), + 'Gmagick::quantizeimage' => + array ( + 0 => 'Gmagick', + 'numcolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Gmagick::quantizeimages' => + array ( + 0 => 'Gmagick', + 'numcolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Gmagick::queryfontmetrics' => + array ( + 0 => 'array', + 'draw' => 'gmagickdraw', + 'text' => 'string', + ), + 'Gmagick::queryfonts' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Gmagick::queryformats' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Gmagick::radialblurimage' => + array ( + 0 => 'Gmagick', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Gmagick::raiseimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + 'raise' => 'bool', + ), + 'Gmagick::read' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::readimage' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::readimageblob' => + array ( + 0 => 'Gmagick', + 'imagecontents' => 'string', + 'filename=' => 'string', + ), + 'Gmagick::readimagefile' => + array ( + 0 => 'Gmagick', + 'fp' => 'resource', + 'filename=' => 'string', + ), + 'Gmagick::reducenoiseimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::removeimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::removeimageprofile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Gmagick::resampleimage' => + array ( + 0 => 'Gmagick', + 'xresolution' => 'float', + 'yresolution' => 'float', + 'filter' => 'int', + 'blur' => 'float', + ), + 'Gmagick::resizeimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'filter' => 'int', + 'blur' => 'float', + 'fit=' => 'bool', + ), + 'Gmagick::rollimage' => + array ( + 0 => 'Gmagick', + 'x' => 'int', + 'y' => 'int', + ), + 'Gmagick::rotateimage' => + array ( + 0 => 'Gmagick', + 'color' => 'mixed', + 'degrees' => 'float', + ), + 'Gmagick::scaleimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'fit=' => 'bool', + ), + 'Gmagick::separateimagechannel' => + array ( + 0 => 'Gmagick', + 'channel' => 'int', + ), + 'Gmagick::setCompressionQuality' => + array ( + 0 => 'Gmagick', + 'quality' => 'int', + ), + 'Gmagick::setfilename' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::setimagebackgroundcolor' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + ), + 'Gmagick::setimageblueprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimagebordercolor' => + array ( + 0 => 'Gmagick', + 'color' => 'gmagickpixel', + ), + 'Gmagick::setimagechanneldepth' => + array ( + 0 => 'Gmagick', + 'channel' => 'int', + 'depth' => 'int', + ), + 'Gmagick::setimagecolorspace' => + array ( + 0 => 'Gmagick', + 'colorspace' => 'int', + ), + 'Gmagick::setimagecompose' => + array ( + 0 => 'Gmagick', + 'composite' => 'int', + ), + 'Gmagick::setimagedelay' => + array ( + 0 => 'Gmagick', + 'delay' => 'int', + ), + 'Gmagick::setimagedepth' => + array ( + 0 => 'Gmagick', + 'depth' => 'int', + ), + 'Gmagick::setimagedispose' => + array ( + 0 => 'Gmagick', + 'disposetype' => 'int', + ), + 'Gmagick::setimagefilename' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::setimageformat' => + array ( + 0 => 'Gmagick', + 'imageformat' => 'string', + ), + 'Gmagick::setimagegamma' => + array ( + 0 => 'Gmagick', + 'gamma' => 'float', + ), + 'Gmagick::setimagegreenprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimageindex' => + array ( + 0 => 'Gmagick', + 'index' => 'int', + ), + 'Gmagick::setimageinterlacescheme' => + array ( + 0 => 'Gmagick', + 'interlace' => 'int', + ), + 'Gmagick::setimageiterations' => + array ( + 0 => 'Gmagick', + 'iterations' => 'int', + ), + 'Gmagick::setimageprofile' => + array ( + 0 => 'Gmagick', + 'name' => 'string', + 'profile' => 'string', + ), + 'Gmagick::setimageredprimary' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setimagerenderingintent' => + array ( + 0 => 'Gmagick', + 'rendering_intent' => 'int', + ), + 'Gmagick::setimageresolution' => + array ( + 0 => 'Gmagick', + 'xresolution' => 'float', + 'yresolution' => 'float', + ), + 'Gmagick::setimagescene' => + array ( + 0 => 'Gmagick', + 'scene' => 'int', + ), + 'Gmagick::setimagetype' => + array ( + 0 => 'Gmagick', + 'imgtype' => 'int', + ), + 'Gmagick::setimageunits' => + array ( + 0 => 'Gmagick', + 'resolution' => 'int', + ), + 'Gmagick::setimagewhitepoint' => + array ( + 0 => 'Gmagick', + 'x' => 'float', + 'y' => 'float', + ), + 'Gmagick::setsamplingfactors' => + array ( + 0 => 'Gmagick', + 'factors' => 'array', + ), + 'Gmagick::setsize' => + array ( + 0 => 'Gmagick', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Gmagick::shearimage' => + array ( + 0 => 'Gmagick', + 'color' => 'mixed', + 'xshear' => 'float', + 'yshear' => 'float', + ), + 'Gmagick::solarizeimage' => + array ( + 0 => 'Gmagick', + 'threshold' => 'int', + ), + 'Gmagick::spreadimage' => + array ( + 0 => 'Gmagick', + 'radius' => 'float', + ), + 'Gmagick::stripimage' => + array ( + 0 => 'Gmagick', + ), + 'Gmagick::swirlimage' => + array ( + 0 => 'Gmagick', + 'degrees' => 'float', + ), + 'Gmagick::thumbnailimage' => + array ( + 0 => 'Gmagick', + 'width' => 'int', + 'height' => 'int', + 'fit=' => 'bool', + ), + 'Gmagick::trimimage' => + array ( + 0 => 'Gmagick', + 'fuzz' => 'float', + ), + 'Gmagick::write' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + ), + 'Gmagick::writeimage' => + array ( + 0 => 'Gmagick', + 'filename' => 'string', + 'all_frames=' => 'bool', + ), + 'GmagickDraw::annotate' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'GmagickDraw::arc' => + array ( + 0 => 'GmagickDraw', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + 'sd' => 'float', + 'ed' => 'float', + ), + 'GmagickDraw::bezier' => + array ( + 0 => 'GmagickDraw', + 'coordinate_array' => 'array', + ), + 'GmagickDraw::ellipse' => + array ( + 0 => 'GmagickDraw', + 'ox' => 'float', + 'oy' => 'float', + 'rx' => 'float', + 'ry' => 'float', + 'start' => 'float', + 'end' => 'float', + ), + 'GmagickDraw::getfillcolor' => + array ( + 0 => 'GmagickPixel', + ), + 'GmagickDraw::getfillopacity' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getfont' => + array ( + 0 => 'false|string', + ), + 'GmagickDraw::getfontsize' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getfontstyle' => + array ( + 0 => 'int', + ), + 'GmagickDraw::getfontweight' => + array ( + 0 => 'int', + ), + 'GmagickDraw::getstrokecolor' => + array ( + 0 => 'GmagickPixel', + ), + 'GmagickDraw::getstrokeopacity' => + array ( + 0 => 'float', + ), + 'GmagickDraw::getstrokewidth' => + array ( + 0 => 'float', + ), + 'GmagickDraw::gettextdecoration' => + array ( + 0 => 'int', + ), + 'GmagickDraw::gettextencoding' => + array ( + 0 => 'false|string', + ), + 'GmagickDraw::line' => + array ( + 0 => 'GmagickDraw', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + ), + 'GmagickDraw::point' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + ), + 'GmagickDraw::polygon' => + array ( + 0 => 'GmagickDraw', + 'coordinates' => 'array', + ), + 'GmagickDraw::polyline' => + array ( + 0 => 'GmagickDraw', + 'coordinate_array' => 'array', + ), + 'GmagickDraw::rectangle' => + array ( + 0 => 'GmagickDraw', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'GmagickDraw::rotate' => + array ( + 0 => 'GmagickDraw', + 'degrees' => 'float', + ), + 'GmagickDraw::roundrectangle' => + array ( + 0 => 'GmagickDraw', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'rx' => 'float', + 'ry' => 'float', + ), + 'GmagickDraw::scale' => + array ( + 0 => 'GmagickDraw', + 'x' => 'float', + 'y' => 'float', + ), + 'GmagickDraw::setfillcolor' => + array ( + 0 => 'GmagickDraw', + 'color' => 'string', + ), + 'GmagickDraw::setfillopacity' => + array ( + 0 => 'GmagickDraw', + 'fill_opacity' => 'float', + ), + 'GmagickDraw::setfont' => + array ( + 0 => 'GmagickDraw', + 'font' => 'string', + ), + 'GmagickDraw::setfontsize' => + array ( + 0 => 'GmagickDraw', + 'pointsize' => 'float', + ), + 'GmagickDraw::setfontstyle' => + array ( + 0 => 'GmagickDraw', + 'style' => 'int', + ), + 'GmagickDraw::setfontweight' => + array ( + 0 => 'GmagickDraw', + 'weight' => 'int', + ), + 'GmagickDraw::setstrokecolor' => + array ( + 0 => 'GmagickDraw', + 'color' => 'gmagickpixel', + ), + 'GmagickDraw::setstrokeopacity' => + array ( + 0 => 'GmagickDraw', + 'stroke_opacity' => 'float', + ), + 'GmagickDraw::setstrokewidth' => + array ( + 0 => 'GmagickDraw', + 'width' => 'float', + ), + 'GmagickDraw::settextdecoration' => + array ( + 0 => 'GmagickDraw', + 'decoration' => 'int', + ), + 'GmagickDraw::settextencoding' => + array ( + 0 => 'GmagickDraw', + 'encoding' => 'string', + ), + 'GmagickPixel::__construct' => + array ( + 0 => 'void', + 'color=' => 'string', + ), + 'GmagickPixel::getcolor' => + array ( + 0 => 'mixed', + 'as_array=' => 'bool', + 'normalize_array=' => 'bool', + ), + 'GmagickPixel::getcolorcount' => + array ( + 0 => 'int', + ), + 'GmagickPixel::getcolorvalue' => + array ( + 0 => 'float', + 'color' => 'int', + ), + 'GmagickPixel::setcolor' => + array ( + 0 => 'GmagickPixel', + 'color' => 'string', + ), + 'GmagickPixel::setcolorvalue' => + array ( + 0 => 'GmagickPixel', + 'color' => 'int', + 'value' => 'float', + ), + 'Grpc\\Call::__construct' => + array ( + 0 => 'void', + 'channel' => 'Grpc\\Channel', + 'method' => 'string', + 'absolute_deadline' => 'Grpc\\Timeval', + 'host_override=' => 'mixed', + ), + 'Grpc\\Call::cancel' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Call::getPeer' => + array ( + 0 => 'string', + ), + 'Grpc\\Call::setCredentials' => + array ( + 0 => 'int', + 'creds_obj' => 'Grpc\\CallCredentials', + ), + 'Grpc\\Call::startBatch' => + array ( + 0 => 'object', + 'batch' => 'array', + ), + 'Grpc\\CallCredentials::createComposite' => + array ( + 0 => 'Grpc\\CallCredentials', + 'cred1' => 'Grpc\\CallCredentials', + 'cred2' => 'Grpc\\CallCredentials', + ), + 'Grpc\\CallCredentials::createFromPlugin' => + array ( + 0 => 'Grpc\\CallCredentials', + 'callback' => 'Closure', + ), + 'Grpc\\Channel::__construct' => + array ( + 0 => 'void', + 'target' => 'string', + 'args=' => 'array', + ), + 'Grpc\\Channel::close' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Channel::getConnectivityState' => + array ( + 0 => 'int', + 'try_to_connect=' => 'bool', + ), + 'Grpc\\Channel::getTarget' => + array ( + 0 => 'string', + ), + 'Grpc\\Channel::watchConnectivityState' => + array ( + 0 => 'bool', + 'last_state' => 'int', + 'deadline_obj' => 'Grpc\\Timeval', + ), + 'Grpc\\ChannelCredentials::createComposite' => + array ( + 0 => 'Grpc\\ChannelCredentials', + 'cred1' => 'Grpc\\ChannelCredentials', + 'cred2' => 'Grpc\\CallCredentials', + ), + 'Grpc\\ChannelCredentials::createDefault' => + array ( + 0 => 'Grpc\\ChannelCredentials', + ), + 'Grpc\\ChannelCredentials::createInsecure' => + array ( + 0 => 'null', + ), + 'Grpc\\ChannelCredentials::createSsl' => + array ( + 0 => 'Grpc\\ChannelCredentials', + 'pem_root_certs' => 'string', + 'pem_private_key=' => 'string', + 'pem_cert_chain=' => 'string', + ), + 'Grpc\\ChannelCredentials::setDefaultRootsPem' => + array ( + 0 => 'mixed', + 'pem_roots' => 'string', + ), + 'Grpc\\Server::__construct' => + array ( + 0 => 'void', + 'args' => 'array', + ), + 'Grpc\\Server::addHttp2Port' => + array ( + 0 => 'bool', + 'addr' => 'string', + ), + 'Grpc\\Server::addSecureHttp2Port' => + array ( + 0 => 'bool', + 'addr' => 'string', + 'creds_obj' => 'Grpc\\ServerCredentials', + ), + 'Grpc\\Server::requestCall' => + array ( + 0 => 'mixed', + 'tag_new' => 'int', + 'tag_cancel' => 'int', + ), + 'Grpc\\Server::start' => + array ( + 0 => 'mixed', + ), + 'Grpc\\ServerCredentials::createSsl' => + array ( + 0 => 'object', + 'pem_root_certs' => 'string', + 'pem_private_key' => 'string', + 'pem_cert_chain' => 'string', + ), + 'Grpc\\Timeval::__construct' => + array ( + 0 => 'void', + 'usec' => 'int', + ), + 'Grpc\\Timeval::add' => + array ( + 0 => 'Grpc\\Timeval', + 'other' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::compare' => + array ( + 0 => 'int', + 'a' => 'Grpc\\Timeval', + 'b' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::infFuture' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::infPast' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::now' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::similar' => + array ( + 0 => 'bool', + 'a' => 'Grpc\\Timeval', + 'b' => 'Grpc\\Timeval', + 'threshold' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::sleepUntil' => + array ( + 0 => 'mixed', + ), + 'Grpc\\Timeval::subtract' => + array ( + 0 => 'Grpc\\Timeval', + 'other' => 'Grpc\\Timeval', + ), + 'Grpc\\Timeval::zero' => + array ( + 0 => 'Grpc\\Timeval', + ), + 'HRTime\\PerformanceCounter::getElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getFrequency' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getLastElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\PerformanceCounter::getTicksSince' => + array ( + 0 => 'int', + 'start' => 'int', + ), + 'HRTime\\PerformanceCounter::isRunning' => + array ( + 0 => 'bool', + ), + 'HRTime\\PerformanceCounter::start' => + array ( + 0 => 'void', + ), + 'HRTime\\PerformanceCounter::stop' => + array ( + 0 => 'void', + ), + 'HRTime\\StopWatch::getElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\StopWatch::getElapsedTime' => + array ( + 0 => 'float', + 'unit=' => 'int', + ), + 'HRTime\\StopWatch::getLastElapsedTicks' => + array ( + 0 => 'int', + ), + 'HRTime\\StopWatch::getLastElapsedTime' => + array ( + 0 => 'float', + 'unit=' => 'int', + ), + 'HRTime\\StopWatch::isRunning' => + array ( + 0 => 'bool', + ), + 'HRTime\\StopWatch::start' => + array ( + 0 => 'void', + ), + 'HRTime\\StopWatch::stop' => + array ( + 0 => 'void', + ), + 'HaruAnnotation::setBorderStyle' => + array ( + 0 => 'bool', + 'width' => 'float', + 'dash_on' => 'int', + 'dash_off' => 'int', + ), + 'HaruAnnotation::setHighlightMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruAnnotation::setIcon' => + array ( + 0 => 'bool', + 'icon' => 'int', + ), + 'HaruAnnotation::setOpened' => + array ( + 0 => 'bool', + 'opened' => 'bool', + ), + 'HaruDestination::setFit' => + array ( + 0 => 'bool', + ), + 'HaruDestination::setFitB' => + array ( + 0 => 'bool', + ), + 'HaruDestination::setFitBH' => + array ( + 0 => 'bool', + 'top' => 'float', + ), + 'HaruDestination::setFitBV' => + array ( + 0 => 'bool', + 'left' => 'float', + ), + 'HaruDestination::setFitH' => + array ( + 0 => 'bool', + 'top' => 'float', + ), + 'HaruDestination::setFitR' => + array ( + 0 => 'bool', + 'left' => 'float', + 'bottom' => 'float', + 'right' => 'float', + 'top' => 'float', + ), + 'HaruDestination::setFitV' => + array ( + 0 => 'bool', + 'left' => 'float', + ), + 'HaruDestination::setXYZ' => + array ( + 0 => 'bool', + 'left' => 'float', + 'top' => 'float', + 'zoom' => 'float', + ), + 'HaruDoc::__construct' => + array ( + 0 => 'void', + ), + 'HaruDoc::addPage' => + array ( + 0 => 'object', + ), + 'HaruDoc::addPageLabel' => + array ( + 0 => 'bool', + 'first_page' => 'int', + 'style' => 'int', + 'first_num' => 'int', + 'prefix=' => 'string', + ), + 'HaruDoc::createOutline' => + array ( + 0 => 'object', + 'title' => 'string', + 'parent_outline=' => 'object', + 'encoder=' => 'object', + ), + 'HaruDoc::getCurrentEncoder' => + array ( + 0 => 'object', + ), + 'HaruDoc::getCurrentPage' => + array ( + 0 => 'object', + ), + 'HaruDoc::getEncoder' => + array ( + 0 => 'object', + 'encoding' => 'string', + ), + 'HaruDoc::getFont' => + array ( + 0 => 'object', + 'fontname' => 'string', + 'encoding=' => 'string', + ), + 'HaruDoc::getInfoAttr' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'HaruDoc::getPageLayout' => + array ( + 0 => 'int', + ), + 'HaruDoc::getPageMode' => + array ( + 0 => 'int', + ), + 'HaruDoc::getStreamSize' => + array ( + 0 => 'int', + ), + 'HaruDoc::insertPage' => + array ( + 0 => 'object', + 'page' => 'object', + ), + 'HaruDoc::loadJPEG' => + array ( + 0 => 'object', + 'filename' => 'string', + ), + 'HaruDoc::loadPNG' => + array ( + 0 => 'object', + 'filename' => 'string', + 'deferred=' => 'bool', + ), + 'HaruDoc::loadRaw' => + array ( + 0 => 'object', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'color_space' => 'int', + ), + 'HaruDoc::loadTTC' => + array ( + 0 => 'string', + 'fontfile' => 'string', + 'index' => 'int', + 'embed=' => 'bool', + ), + 'HaruDoc::loadTTF' => + array ( + 0 => 'string', + 'fontfile' => 'string', + 'embed=' => 'bool', + ), + 'HaruDoc::loadType1' => + array ( + 0 => 'string', + 'afmfile' => 'string', + 'pfmfile=' => 'string', + ), + 'HaruDoc::output' => + array ( + 0 => 'bool', + ), + 'HaruDoc::readFromStream' => + array ( + 0 => 'string', + 'bytes' => 'int', + ), + 'HaruDoc::resetError' => + array ( + 0 => 'bool', + ), + 'HaruDoc::resetStream' => + array ( + 0 => 'bool', + ), + 'HaruDoc::save' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'HaruDoc::saveToStream' => + array ( + 0 => 'bool', + ), + 'HaruDoc::setCompressionMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruDoc::setCurrentEncoder' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'HaruDoc::setEncryptionMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'key_len=' => 'int', + ), + 'HaruDoc::setInfoAttr' => + array ( + 0 => 'bool', + 'type' => 'int', + 'info' => 'string', + ), + 'HaruDoc::setInfoDateAttr' => + array ( + 0 => 'bool', + 'type' => 'int', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + 'hour' => 'int', + 'min' => 'int', + 'sec' => 'int', + 'ind' => 'string', + 'off_hour' => 'int', + 'off_min' => 'int', + ), + 'HaruDoc::setOpenAction' => + array ( + 0 => 'bool', + 'destination' => 'object', + ), + 'HaruDoc::setPageLayout' => + array ( + 0 => 'bool', + 'layout' => 'int', + ), + 'HaruDoc::setPageMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruDoc::setPagesConfiguration' => + array ( + 0 => 'bool', + 'page_per_pages' => 'int', + ), + 'HaruDoc::setPassword' => + array ( + 0 => 'bool', + 'owner_password' => 'string', + 'user_password' => 'string', + ), + 'HaruDoc::setPermission' => + array ( + 0 => 'bool', + 'permission' => 'int', + ), + 'HaruDoc::useCNSEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNSFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNTEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useCNTFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useJPEncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useJPFonts' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useKREncodings' => + array ( + 0 => 'bool', + ), + 'HaruDoc::useKRFonts' => + array ( + 0 => 'bool', + ), + 'HaruEncoder::getByteType' => + array ( + 0 => 'int', + 'text' => 'string', + 'index' => 'int', + ), + 'HaruEncoder::getType' => + array ( + 0 => 'int', + ), + 'HaruEncoder::getUnicode' => + array ( + 0 => 'int', + 'character' => 'int', + ), + 'HaruEncoder::getWritingMode' => + array ( + 0 => 'int', + ), + 'HaruFont::getAscent' => + array ( + 0 => 'int', + ), + 'HaruFont::getCapHeight' => + array ( + 0 => 'int', + ), + 'HaruFont::getDescent' => + array ( + 0 => 'int', + ), + 'HaruFont::getEncodingName' => + array ( + 0 => 'string', + ), + 'HaruFont::getFontName' => + array ( + 0 => 'string', + ), + 'HaruFont::getTextWidth' => + array ( + 0 => 'array', + 'text' => 'string', + ), + 'HaruFont::getUnicodeWidth' => + array ( + 0 => 'int', + 'character' => 'int', + ), + 'HaruFont::getXHeight' => + array ( + 0 => 'int', + ), + 'HaruFont::measureText' => + array ( + 0 => 'int', + 'text' => 'string', + 'width' => 'float', + 'font_size' => 'float', + 'char_space' => 'float', + 'word_space' => 'float', + 'word_wrap=' => 'bool', + ), + 'HaruImage::getBitsPerComponent' => + array ( + 0 => 'int', + ), + 'HaruImage::getColorSpace' => + array ( + 0 => 'string', + ), + 'HaruImage::getHeight' => + array ( + 0 => 'int', + ), + 'HaruImage::getSize' => + array ( + 0 => 'array', + ), + 'HaruImage::getWidth' => + array ( + 0 => 'int', + ), + 'HaruImage::setColorMask' => + array ( + 0 => 'bool', + 'rmin' => 'int', + 'rmax' => 'int', + 'gmin' => 'int', + 'gmax' => 'int', + 'bmin' => 'int', + 'bmax' => 'int', + ), + 'HaruImage::setMaskImage' => + array ( + 0 => 'bool', + 'mask_image' => 'object', + ), + 'HaruOutline::setDestination' => + array ( + 0 => 'bool', + 'destination' => 'object', + ), + 'HaruOutline::setOpened' => + array ( + 0 => 'bool', + 'opened' => 'bool', + ), + 'HaruPage::arc' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'ray' => 'float', + 'ang1' => 'float', + 'ang2' => 'float', + ), + 'HaruPage::beginText' => + array ( + 0 => 'bool', + ), + 'HaruPage::circle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'ray' => 'float', + ), + 'HaruPage::closePath' => + array ( + 0 => 'bool', + ), + 'HaruPage::concat' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::createDestination' => + array ( + 0 => 'object', + ), + 'HaruPage::createLinkAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'destination' => 'object', + ), + 'HaruPage::createTextAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'text' => 'string', + 'encoder=' => 'object', + ), + 'HaruPage::createURLAnnotation' => + array ( + 0 => 'object', + 'rectangle' => 'array', + 'url' => 'string', + ), + 'HaruPage::curveTo' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::curveTo2' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::curveTo3' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'HaruPage::drawImage' => + array ( + 0 => 'bool', + 'image' => 'object', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'HaruPage::ellipse' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'xray' => 'float', + 'yray' => 'float', + ), + 'HaruPage::endPath' => + array ( + 0 => 'bool', + ), + 'HaruPage::endText' => + array ( + 0 => 'bool', + ), + 'HaruPage::eoFillStroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::eofill' => + array ( + 0 => 'bool', + ), + 'HaruPage::fill' => + array ( + 0 => 'bool', + ), + 'HaruPage::fillStroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::getCMYKFill' => + array ( + 0 => 'array', + ), + 'HaruPage::getCMYKStroke' => + array ( + 0 => 'array', + ), + 'HaruPage::getCharSpace' => + array ( + 0 => 'float', + ), + 'HaruPage::getCurrentFont' => + array ( + 0 => 'object', + ), + 'HaruPage::getCurrentFontSize' => + array ( + 0 => 'float', + ), + 'HaruPage::getCurrentPos' => + array ( + 0 => 'array', + ), + 'HaruPage::getCurrentTextPos' => + array ( + 0 => 'array', + ), + 'HaruPage::getDash' => + array ( + 0 => 'array', + ), + 'HaruPage::getFillingColorSpace' => + array ( + 0 => 'int', + ), + 'HaruPage::getFlatness' => + array ( + 0 => 'float', + ), + 'HaruPage::getGMode' => + array ( + 0 => 'int', + ), + 'HaruPage::getGrayFill' => + array ( + 0 => 'float', + ), + 'HaruPage::getGrayStroke' => + array ( + 0 => 'float', + ), + 'HaruPage::getHeight' => + array ( + 0 => 'float', + ), + 'HaruPage::getHorizontalScaling' => + array ( + 0 => 'float', + ), + 'HaruPage::getLineCap' => + array ( + 0 => 'int', + ), + 'HaruPage::getLineJoin' => + array ( + 0 => 'int', + ), + 'HaruPage::getLineWidth' => + array ( + 0 => 'float', + ), + 'HaruPage::getMiterLimit' => + array ( + 0 => 'float', + ), + 'HaruPage::getRGBFill' => + array ( + 0 => 'array', + ), + 'HaruPage::getRGBStroke' => + array ( + 0 => 'array', + ), + 'HaruPage::getStrokingColorSpace' => + array ( + 0 => 'int', + ), + 'HaruPage::getTextLeading' => + array ( + 0 => 'float', + ), + 'HaruPage::getTextMatrix' => + array ( + 0 => 'array', + ), + 'HaruPage::getTextRenderingMode' => + array ( + 0 => 'int', + ), + 'HaruPage::getTextRise' => + array ( + 0 => 'float', + ), + 'HaruPage::getTextWidth' => + array ( + 0 => 'float', + 'text' => 'string', + ), + 'HaruPage::getTransMatrix' => + array ( + 0 => 'array', + ), + 'HaruPage::getWidth' => + array ( + 0 => 'float', + ), + 'HaruPage::getWordSpace' => + array ( + 0 => 'float', + ), + 'HaruPage::lineTo' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::measureText' => + array ( + 0 => 'int', + 'text' => 'string', + 'width' => 'float', + 'wordwrap=' => 'bool', + ), + 'HaruPage::moveTextPos' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'set_leading=' => 'bool', + ), + 'HaruPage::moveTo' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::moveToNextLine' => + array ( + 0 => 'bool', + ), + 'HaruPage::rectangle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'HaruPage::setCMYKFill' => + array ( + 0 => 'bool', + 'c' => 'float', + 'm' => 'float', + 'y' => 'float', + 'k' => 'float', + ), + 'HaruPage::setCMYKStroke' => + array ( + 0 => 'bool', + 'c' => 'float', + 'm' => 'float', + 'y' => 'float', + 'k' => 'float', + ), + 'HaruPage::setCharSpace' => + array ( + 0 => 'bool', + 'char_space' => 'float', + ), + 'HaruPage::setDash' => + array ( + 0 => 'bool', + 'pattern' => 'array', + 'phase' => 'int', + ), + 'HaruPage::setFlatness' => + array ( + 0 => 'bool', + 'flatness' => 'float', + ), + 'HaruPage::setFontAndSize' => + array ( + 0 => 'bool', + 'font' => 'object', + 'size' => 'float', + ), + 'HaruPage::setGrayFill' => + array ( + 0 => 'bool', + 'value' => 'float', + ), + 'HaruPage::setGrayStroke' => + array ( + 0 => 'bool', + 'value' => 'float', + ), + 'HaruPage::setHeight' => + array ( + 0 => 'bool', + 'height' => 'float', + ), + 'HaruPage::setHorizontalScaling' => + array ( + 0 => 'bool', + 'scaling' => 'float', + ), + 'HaruPage::setLineCap' => + array ( + 0 => 'bool', + 'cap' => 'int', + ), + 'HaruPage::setLineJoin' => + array ( + 0 => 'bool', + 'join' => 'int', + ), + 'HaruPage::setLineWidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'HaruPage::setMiterLimit' => + array ( + 0 => 'bool', + 'limit' => 'float', + ), + 'HaruPage::setRGBFill' => + array ( + 0 => 'bool', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'HaruPage::setRGBStroke' => + array ( + 0 => 'bool', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'HaruPage::setRotate' => + array ( + 0 => 'bool', + 'angle' => 'int', + ), + 'HaruPage::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + 'direction' => 'int', + ), + 'HaruPage::setSlideShow' => + array ( + 0 => 'bool', + 'type' => 'int', + 'disp_time' => 'float', + 'trans_time' => 'float', + ), + 'HaruPage::setTextLeading' => + array ( + 0 => 'bool', + 'text_leading' => 'float', + ), + 'HaruPage::setTextMatrix' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'HaruPage::setTextRenderingMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'HaruPage::setTextRise' => + array ( + 0 => 'bool', + 'rise' => 'float', + ), + 'HaruPage::setWidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'HaruPage::setWordSpace' => + array ( + 0 => 'bool', + 'word_space' => 'float', + ), + 'HaruPage::showText' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'HaruPage::showTextNextLine' => + array ( + 0 => 'bool', + 'text' => 'string', + 'word_space=' => 'float', + 'char_space=' => 'float', + ), + 'HaruPage::stroke' => + array ( + 0 => 'bool', + 'close_path=' => 'bool', + ), + 'HaruPage::textOut' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'HaruPage::textRect' => + array ( + 0 => 'bool', + 'left' => 'float', + 'top' => 'float', + 'right' => 'float', + 'bottom' => 'float', + 'text' => 'string', + 'align=' => 'int', + ), + 'HttpDeflateStream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'HttpDeflateStream::factory' => + array ( + 0 => 'HttpDeflateStream', + 'flags=' => 'int', + 'class_name=' => 'string', + ), + 'HttpDeflateStream::finish' => + array ( + 0 => 'string', + 'data=' => 'string', + ), + 'HttpDeflateStream::flush' => + array ( + 0 => 'false|string', + 'data=' => 'string', + ), + 'HttpDeflateStream::update' => + array ( + 0 => 'false|string', + 'data' => 'string', + ), + 'HttpInflateStream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'HttpInflateStream::factory' => + array ( + 0 => 'HttpInflateStream', + 'flags=' => 'int', + 'class_name=' => 'string', + ), + 'HttpInflateStream::finish' => + array ( + 0 => 'string', + 'data=' => 'string', + ), + 'HttpInflateStream::flush' => + array ( + 0 => 'false|string', + 'data=' => 'string', + ), + 'HttpInflateStream::update' => + array ( + 0 => 'false|string', + 'data' => 'string', + ), + 'HttpMessage::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + ), + 'HttpMessage::__toString' => + array ( + 0 => 'string', + ), + 'HttpMessage::addHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + 'append=' => 'bool', + ), + 'HttpMessage::count' => + array ( + 0 => 'int', + ), + 'HttpMessage::current' => + array ( + 0 => 'mixed', + ), + 'HttpMessage::detach' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::factory' => + array ( + 0 => 'HttpMessage|null', + 'raw_message=' => 'string', + 'class_name=' => 'string', + ), + 'HttpMessage::fromEnv' => + array ( + 0 => 'HttpMessage|null', + 'message_type' => 'int', + 'class_name=' => 'string', + ), + 'HttpMessage::fromString' => + array ( + 0 => 'HttpMessage|null', + 'raw_message=' => 'string', + 'class_name=' => 'string', + ), + 'HttpMessage::getBody' => + array ( + 0 => 'string', + ), + 'HttpMessage::getHeader' => + array ( + 0 => 'null|string', + 'header' => 'string', + ), + 'HttpMessage::getHeaders' => + array ( + 0 => 'array', + ), + 'HttpMessage::getHttpVersion' => + array ( + 0 => 'string', + ), + 'HttpMessage::getInfo' => + array ( + 0 => 'mixed', + ), + 'HttpMessage::getParentMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'HttpMessage::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'HttpMessage::getResponseCode' => + array ( + 0 => 'int', + ), + 'HttpMessage::getResponseStatus' => + array ( + 0 => 'string', + ), + 'HttpMessage::getType' => + array ( + 0 => 'int', + ), + 'HttpMessage::guessContentType' => + array ( + 0 => 'false|string', + 'magic_file' => 'string', + 'magic_mode=' => 'int', + ), + 'HttpMessage::key' => + array ( + 0 => 'int|string', + ), + 'HttpMessage::next' => + array ( + 0 => 'void', + ), + 'HttpMessage::prepend' => + array ( + 0 => 'void', + 'message' => 'HttpMessage', + 'top=' => 'bool', + ), + 'HttpMessage::reverse' => + array ( + 0 => 'HttpMessage', + ), + 'HttpMessage::rewind' => + array ( + 0 => 'void', + ), + 'HttpMessage::send' => + array ( + 0 => 'bool', + ), + 'HttpMessage::serialize' => + array ( + 0 => 'string', + ), + 'HttpMessage::setBody' => + array ( + 0 => 'void', + 'body' => 'string', + ), + 'HttpMessage::setHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + ), + 'HttpMessage::setHttpVersion' => + array ( + 0 => 'bool', + 'version' => 'string', + ), + 'HttpMessage::setInfo' => + array ( + 0 => 'mixed', + 'http_info' => 'mixed', + ), + 'HttpMessage::setRequestMethod' => + array ( + 0 => 'bool', + 'method' => 'string', + ), + 'HttpMessage::setRequestUrl' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'HttpMessage::setResponseCode' => + array ( + 0 => 'bool', + 'code' => 'int', + ), + 'HttpMessage::setResponseStatus' => + array ( + 0 => 'bool', + 'status' => 'string', + ), + 'HttpMessage::setType' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'HttpMessage::toMessageTypeObject' => + array ( + 0 => 'HttpRequest|HttpResponse|null', + ), + 'HttpMessage::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'bool', + ), + 'HttpMessage::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'HttpMessage::valid' => + array ( + 0 => 'bool', + ), + 'HttpQueryString::__construct' => + array ( + 0 => 'void', + 'global=' => 'bool', + 'add=' => 'mixed', + ), + 'HttpQueryString::__toString' => + array ( + 0 => 'string', + ), + 'HttpQueryString::factory' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + 'params' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpQueryString::get' => + array ( + 0 => 'mixed', + 'key=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'HttpQueryString::getArray' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getBool' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getFloat' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getInt' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getObject' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::getString' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'defval' => 'mixed', + 'delete' => 'mixed', + ), + 'HttpQueryString::mod' => + array ( + 0 => 'HttpQueryString', + 'params' => 'mixed', + ), + 'HttpQueryString::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'HttpQueryString::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'HttpQueryString::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'HttpQueryString::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'HttpQueryString::serialize' => + array ( + 0 => 'string', + ), + 'HttpQueryString::set' => + array ( + 0 => 'string', + 'params' => 'mixed', + ), + 'HttpQueryString::singleton' => + array ( + 0 => 'HttpQueryString', + 'global=' => 'bool', + ), + 'HttpQueryString::toArray' => + array ( + 0 => 'array', + ), + 'HttpQueryString::toString' => + array ( + 0 => 'string', + ), + 'HttpQueryString::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'HttpQueryString::xlate' => + array ( + 0 => 'bool', + 'ie' => 'string', + 'oe' => 'string', + ), + 'HttpRequest::__construct' => + array ( + 0 => 'void', + 'url=' => 'string', + 'request_method=' => 'int', + 'options=' => 'array', + ), + 'HttpRequest::addBody' => + array ( + 0 => 'mixed', + 'request_body_data' => 'mixed', + ), + 'HttpRequest::addCookies' => + array ( + 0 => 'bool', + 'cookies' => 'array', + ), + 'HttpRequest::addHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'HttpRequest::addPostFields' => + array ( + 0 => 'bool', + 'post_data' => 'array', + ), + 'HttpRequest::addPostFile' => + array ( + 0 => 'bool', + 'name' => 'string', + 'file' => 'string', + 'content_type=' => 'string', + ), + 'HttpRequest::addPutData' => + array ( + 0 => 'bool', + 'put_data' => 'string', + ), + 'HttpRequest::addQueryData' => + array ( + 0 => 'bool', + 'query_params' => 'array', + ), + 'HttpRequest::addRawPostData' => + array ( + 0 => 'bool', + 'raw_post_data' => 'string', + ), + 'HttpRequest::addSslOptions' => + array ( + 0 => 'bool', + 'options' => 'array', + ), + 'HttpRequest::clearHistory' => + array ( + 0 => 'void', + ), + 'HttpRequest::enableCookies' => + array ( + 0 => 'bool', + ), + 'HttpRequest::encodeBody' => + array ( + 0 => 'mixed', + 'fields' => 'mixed', + 'files' => 'mixed', + ), + 'HttpRequest::factory' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'method' => 'mixed', + 'options' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpRequest::flushCookies' => + array ( + 0 => 'mixed', + ), + 'HttpRequest::get' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::getBody' => + array ( + 0 => 'mixed', + ), + 'HttpRequest::getContentType' => + array ( + 0 => 'string', + ), + 'HttpRequest::getCookies' => + array ( + 0 => 'array', + ), + 'HttpRequest::getHeaders' => + array ( + 0 => 'array', + ), + 'HttpRequest::getHistory' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getMethod' => + array ( + 0 => 'int', + ), + 'HttpRequest::getOptions' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPostFields' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPostFiles' => + array ( + 0 => 'array', + ), + 'HttpRequest::getPutData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getPutFile' => + array ( + 0 => 'string', + ), + 'HttpRequest::getQueryData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawPostData' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawRequestMessage' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRawResponseMessage' => + array ( + 0 => 'string', + ), + 'HttpRequest::getRequestMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getResponseBody' => + array ( + 0 => 'string', + ), + 'HttpRequest::getResponseCode' => + array ( + 0 => 'int', + ), + 'HttpRequest::getResponseCookies' => + array ( + 0 => 'array', + 'flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'HttpRequest::getResponseData' => + array ( + 0 => 'array', + ), + 'HttpRequest::getResponseHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpRequest::getResponseInfo' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpRequest::getResponseMessage' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::getResponseStatus' => + array ( + 0 => 'string', + ), + 'HttpRequest::getSslOptions' => + array ( + 0 => 'array', + ), + 'HttpRequest::getUrl' => + array ( + 0 => 'string', + ), + 'HttpRequest::head' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::methodExists' => + array ( + 0 => 'mixed', + 'method' => 'mixed', + ), + 'HttpRequest::methodName' => + array ( + 0 => 'mixed', + 'method_id' => 'mixed', + ), + 'HttpRequest::methodRegister' => + array ( + 0 => 'mixed', + 'method_name' => 'mixed', + ), + 'HttpRequest::methodUnregister' => + array ( + 0 => 'mixed', + 'method' => 'mixed', + ), + 'HttpRequest::postData' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::postFields' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putData' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'data' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putFile' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'file' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::putStream' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'stream' => 'mixed', + 'options' => 'mixed', + '&info' => 'mixed', + ), + 'HttpRequest::resetCookies' => + array ( + 0 => 'bool', + 'session_only=' => 'bool', + ), + 'HttpRequest::send' => + array ( + 0 => 'HttpMessage', + ), + 'HttpRequest::setBody' => + array ( + 0 => 'bool', + 'request_body_data=' => 'string', + ), + 'HttpRequest::setContentType' => + array ( + 0 => 'bool', + 'content_type' => 'string', + ), + 'HttpRequest::setCookies' => + array ( + 0 => 'bool', + 'cookies=' => 'array', + ), + 'HttpRequest::setHeaders' => + array ( + 0 => 'bool', + 'headers=' => 'array', + ), + 'HttpRequest::setMethod' => + array ( + 0 => 'bool', + 'request_method' => 'int', + ), + 'HttpRequest::setOptions' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'HttpRequest::setPostFields' => + array ( + 0 => 'bool', + 'post_data' => 'array', + ), + 'HttpRequest::setPostFiles' => + array ( + 0 => 'bool', + 'post_files' => 'array', + ), + 'HttpRequest::setPutData' => + array ( + 0 => 'bool', + 'put_data=' => 'string', + ), + 'HttpRequest::setPutFile' => + array ( + 0 => 'bool', + 'file=' => 'string', + ), + 'HttpRequest::setQueryData' => + array ( + 0 => 'bool', + 'query_data' => 'mixed', + ), + 'HttpRequest::setRawPostData' => + array ( + 0 => 'bool', + 'raw_post_data=' => 'string', + ), + 'HttpRequest::setSslOptions' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'HttpRequest::setUrl' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'HttpRequestDataShare::__construct' => + array ( + 0 => 'void', + ), + 'HttpRequestDataShare::__destruct' => + array ( + 0 => 'void', + ), + 'HttpRequestDataShare::attach' => + array ( + 0 => 'mixed', + 'request' => 'HttpRequest', + ), + 'HttpRequestDataShare::count' => + array ( + 0 => 'int', + ), + 'HttpRequestDataShare::detach' => + array ( + 0 => 'mixed', + 'request' => 'HttpRequest', + ), + 'HttpRequestDataShare::factory' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + 'class_name' => 'mixed', + ), + 'HttpRequestDataShare::reset' => + array ( + 0 => 'mixed', + ), + 'HttpRequestDataShare::singleton' => + array ( + 0 => 'mixed', + 'global' => 'mixed', + ), + 'HttpRequestPool::__construct' => + array ( + 0 => 'void', + 'request=' => 'HttpRequest', + ), + 'HttpRequestPool::__destruct' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::attach' => + array ( + 0 => 'bool', + 'request' => 'HttpRequest', + ), + 'HttpRequestPool::count' => + array ( + 0 => 'int', + ), + 'HttpRequestPool::current' => + array ( + 0 => 'mixed', + ), + 'HttpRequestPool::detach' => + array ( + 0 => 'bool', + 'request' => 'HttpRequest', + ), + 'HttpRequestPool::enableEvents' => + array ( + 0 => 'mixed', + 'enable' => 'mixed', + ), + 'HttpRequestPool::enablePipelining' => + array ( + 0 => 'mixed', + 'enable' => 'mixed', + ), + 'HttpRequestPool::getAttachedRequests' => + array ( + 0 => 'array', + ), + 'HttpRequestPool::getFinishedRequests' => + array ( + 0 => 'array', + ), + 'HttpRequestPool::key' => + array ( + 0 => 'int|string', + ), + 'HttpRequestPool::next' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::reset' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::rewind' => + array ( + 0 => 'void', + ), + 'HttpRequestPool::send' => + array ( + 0 => 'bool', + ), + 'HttpRequestPool::socketPerform' => + array ( + 0 => 'bool', + ), + 'HttpRequestPool::socketSelect' => + array ( + 0 => 'bool', + 'timeout=' => 'float', + ), + 'HttpRequestPool::valid' => + array ( + 0 => 'bool', + ), + 'HttpResponse::capture' => + array ( + 0 => 'void', + ), + 'HttpResponse::getBufferSize' => + array ( + 0 => 'int', + ), + 'HttpResponse::getCache' => + array ( + 0 => 'bool', + ), + 'HttpResponse::getCacheControl' => + array ( + 0 => 'string', + ), + 'HttpResponse::getContentDisposition' => + array ( + 0 => 'string', + ), + 'HttpResponse::getContentType' => + array ( + 0 => 'string', + ), + 'HttpResponse::getData' => + array ( + 0 => 'string', + ), + 'HttpResponse::getETag' => + array ( + 0 => 'string', + ), + 'HttpResponse::getFile' => + array ( + 0 => 'string', + ), + 'HttpResponse::getGzip' => + array ( + 0 => 'bool', + ), + 'HttpResponse::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'HttpResponse::getLastModified' => + array ( + 0 => 'int', + ), + 'HttpResponse::getRequestBody' => + array ( + 0 => 'string', + ), + 'HttpResponse::getRequestBodyStream' => + array ( + 0 => 'resource', + ), + 'HttpResponse::getRequestHeaders' => + array ( + 0 => 'array', + ), + 'HttpResponse::getStream' => + array ( + 0 => 'resource', + ), + 'HttpResponse::getThrottleDelay' => + array ( + 0 => 'float', + ), + 'HttpResponse::guessContentType' => + array ( + 0 => 'false|string', + 'magic_file' => 'string', + 'magic_mode=' => 'int', + ), + 'HttpResponse::redirect' => + array ( + 0 => 'void', + 'url=' => 'string', + 'params=' => 'array', + 'session=' => 'bool', + 'status=' => 'int', + ), + 'HttpResponse::send' => + array ( + 0 => 'bool', + 'clean_ob=' => 'bool', + ), + 'HttpResponse::setBufferSize' => + array ( + 0 => 'bool', + 'bytes' => 'int', + ), + 'HttpResponse::setCache' => + array ( + 0 => 'bool', + 'cache' => 'bool', + ), + 'HttpResponse::setCacheControl' => + array ( + 0 => 'bool', + 'control' => 'string', + 'max_age=' => 'int', + 'must_revalidate=' => 'bool', + ), + 'HttpResponse::setContentDisposition' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'inline=' => 'bool', + ), + 'HttpResponse::setContentType' => + array ( + 0 => 'bool', + 'content_type' => 'string', + ), + 'HttpResponse::setData' => + array ( + 0 => 'bool', + 'data' => 'mixed', + ), + 'HttpResponse::setETag' => + array ( + 0 => 'bool', + 'etag' => 'string', + ), + 'HttpResponse::setFile' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'HttpResponse::setGzip' => + array ( + 0 => 'bool', + 'gzip' => 'bool', + ), + 'HttpResponse::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'mixed', + 'replace=' => 'bool', + ), + 'HttpResponse::setLastModified' => + array ( + 0 => 'bool', + 'timestamp' => 'int', + ), + 'HttpResponse::setStream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'HttpResponse::setThrottleDelay' => + array ( + 0 => 'bool', + 'seconds' => 'float', + ), + 'HttpResponse::status' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'HttpUtil::buildCookie' => + array ( + 0 => 'mixed', + 'cookie_array' => 'mixed', + ), + 'HttpUtil::buildStr' => + array ( + 0 => 'mixed', + 'query' => 'mixed', + 'prefix' => 'mixed', + 'arg_sep' => 'mixed', + ), + 'HttpUtil::buildUrl' => + array ( + 0 => 'mixed', + 'url' => 'mixed', + 'parts' => 'mixed', + 'flags' => 'mixed', + '&composed' => 'mixed', + ), + 'HttpUtil::chunkedDecode' => + array ( + 0 => 'mixed', + 'encoded_string' => 'mixed', + ), + 'HttpUtil::date' => + array ( + 0 => 'mixed', + 'timestamp' => 'mixed', + ), + 'HttpUtil::deflate' => + array ( + 0 => 'mixed', + 'plain' => 'mixed', + 'flags' => 'mixed', + ), + 'HttpUtil::inflate' => + array ( + 0 => 'mixed', + 'encoded' => 'mixed', + ), + 'HttpUtil::matchEtag' => + array ( + 0 => 'mixed', + 'plain_etag' => 'mixed', + 'for_range' => 'mixed', + ), + 'HttpUtil::matchModified' => + array ( + 0 => 'mixed', + 'last_modified' => 'mixed', + 'for_range' => 'mixed', + ), + 'HttpUtil::matchRequestHeader' => + array ( + 0 => 'mixed', + 'header_name' => 'mixed', + 'header_value' => 'mixed', + 'case_sensitive' => 'mixed', + ), + 'HttpUtil::negotiateCharset' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::negotiateContentType' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::negotiateLanguage' => + array ( + 0 => 'mixed', + 'supported' => 'mixed', + '&result' => 'mixed', + ), + 'HttpUtil::parseCookie' => + array ( + 0 => 'mixed', + 'cookie_string' => 'mixed', + ), + 'HttpUtil::parseHeaders' => + array ( + 0 => 'mixed', + 'headers_string' => 'mixed', + ), + 'HttpUtil::parseMessage' => + array ( + 0 => 'mixed', + 'message_string' => 'mixed', + ), + 'HttpUtil::parseParams' => + array ( + 0 => 'mixed', + 'param_string' => 'mixed', + 'flags' => 'mixed', + ), + 'HttpUtil::support' => + array ( + 0 => 'mixed', + 'feature' => 'mixed', + ), + 'Imagick::__construct' => + array ( + 0 => 'void', + 'files=' => 'array|string', + ), + 'Imagick::__toString' => + array ( + 0 => 'string', + ), + 'Imagick::adaptiveBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::adaptiveResizeImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + ), + 'Imagick::adaptiveSharpenImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::adaptiveThresholdImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'offset' => 'int', + ), + 'Imagick::addImage' => + array ( + 0 => 'bool', + 'source' => 'Imagick', + ), + 'Imagick::addNoiseImage' => + array ( + 0 => 'bool', + 'noise_type' => 'int', + 'channel=' => 'int', + ), + 'Imagick::affineTransformImage' => + array ( + 0 => 'bool', + 'matrix' => 'ImagickDraw', + ), + 'Imagick::animateImages' => + array ( + 0 => 'bool', + 'x_server' => 'string', + ), + 'Imagick::annotateImage' => + array ( + 0 => 'bool', + 'draw_settings' => 'ImagickDraw', + 'x' => 'float', + 'y' => 'float', + 'angle' => 'float', + 'text' => 'string', + ), + 'Imagick::appendImages' => + array ( + 0 => 'Imagick', + 'stack' => 'bool', + ), + 'Imagick::autoGammaImage' => + array ( + 0 => 'bool', + 'channel=' => 'int', + ), + 'Imagick::autoLevelImage' => + array ( + 0 => 'void', + 'CHANNEL=' => 'string', + ), + 'Imagick::autoOrient' => + array ( + 0 => 'bool', + ), + 'Imagick::averageImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::blackThresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'mixed', + ), + 'Imagick::blueShiftImage' => + array ( + 0 => 'void', + 'factor=' => 'float', + ), + 'Imagick::blurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::borderImage' => + array ( + 0 => 'bool', + 'bordercolor' => 'mixed', + 'width' => 'int', + 'height' => 'int', + ), + 'Imagick::brightnessContrastImage' => + array ( + 0 => 'void', + 'brightness' => 'string', + 'contrast' => 'string', + 'CHANNEL=' => 'string', + ), + 'Imagick::charcoalImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Imagick::chopImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::clampImage' => + array ( + 0 => 'void', + 'CHANNEL=' => 'string', + ), + 'Imagick::clear' => + array ( + 0 => 'bool', + ), + 'Imagick::clipImage' => + array ( + 0 => 'bool', + ), + 'Imagick::clipImagePath' => + array ( + 0 => 'void', + 'pathname' => 'string', + 'inside' => 'string', + ), + 'Imagick::clipPathImage' => + array ( + 0 => 'bool', + 'pathname' => 'string', + 'inside' => 'bool', + ), + 'Imagick::clone' => + array ( + 0 => 'Imagick', + ), + 'Imagick::clutImage' => + array ( + 0 => 'bool', + 'lookup_table' => 'Imagick', + 'channel=' => 'float', + ), + 'Imagick::coalesceImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::colorFloodfillImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::colorMatrixImage' => + array ( + 0 => 'void', + 'color_matrix' => 'string', + ), + 'Imagick::colorizeImage' => + array ( + 0 => 'bool', + 'colorize' => 'mixed', + 'opacity' => 'mixed', + ), + 'Imagick::combineImages' => + array ( + 0 => 'Imagick', + 'channeltype' => 'int', + ), + 'Imagick::commentImage' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'Imagick::compareImageChannels' => + array ( + 0 => 'list{Imagick, float}', + 'image' => 'Imagick', + 'channeltype' => 'int', + 'metrictype' => 'int', + ), + 'Imagick::compareImageLayers' => + array ( + 0 => 'Imagick', + 'method' => 'int', + ), + 'Imagick::compareImages' => + array ( + 0 => 'list{Imagick, float}', + 'compare' => 'Imagick', + 'metric' => 'int', + ), + 'Imagick::compositeImage' => + array ( + 0 => 'bool', + 'composite_object' => 'Imagick', + 'composite' => 'int', + 'x' => 'int', + 'y' => 'int', + 'channel=' => 'int', + ), + 'Imagick::compositeImageGravity' => + array ( + 0 => 'bool', + 'Imagick' => 'Imagick', + 'COMPOSITE_CONSTANT' => 'int', + 'GRAVITY_CONSTANT' => 'int', + ), + 'Imagick::contrastImage' => + array ( + 0 => 'bool', + 'sharpen' => 'bool', + ), + 'Imagick::contrastStretchImage' => + array ( + 0 => 'bool', + 'black_point' => 'float', + 'white_point' => 'float', + 'channel=' => 'int', + ), + 'Imagick::convolveImage' => + array ( + 0 => 'bool', + 'kernel' => 'array', + 'channel=' => 'int', + ), + 'Imagick::count' => + array ( + 0 => 'void', + 'mode=' => 'string', + ), + 'Imagick::cropImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::cropThumbnailImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'legacy=' => 'bool', + ), + 'Imagick::current' => + array ( + 0 => 'Imagick', + ), + 'Imagick::cycleColormapImage' => + array ( + 0 => 'bool', + 'displace' => 'int', + ), + 'Imagick::decipherImage' => + array ( + 0 => 'bool', + 'passphrase' => 'string', + ), + 'Imagick::deconstructImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::deleteImageArtifact' => + array ( + 0 => 'bool', + 'artifact' => 'string', + ), + 'Imagick::deleteImageProperty' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Imagick::deskewImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + ), + 'Imagick::despeckleImage' => + array ( + 0 => 'bool', + ), + 'Imagick::destroy' => + array ( + 0 => 'bool', + ), + 'Imagick::displayImage' => + array ( + 0 => 'bool', + 'servername' => 'string', + ), + 'Imagick::displayImages' => + array ( + 0 => 'bool', + 'servername' => 'string', + ), + 'Imagick::distortImage' => + array ( + 0 => 'bool', + 'method' => 'int', + 'arguments' => 'array', + 'bestfit' => 'bool', + ), + 'Imagick::drawImage' => + array ( + 0 => 'bool', + 'draw' => 'ImagickDraw', + ), + 'Imagick::edgeImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::embossImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + ), + 'Imagick::encipherImage' => + array ( + 0 => 'bool', + 'passphrase' => 'string', + ), + 'Imagick::enhanceImage' => + array ( + 0 => 'bool', + ), + 'Imagick::equalizeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::evaluateImage' => + array ( + 0 => 'bool', + 'op' => 'int', + 'constant' => 'float', + 'channel=' => 'int', + ), + 'Imagick::evaluateImages' => + array ( + 0 => 'bool', + 'EVALUATE_CONSTANT' => 'int', + ), + 'Imagick::exportImagePixels' => + array ( + 0 => 'list', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'map' => 'string', + 'storage' => 'int', + ), + 'Imagick::extentImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::filter' => + array ( + 0 => 'void', + 'ImagickKernel' => 'ImagickKernel', + 'CHANNEL=' => 'int', + ), + 'Imagick::flattenImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::flipImage' => + array ( + 0 => 'bool', + ), + 'Imagick::floodFillPaintImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'target' => 'mixed', + 'x' => 'int', + 'y' => 'int', + 'invert' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::flopImage' => + array ( + 0 => 'bool', + ), + 'Imagick::forwardFourierTransformimage' => + array ( + 0 => 'void', + 'magnitude' => 'bool', + ), + 'Imagick::frameImage' => + array ( + 0 => 'bool', + 'matte_color' => 'mixed', + 'width' => 'int', + 'height' => 'int', + 'inner_bevel' => 'int', + 'outer_bevel' => 'int', + ), + 'Imagick::functionImage' => + array ( + 0 => 'bool', + 'function' => 'int', + 'arguments' => 'array', + 'channel=' => 'int', + ), + 'Imagick::fxImage' => + array ( + 0 => 'Imagick', + 'expression' => 'string', + 'channel=' => 'int', + ), + 'Imagick::gammaImage' => + array ( + 0 => 'bool', + 'gamma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::gaussianBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::getColorspace' => + array ( + 0 => 'int', + ), + 'Imagick::getCompression' => + array ( + 0 => 'int', + ), + 'Imagick::getCompressionQuality' => + array ( + 0 => 'int', + ), + 'Imagick::getConfigureOptions' => + array ( + 0 => 'string', + ), + 'Imagick::getCopyright' => + array ( + 0 => 'string', + ), + 'Imagick::getFeatures' => + array ( + 0 => 'string', + ), + 'Imagick::getFilename' => + array ( + 0 => 'string', + ), + 'Imagick::getFont' => + array ( + 0 => 'false|string', + ), + 'Imagick::getFormat' => + array ( + 0 => 'string', + ), + 'Imagick::getGravity' => + array ( + 0 => 'int', + ), + 'Imagick::getHDRIEnabled' => + array ( + 0 => 'int', + ), + 'Imagick::getHomeURL' => + array ( + 0 => 'string', + ), + 'Imagick::getImage' => + array ( + 0 => 'Imagick', + ), + 'Imagick::getImageAlphaChannel' => + array ( + 0 => 'int', + ), + 'Imagick::getImageArtifact' => + array ( + 0 => 'string', + 'artifact' => 'string', + ), + 'Imagick::getImageAttribute' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'Imagick::getImageBackgroundColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageBlob' => + array ( + 0 => 'string', + ), + 'Imagick::getImageBluePrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageBorderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageChannelDepth' => + array ( + 0 => 'int', + 'channel' => 'int', + ), + 'Imagick::getImageChannelDistortion' => + array ( + 0 => 'float', + 'reference' => 'Imagick', + 'channel' => 'int', + 'metric' => 'int', + ), + 'Imagick::getImageChannelDistortions' => + array ( + 0 => 'float', + 'reference' => 'Imagick', + 'metric' => 'int', + 'channel=' => 'int', + ), + 'Imagick::getImageChannelExtrema' => + array ( + 0 => 'array{maxima: int, minima: int}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelKurtosis' => + array ( + 0 => 'array{kurtosis: float, skewness: float}', + 'channel=' => 'int', + ), + 'Imagick::getImageChannelMean' => + array ( + 0 => 'array{mean: float, standardDeviation: float}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelRange' => + array ( + 0 => 'array{maxima: float, minima: float}', + 'channel' => 'int', + ), + 'Imagick::getImageChannelStatistics' => + array ( + 0 => 'array', + ), + 'Imagick::getImageClipMask' => + array ( + 0 => 'Imagick', + ), + 'Imagick::getImageColormapColor' => + array ( + 0 => 'ImagickPixel', + 'index' => 'int', + ), + 'Imagick::getImageColors' => + array ( + 0 => 'int', + ), + 'Imagick::getImageColorspace' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompose' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompression' => + array ( + 0 => 'int', + ), + 'Imagick::getImageCompressionQuality' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDelay' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDepth' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDispose' => + array ( + 0 => 'int', + ), + 'Imagick::getImageDistortion' => + array ( + 0 => 'float', + 'reference' => 'magickwand', + 'metric' => 'int', + ), + 'Imagick::getImageExtrema' => + array ( + 0 => 'array{max: int, min: int}', + ), + 'Imagick::getImageFilename' => + array ( + 0 => 'string', + ), + 'Imagick::getImageFormat' => + array ( + 0 => 'string', + ), + 'Imagick::getImageGamma' => + array ( + 0 => 'float', + ), + 'Imagick::getImageGeometry' => + array ( + 0 => 'array{height: int, width: int}', + ), + 'Imagick::getImageGravity' => + array ( + 0 => 'int', + ), + 'Imagick::getImageGreenPrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageHeight' => + array ( + 0 => 'int', + ), + 'Imagick::getImageHistogram' => + array ( + 0 => 'list', + ), + 'Imagick::getImageIndex' => + array ( + 0 => 'int', + ), + 'Imagick::getImageInterlaceScheme' => + array ( + 0 => 'int', + ), + 'Imagick::getImageInterpolateMethod' => + array ( + 0 => 'int', + ), + 'Imagick::getImageIterations' => + array ( + 0 => 'int', + ), + 'Imagick::getImageLength' => + array ( + 0 => 'int', + ), + 'Imagick::getImageMagickLicense' => + array ( + 0 => 'string', + ), + 'Imagick::getImageMatte' => + array ( + 0 => 'bool', + ), + 'Imagick::getImageMatteColor' => + array ( + 0 => 'ImagickPixel', + ), + 'Imagick::getImageMimeType' => + array ( + 0 => 'string', + ), + 'Imagick::getImageOrientation' => + array ( + 0 => 'int', + ), + 'Imagick::getImagePage' => + array ( + 0 => 'array{height: int, width: int, x: int, y: int}', + ), + 'Imagick::getImagePixelColor' => + array ( + 0 => 'ImagickPixel', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::getImageProfile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Imagick::getImageProfiles' => + array ( + 0 => 'array', + 'pattern=' => 'string', + 'only_names=' => 'bool', + ), + 'Imagick::getImageProperties' => + array ( + 0 => 'array', + 'pattern=' => 'string', + 'only_names=' => 'bool', + ), + 'Imagick::getImageProperty' => + array ( + 0 => 'false|string', + 'name' => 'string', + ), + 'Imagick::getImageRedPrimary' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageRegion' => + array ( + 0 => 'Imagick', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::getImageRenderingIntent' => + array ( + 0 => 'int', + ), + 'Imagick::getImageResolution' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageScene' => + array ( + 0 => 'int', + ), + 'Imagick::getImageSignature' => + array ( + 0 => 'string', + ), + 'Imagick::getImageSize' => + array ( + 0 => 'int', + ), + 'Imagick::getImageTicksPerSecond' => + array ( + 0 => 'int', + ), + 'Imagick::getImageTotalInkDensity' => + array ( + 0 => 'float', + ), + 'Imagick::getImageType' => + array ( + 0 => 'int', + ), + 'Imagick::getImageUnits' => + array ( + 0 => 'int', + ), + 'Imagick::getImageVirtualPixelMethod' => + array ( + 0 => 'int', + ), + 'Imagick::getImageWhitePoint' => + array ( + 0 => 'array{x: float, y: float}', + ), + 'Imagick::getImageWidth' => + array ( + 0 => 'int', + ), + 'Imagick::getImagesBlob' => + array ( + 0 => 'string', + ), + 'Imagick::getInterlaceScheme' => + array ( + 0 => 'int', + ), + 'Imagick::getIteratorIndex' => + array ( + 0 => 'int', + ), + 'Imagick::getNumberImages' => + array ( + 0 => 'int', + ), + 'Imagick::getOption' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'Imagick::getPackageName' => + array ( + 0 => 'string', + ), + 'Imagick::getPage' => + array ( + 0 => 'array{height: int, width: int, x: int, y: int}', + ), + 'Imagick::getPixelIterator' => + array ( + 0 => 'ImagickPixelIterator', + ), + 'Imagick::getPixelRegionIterator' => + array ( + 0 => 'ImagickPixelIterator', + 'x' => 'int', + 'y' => 'int', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::getPointSize' => + array ( + 0 => 'float', + ), + 'Imagick::getQuantum' => + array ( + 0 => 'int', + ), + 'Imagick::getQuantumDepth' => + array ( + 0 => 'array{quantumDepthLong: int, quantumDepthString: string}', + ), + 'Imagick::getQuantumRange' => + array ( + 0 => 'array{quantumRangeLong: int, quantumRangeString: string}', + ), + 'Imagick::getRegistry' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Imagick::getReleaseDate' => + array ( + 0 => 'string', + ), + 'Imagick::getResource' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'Imagick::getResourceLimit' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'Imagick::getSamplingFactors' => + array ( + 0 => 'array', + ), + 'Imagick::getSize' => + array ( + 0 => 'array{columns: int, rows: int}', + ), + 'Imagick::getSizeOffset' => + array ( + 0 => 'int', + ), + 'Imagick::getVersion' => + array ( + 0 => 'array{versionNumber: int, versionString: string}', + ), + 'Imagick::haldClutImage' => + array ( + 0 => 'bool', + 'clut' => 'Imagick', + 'channel=' => 'int', + ), + 'Imagick::hasNextImage' => + array ( + 0 => 'bool', + ), + 'Imagick::hasPreviousImage' => + array ( + 0 => 'bool', + ), + 'Imagick::identifyFormat' => + array ( + 0 => 'false|string', + 'embedText' => 'string', + ), + 'Imagick::identifyImage' => + array ( + 0 => 'array', + 'appendrawoutput=' => 'bool', + ), + 'Imagick::identifyImageType' => + array ( + 0 => 'int', + ), + 'Imagick::implodeImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::importImagePixels' => + array ( + 0 => 'bool', + 'x' => 'int', + 'y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'map' => 'string', + 'storage' => 'int', + 'pixels' => 'list', + ), + 'Imagick::inverseFourierTransformImage' => + array ( + 0 => 'void', + 'complement' => 'string', + 'magnitude' => 'string', + ), + 'Imagick::key' => + array ( + 0 => 'int|string', + ), + 'Imagick::labelImage' => + array ( + 0 => 'bool', + 'label' => 'string', + ), + 'Imagick::levelImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'gamma' => 'float', + 'whitepoint' => 'float', + 'channel=' => 'int', + ), + 'Imagick::linearStretchImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'whitepoint' => 'float', + ), + 'Imagick::liquidRescaleImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'delta_x' => 'float', + 'rigidity' => 'float', + ), + 'Imagick::listRegistry' => + array ( + 0 => 'array', + ), + 'Imagick::localContrastImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'strength' => 'float', + ), + 'Imagick::magnifyImage' => + array ( + 0 => 'bool', + ), + 'Imagick::mapImage' => + array ( + 0 => 'bool', + 'map' => 'Imagick', + 'dither' => 'bool', + ), + 'Imagick::matteFloodfillImage' => + array ( + 0 => 'bool', + 'alpha' => 'float', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::medianFilterImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::mergeImageLayers' => + array ( + 0 => 'Imagick', + 'layer_method' => 'int', + ), + 'Imagick::minifyImage' => + array ( + 0 => 'bool', + ), + 'Imagick::modulateImage' => + array ( + 0 => 'bool', + 'brightness' => 'float', + 'saturation' => 'float', + 'hue' => 'float', + ), + 'Imagick::montageImage' => + array ( + 0 => 'Imagick', + 'draw' => 'ImagickDraw', + 'tile_geometry' => 'string', + 'thumbnail_geometry' => 'string', + 'mode' => 'int', + 'frame' => 'string', + ), + 'Imagick::morphImages' => + array ( + 0 => 'Imagick', + 'number_frames' => 'int', + ), + 'Imagick::morphology' => + array ( + 0 => 'void', + 'morphologyMethod' => 'int', + 'iterations' => 'int', + 'ImagickKernel' => 'ImagickKernel', + 'CHANNEL=' => 'string', + ), + 'Imagick::mosaicImages' => + array ( + 0 => 'Imagick', + ), + 'Imagick::motionBlurImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Imagick::negateImage' => + array ( + 0 => 'bool', + 'gray' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::newImage' => + array ( + 0 => 'bool', + 'cols' => 'int', + 'rows' => 'int', + 'background' => 'mixed', + 'format=' => 'string', + ), + 'Imagick::newPseudoImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'pseudostring' => 'string', + ), + 'Imagick::next' => + array ( + 0 => 'void', + ), + 'Imagick::nextImage' => + array ( + 0 => 'bool', + ), + 'Imagick::normalizeImage' => + array ( + 0 => 'bool', + 'channel=' => 'int', + ), + 'Imagick::oilPaintImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::opaquePaintImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'invert' => 'bool', + 'channel=' => 'int', + ), + 'Imagick::optimizeImageLayers' => + array ( + 0 => 'bool', + ), + 'Imagick::orderedPosterizeImage' => + array ( + 0 => 'bool', + 'threshold_map' => 'string', + 'channel=' => 'int', + ), + 'Imagick::paintFloodfillImage' => + array ( + 0 => 'bool', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'bordercolor' => 'mixed', + 'x' => 'int', + 'y' => 'int', + 'channel=' => 'int', + ), + 'Imagick::paintOpaqueImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'fill' => 'mixed', + 'fuzz' => 'float', + 'channel=' => 'int', + ), + 'Imagick::paintTransparentImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'alpha' => 'float', + 'fuzz' => 'float', + ), + 'Imagick::pingImage' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::pingImageBlob' => + array ( + 0 => 'bool', + 'image' => 'string', + ), + 'Imagick::pingImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename=' => 'string', + ), + 'Imagick::polaroidImage' => + array ( + 0 => 'bool', + 'properties' => 'ImagickDraw', + 'angle' => 'float', + ), + 'Imagick::posterizeImage' => + array ( + 0 => 'bool', + 'levels' => 'int', + 'dither' => 'bool', + ), + 'Imagick::previewImages' => + array ( + 0 => 'bool', + 'preview' => 'int', + ), + 'Imagick::previousImage' => + array ( + 0 => 'bool', + ), + 'Imagick::profileImage' => + array ( + 0 => 'bool', + 'name' => 'string', + 'profile' => 'string', + ), + 'Imagick::quantizeImage' => + array ( + 0 => 'bool', + 'numbercolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Imagick::quantizeImages' => + array ( + 0 => 'bool', + 'numbercolors' => 'int', + 'colorspace' => 'int', + 'treedepth' => 'int', + 'dither' => 'bool', + 'measureerror' => 'bool', + ), + 'Imagick::queryFontMetrics' => + array ( + 0 => 'array', + 'properties' => 'ImagickDraw', + 'text' => 'string', + 'multiline=' => 'bool', + ), + 'Imagick::queryFonts' => + array ( + 0 => 'array', + 'pattern=' => 'string', + ), + 'Imagick::queryFormats' => + array ( + 0 => 'list', + 'pattern=' => 'string', + ), + 'Imagick::radialBlurImage' => + array ( + 0 => 'bool', + 'angle' => 'float', + 'channel=' => 'int', + ), + 'Imagick::raiseImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + 'raise' => 'bool', + ), + 'Imagick::randomThresholdImage' => + array ( + 0 => 'bool', + 'low' => 'float', + 'high' => 'float', + 'channel=' => 'int', + ), + 'Imagick::readImage' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::readImageBlob' => + array ( + 0 => 'bool', + 'image' => 'string', + 'filename=' => 'string', + ), + 'Imagick::readImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename=' => 'string', + ), + 'Imagick::readImages' => + array ( + 0 => 'Imagick', + 'filenames' => 'string', + ), + 'Imagick::recolorImage' => + array ( + 0 => 'bool', + 'matrix' => 'list', + ), + 'Imagick::reduceNoiseImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::remapImage' => + array ( + 0 => 'bool', + 'replacement' => 'Imagick', + 'dither' => 'int', + ), + 'Imagick::removeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::removeImageProfile' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'Imagick::render' => + array ( + 0 => 'bool', + ), + 'Imagick::resampleImage' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + 'filter' => 'int', + 'blur' => 'float', + ), + 'Imagick::resetImagePage' => + array ( + 0 => 'bool', + 'page' => 'string', + ), + 'Imagick::resetIterator' => + array ( + 0 => 'mixed', + ), + 'Imagick::resizeImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'filter' => 'int', + 'blur' => 'float', + 'bestfit=' => 'bool', + ), + 'Imagick::rewind' => + array ( + 0 => 'void', + ), + 'Imagick::rollImage' => + array ( + 0 => 'bool', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::rotateImage' => + array ( + 0 => 'bool', + 'background' => 'mixed', + 'degrees' => 'float', + ), + 'Imagick::rotationalBlurImage' => + array ( + 0 => 'void', + 'angle' => 'string', + 'CHANNEL=' => 'string', + ), + 'Imagick::roundCorners' => + array ( + 0 => 'bool', + 'x_rounding' => 'float', + 'y_rounding' => 'float', + 'stroke_width=' => 'float', + 'displace=' => 'float', + 'size_correction=' => 'float', + ), + 'Imagick::roundCornersImage' => + array ( + 0 => 'mixed', + 'xRounding' => 'mixed', + 'yRounding' => 'mixed', + 'strokeWidth' => 'mixed', + 'displace' => 'mixed', + 'sizeCorrection' => 'mixed', + ), + 'Imagick::sampleImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::scaleImage' => + array ( + 0 => 'bool', + 'cols' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + ), + 'Imagick::segmentImage' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + 'cluster_threshold' => 'float', + 'smooth_threshold' => 'float', + 'verbose=' => 'bool', + ), + 'Imagick::selectiveBlurImage' => + array ( + 0 => 'void', + 'radius' => 'float', + 'sigma' => 'float', + 'threshold' => 'float', + 'CHANNEL' => 'int', + ), + 'Imagick::separateImageChannel' => + array ( + 0 => 'bool', + 'channel' => 'int', + ), + 'Imagick::sepiaToneImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + ), + 'Imagick::setAntiAlias' => + array ( + 0 => 'int', + 'antialias' => 'bool', + ), + 'Imagick::setBackgroundColor' => + array ( + 0 => 'bool', + 'background' => 'mixed', + ), + 'Imagick::setColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::setCompression' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'Imagick::setCompressionQuality' => + array ( + 0 => 'bool', + 'quality' => 'int', + ), + 'Imagick::setFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::setFirstIterator' => + array ( + 0 => 'bool', + ), + 'Imagick::setFont' => + array ( + 0 => 'bool', + 'font' => 'string', + ), + 'Imagick::setFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'Imagick::setGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'Imagick::setImage' => + array ( + 0 => 'bool', + 'replace' => 'Imagick', + ), + 'Imagick::setImageAlpha' => + array ( + 0 => 'bool', + 'alpha' => 'float', + ), + 'Imagick::setImageAlphaChannel' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'Imagick::setImageArtifact' => + array ( + 0 => 'bool', + 'artifact' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageAttribute' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageBackgroundColor' => + array ( + 0 => 'bool', + 'background' => 'mixed', + ), + 'Imagick::setImageBias' => + array ( + 0 => 'bool', + 'bias' => 'float', + ), + 'Imagick::setImageBiasQuantum' => + array ( + 0 => 'void', + 'bias' => 'string', + ), + 'Imagick::setImageBluePrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageBorderColor' => + array ( + 0 => 'bool', + 'border' => 'mixed', + ), + 'Imagick::setImageChannelDepth' => + array ( + 0 => 'bool', + 'channel' => 'int', + 'depth' => 'int', + ), + 'Imagick::setImageChannelMask' => + array ( + 0 => 'mixed', + 'channel' => 'int', + ), + 'Imagick::setImageClipMask' => + array ( + 0 => 'bool', + 'clip_mask' => 'Imagick', + ), + 'Imagick::setImageColormapColor' => + array ( + 0 => 'bool', + 'index' => 'int', + 'color' => 'ImagickPixel', + ), + 'Imagick::setImageColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::setImageCompose' => + array ( + 0 => 'bool', + 'compose' => 'int', + ), + 'Imagick::setImageCompression' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'Imagick::setImageCompressionQuality' => + array ( + 0 => 'bool', + 'quality' => 'int', + ), + 'Imagick::setImageDelay' => + array ( + 0 => 'bool', + 'delay' => 'int', + ), + 'Imagick::setImageDepth' => + array ( + 0 => 'bool', + 'depth' => 'int', + ), + 'Imagick::setImageDispose' => + array ( + 0 => 'bool', + 'dispose' => 'int', + ), + 'Imagick::setImageExtent' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::setImageFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Imagick::setImageFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'Imagick::setImageGamma' => + array ( + 0 => 'bool', + 'gamma' => 'float', + ), + 'Imagick::setImageGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'Imagick::setImageGreenPrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'Imagick::setImageInterlaceScheme' => + array ( + 0 => 'bool', + 'interlace_scheme' => 'int', + ), + 'Imagick::setImageInterpolateMethod' => + array ( + 0 => 'bool', + 'method' => 'int', + ), + 'Imagick::setImageIterations' => + array ( + 0 => 'bool', + 'iterations' => 'int', + ), + 'Imagick::setImageMatte' => + array ( + 0 => 'bool', + 'matte' => 'bool', + ), + 'Imagick::setImageMatteColor' => + array ( + 0 => 'bool', + 'matte' => 'mixed', + ), + 'Imagick::setImageOpacity' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'Imagick::setImageOrientation' => + array ( + 0 => 'bool', + 'orientation' => 'int', + ), + 'Imagick::setImagePage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::setImageProfile' => + array ( + 0 => 'bool', + 'name' => 'string', + 'profile' => 'string', + ), + 'Imagick::setImageProgressMonitor' => + array ( + 0 => 'mixed', + 'filename' => 'mixed', + ), + 'Imagick::setImageProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'Imagick::setImageRedPrimary' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setImageRenderingIntent' => + array ( + 0 => 'bool', + 'rendering_intent' => 'int', + ), + 'Imagick::setImageResolution' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'Imagick::setImageScene' => + array ( + 0 => 'bool', + 'scene' => 'int', + ), + 'Imagick::setImageTicksPerSecond' => + array ( + 0 => 'bool', + 'ticks_per_second' => 'int', + ), + 'Imagick::setImageType' => + array ( + 0 => 'bool', + 'image_type' => 'int', + ), + 'Imagick::setImageUnits' => + array ( + 0 => 'bool', + 'units' => 'int', + ), + 'Imagick::setImageVirtualPixelMethod' => + array ( + 0 => 'bool', + 'method' => 'int', + ), + 'Imagick::setImageWhitePoint' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'Imagick::setInterlaceScheme' => + array ( + 0 => 'bool', + 'interlace_scheme' => 'int', + ), + 'Imagick::setIteratorIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'Imagick::setLastIterator' => + array ( + 0 => 'bool', + ), + 'Imagick::setOption' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setPage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::setPointSize' => + array ( + 0 => 'bool', + 'point_size' => 'float', + ), + 'Imagick::setProgressMonitor' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'Imagick::setRegistry' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'Imagick::setResolution' => + array ( + 0 => 'bool', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'Imagick::setResourceLimit' => + array ( + 0 => 'bool', + 'type' => 'int', + 'limit' => 'int', + ), + 'Imagick::setSamplingFactors' => + array ( + 0 => 'bool', + 'factors' => 'list', + ), + 'Imagick::setSize' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::setSizeOffset' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'offset' => 'int', + ), + 'Imagick::setType' => + array ( + 0 => 'bool', + 'image_type' => 'int', + ), + 'Imagick::shadeImage' => + array ( + 0 => 'bool', + 'gray' => 'bool', + 'azimuth' => 'float', + 'elevation' => 'float', + ), + 'Imagick::shadowImage' => + array ( + 0 => 'bool', + 'opacity' => 'float', + 'sigma' => 'float', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::sharpenImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'channel=' => 'int', + ), + 'Imagick::shaveImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + ), + 'Imagick::shearImage' => + array ( + 0 => 'bool', + 'background' => 'mixed', + 'x_shear' => 'float', + 'y_shear' => 'float', + ), + 'Imagick::sigmoidalContrastImage' => + array ( + 0 => 'bool', + 'sharpen' => 'bool', + 'alpha' => 'float', + 'beta' => 'float', + 'channel=' => 'int', + ), + 'Imagick::similarityImage' => + array ( + 0 => 'Imagick', + 'Imagick' => 'Imagick', + '&bestMatch' => 'array', + '&similarity' => 'float', + 'similarity_threshold' => 'float', + 'metric' => 'int', + ), + 'Imagick::sketchImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'angle' => 'float', + ), + 'Imagick::smushImages' => + array ( + 0 => 'Imagick', + 'stack' => 'string', + 'offset' => 'string', + ), + 'Imagick::solarizeImage' => + array ( + 0 => 'bool', + 'threshold' => 'int', + ), + 'Imagick::sparseColorImage' => + array ( + 0 => 'bool', + 'sparse_method' => 'int', + 'arguments' => 'array', + 'channel=' => 'int', + ), + 'Imagick::spliceImage' => + array ( + 0 => 'bool', + 'width' => 'int', + 'height' => 'int', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::spreadImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + ), + 'Imagick::statisticImage' => + array ( + 0 => 'void', + 'type' => 'int', + 'width' => 'int', + 'height' => 'int', + 'CHANNEL=' => 'string', + ), + 'Imagick::steganoImage' => + array ( + 0 => 'Imagick', + 'watermark_wand' => 'Imagick', + 'offset' => 'int', + ), + 'Imagick::stereoImage' => + array ( + 0 => 'bool', + 'offset_wand' => 'Imagick', + ), + 'Imagick::stripImage' => + array ( + 0 => 'bool', + ), + 'Imagick::subImageMatch' => + array ( + 0 => 'Imagick', + 'Imagick' => 'Imagick', + '&w_offset=' => 'array', + '&w_similarity=' => 'float', + ), + 'Imagick::swirlImage' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'Imagick::textureImage' => + array ( + 0 => 'bool', + 'texture_wand' => 'Imagick', + ), + 'Imagick::thresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'float', + 'channel=' => 'int', + ), + 'Imagick::thumbnailImage' => + array ( + 0 => 'bool', + 'columns' => 'int', + 'rows' => 'int', + 'bestfit=' => 'bool', + 'fill=' => 'bool', + 'legacy=' => 'bool', + ), + 'Imagick::tintImage' => + array ( + 0 => 'bool', + 'tint' => 'mixed', + 'opacity' => 'mixed', + ), + 'Imagick::transformImage' => + array ( + 0 => 'Imagick', + 'crop' => 'string', + 'geometry' => 'string', + ), + 'Imagick::transformImageColorspace' => + array ( + 0 => 'bool', + 'colorspace' => 'int', + ), + 'Imagick::transparentPaintImage' => + array ( + 0 => 'bool', + 'target' => 'mixed', + 'alpha' => 'float', + 'fuzz' => 'float', + 'invert' => 'bool', + ), + 'Imagick::transposeImage' => + array ( + 0 => 'bool', + ), + 'Imagick::transverseImage' => + array ( + 0 => 'bool', + ), + 'Imagick::trimImage' => + array ( + 0 => 'bool', + 'fuzz' => 'float', + ), + 'Imagick::uniqueImageColors' => + array ( + 0 => 'bool', + ), + 'Imagick::unsharpMaskImage' => + array ( + 0 => 'bool', + 'radius' => 'float', + 'sigma' => 'float', + 'amount' => 'float', + 'threshold' => 'float', + 'channel=' => 'int', + ), + 'Imagick::valid' => + array ( + 0 => 'bool', + ), + 'Imagick::vignetteImage' => + array ( + 0 => 'bool', + 'blackpoint' => 'float', + 'whitepoint' => 'float', + 'x' => 'int', + 'y' => 'int', + ), + 'Imagick::waveImage' => + array ( + 0 => 'bool', + 'amplitude' => 'float', + 'length' => 'float', + ), + 'Imagick::whiteThresholdImage' => + array ( + 0 => 'bool', + 'threshold' => 'mixed', + ), + 'Imagick::writeImage' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'Imagick::writeImageFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'Imagick::writeImages' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'adjoin' => 'bool', + ), + 'Imagick::writeImagesFile' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'ImagickDraw::__construct' => + array ( + 0 => 'void', + ), + 'ImagickDraw::affine' => + array ( + 0 => 'bool', + 'affine' => 'array', + ), + 'ImagickDraw::annotation' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'text' => 'string', + ), + 'ImagickDraw::arc' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + 'sd' => 'float', + 'ed' => 'float', + ), + 'ImagickDraw::bezier' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::circle' => + array ( + 0 => 'bool', + 'ox' => 'float', + 'oy' => 'float', + 'px' => 'float', + 'py' => 'float', + ), + 'ImagickDraw::clear' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::clone' => + array ( + 0 => 'ImagickDraw', + ), + 'ImagickDraw::color' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'paintmethod' => 'int', + ), + 'ImagickDraw::comment' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'ImagickDraw::composite' => + array ( + 0 => 'bool', + 'compose' => 'int', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + 'compositewand' => 'Imagick', + ), + 'ImagickDraw::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::ellipse' => + array ( + 0 => 'bool', + 'ox' => 'float', + 'oy' => 'float', + 'rx' => 'float', + 'ry' => 'float', + 'start' => 'float', + 'end' => 'float', + ), + 'ImagickDraw::getBorderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getClipPath' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getClipRule' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getClipUnits' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getDensity' => + array ( + 0 => 'null|string', + ), + 'ImagickDraw::getFillColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getFillOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getFillRule' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFont' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getFontFamily' => + array ( + 0 => 'false|string', + ), + 'ImagickDraw::getFontResolution' => + array ( + 0 => 'array', + ), + 'ImagickDraw::getFontSize' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getFontStretch' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFontStyle' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getFontWeight' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getGravity' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeAntialias' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getStrokeColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getStrokeDashArray' => + array ( + 0 => 'array', + ), + 'ImagickDraw::getStrokeDashOffset' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeLineCap' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeLineJoin' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeMiterLimit' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getStrokeOpacity' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getStrokeWidth' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextAlignment' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getTextAntialias' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getTextDecoration' => + array ( + 0 => 'int', + ), + 'ImagickDraw::getTextDirection' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::getTextEncoding' => + array ( + 0 => 'string', + ), + 'ImagickDraw::getTextInterlineSpacing' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextInterwordSpacing' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextKerning' => + array ( + 0 => 'float', + ), + 'ImagickDraw::getTextUnderColor' => + array ( + 0 => 'ImagickPixel', + ), + 'ImagickDraw::getVectorGraphics' => + array ( + 0 => 'string', + ), + 'ImagickDraw::line' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + 'ex' => 'float', + 'ey' => 'float', + ), + 'ImagickDraw::matte' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'paintmethod' => 'int', + ), + 'ImagickDraw::pathClose' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pathCurveToAbsolute' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierRelative' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToRelative' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToSmoothAbsolute' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathCurveToSmoothRelative' => + array ( + 0 => 'bool', + 'x2' => 'float', + 'y2' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathEllipticArcAbsolute' => + array ( + 0 => 'bool', + 'rx' => 'float', + 'ry' => 'float', + 'x_axis_rotation' => 'float', + 'large_arc_flag' => 'bool', + 'sweep_flag' => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathEllipticArcRelative' => + array ( + 0 => 'bool', + 'rx' => 'float', + 'ry' => 'float', + 'x_axis_rotation' => 'float', + 'large_arc_flag' => 'bool', + 'sweep_flag' => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathFinish' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pathLineToAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToHorizontalAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + ), + 'ImagickDraw::pathLineToHorizontalRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + ), + 'ImagickDraw::pathLineToRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToVerticalAbsolute' => + array ( + 0 => 'bool', + 'y' => 'float', + ), + 'ImagickDraw::pathLineToVerticalRelative' => + array ( + 0 => 'bool', + 'y' => 'float', + ), + 'ImagickDraw::pathMoveToAbsolute' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathMoveToRelative' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::pathStart' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::point' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::polygon' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::polyline' => + array ( + 0 => 'bool', + 'coordinates' => 'list', + ), + 'ImagickDraw::pop' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popClipPath' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popDefs' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::popPattern' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::push' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pushClipPath' => + array ( + 0 => 'bool', + 'clip_mask_id' => 'string', + ), + 'ImagickDraw::pushDefs' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::pushPattern' => + array ( + 0 => 'bool', + 'pattern_id' => 'string', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'ImagickDraw::rectangle' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'ImagickDraw::render' => + array ( + 0 => 'bool', + ), + 'ImagickDraw::resetVectorGraphics' => + array ( + 0 => 'void', + ), + 'ImagickDraw::rotate' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::roundRectangle' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'rx' => 'float', + 'ry' => 'float', + ), + 'ImagickDraw::scale' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::setBorderColor' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel|string', + ), + 'ImagickDraw::setClipPath' => + array ( + 0 => 'bool', + 'clip_mask' => 'string', + ), + 'ImagickDraw::setClipRule' => + array ( + 0 => 'bool', + 'fill_rule' => 'int', + ), + 'ImagickDraw::setClipUnits' => + array ( + 0 => 'bool', + 'clip_units' => 'int', + ), + 'ImagickDraw::setDensity' => + array ( + 0 => 'bool', + 'density_string' => 'string', + ), + 'ImagickDraw::setFillAlpha' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'ImagickDraw::setFillColor' => + array ( + 0 => 'bool', + 'fill_pixel' => 'ImagickPixel|string', + ), + 'ImagickDraw::setFillOpacity' => + array ( + 0 => 'bool', + 'fillopacity' => 'float', + ), + 'ImagickDraw::setFillPatternURL' => + array ( + 0 => 'bool', + 'fill_url' => 'string', + ), + 'ImagickDraw::setFillRule' => + array ( + 0 => 'bool', + 'fill_rule' => 'int', + ), + 'ImagickDraw::setFont' => + array ( + 0 => 'bool', + 'font_name' => 'string', + ), + 'ImagickDraw::setFontFamily' => + array ( + 0 => 'bool', + 'font_family' => 'string', + ), + 'ImagickDraw::setFontResolution' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickDraw::setFontSize' => + array ( + 0 => 'bool', + 'pointsize' => 'float', + ), + 'ImagickDraw::setFontStretch' => + array ( + 0 => 'bool', + 'fontstretch' => 'int', + ), + 'ImagickDraw::setFontStyle' => + array ( + 0 => 'bool', + 'style' => 'int', + ), + 'ImagickDraw::setFontWeight' => + array ( + 0 => 'bool', + 'font_weight' => 'int', + ), + 'ImagickDraw::setGravity' => + array ( + 0 => 'bool', + 'gravity' => 'int', + ), + 'ImagickDraw::setOpacity' => + array ( + 0 => 'void', + 'opacity' => 'float', + ), + 'ImagickDraw::setResolution' => + array ( + 0 => 'void', + 'x_resolution' => 'float', + 'y_resolution' => 'float', + ), + 'ImagickDraw::setStrokeAlpha' => + array ( + 0 => 'bool', + 'opacity' => 'float', + ), + 'ImagickDraw::setStrokeAntialias' => + array ( + 0 => 'bool', + 'stroke_antialias' => 'bool', + ), + 'ImagickDraw::setStrokeColor' => + array ( + 0 => 'bool', + 'stroke_pixel' => 'ImagickPixel|string', + ), + 'ImagickDraw::setStrokeDashArray' => + array ( + 0 => 'bool', + 'dasharray' => 'list', + ), + 'ImagickDraw::setStrokeDashOffset' => + array ( + 0 => 'bool', + 'dash_offset' => 'float', + ), + 'ImagickDraw::setStrokeLineCap' => + array ( + 0 => 'bool', + 'linecap' => 'int', + ), + 'ImagickDraw::setStrokeLineJoin' => + array ( + 0 => 'bool', + 'linejoin' => 'int', + ), + 'ImagickDraw::setStrokeMiterLimit' => + array ( + 0 => 'bool', + 'miterlimit' => 'int', + ), + 'ImagickDraw::setStrokeOpacity' => + array ( + 0 => 'bool', + 'stroke_opacity' => 'float', + ), + 'ImagickDraw::setStrokePatternURL' => + array ( + 0 => 'bool', + 'stroke_url' => 'string', + ), + 'ImagickDraw::setStrokeWidth' => + array ( + 0 => 'bool', + 'stroke_width' => 'float', + ), + 'ImagickDraw::setTextAlignment' => + array ( + 0 => 'bool', + 'alignment' => 'int', + ), + 'ImagickDraw::setTextAntialias' => + array ( + 0 => 'bool', + 'antialias' => 'bool', + ), + 'ImagickDraw::setTextDecoration' => + array ( + 0 => 'bool', + 'decoration' => 'int', + ), + 'ImagickDraw::setTextDirection' => + array ( + 0 => 'bool', + 'direction' => 'int', + ), + 'ImagickDraw::setTextEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'ImagickDraw::setTextInterlineSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'ImagickDraw::setTextInterwordSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'ImagickDraw::setTextKerning' => + array ( + 0 => 'void', + 'kerning' => 'float', + ), + 'ImagickDraw::setTextUnderColor' => + array ( + 0 => 'bool', + 'under_color' => 'ImagickPixel|string', + ), + 'ImagickDraw::setVectorGraphics' => + array ( + 0 => 'bool', + 'xml' => 'string', + ), + 'ImagickDraw::setViewbox' => + array ( + 0 => 'bool', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + ), + 'ImagickDraw::skewX' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::skewY' => + array ( + 0 => 'bool', + 'degrees' => 'float', + ), + 'ImagickDraw::translate' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'ImagickKernel::addKernel' => + array ( + 0 => 'void', + 'ImagickKernel' => 'ImagickKernel', + ), + 'ImagickKernel::addUnityKernel' => + array ( + 0 => 'void', + ), + 'ImagickKernel::fromBuiltin' => + array ( + 0 => 'ImagickKernel', + 'kernelType' => 'string', + 'kernelString' => 'string', + ), + 'ImagickKernel::fromMatrix' => + array ( + 0 => 'ImagickKernel', + 'matrix' => 'list>', + 'origin=' => 'array', + ), + 'ImagickKernel::getMatrix' => + array ( + 0 => 'list>', + ), + 'ImagickKernel::scale' => + array ( + 0 => 'void', + ), + 'ImagickKernel::separate' => + array ( + 0 => 'array', + ), + 'ImagickKernel::seperate' => + array ( + 0 => 'void', + ), + 'ImagickPixel::__construct' => + array ( + 0 => 'void', + 'color=' => 'string', + ), + 'ImagickPixel::clear' => + array ( + 0 => 'bool', + ), + 'ImagickPixel::clone' => + array ( + 0 => 'void', + ), + 'ImagickPixel::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickPixel::getColor' => + array ( + 0 => 'array{a: float|int, b: float|int, g: float|int, r: float|int}', + 'normalized=' => '0|1|2', + ), + 'ImagickPixel::getColorAsString' => + array ( + 0 => 'string', + ), + 'ImagickPixel::getColorCount' => + array ( + 0 => 'int', + ), + 'ImagickPixel::getColorQuantum' => + array ( + 0 => 'mixed', + ), + 'ImagickPixel::getColorValue' => + array ( + 0 => 'float', + 'color' => 'int', + ), + 'ImagickPixel::getColorValueQuantum' => + array ( + 0 => 'mixed', + ), + 'ImagickPixel::getHSL' => + array ( + 0 => 'array{hue: float, luminosity: float, saturation: float}', + ), + 'ImagickPixel::getIndex' => + array ( + 0 => 'int', + ), + 'ImagickPixel::isPixelSimilar' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel', + 'fuzz' => 'float', + ), + 'ImagickPixel::isPixelSimilarQuantum' => + array ( + 0 => 'bool', + 'color' => 'string', + 'fuzz=' => 'string', + ), + 'ImagickPixel::isSimilar' => + array ( + 0 => 'bool', + 'color' => 'ImagickPixel', + 'fuzz' => 'float', + ), + 'ImagickPixel::setColor' => + array ( + 0 => 'bool', + 'color' => 'string', + ), + 'ImagickPixel::setColorFromPixel' => + array ( + 0 => 'bool', + 'srcPixel' => 'ImagickPixel', + ), + 'ImagickPixel::setColorValue' => + array ( + 0 => 'bool', + 'color' => 'int', + 'value' => 'float', + ), + 'ImagickPixel::setColorValueQuantum' => + array ( + 0 => 'void', + 'color' => 'int', + 'value' => 'mixed', + ), + 'ImagickPixel::setHSL' => + array ( + 0 => 'bool', + 'hue' => 'float', + 'saturation' => 'float', + 'luminosity' => 'float', + ), + 'ImagickPixel::setIndex' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'ImagickPixel::setcolorcount' => + array ( + 0 => 'void', + 'colorCount' => 'string', + ), + 'ImagickPixelIterator::__construct' => + array ( + 0 => 'void', + 'wand' => 'Imagick', + ), + 'ImagickPixelIterator::clear' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::current' => + array ( + 0 => 'mixed', + ), + 'ImagickPixelIterator::destroy' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::getCurrentIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::getIteratorRow' => + array ( + 0 => 'int', + ), + 'ImagickPixelIterator::getNextIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::getPreviousIteratorRow' => + array ( + 0 => 'array', + ), + 'ImagickPixelIterator::getpixeliterator' => + array ( + 0 => 'mixed', + 'Imagick' => 'Imagick', + ), + 'ImagickPixelIterator::getpixelregioniterator' => + array ( + 0 => 'mixed', + 'Imagick' => 'Imagick', + 'x' => 'mixed', + 'y' => 'mixed', + 'columns' => 'mixed', + 'rows' => 'mixed', + ), + 'ImagickPixelIterator::key' => + array ( + 0 => 'int|string', + ), + 'ImagickPixelIterator::newPixelIterator' => + array ( + 0 => 'bool', + 'wand' => 'Imagick', + ), + 'ImagickPixelIterator::newPixelRegionIterator' => + array ( + 0 => 'bool', + 'wand' => 'Imagick', + 'x' => 'int', + 'y' => 'int', + 'columns' => 'int', + 'rows' => 'int', + ), + 'ImagickPixelIterator::next' => + array ( + 0 => 'void', + ), + 'ImagickPixelIterator::resetIterator' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::rewind' => + array ( + 0 => 'void', + ), + 'ImagickPixelIterator::setIteratorFirstRow' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::setIteratorLastRow' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::setIteratorRow' => + array ( + 0 => 'bool', + 'row' => 'int', + ), + 'ImagickPixelIterator::syncIterator' => + array ( + 0 => 'bool', + ), + 'ImagickPixelIterator::valid' => + array ( + 0 => 'bool', + ), + 'InfiniteIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'InfiniteIterator::current' => + array ( + 0 => 'mixed', + ), + 'InfiniteIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'InfiniteIterator::key' => + array ( + 0 => 'scalar', + ), + 'InfiniteIterator::next' => + array ( + 0 => 'void', + ), + 'InfiniteIterator::rewind' => + array ( + 0 => 'void', + ), + 'InfiniteIterator::valid' => + array ( + 0 => 'bool', + ), + 'IntlBreakIterator::__construct' => + array ( + 0 => 'void', + ), + 'IntlBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlBreakIterator::setText' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'IntlCalendar::__construct' => + array ( + 0 => 'void', + ), + 'IntlCalendar::add' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlCalendar::after' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::before' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::clear' => + array ( + 0 => 'bool', + 'field=' => 'int|null', + ), + 'IntlCalendar::createInstance' => + array ( + 0 => 'IntlCalendar|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'locale=' => 'null|string', + ), + 'IntlCalendar::equals' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::fieldDifference' => + array ( + 0 => 'false|int', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'IntlCalendar::fromDateTime' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'IntlCalendar::get' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getActualMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getActualMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getAvailableLocales' => + array ( + 0 => 'array', + ), + 'IntlCalendar::getDayOfWeekType' => + array ( + 0 => 'int', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlCalendar::getFirstDayOfWeek' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getGreatestMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getKeywordValuesForLocale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'IntlCalendar::getLeastMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlCalendar::getMaximum' => + array ( + 0 => 'false|int', + 'field' => 'int', + ), + 'IntlCalendar::getMinimalDaysInFirstWeek' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlCalendar::getNow' => + array ( + 0 => 'float', + ), + 'IntlCalendar::getRepeatedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getSkippedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlCalendar::getTime' => + array ( + 0 => 'float', + ), + 'IntlCalendar::getTimeZone' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlCalendar::getType' => + array ( + 0 => 'string', + ), + 'IntlCalendar::getWeekendTransition' => + array ( + 0 => 'false|int', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::inDaylightTime' => + array ( + 0 => 'bool', + ), + 'IntlCalendar::isEquivalentTo' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlCalendar::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlCalendar::isSet' => + array ( + 0 => 'bool', + 'field' => 'int', + ), + 'IntlCalendar::isWeekend' => + array ( + 0 => 'bool', + 'timestamp=' => 'float|null', + ), + 'IntlCalendar::roll' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'bool|int', + ), + 'IntlCalendar::set' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlCalendar::set\'1' => + array ( + 0 => 'bool', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'IntlCalendar::setFirstDayOfWeek' => + array ( + 0 => 'bool', + 'dayOfWeek' => 'int', + ), + 'IntlCalendar::setLenient' => + array ( + 0 => 'true', + 'lenient' => 'bool', + ), + 'IntlCalendar::setMinimalDaysInFirstWeek' => + array ( + 0 => 'bool', + 'days' => 'int', + ), + 'IntlCalendar::setRepeatedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlCalendar::setSkippedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlCalendar::setTime' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlCalendar::setTimeZone' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlCalendar::toDateTime' => + array ( + 0 => 'DateTime|false', + ), + 'IntlChar::charAge' => + array ( + 0 => 'array|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charDigitValue' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charDirection' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::charFromName' => + array ( + 0 => 'int|null', + 'name' => 'string', + 'type=' => 'int', + ), + 'IntlChar::charMirror' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::charName' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + 'type=' => 'int', + ), + 'IntlChar::charType' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::chr' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::digit' => + array ( + 0 => 'false|int|null', + 'codepoint' => 'int|string', + 'base=' => 'int', + ), + 'IntlChar::enumCharNames' => + array ( + 0 => 'bool|null', + 'start' => 'int|string', + 'end' => 'int|string', + 'callback' => 'callable(int, int, int):void', + 'type=' => 'int', + ), + 'IntlChar::enumCharTypes' => + array ( + 0 => 'void', + 'callback' => 'callable(int, int, int):void', + ), + 'IntlChar::foldCase' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + 'options=' => 'int', + ), + 'IntlChar::forDigit' => + array ( + 0 => 'int', + 'digit' => 'int', + 'base=' => 'int', + ), + 'IntlChar::getBidiPairedBracket' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::getBlockCode' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getCombiningClass' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getFC_NFKC_Closure' => + array ( + 0 => 'null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::getIntPropertyMaxValue' => + array ( + 0 => 'int', + 'property' => 'int', + ), + 'IntlChar::getIntPropertyMinValue' => + array ( + 0 => 'int', + 'property' => 'int', + ), + 'IntlChar::getIntPropertyValue' => + array ( + 0 => 'int|null', + 'codepoint' => 'int|string', + 'property' => 'int', + ), + 'IntlChar::getNumericValue' => + array ( + 0 => 'float|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::getPropertyEnum' => + array ( + 0 => 'int', + 'alias' => 'string', + ), + 'IntlChar::getPropertyName' => + array ( + 0 => 'false|string', + 'property' => 'int', + 'type=' => 'int', + ), + 'IntlChar::getPropertyValueEnum' => + array ( + 0 => 'int', + 'property' => 'int', + 'name' => 'string', + ), + 'IntlChar::getPropertyValueName' => + array ( + 0 => 'false|string', + 'property' => 'int', + 'value' => 'int', + 'type=' => 'int', + ), + 'IntlChar::getUnicodeVersion' => + array ( + 0 => 'array', + ), + 'IntlChar::hasBinaryProperty' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + 'property' => 'int', + ), + 'IntlChar::isIDIgnorable' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isIDPart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isIDStart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isISOControl' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaIDPart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaIDStart' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isJavaSpaceChar' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isMirrored' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUAlphabetic' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isULowercase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUUppercase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isUWhiteSpace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isWhitespace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isalnum' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isalpha' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isbase' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isblank' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::iscntrl' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isdefined' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isdigit' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isgraph' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::islower' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isprint' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::ispunct' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isspace' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::istitle' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isupper' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::isxdigit' => + array ( + 0 => 'bool|null', + 'codepoint' => 'int|string', + ), + 'IntlChar::ord' => + array ( + 0 => 'int|null', + 'character' => 'int|string', + ), + 'IntlChar::tolower' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::totitle' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlChar::toupper' => + array ( + 0 => 'int|null|string', + 'codepoint' => 'int|string', + ), + 'IntlCodePointBreakIterator::__construct' => + array ( + 0 => 'void', + ), + 'IntlCodePointBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlCodePointBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlCodePointBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlCodePointBreakIterator::getLastCodePoint' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlCodePointBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlCodePointBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlCodePointBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlCodePointBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlCodePointBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlCodePointBreakIterator::setText' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'IntlDateFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'datetype' => 'int|null', + 'timetype' => 'int|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'IntlDateFormatter::create' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'datetype' => 'int|null', + 'timetype' => 'int|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'null|string', + ), + 'IntlDateFormatter::format' => + array ( + 0 => 'false|string', + 'value' => 'DateTime|IntlCalendar|array{0?: int, 1?: int, 2?: int, 3?: int, 4?: int, 5?: int, 6?: int, 7?: int, 8?: int, tm_hour?: int, tm_isdst?: int, tm_mday?: int, tm_min?: int, tm_mon?: int, tm_sec?: int, tm_wday?: int, tm_yday?: int, tm_year?: int}|float|int|string', + ), + 'IntlDateFormatter::formatObject' => + array ( + 0 => 'false|string', + 'object' => 'DateTime|IntlCalendar', + 'format=' => 'array{0: int, 1: int}|int|null|string', + 'locale=' => 'null|string', + ), + 'IntlDateFormatter::getCalendar' => + array ( + 0 => 'int', + ), + 'IntlDateFormatter::getCalendarObject' => + array ( + 0 => 'IntlCalendar', + ), + 'IntlDateFormatter::getDateType' => + array ( + 0 => 'int', + ), + 'IntlDateFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlDateFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlDateFormatter::getLocale' => + array ( + 0 => 'string', + 'which=' => 'int', + ), + 'IntlDateFormatter::getPattern' => + array ( + 0 => 'string', + ), + 'IntlDateFormatter::getTimeType' => + array ( + 0 => 'int', + ), + 'IntlDateFormatter::getTimeZone' => + array ( + 0 => 'IntlTimeZone|false', + ), + 'IntlDateFormatter::getTimeZoneId' => + array ( + 0 => 'string', + ), + 'IntlDateFormatter::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlDateFormatter::localtime' => + array ( + 0 => 'array', + 'value' => 'string', + '&rw_position=' => 'int', + ), + 'IntlDateFormatter::parse' => + array ( + 0 => 'float|int', + 'value' => 'string', + '&rw_position=' => 'int', + ), + 'IntlDateFormatter::setCalendar' => + array ( + 0 => 'bool', + 'which' => 'IntlCalendar|int|null', + ), + 'IntlDateFormatter::setLenient' => + array ( + 0 => 'bool', + 'lenient' => 'bool', + ), + 'IntlDateFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'IntlDateFormatter::setTimeZone' => + array ( + 0 => 'false|null', + 'zone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlException::__clone' => + array ( + 0 => 'void', + ), + 'IntlException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'IntlException::__toString' => + array ( + 0 => 'string', + ), + 'IntlException::__wakeup' => + array ( + 0 => 'void', + ), + 'IntlException::getCode' => + array ( + 0 => 'int', + ), + 'IntlException::getFile' => + array ( + 0 => 'string', + ), + 'IntlException::getLine' => + array ( + 0 => 'int', + ), + 'IntlException::getMessage' => + array ( + 0 => 'string', + ), + 'IntlException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'IntlException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'IntlException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'IntlGregorianCalendar::__construct' => + array ( + 0 => 'void', + ), + 'IntlGregorianCalendar::add' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlGregorianCalendar::after' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::before' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::clear' => + array ( + 0 => 'bool', + 'field=' => 'int|null', + ), + 'IntlGregorianCalendar::createInstance' => + array ( + 0 => 'IntlGregorianCalendar|null', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'locale=' => 'null|string', + ), + 'IntlGregorianCalendar::equals' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::fieldDifference' => + array ( + 0 => 'false|int', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'IntlGregorianCalendar::fromDateTime' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'IntlGregorianCalendar::get' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getActualMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getActualMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getAvailableLocales' => + array ( + 0 => 'array', + ), + 'IntlGregorianCalendar::getDayOfWeekType' => + array ( + 0 => 'int', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlGregorianCalendar::getFirstDayOfWeek' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getGreatestMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getGregorianChange' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getKeywordValuesForLocale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'IntlGregorianCalendar::getLeastMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlGregorianCalendar::getMaximum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getMinimum' => + array ( + 0 => 'int', + 'field' => 'int', + ), + 'IntlGregorianCalendar::getNow' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getRepeatedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getSkippedWallTimeOption' => + array ( + 0 => 'int', + ), + 'IntlGregorianCalendar::getTime' => + array ( + 0 => 'float', + ), + 'IntlGregorianCalendar::getTimeZone' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlGregorianCalendar::getType' => + array ( + 0 => 'string', + ), + 'IntlGregorianCalendar::getWeekendTransition' => + array ( + 0 => 'false|int', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::inDaylightTime' => + array ( + 0 => 'bool', + ), + 'IntlGregorianCalendar::isEquivalentTo' => + array ( + 0 => 'bool', + 'other' => 'IntlCalendar', + ), + 'IntlGregorianCalendar::isLeapYear' => + array ( + 0 => 'bool', + 'year' => 'int', + ), + 'IntlGregorianCalendar::isLenient' => + array ( + 0 => 'bool', + ), + 'IntlGregorianCalendar::isSet' => + array ( + 0 => 'bool', + 'field' => 'int', + ), + 'IntlGregorianCalendar::isWeekend' => + array ( + 0 => 'bool', + 'timestamp=' => 'float|null', + ), + 'IntlGregorianCalendar::roll' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'bool|int', + ), + 'IntlGregorianCalendar::set' => + array ( + 0 => 'bool', + 'field' => 'int', + 'value' => 'int', + ), + 'IntlGregorianCalendar::set\'1' => + array ( + 0 => 'bool', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'IntlGregorianCalendar::setFirstDayOfWeek' => + array ( + 0 => 'bool', + 'dayOfWeek' => 'int', + ), + 'IntlGregorianCalendar::setGregorianChange' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlGregorianCalendar::setLenient' => + array ( + 0 => 'true', + 'lenient' => 'bool', + ), + 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => + array ( + 0 => 'bool', + 'days' => 'int', + ), + 'IntlGregorianCalendar::setRepeatedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlGregorianCalendar::setSkippedWallTimeOption' => + array ( + 0 => 'true', + 'option' => 'int', + ), + 'IntlGregorianCalendar::setTime' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'IntlGregorianCalendar::setTimeZone' => + array ( + 0 => 'bool', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'IntlGregorianCalendar::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'IntlIterator::__construct' => + array ( + 0 => 'void', + ), + 'IntlIterator::current' => + array ( + 0 => 'mixed', + ), + 'IntlIterator::key' => + array ( + 0 => 'string', + ), + 'IntlIterator::next' => + array ( + 0 => 'void', + ), + 'IntlIterator::rewind' => + array ( + 0 => 'void', + ), + 'IntlIterator::valid' => + array ( + 0 => 'bool', + ), + 'IntlPartsIterator::getBreakIterator' => + array ( + 0 => 'IntlBreakIterator', + ), + 'IntlRuleBasedBreakIterator::__construct' => + array ( + 0 => 'void', + 'rules' => 'string', + 'compiled=' => 'bool', + ), + 'IntlRuleBasedBreakIterator::createCharacterInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createCodePointInstance' => + array ( + 0 => 'IntlCodePointBreakIterator', + ), + 'IntlRuleBasedBreakIterator::createLineInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createSentenceInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createTitleInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::createWordInstance' => + array ( + 0 => 'IntlRuleBasedBreakIterator|null', + 'locale=' => 'null|string', + ), + 'IntlRuleBasedBreakIterator::current' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::first' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::following' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::getBinaryRules' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getLocale' => + array ( + 0 => 'false|string', + 'type' => 'int', + ), + 'IntlRuleBasedBreakIterator::getPartsIterator' => + array ( + 0 => 'IntlPartsIterator', + 'type=' => 'string', + ), + 'IntlRuleBasedBreakIterator::getRuleStatus' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::getRuleStatusVec' => + array ( + 0 => 'array', + ), + 'IntlRuleBasedBreakIterator::getRules' => + array ( + 0 => 'string', + ), + 'IntlRuleBasedBreakIterator::getText' => + array ( + 0 => 'null|string', + ), + 'IntlRuleBasedBreakIterator::isBoundary' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::last' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::next' => + array ( + 0 => 'int', + 'offset=' => 'int|null', + ), + 'IntlRuleBasedBreakIterator::preceding' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'IntlRuleBasedBreakIterator::previous' => + array ( + 0 => 'int', + ), + 'IntlRuleBasedBreakIterator::setText' => + array ( + 0 => 'bool|null', + 'text' => 'string', + ), + 'IntlTimeZone::countEquivalentIDs' => + array ( + 0 => 'false|int', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::createDefault' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::createEnumeration' => + array ( + 0 => 'IntlIterator|false', + 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', + ), + 'IntlTimeZone::createTimeZone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::createTimeZoneIDEnumeration' => + array ( + 0 => 'IntlIterator|false', + 'type' => 'int', + 'region=' => 'null|string', + 'rawOffset=' => 'int|null', + ), + 'IntlTimeZone::fromDateTimeZone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezone' => 'DateTimeZone', + ), + 'IntlTimeZone::getCanonicalID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + '&w_isSystemId=' => 'bool', + ), + 'IntlTimeZone::getDSTSavings' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getDisplayName' => + array ( + 0 => 'false|string', + 'dst=' => 'bool', + 'style=' => 'int', + 'locale=' => 'null|string', + ), + 'IntlTimeZone::getEquivalentID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'offset' => 'int', + ), + 'IntlTimeZone::getErrorCode' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getErrorMessage' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getGMT' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::getID' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getIDForWindowsID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + 'region=' => 'string', + ), + 'IntlTimeZone::getOffset' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + 'local' => 'bool', + '&w_rawOffset' => 'int', + '&w_dstOffset' => 'int', + ), + 'IntlTimeZone::getRawOffset' => + array ( + 0 => 'int', + ), + 'IntlTimeZone::getRegion' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::getTZDataVersion' => + array ( + 0 => 'string', + ), + 'IntlTimeZone::getUnknown' => + array ( + 0 => 'IntlTimeZone', + ), + 'IntlTimeZone::getWindowsID' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + ), + 'IntlTimeZone::hasSameRules' => + array ( + 0 => 'bool', + 'other' => 'IntlTimeZone', + ), + 'IntlTimeZone::toDateTimeZone' => + array ( + 0 => 'DateTimeZone|false', + ), + 'IntlTimeZone::useDaylightTime' => + array ( + 0 => 'bool', + ), + 'InvalidArgumentException::__clone' => + array ( + 0 => 'void', + ), + 'InvalidArgumentException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'InvalidArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getCode' => + array ( + 0 => 'int', + ), + 'InvalidArgumentException::getFile' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getLine' => + array ( + 0 => 'int', + ), + 'InvalidArgumentException::getMessage' => + array ( + 0 => 'string', + ), + 'InvalidArgumentException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'InvalidArgumentException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'InvalidArgumentException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Iterator::current' => + array ( + 0 => 'mixed', + ), + 'Iterator::key' => + array ( + 0 => 'mixed', + ), + 'Iterator::next' => + array ( + 0 => 'void', + ), + 'Iterator::rewind' => + array ( + 0 => 'void', + ), + 'Iterator::valid' => + array ( + 0 => 'bool', + ), + 'IteratorAggregate::getIterator' => + array ( + 0 => 'Traversable', + ), + 'IteratorIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Traversable', + 'class=' => 'null|string', + ), + 'IteratorIterator::current' => + array ( + 0 => 'mixed', + ), + 'IteratorIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'IteratorIterator::key' => + array ( + 0 => 'mixed', + ), + 'IteratorIterator::next' => + array ( + 0 => 'void', + ), + 'IteratorIterator::rewind' => + array ( + 0 => 'void', + ), + 'IteratorIterator::valid' => + array ( + 0 => 'bool', + ), + 'JavaException::getCause' => + array ( + 0 => 'object', + ), + 'JsonIncrementalParser::__construct' => + array ( + 0 => 'void', + 'depth' => 'mixed', + 'options' => 'mixed', + ), + 'JsonIncrementalParser::get' => + array ( + 0 => 'mixed', + 'options' => 'mixed', + ), + 'JsonIncrementalParser::getError' => + array ( + 0 => 'mixed', + ), + 'JsonIncrementalParser::parse' => + array ( + 0 => 'mixed', + 'json' => 'mixed', + ), + 'JsonIncrementalParser::parseFile' => + array ( + 0 => 'mixed', + 'filename' => 'mixed', + ), + 'JsonIncrementalParser::reset' => + array ( + 0 => 'mixed', + ), + 'JsonSerializable::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'Judy::__construct' => + array ( + 0 => 'void', + 'judy_type' => 'int', + ), + 'Judy::__destruct' => + array ( + 0 => 'void', + ), + 'Judy::byCount' => + array ( + 0 => 'int', + 'nth_index' => 'int', + ), + 'Judy::count' => + array ( + 0 => 'int', + 'index_start=' => 'int', + 'index_end=' => 'int', + ), + 'Judy::first' => + array ( + 0 => 'mixed', + 'index=' => 'mixed', + ), + 'Judy::firstEmpty' => + array ( + 0 => 'mixed', + 'index=' => 'mixed', + ), + 'Judy::free' => + array ( + 0 => 'int', + ), + 'Judy::getType' => + array ( + 0 => 'int', + ), + 'Judy::last' => + array ( + 0 => 'mixed', + 'index=' => 'string', + ), + 'Judy::lastEmpty' => + array ( + 0 => 'mixed', + 'index=' => 'int', + ), + 'Judy::memoryUsage' => + array ( + 0 => 'int', + ), + 'Judy::next' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::nextEmpty' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Judy::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Judy::offsetSet' => + array ( + 0 => 'bool', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Judy::offsetUnset' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Judy::prev' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::prevEmpty' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'Judy::size' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::getType' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => + array ( + 0 => 'string', + 'type' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => + array ( + 0 => 'mixed', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_AttachedPictureFrame::setType' => + array ( + 0 => 'mixed', + 'type' => 'int', + ), + 'KTaglib_ID3v2_Frame::__toString' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getDescription' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getMimeType' => + array ( + 0 => 'string', + ), + 'KTaglib_ID3v2_Frame::getSize' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_Frame::getType' => + array ( + 0 => 'int', + ), + 'KTaglib_ID3v2_Frame::savePicture' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_Frame::setMimeType' => + array ( + 0 => 'string', + 'type' => 'string', + ), + 'KTaglib_ID3v2_Frame::setPicture' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'KTaglib_ID3v2_Frame::setType' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'KTaglib_ID3v2_Tag::addFrame' => + array ( + 0 => 'bool', + 'frame' => 'KTaglib_ID3v2_Frame', + ), + 'KTaglib_ID3v2_Tag::getFrameList' => + array ( + 0 => 'array', + ), + 'KTaglib_MPEG_AudioProperties::getBitrate' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getChannels' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getLayer' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getLength' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getSampleBitrate' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::getVersion' => + array ( + 0 => 'int', + ), + 'KTaglib_MPEG_AudioProperties::isCopyrighted' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_AudioProperties::isOriginal' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => + array ( + 0 => 'bool', + ), + 'KTaglib_MPEG_File::getAudioProperties' => + array ( + 0 => 'KTaglib_MPEG_File', + ), + 'KTaglib_MPEG_File::getID3v1Tag' => + array ( + 0 => 'KTaglib_ID3v1_Tag', + 'create=' => 'bool', + ), + 'KTaglib_MPEG_File::getID3v2Tag' => + array ( + 0 => 'KTaglib_ID3v2_Tag', + 'create=' => 'bool', + ), + 'KTaglib_Tag::getAlbum' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getArtist' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getComment' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getGenre' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getTitle' => + array ( + 0 => 'string', + ), + 'KTaglib_Tag::getTrack' => + array ( + 0 => 'int', + ), + 'KTaglib_Tag::getYear' => + array ( + 0 => 'int', + ), + 'KTaglib_Tag::isEmpty' => + array ( + 0 => 'bool', + ), + 'Lapack::eigenValues' => + array ( + 0 => 'array', + 'a' => 'array', + 'left=' => 'array', + 'right=' => 'array', + ), + 'Lapack::identity' => + array ( + 0 => 'array', + 'n' => 'int', + ), + 'Lapack::leastSquaresByFactorisation' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'Lapack::leastSquaresBySVD' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'Lapack::pseudoInverse' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'Lapack::singularValues' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'Lapack::solveLinearEquation' => + array ( + 0 => 'array', + 'a' => 'array', + 'b' => 'array', + ), + 'LengthException::__clone' => + array ( + 0 => 'void', + ), + 'LengthException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'LengthException::__toString' => + array ( + 0 => 'string', + ), + 'LengthException::getCode' => + array ( + 0 => 'int', + ), + 'LengthException::getFile' => + array ( + 0 => 'string', + ), + 'LengthException::getLine' => + array ( + 0 => 'int', + ), + 'LengthException::getMessage' => + array ( + 0 => 'string', + ), + 'LengthException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'LengthException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'LengthException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'LevelDB::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'options=' => 'array', + 'read_options=' => 'array', + 'write_options=' => 'array', + ), + 'LevelDB::close' => + array ( + 0 => 'mixed', + ), + 'LevelDB::compactRange' => + array ( + 0 => 'mixed', + 'start' => 'mixed', + 'limit' => 'mixed', + ), + 'LevelDB::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::destroy' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'options=' => 'array', + ), + 'LevelDB::get' => + array ( + 0 => 'bool|string', + 'key' => 'string', + 'read_options=' => 'array', + ), + 'LevelDB::getApproximateSizes' => + array ( + 0 => 'mixed', + 'start' => 'mixed', + 'limit' => 'mixed', + ), + 'LevelDB::getIterator' => + array ( + 0 => 'LevelDBIterator', + 'options=' => 'array', + ), + 'LevelDB::getProperty' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'LevelDB::getSnapshot' => + array ( + 0 => 'LevelDBSnapshot', + ), + 'LevelDB::put' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::repair' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + 'options=' => 'array', + ), + 'LevelDB::set' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'write_options=' => 'array', + ), + 'LevelDB::write' => + array ( + 0 => 'mixed', + 'batch' => 'LevelDBWriteBatch', + 'write_options=' => 'array', + ), + 'LevelDBIterator::__construct' => + array ( + 0 => 'void', + 'db' => 'LevelDB', + 'read_options=' => 'array', + ), + 'LevelDBIterator::current' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::destroy' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::getError' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::key' => + array ( + 0 => 'int|string', + ), + 'LevelDBIterator::last' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::next' => + array ( + 0 => 'void', + ), + 'LevelDBIterator::prev' => + array ( + 0 => 'mixed', + ), + 'LevelDBIterator::rewind' => + array ( + 0 => 'void', + ), + 'LevelDBIterator::seek' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'LevelDBIterator::valid' => + array ( + 0 => 'bool', + ), + 'LevelDBSnapshot::__construct' => + array ( + 0 => 'void', + 'db' => 'LevelDB', + ), + 'LevelDBSnapshot::release' => + array ( + 0 => 'mixed', + ), + 'LevelDBWriteBatch::__construct' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'options=' => 'array', + 'read_options=' => 'array', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::clear' => + array ( + 0 => 'mixed', + ), + 'LevelDBWriteBatch::delete' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::put' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'value' => 'mixed', + 'write_options=' => 'array', + ), + 'LevelDBWriteBatch::set' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'value' => 'mixed', + 'write_options=' => 'array', + ), + 'LimitIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'LimitIterator::current' => + array ( + 0 => 'mixed', + ), + 'LimitIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'LimitIterator::getPosition' => + array ( + 0 => 'int', + ), + 'LimitIterator::key' => + array ( + 0 => 'mixed', + ), + 'LimitIterator::next' => + array ( + 0 => 'void', + ), + 'LimitIterator::rewind' => + array ( + 0 => 'void', + ), + 'LimitIterator::seek' => + array ( + 0 => 'int', + 'offset' => 'int', + ), + 'LimitIterator::valid' => + array ( + 0 => 'bool', + ), + 'Locale::acceptFromHttp' => + array ( + 0 => 'false|string', + 'header' => 'string', + ), + 'Locale::canonicalize' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'Locale::composeLocale' => + array ( + 0 => 'string', + 'subtags' => 'array', + ), + 'Locale::filterMatches' => + array ( + 0 => 'bool|null', + 'languageTag' => 'string', + 'locale' => 'string', + 'canonicalize=' => 'bool', + ), + 'Locale::getAllVariants' => + array ( + 0 => 'array', + 'locale' => 'string', + ), + 'Locale::getDefault' => + array ( + 0 => 'string', + ), + 'Locale::getDisplayLanguage' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'Locale::getDisplayName' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'Locale::getDisplayRegion' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'Locale::getDisplayScript' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'Locale::getDisplayVariant' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'Locale::getKeywords' => + array ( + 0 => 'array|false', + 'locale' => 'string', + ), + 'Locale::getPrimaryLanguage' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::getRegion' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::getScript' => + array ( + 0 => 'string', + 'locale' => 'string', + ), + 'Locale::lookup' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'string', + ), + 'Locale::parseLocale' => + array ( + 0 => 'array', + 'locale' => 'string', + ), + 'Locale::setDefault' => + array ( + 0 => 'bool', + 'locale' => 'string', + ), + 'LogicException::__clone' => + array ( + 0 => 'void', + ), + 'LogicException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'LogicException::__toString' => + array ( + 0 => 'string', + ), + 'LogicException::getCode' => + array ( + 0 => 'int', + ), + 'LogicException::getFile' => + array ( + 0 => 'string', + ), + 'LogicException::getLine' => + array ( + 0 => 'int', + ), + 'LogicException::getMessage' => + array ( + 0 => 'string', + ), + 'LogicException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'LogicException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'LogicException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Lua::__call' => + array ( + 0 => 'mixed', + 'lua_func' => 'callable', + 'args=' => 'array', + 'use_self=' => 'int', + ), + 'Lua::__construct' => + array ( + 0 => 'void', + 'lua_script_file' => 'string', + ), + 'Lua::assign' => + array ( + 0 => 'Lua|null', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Lua::call' => + array ( + 0 => 'mixed', + 'lua_func' => 'callable', + 'args=' => 'array', + 'use_self=' => 'int', + ), + 'Lua::eval' => + array ( + 0 => 'mixed', + 'statements' => 'string', + ), + 'Lua::getVersion' => + array ( + 0 => 'string', + ), + 'Lua::include' => + array ( + 0 => 'mixed', + 'file' => 'string', + ), + 'Lua::registerCallback' => + array ( + 0 => 'Lua|false|null', + 'name' => 'string', + 'function' => 'callable', + ), + 'LuaClosure::__invoke' => + array ( + 0 => 'void', + 'arg' => 'mixed', + '...args=' => 'mixed', + ), + 'Memcache::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + 'timeoutms=' => 'int', + ), + 'Memcache::append' => + array ( + 0 => 'mixed', + ), + 'Memcache::cas' => + array ( + 0 => 'mixed', + ), + 'Memcache::close' => + array ( + 0 => 'bool', + ), + 'Memcache::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'Memcache::decrement' => + array ( + 0 => 'int', + 'key' => 'string', + 'value=' => 'int', + ), + 'Memcache::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timeout=' => 'int', + ), + 'Memcache::findServer' => + array ( + 0 => 'mixed', + ), + 'Memcache::flush' => + array ( + 0 => 'bool', + ), + 'Memcache::get' => + array ( + 0 => 'array|false|string', + 'key' => 'string', + 'flags=' => 'array', + 'keys=' => 'array', + ), + 'Memcache::get\'1' => + array ( + 0 => 'array', + 'key' => 'array', + 'flags=' => 'array', + ), + 'Memcache::getExtendedStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'Memcache::getServerStatus' => + array ( + 0 => 'int', + 'host' => 'string', + 'port=' => 'int', + ), + 'Memcache::getStats' => + array ( + 0 => 'array', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'Memcache::getVersion' => + array ( + 0 => 'string', + ), + 'Memcache::increment' => + array ( + 0 => 'int', + 'key' => 'string', + 'value=' => 'int', + ), + 'Memcache::pconnect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'Memcache::prepend' => + array ( + 0 => 'string', + ), + 'Memcache::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'Memcache::setCompressThreshold' => + array ( + 0 => 'bool', + 'threshold' => 'int', + 'min_savings=' => 'float', + ), + 'Memcache::setFailureCallback' => + array ( + 0 => 'mixed', + ), + 'Memcache::setServerParams' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + ), + 'MemcachePool::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable|null', + 'timeoutms=' => 'int', + ), + 'MemcachePool::append' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::cas' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::close' => + array ( + 0 => 'bool', + ), + 'MemcachePool::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'timeout=' => 'int', + ), + 'MemcachePool::decrement' => + array ( + 0 => 'false|int', + 'key' => 'mixed', + 'value=' => 'int|mixed', + ), + 'MemcachePool::delete' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'timeout=' => 'int|mixed', + ), + 'MemcachePool::findServer' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::flush' => + array ( + 0 => 'bool', + ), + 'MemcachePool::get' => + array ( + 0 => 'array|false|string', + 'key' => 'array|string', + '&flags=' => 'array|int', + ), + 'MemcachePool::getExtendedStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'MemcachePool::getServerStatus' => + array ( + 0 => 'int', + 'host' => 'string', + 'port=' => 'int', + ), + 'MemcachePool::getStats' => + array ( + 0 => 'array|false', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'MemcachePool::getVersion' => + array ( + 0 => 'false|string', + ), + 'MemcachePool::increment' => + array ( + 0 => 'false|int', + 'key' => 'mixed', + 'value=' => 'int|mixed', + ), + 'MemcachePool::prepend' => + array ( + 0 => 'string', + ), + 'MemcachePool::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'MemcachePool::setCompressThreshold' => + array ( + 0 => 'bool', + 'thresold' => 'int', + 'min_saving=' => 'float', + ), + 'MemcachePool::setFailureCallback' => + array ( + 0 => 'mixed', + ), + 'MemcachePool::setServerParams' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable|null', + ), + 'Memcached::__construct' => + array ( + 0 => 'void', + 'persistent_id=' => 'null|string', + 'callback=' => 'callable|null', + 'connection_str=' => 'null|string', + ), + 'Memcached::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::addByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::addServer' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'weight=' => 'int', + ), + 'Memcached::addServers' => + array ( + 0 => 'bool', + 'servers' => 'array', + ), + 'Memcached::append' => + array ( + 0 => 'bool|null', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::appendByKey' => + array ( + 0 => 'bool|null', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::cas' => + array ( + 0 => 'bool', + 'cas_token' => 'float|int|string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::casByKey' => + array ( + 0 => 'bool', + 'cas_token' => 'float|int|string', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::decrement' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::decrementByKey' => + array ( + 0 => 'false|int', + 'server_key' => 'string', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + 'time=' => 'int', + ), + 'Memcached::deleteByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'time=' => 'int', + ), + 'Memcached::deleteMulti' => + array ( + 0 => 'array', + 'keys' => 'array', + 'time=' => 'int', + ), + 'Memcached::deleteMultiByKey' => + array ( + 0 => 'array', + 'server_key' => 'string', + 'keys' => 'array', + 'time=' => 'int', + ), + 'Memcached::fetch' => + array ( + 0 => 'array|false', + ), + 'Memcached::fetchAll' => + array ( + 0 => 'array|false', + ), + 'Memcached::flush' => + array ( + 0 => 'bool', + 'delay=' => 'int', + ), + 'Memcached::flushBuffers' => + array ( + 0 => 'bool', + ), + 'Memcached::get' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + 'cache_cb=' => 'callable|null', + 'get_flags=' => 'int', + ), + 'Memcached::getAllKeys' => + array ( + 0 => 'array|false', + ), + 'Memcached::getByKey' => + array ( + 0 => 'false|mixed', + 'server_key' => 'string', + 'key' => 'string', + 'cache_cb=' => 'callable|null', + 'get_flags=' => 'int', + ), + 'Memcached::getDelayed' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'with_cas=' => 'bool', + 'value_cb=' => 'callable|null', + ), + 'Memcached::getDelayedByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'keys' => 'array', + 'with_cas=' => 'bool', + 'value_cb=' => 'callable|null', + ), + 'Memcached::getLastDisconnectedServer' => + array ( + 0 => 'array|false', + ), + 'Memcached::getLastErrorCode' => + array ( + 0 => 'int', + ), + 'Memcached::getLastErrorErrno' => + array ( + 0 => 'int', + ), + 'Memcached::getLastErrorMessage' => + array ( + 0 => 'string', + ), + 'Memcached::getMulti' => + array ( + 0 => 'array|false', + 'keys' => 'array', + 'get_flags=' => 'int', + ), + 'Memcached::getMultiByKey' => + array ( + 0 => 'array|false', + 'server_key' => 'string', + 'keys' => 'array', + 'get_flags=' => 'int', + ), + 'Memcached::getOption' => + array ( + 0 => 'false|mixed', + 'option' => 'int', + ), + 'Memcached::getResultCode' => + array ( + 0 => 'int', + ), + 'Memcached::getResultMessage' => + array ( + 0 => 'string', + ), + 'Memcached::getServerByKey' => + array ( + 0 => 'array', + 'server_key' => 'string', + ), + 'Memcached::getServerList' => + array ( + 0 => 'array', + ), + 'Memcached::getStats' => + array ( + 0 => 'array|false>|false', + 'type=' => 'null|string', + ), + 'Memcached::getVersion' => + array ( + 0 => 'array', + ), + 'Memcached::increment' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::incrementByKey' => + array ( + 0 => 'false|int', + 'server_key' => 'string', + 'key' => 'string', + 'offset=' => 'int', + 'initial_value=' => 'int', + 'expiry=' => 'int', + ), + 'Memcached::isPersistent' => + array ( + 0 => 'bool', + ), + 'Memcached::isPristine' => + array ( + 0 => 'bool', + ), + 'Memcached::prepend' => + array ( + 0 => 'bool|null', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::prependByKey' => + array ( + 0 => 'bool|null', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'Memcached::quit' => + array ( + 0 => 'bool', + ), + 'Memcached::replace' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::replaceByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::resetServerList' => + array ( + 0 => 'bool', + ), + 'Memcached::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::setBucket' => + array ( + 0 => 'bool', + 'host_map' => 'array', + 'forward_map' => 'array|null', + 'replicas' => 'int', + ), + 'Memcached::setByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'value' => 'mixed', + 'expiration=' => 'int', + ), + 'Memcached::setEncodingKey' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'Memcached::setMulti' => + array ( + 0 => 'bool', + 'items' => 'array', + 'expiration=' => 'int', + ), + 'Memcached::setMultiByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'items' => 'array', + 'expiration=' => 'int', + ), + 'Memcached::setOption' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'mixed', + ), + 'Memcached::setOptions' => + array ( + 0 => 'bool', + 'options' => 'array', + ), + 'Memcached::setSaslAuthData' => + array ( + 0 => 'bool', + 'username' => 'string', + 'password' => 'string', + ), + 'Memcached::touch' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiration=' => 'int', + ), + 'Memcached::touchByKey' => + array ( + 0 => 'bool', + 'server_key' => 'string', + 'key' => 'string', + 'expiration=' => 'int', + ), + 'MessageFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'MessageFormatter::create' => + array ( + 0 => 'MessageFormatter', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'MessageFormatter::format' => + array ( + 0 => 'false|string', + 'values' => 'array', + ), + 'MessageFormatter::formatMessage' => + array ( + 0 => 'false|string', + 'locale' => 'string', + 'pattern' => 'string', + 'values' => 'array', + ), + 'MessageFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'MessageFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'MessageFormatter::getLocale' => + array ( + 0 => 'string', + ), + 'MessageFormatter::getPattern' => + array ( + 0 => 'string', + ), + 'MessageFormatter::parse' => + array ( + 0 => 'array|false', + 'string' => 'string', + ), + 'MessageFormatter::parseMessage' => + array ( + 0 => 'array|false', + 'locale' => 'string', + 'pattern' => 'string', + 'message' => 'string', + ), + 'MessageFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'Mongo::__construct' => + array ( + 0 => 'void', + 'server=' => 'string', + 'options=' => 'array', + 'driver_options=' => 'array', + ), + 'Mongo::__get' => + array ( + 0 => 'MongoDB', + 'dbname' => 'string', + ), + 'Mongo::__toString' => + array ( + 0 => 'string', + ), + 'Mongo::close' => + array ( + 0 => 'bool', + ), + 'Mongo::connect' => + array ( + 0 => 'bool', + ), + 'Mongo::connectUtil' => + array ( + 0 => 'bool', + ), + 'Mongo::dropDB' => + array ( + 0 => 'array', + 'db' => 'mixed', + ), + 'Mongo::forceError' => + array ( + 0 => 'bool', + ), + 'Mongo::getConnections' => + array ( + 0 => 'array', + ), + 'Mongo::getHosts' => + array ( + 0 => 'array', + ), + 'Mongo::getPoolSize' => + array ( + 0 => 'int', + ), + 'Mongo::getReadPreference' => + array ( + 0 => 'array', + ), + 'Mongo::getSlave' => + array ( + 0 => 'null|string', + ), + 'Mongo::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'Mongo::getWriteConcern' => + array ( + 0 => 'array', + ), + 'Mongo::killCursor' => + array ( + 0 => 'mixed', + 'server_hash' => 'string', + 'id' => 'MongoInt64|int', + ), + 'Mongo::lastError' => + array ( + 0 => 'array|null', + ), + 'Mongo::listDBs' => + array ( + 0 => 'array', + ), + 'Mongo::pairConnect' => + array ( + 0 => 'bool', + ), + 'Mongo::pairPersistConnect' => + array ( + 0 => 'bool', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Mongo::persistConnect' => + array ( + 0 => 'bool', + 'username=' => 'string', + 'password=' => 'string', + ), + 'Mongo::poolDebug' => + array ( + 0 => 'array', + ), + 'Mongo::prevError' => + array ( + 0 => 'array', + ), + 'Mongo::resetError' => + array ( + 0 => 'array', + ), + 'Mongo::selectCollection' => + array ( + 0 => 'MongoCollection', + 'db' => 'string', + 'collection' => 'string', + ), + 'Mongo::selectDB' => + array ( + 0 => 'MongoDB', + 'name' => 'string', + ), + 'Mongo::setPoolSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'Mongo::setReadPreference' => + array ( + 0 => 'bool', + 'readPreference' => 'string', + 'tags=' => 'array', + ), + 'Mongo::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'Mongo::switchSlave' => + array ( + 0 => 'string', + ), + 'MongoBinData::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'type=' => 'int', + ), + 'MongoBinData::__toString' => + array ( + 0 => 'string', + ), + 'MongoClient::__construct' => + array ( + 0 => 'void', + 'server=' => 'string', + 'options=' => 'array', + 'driver_options=' => 'array', + ), + 'MongoClient::__get' => + array ( + 0 => 'MongoDB', + 'dbname' => 'string', + ), + 'MongoClient::__toString' => + array ( + 0 => 'string', + ), + 'MongoClient::close' => + array ( + 0 => 'bool', + 'connection=' => 'bool|string', + ), + 'MongoClient::connect' => + array ( + 0 => 'bool', + ), + 'MongoClient::dropDB' => + array ( + 0 => 'array', + 'db' => 'mixed', + ), + 'MongoClient::getConnections' => + array ( + 0 => 'array', + ), + 'MongoClient::getHosts' => + array ( + 0 => 'array', + ), + 'MongoClient::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoClient::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoClient::killCursor' => + array ( + 0 => 'bool', + 'server_hash' => 'string', + 'id' => 'MongoInt64|int', + ), + 'MongoClient::listDBs' => + array ( + 0 => 'array', + ), + 'MongoClient::selectCollection' => + array ( + 0 => 'MongoCollection', + 'db' => 'string', + 'collection' => 'string', + ), + 'MongoClient::selectDB' => + array ( + 0 => 'MongoDB', + 'name' => 'string', + ), + 'MongoClient::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoClient::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoClient::switchSlave' => + array ( + 0 => 'string', + ), + 'MongoCode::__construct' => + array ( + 0 => 'void', + 'code' => 'string', + 'scope=' => 'array', + ), + 'MongoCode::__toString' => + array ( + 0 => 'string', + ), + 'MongoCollection::__construct' => + array ( + 0 => 'void', + 'db' => 'MongoDB', + 'name' => 'string', + ), + 'MongoCollection::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoCollection::__toString' => + array ( + 0 => 'string', + ), + 'MongoCollection::aggregate' => + array ( + 0 => 'array', + 'op' => 'array', + 'op=' => 'array', + '...args=' => 'array', + ), + 'MongoCollection::aggregate\'1' => + array ( + 0 => 'array', + 'pipeline' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::aggregateCursor' => + array ( + 0 => 'MongoCommandCursor', + 'command' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::batchInsert' => + array ( + 0 => 'array|bool', + 'a' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::count' => + array ( + 0 => 'int', + 'query=' => 'array', + 'limit=' => 'int', + 'skip=' => 'int', + ), + 'MongoCollection::createDBRef' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'MongoCollection::createIndex' => + array ( + 0 => 'array', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::deleteIndex' => + array ( + 0 => 'array', + 'keys' => 'array|string', + ), + 'MongoCollection::deleteIndexes' => + array ( + 0 => 'array', + ), + 'MongoCollection::distinct' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'query=' => 'array', + ), + 'MongoCollection::drop' => + array ( + 0 => 'array', + ), + 'MongoCollection::ensureIndex' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::find' => + array ( + 0 => 'MongoCursor', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCollection::findAndModify' => + array ( + 0 => 'array', + 'query' => 'array', + 'update=' => 'array', + 'fields=' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::findOne' => + array ( + 0 => 'array|null', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCollection::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoCollection::getIndexInfo' => + array ( + 0 => 'array', + ), + 'MongoCollection::getName' => + array ( + 0 => 'string', + ), + 'MongoCollection::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCollection::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoCollection::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoCollection::group' => + array ( + 0 => 'array', + 'keys' => 'mixed', + 'initial' => 'array', + 'reduce' => 'MongoCode', + 'options=' => 'array', + ), + 'MongoCollection::insert' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoCollection::parallelCollectionScan' => + array ( + 0 => 'array', + 'num_cursors' => 'int', + ), + 'MongoCollection::remove' => + array ( + 0 => 'array|bool', + 'criteria=' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::save' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoCollection::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCollection::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoCollection::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoCollection::toIndexString' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'MongoCollection::update' => + array ( + 0 => 'bool', + 'criteria' => 'array', + 'newobj' => 'array', + 'options=' => 'array', + ), + 'MongoCollection::validate' => + array ( + 0 => 'array', + 'scan_data=' => 'bool', + ), + 'MongoCommandCursor::__construct' => + array ( + 0 => 'void', + 'connection' => 'MongoClient', + 'ns' => 'string', + 'command' => 'array', + ), + 'MongoCommandCursor::batchSize' => + array ( + 0 => 'MongoCommandCursor', + 'batchSize' => 'int', + ), + 'MongoCommandCursor::createFromDocument' => + array ( + 0 => 'MongoCommandCursor', + 'connection' => 'MongoClient', + 'hash' => 'string', + 'document' => 'array', + ), + 'MongoCommandCursor::current' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoCommandCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::info' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::key' => + array ( + 0 => 'int', + ), + 'MongoCommandCursor::next' => + array ( + 0 => 'void', + ), + 'MongoCommandCursor::rewind' => + array ( + 0 => 'array', + ), + 'MongoCommandCursor::setReadPreference' => + array ( + 0 => 'MongoCommandCursor', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCommandCursor::timeout' => + array ( + 0 => 'MongoCommandCursor', + 'ms' => 'int', + ), + 'MongoCommandCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoCursor::__construct' => + array ( + 0 => 'void', + 'connection' => 'MongoClient', + 'ns' => 'string', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoCursor::addOption' => + array ( + 0 => 'MongoCursor', + 'key' => 'string', + 'value' => 'mixed', + ), + 'MongoCursor::awaitData' => + array ( + 0 => 'MongoCursor', + 'wait=' => 'bool', + ), + 'MongoCursor::batchSize' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::count' => + array ( + 0 => 'int', + 'foundonly=' => 'bool', + ), + 'MongoCursor::current' => + array ( + 0 => 'array', + ), + 'MongoCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoCursor::doQuery' => + array ( + 0 => 'void', + ), + 'MongoCursor::explain' => + array ( + 0 => 'array', + ), + 'MongoCursor::fields' => + array ( + 0 => 'MongoCursor', + 'f' => 'array', + ), + 'MongoCursor::getNext' => + array ( + 0 => 'array', + ), + 'MongoCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCursor::hasNext' => + array ( + 0 => 'bool', + ), + 'MongoCursor::hint' => + array ( + 0 => 'MongoCursor', + 'key_pattern' => 'array|object|string', + ), + 'MongoCursor::immortal' => + array ( + 0 => 'MongoCursor', + 'liveforever=' => 'bool', + ), + 'MongoCursor::info' => + array ( + 0 => 'array', + ), + 'MongoCursor::key' => + array ( + 0 => 'string', + ), + 'MongoCursor::limit' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::maxTimeMS' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoCursor::next' => + array ( + 0 => 'array', + ), + 'MongoCursor::partial' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoCursor::reset' => + array ( + 0 => 'void', + ), + 'MongoCursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoCursor::setFlag' => + array ( + 0 => 'MongoCursor', + 'flag' => 'int', + 'set=' => 'bool', + ), + 'MongoCursor::setReadPreference' => + array ( + 0 => 'MongoCursor', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCursor::skip' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoCursor::slaveOkay' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoCursor::snapshot' => + array ( + 0 => 'MongoCursor', + ), + 'MongoCursor::sort' => + array ( + 0 => 'MongoCursor', + 'fields' => 'array', + ), + 'MongoCursor::tailable' => + array ( + 0 => 'MongoCursor', + 'tail=' => 'bool', + ), + 'MongoCursor::timeout' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoCursorException::__clone' => + array ( + 0 => 'void', + ), + 'MongoCursorException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoCursorException::__toString' => + array ( + 0 => 'string', + ), + 'MongoCursorException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoCursorException::getCode' => + array ( + 0 => 'int', + ), + 'MongoCursorException::getFile' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getHost' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getLine' => + array ( + 0 => 'int', + ), + 'MongoCursorException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoCursorException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoCursorException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoCursorException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoCursorInterface::__construct' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::batchSize' => + array ( + 0 => 'MongoCursorInterface', + 'batchSize' => 'int', + ), + 'MongoCursorInterface::current' => + array ( + 0 => 'mixed', + ), + 'MongoCursorInterface::dead' => + array ( + 0 => 'bool', + ), + 'MongoCursorInterface::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoCursorInterface::info' => + array ( + 0 => 'array', + ), + 'MongoCursorInterface::key' => + array ( + 0 => 'int|string', + ), + 'MongoCursorInterface::next' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::rewind' => + array ( + 0 => 'void', + ), + 'MongoCursorInterface::setReadPreference' => + array ( + 0 => 'MongoCursorInterface', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoCursorInterface::timeout' => + array ( + 0 => 'MongoCursorInterface', + 'ms' => 'int', + ), + 'MongoCursorInterface::valid' => + array ( + 0 => 'bool', + ), + 'MongoDB::__construct' => + array ( + 0 => 'void', + 'conn' => 'MongoClient', + 'name' => 'string', + ), + 'MongoDB::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoDB::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB::authenticate' => + array ( + 0 => 'array', + 'username' => 'string', + 'password' => 'string', + ), + 'MongoDB::command' => + array ( + 0 => 'array', + 'command' => 'array', + ), + 'MongoDB::createCollection' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + 'capped=' => 'bool', + 'size=' => 'int', + 'max=' => 'int', + ), + 'MongoDB::createDBRef' => + array ( + 0 => 'array', + 'collection' => 'string', + 'a' => 'mixed', + ), + 'MongoDB::drop' => + array ( + 0 => 'array', + ), + 'MongoDB::dropCollection' => + array ( + 0 => 'array', + 'coll' => 'MongoCollection|string', + ), + 'MongoDB::execute' => + array ( + 0 => 'array', + 'code' => 'MongoCode|string', + 'args=' => 'array', + ), + 'MongoDB::forceError' => + array ( + 0 => 'bool', + ), + 'MongoDB::getCollectionInfo' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'MongoDB::getCollectionNames' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'MongoDB::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoDB::getGridFS' => + array ( + 0 => 'MongoGridFS', + 'prefix=' => 'string', + ), + 'MongoDB::getProfilingLevel' => + array ( + 0 => 'int', + ), + 'MongoDB::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoDB::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoDB::getWriteConcern' => + array ( + 0 => 'array', + ), + 'MongoDB::lastError' => + array ( + 0 => 'array', + ), + 'MongoDB::listCollections' => + array ( + 0 => 'array', + ), + 'MongoDB::prevError' => + array ( + 0 => 'array', + ), + 'MongoDB::repair' => + array ( + 0 => 'array', + 'preserve_cloned_files=' => 'bool', + 'backup_original_files=' => 'bool', + ), + 'MongoDB::resetError' => + array ( + 0 => 'array', + ), + 'MongoDB::selectCollection' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoDB::setProfilingLevel' => + array ( + 0 => 'int', + 'level' => 'int', + ), + 'MongoDB::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags=' => 'array', + ), + 'MongoDB::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoDB::setWriteConcern' => + array ( + 0 => 'bool', + 'w' => 'mixed', + 'wtimeout=' => 'int', + ), + 'MongoDBRef::create' => + array ( + 0 => 'array', + 'collection' => 'string', + 'id' => 'mixed', + 'database=' => 'string', + ), + 'MongoDBRef::get' => + array ( + 0 => 'array|null', + 'db' => 'MongoDB', + 'ref' => 'array', + ), + 'MongoDBRef::isRef' => + array ( + 0 => 'bool', + 'ref' => 'mixed', + ), + 'MongoDB\\BSON\\fromJSON' => + array ( + 0 => 'string', + 'json' => 'string', + ), + 'MongoDB\\BSON\\fromPHP' => + array ( + 0 => 'string', + 'value' => 'array|object', + ), + 'MongoDB\\BSON\\toCanonicalExtendedJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\toJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\toPHP' => + array ( + 0 => 'array|object', + 'bson' => 'string', + 'typemap=' => 'array|null', + ), + 'MongoDB\\BSON\\toRelaxedExtendedJSON' => + array ( + 0 => 'string', + 'bson' => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\addSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Monitoring\\removeSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\BSON\\Binary::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'type=' => 'int', + ), + 'MongoDB\\BSON\\Binary::getData' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Binary::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Binary::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Binary::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\BinaryInterface::getData' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\BinaryInterface::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\BinaryInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\DBPointer::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\DBPointer::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Decimal128::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoDB\\BSON\\Decimal128::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Decimal128::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Decimal128::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Decimal128::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Decimal128Interface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::fromBSON' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'bson' => 'string', + ), + 'MongoDB\\BSON\\Document::fromJSON' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'json' => 'string', + ), + 'MongoDB\\BSON\\Document::fromPHP' => + array ( + 0 => 'MongoDB\\BSON\\Document', + 'value' => 'array|object', + ), + 'MongoDB\\BSON\\Document::get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'MongoDB\\BSON\\Document::getIterator' => + array ( + 0 => 'MongoDB\\BSON\\Iterator', + ), + 'MongoDB\\BSON\\Document::has' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'MongoDB\\BSON\\Document::toPHP' => + array ( + 0 => 'array|object', + 'typeMap=' => 'array|null', + ), + 'MongoDB\\BSON\\Document::toCanonicalExtendedJSON' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::toRelaxedExtendedJSON' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'mixed', + 'value' => 'mixed', + ), + 'MongoDB\\BSON\\Document::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\Document::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Document::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Int64::__construct' => + array ( + 0 => 'void', + 'value' => 'int|string', + ), + 'MongoDB\\BSON\\Int64::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Int64::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Int64::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Int64::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Iterator::current' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Iterator::key' => + array ( + 0 => 'int|string', + ), + 'MongoDB\\BSON\\Iterator::next' => + array ( + 0 => 'void', + ), + 'MongoDB\\BSON\\Iterator::rewind' => + array ( + 0 => 'void', + ), + 'MongoDB\\BSON\\Iterator::valid' => + array ( + 0 => 'bool', + ), + 'MongoDB\\BSON\\Javascript::__construct' => + array ( + 0 => 'void', + 'code' => 'string', + 'scope=' => 'array|null|object', + ), + 'MongoDB\\BSON\\Javascript::getCode' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::getScope' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\BSON\\Javascript::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Javascript::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Javascript::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\JavascriptInterface::getCode' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\JavascriptInterface::getScope' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\BSON\\JavascriptInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MaxKey::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MaxKey::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\MaxKey::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\MinKey::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\MinKey::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\MinKey::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\ObjectId::__construct' => + array ( + 0 => 'void', + 'id=' => 'null|string', + ), + 'MongoDB\\BSON\\ObjectId::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\ObjectId::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\ObjectId::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\ObjectId::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\ObjectId::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\ObjectIdInterface::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\ObjectIdInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::fromPHP' => + array ( + 0 => 'MongoDB\\BSON\\PackedArray', + 'value' => 'array', + ), + 'MongoDB\\BSON\\PackedArray::get' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'MongoDB\\BSON\\PackedArray::getIterator' => + array ( + 0 => 'MongoDB\\BSON\\Iterator', + ), + 'MongoDB\\BSON\\PackedArray::has' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'MongoDB\\BSON\\PackedArray::toPHP' => + array ( + 0 => 'array|object', + 'typeMap=' => 'array|null', + ), + 'MongoDB\\BSON\\PackedArray::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'mixed', + 'value' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'mixed', + ), + 'MongoDB\\BSON\\PackedArray::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\PackedArray::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Persistable::bsonSerialize' => + array ( + 0 => 'MongoDB\\BSON\\Document|array|stdClass', + ), + 'MongoDB\\BSON\\Regex::__construct' => + array ( + 0 => 'void', + 'pattern' => 'string', + 'flags=' => 'string', + ), + 'MongoDB\\BSON\\Regex::getPattern' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::getFlags' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Regex::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Regex::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\RegexInterface::getPattern' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\RegexInterface::getFlags' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\RegexInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Serializable::bsonSerialize' => + array ( + 0 => 'MongoDB\\BSON\\Document|MongoDB\\BSON\\PackedArray|array|stdClass', + ), + 'MongoDB\\BSON\\Symbol::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Symbol::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Symbol::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Symbol::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Timestamp::__construct' => + array ( + 0 => 'void', + 'increment' => 'int|string', + 'timestamp' => 'int|string', + ), + 'MongoDB\\BSON\\Timestamp::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Timestamp::getIncrement' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\Timestamp::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Timestamp::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Timestamp::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Timestamp::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\TimestampInterface::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\TimestampInterface::getIncrement' => + array ( + 0 => 'int', + ), + 'MongoDB\\BSON\\TimestampInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::__construct' => + array ( + 0 => 'void', + 'milliseconds=' => 'DateTimeInterface|float|int|null|string', + ), + 'MongoDB\\BSON\\UTCDateTime::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDB\\BSON\\UTCDateTime::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\UTCDateTime::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\UTCDateTimeInterface::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDB\\BSON\\UTCDateTimeInterface::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\BSON\\Undefined::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\BSON\\Undefined::jsonSerialize' => + array ( + 0 => 'mixed', + ), + 'MongoDB\\BSON\\Unserializable::bsonUnserialize' => + array ( + 0 => 'void', + 'data' => 'array', + ), + 'MongoDB\\Driver\\BulkWrite::__construct' => + array ( + 0 => 'void', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\BulkWrite::count' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\BulkWrite::delete' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'deleteOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\BulkWrite::insert' => + array ( + 0 => 'mixed', + 'document' => 'array|object', + ), + 'MongoDB\\Driver\\BulkWrite::update' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'newObj' => 'array|object', + 'updateOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::__construct' => + array ( + 0 => 'void', + 'options' => 'array', + ), + 'MongoDB\\Driver\\ClientEncryption::addKeyAltName' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::createDataKey' => + array ( + 0 => 'MongoDB\\BSON\\Binary', + 'kmsProvider' => 'string', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::decrypt' => + array ( + 0 => 'mixed', + 'value' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::deleteKey' => + array ( + 0 => 'object', + 'keyId' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::encrypt' => + array ( + 0 => 'MongoDB\\BSON\\Binary', + 'value' => 'mixed', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::encryptExpression' => + array ( + 0 => 'object', + 'expr' => 'array|object', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ClientEncryption::getKey' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + ), + 'MongoDB\\Driver\\ClientEncryption::getKeyByAltName' => + array ( + 0 => 'null|object', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::getKeys' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + ), + 'MongoDB\\Driver\\ClientEncryption::removeKeyAltName' => + array ( + 0 => 'null|object', + 'keyId' => 'MongoDB\\BSON\\Binary', + 'keyAltName' => 'string', + ), + 'MongoDB\\Driver\\ClientEncryption::rewrapManyDataKey' => + array ( + 0 => 'object', + 'filter' => 'array|object', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Command::__construct' => + array ( + 0 => 'void', + 'document' => 'array|object', + 'commandOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\Cursor::current' => + array ( + 0 => 'array|null|object', + ), + 'MongoDB\\Driver\\Cursor::getId' => + array ( + 0 => 'MongoDB\\Driver\\CursorId', + ), + 'MongoDB\\Driver\\Cursor::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Cursor::isDead' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Cursor::key' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Cursor::next' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Cursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Cursor::setTypeMap' => + array ( + 0 => 'void', + 'typemap' => 'array', + ), + 'MongoDB\\Driver\\Cursor::toArray' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Cursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\CursorId::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\CursorId::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\CursorId::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\CursorInterface::getId' => + array ( + 0 => 'MongoDB\\Driver\\CursorId', + ), + 'MongoDB\\Driver\\CursorInterface::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\CursorInterface::isDead' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\CursorInterface::setTypeMap' => + array ( + 0 => 'void', + 'typemap' => 'array', + ), + 'MongoDB\\Driver\\CursorInterface::toArray' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Exception\\AuthenticationException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\BulkWriteException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\CommandException::getResultDocument' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Exception\\CommandException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ConnectionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ConnectionTimeoutException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\EncryptionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\Exception::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ExecutionTimeoutException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\InvalidArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\LogicException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\RuntimeException::hasErrorLabel' => + array ( + 0 => 'bool', + 'errorLabel' => 'string', + ), + 'MongoDB\\Driver\\Exception\\RuntimeException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\SSLConnectionException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\ServerException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\UnexpectedValueException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Exception\\WriteException::getWriteResult' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + ), + 'MongoDB\\Driver\\Exception\\WriteException::__toString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Manager::__construct' => + array ( + 0 => 'void', + 'uri=' => 'null|string', + 'uriOptions=' => 'array|null', + 'driverOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::addSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Manager::createClientEncryption' => + array ( + 0 => 'MongoDB\\Driver\\ClientEncryption', + 'options' => 'array', + ), + 'MongoDB\\Driver\\Manager::executeBulkWrite' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + 'namespace' => 'string', + 'bulk' => 'MongoDB\\Driver\\BulkWrite', + 'options=' => 'MongoDB\\Driver\\WriteConcern|array|null', + ), + 'MongoDB\\Driver\\Manager::executeCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Manager::executeQuery' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'namespace' => 'string', + 'query' => 'MongoDB\\Driver\\Query', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Manager::executeReadCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::executeReadWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::executeWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Manager::getEncryptedFieldsMap' => + array ( + 0 => 'array|null|object', + ), + 'MongoDB\\Driver\\Manager::getReadConcern' => + array ( + 0 => 'MongoDB\\Driver\\ReadConcern', + ), + 'MongoDB\\Driver\\Manager::getReadPreference' => + array ( + 0 => 'MongoDB\\Driver\\ReadPreference', + ), + 'MongoDB\\Driver\\Manager::getServers' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Manager::getWriteConcern' => + array ( + 0 => 'MongoDB\\Driver\\WriteConcern', + ), + 'MongoDB\\Driver\\Manager::removeSubscriber' => + array ( + 0 => 'void', + 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', + ), + 'MongoDB\\Driver\\Manager::selectServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', + ), + 'MongoDB\\Driver\\Manager::startSession' => + array ( + 0 => 'MongoDB\\Driver\\Session', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getError' => + array ( + 0 => 'Exception', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommand' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getDatabaseName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandStarted' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandSucceeded' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandFailed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getCommandName' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getOperationId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getRequestId' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServiceId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId|null', + ), + 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServerConnectionId' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Monitoring\\LogSubscriber::log' => + array ( + 0 => 'void', + 'level' => 'int', + 'domain' => 'string', + 'message' => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverChanged' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverClosed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverOpening' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatFailed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatStarted' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatSucceeded' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyChanged' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyClosed' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent', + ), + 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyOpening' => + array ( + 0 => 'void', + 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getNewDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPreviousDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getError' => + array ( + 0 => 'Exception', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getDurationMicros' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getReply' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::isAwaited' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getNewDescription' => + array ( + 0 => 'MongoDB\\Driver\\TopologyDescription', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getPreviousDescription' => + array ( + 0 => 'MongoDB\\Driver\\TopologyDescription', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent::getTopologyId' => + array ( + 0 => 'MongoDB\\BSON\\ObjectId', + ), + 'MongoDB\\Driver\\Query::__construct' => + array ( + 0 => 'void', + 'filter' => 'array|object', + 'queryOptions=' => 'array|null', + ), + 'MongoDB\\Driver\\ReadConcern::__construct' => + array ( + 0 => 'void', + 'level=' => 'null|string', + ), + 'MongoDB\\Driver\\ReadConcern::getLevel' => + array ( + 0 => 'null|string', + ), + 'MongoDB\\Driver\\ReadConcern::isDefault' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\ReadConcern::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ReadConcern::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadConcern::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::__construct' => + array ( + 0 => 'void', + 'mode' => 'int|string', + 'tagSets=' => 'array|null', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\ReadPreference::getHedge' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\ReadPreference::getMaxStalenessSeconds' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ReadPreference::getMode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ReadPreference::getModeString' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::getTagSets' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\ReadPreference::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ReadPreference::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ReadPreference::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\Server::executeBulkWrite' => + array ( + 0 => 'MongoDB\\Driver\\WriteResult', + 'namespace' => 'string', + 'bulkWrite' => 'MongoDB\\Driver\\BulkWrite', + 'options=' => 'MongoDB\\Driver\\WriteConcern|array|null', + ), + 'MongoDB\\Driver\\Server::executeCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Server::executeQuery' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'namespace' => 'string', + 'query' => 'MongoDB\\Driver\\Query', + 'options=' => 'MongoDB\\Driver\\ReadPreference|array|null', + ), + 'MongoDB\\Driver\\Server::executeReadCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::executeReadWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::executeWriteCommand' => + array ( + 0 => 'MongoDB\\Driver\\Cursor', + 'db' => 'string', + 'command' => 'MongoDB\\Driver\\Command', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\Server::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Server::getInfo' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Server::getLatency' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\Server::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Server::getServerDescription' => + array ( + 0 => 'MongoDB\\Driver\\ServerDescription', + ), + 'MongoDB\\Driver\\Server::getTags' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\Server::getType' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\Server::isArbiter' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isHidden' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isPassive' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isPrimary' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Server::isSecondary' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\ServerApi::__construct' => + array ( + 0 => 'void', + 'version' => 'string', + 'strict=' => 'bool|null', + 'deprecationErrors=' => 'bool|null', + ), + 'MongoDB\\Driver\\ServerApi::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\ServerApi::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ServerApi::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\ServerDescription::getHelloResponse' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\ServerDescription::getHost' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\ServerDescription::getLastUpdateTime' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ServerDescription::getPort' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\ServerDescription::getRoundTripTime' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\ServerDescription::getType' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Session::abortTransaction' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::advanceClusterTime' => + array ( + 0 => 'void', + 'clusterTime' => 'array|object', + ), + 'MongoDB\\Driver\\Session::advanceOperationTime' => + array ( + 0 => 'void', + 'operationTime' => 'MongoDB\\BSON\\TimestampInterface', + ), + 'MongoDB\\Driver\\Session::commitTransaction' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::endSession' => + array ( + 0 => 'void', + ), + 'MongoDB\\Driver\\Session::getClusterTime' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\Session::getLogicalSessionId' => + array ( + 0 => 'object', + ), + 'MongoDB\\Driver\\Session::getOperationTime' => + array ( + 0 => 'MongoDB\\BSON\\Timestamp|null', + ), + 'MongoDB\\Driver\\Session::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server|null', + ), + 'MongoDB\\Driver\\Session::getTransactionOptions' => + array ( + 0 => 'array|null', + ), + 'MongoDB\\Driver\\Session::getTransactionState' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\Session::isDirty' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Session::isInTransaction' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\Session::startTransaction' => + array ( + 0 => 'void', + 'options=' => 'array|null', + ), + 'MongoDB\\Driver\\TopologyDescription::getServers' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\TopologyDescription::getType' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\TopologyDescription::hasReadableServer' => + array ( + 0 => 'bool', + 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', + ), + 'MongoDB\\Driver\\TopologyDescription::hasWritableServer' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\WriteConcern::__construct' => + array ( + 0 => 'void', + 'w' => 'int|string', + 'wtimeout=' => 'int|null', + 'journal=' => 'bool|null', + ), + 'MongoDB\\Driver\\WriteConcern::getJournal' => + array ( + 0 => 'bool|null', + ), + 'MongoDB\\Driver\\WriteConcern::getW' => + array ( + 0 => 'int|null|string', + ), + 'MongoDB\\Driver\\WriteConcern::getWtimeout' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteConcern::isDefault' => + array ( + 0 => 'bool', + ), + 'MongoDB\\Driver\\WriteConcern::bsonSerialize' => + array ( + 0 => 'stdClass', + ), + 'MongoDB\\Driver\\WriteConcern::serialize' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteConcern::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'MongoDB\\Driver\\WriteConcernError::getCode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteConcernError::getInfo' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\WriteConcernError::getMessage' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteError::getCode' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteError::getIndex' => + array ( + 0 => 'int', + ), + 'MongoDB\\Driver\\WriteError::getInfo' => + array ( + 0 => 'null|object', + ), + 'MongoDB\\Driver\\WriteError::getMessage' => + array ( + 0 => 'string', + ), + 'MongoDB\\Driver\\WriteResult::getInsertedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getMatchedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getModifiedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getDeletedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getUpsertedCount' => + array ( + 0 => 'int|null', + ), + 'MongoDB\\Driver\\WriteResult::getServer' => + array ( + 0 => 'MongoDB\\Driver\\Server', + ), + 'MongoDB\\Driver\\WriteResult::getUpsertedIds' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::getWriteConcernError' => + array ( + 0 => 'MongoDB\\Driver\\WriteConcernError|null', + ), + 'MongoDB\\Driver\\WriteResult::getWriteErrors' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::getErrorReplies' => + array ( + 0 => 'array', + ), + 'MongoDB\\Driver\\WriteResult::isAcknowledged' => + array ( + 0 => 'bool', + ), + 'MongoDate::__construct' => + array ( + 0 => 'void', + 'second=' => 'int', + 'usecond=' => 'int', + ), + 'MongoDate::__toString' => + array ( + 0 => 'string', + ), + 'MongoDate::toDateTime' => + array ( + 0 => 'DateTime', + ), + 'MongoDeleteBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoException::__clone' => + array ( + 0 => 'void', + ), + 'MongoException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoException::__toString' => + array ( + 0 => 'string', + ), + 'MongoException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoException::getCode' => + array ( + 0 => 'int', + ), + 'MongoException::getFile' => + array ( + 0 => 'string', + ), + 'MongoException::getLine' => + array ( + 0 => 'int', + ), + 'MongoException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoGridFS::__construct' => + array ( + 0 => 'void', + 'db' => 'MongoDB', + 'prefix=' => 'string', + 'chunks=' => 'mixed', + ), + 'MongoGridFS::__get' => + array ( + 0 => 'MongoCollection', + 'name' => 'string', + ), + 'MongoGridFS::__toString' => + array ( + 0 => 'string', + ), + 'MongoGridFS::aggregate' => + array ( + 0 => 'array', + 'pipeline' => 'array', + 'op' => 'array', + 'pipelineOperators' => 'array', + ), + 'MongoGridFS::aggregateCursor' => + array ( + 0 => 'MongoCommandCursor', + 'pipeline' => 'array', + 'options' => 'array', + ), + 'MongoGridFS::batchInsert' => + array ( + 0 => 'mixed', + 'a' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::count' => + array ( + 0 => 'int', + 'query=' => 'array|stdClass', + ), + 'MongoGridFS::createDBRef' => + array ( + 0 => 'array', + 'a' => 'array', + ), + 'MongoGridFS::createIndex' => + array ( + 0 => 'array', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::delete' => + array ( + 0 => 'bool', + 'id' => 'mixed', + ), + 'MongoGridFS::deleteIndex' => + array ( + 0 => 'array', + 'keys' => 'array|string', + ), + 'MongoGridFS::deleteIndexes' => + array ( + 0 => 'array', + ), + 'MongoGridFS::distinct' => + array ( + 0 => 'array|bool', + 'key' => 'string', + 'query=' => 'array|null', + ), + 'MongoGridFS::drop' => + array ( + 0 => 'array', + ), + 'MongoGridFS::ensureIndex' => + array ( + 0 => 'bool', + 'keys' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::find' => + array ( + 0 => 'MongoGridFSCursor', + 'query=' => 'array', + 'fields=' => 'array', + ), + 'MongoGridFS::findAndModify' => + array ( + 0 => 'array', + 'query' => 'array', + 'update=' => 'array|null', + 'fields=' => 'array|null', + 'options=' => 'array|null', + ), + 'MongoGridFS::findOne' => + array ( + 0 => 'MongoGridFSFile|null', + 'query=' => 'mixed', + 'fields=' => 'mixed', + ), + 'MongoGridFS::get' => + array ( + 0 => 'MongoGridFSFile|null', + 'id' => 'mixed', + ), + 'MongoGridFS::getDBRef' => + array ( + 0 => 'array', + 'ref' => 'array', + ), + 'MongoGridFS::getIndexInfo' => + array ( + 0 => 'array', + ), + 'MongoGridFS::getName' => + array ( + 0 => 'string', + ), + 'MongoGridFS::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoGridFS::getSlaveOkay' => + array ( + 0 => 'bool', + ), + 'MongoGridFS::group' => + array ( + 0 => 'array', + 'keys' => 'mixed', + 'initial' => 'array', + 'reduce' => 'MongoCode', + 'condition=' => 'array', + ), + 'MongoGridFS::insert' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoGridFS::put' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'extra=' => 'array', + ), + 'MongoGridFS::remove' => + array ( + 0 => 'bool', + 'criteria=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::save' => + array ( + 0 => 'array|bool', + 'a' => 'array|object', + 'options=' => 'array', + ), + 'MongoGridFS::setReadPreference' => + array ( + 0 => 'bool', + 'read_preference' => 'string', + 'tags' => 'array', + ), + 'MongoGridFS::setSlaveOkay' => + array ( + 0 => 'bool', + 'ok=' => 'bool', + ), + 'MongoGridFS::storeBytes' => + array ( + 0 => 'mixed', + 'bytes' => 'string', + 'extra=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::storeFile' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'extra=' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::storeUpload' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'filename=' => 'string', + ), + 'MongoGridFS::toIndexString' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'MongoGridFS::update' => + array ( + 0 => 'bool', + 'criteria' => 'array', + 'newobj' => 'array', + 'options=' => 'array', + ), + 'MongoGridFS::validate' => + array ( + 0 => 'array', + 'scan_data=' => 'bool', + ), + 'MongoGridFSCursor::__construct' => + array ( + 0 => 'void', + 'gridfs' => 'MongoGridFS', + 'connection' => 'resource', + 'ns' => 'string', + 'query' => 'array', + 'fields' => 'array', + ), + 'MongoGridFSCursor::addOption' => + array ( + 0 => 'MongoCursor', + 'key' => 'string', + 'value' => 'mixed', + ), + 'MongoGridFSCursor::awaitData' => + array ( + 0 => 'MongoCursor', + 'wait=' => 'bool', + ), + 'MongoGridFSCursor::batchSize' => + array ( + 0 => 'MongoCursor', + 'batchSize' => 'int', + ), + 'MongoGridFSCursor::count' => + array ( + 0 => 'int', + 'all=' => 'bool', + ), + 'MongoGridFSCursor::current' => + array ( + 0 => 'MongoGridFSFile', + ), + 'MongoGridFSCursor::dead' => + array ( + 0 => 'bool', + ), + 'MongoGridFSCursor::doQuery' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::explain' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::fields' => + array ( + 0 => 'MongoCursor', + 'f' => 'array', + ), + 'MongoGridFSCursor::getNext' => + array ( + 0 => 'MongoGridFSFile', + ), + 'MongoGridFSCursor::getReadPreference' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::hasNext' => + array ( + 0 => 'bool', + ), + 'MongoGridFSCursor::hint' => + array ( + 0 => 'MongoCursor', + 'key_pattern' => 'mixed', + ), + 'MongoGridFSCursor::immortal' => + array ( + 0 => 'MongoCursor', + 'liveForever=' => 'bool', + ), + 'MongoGridFSCursor::info' => + array ( + 0 => 'array', + ), + 'MongoGridFSCursor::key' => + array ( + 0 => 'string', + ), + 'MongoGridFSCursor::limit' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoGridFSCursor::maxTimeMS' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoGridFSCursor::next' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::partial' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoGridFSCursor::reset' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::rewind' => + array ( + 0 => 'void', + ), + 'MongoGridFSCursor::setFlag' => + array ( + 0 => 'MongoCursor', + 'flag' => 'int', + 'set=' => 'bool', + ), + 'MongoGridFSCursor::setReadPreference' => + array ( + 0 => 'MongoCursor', + 'read_preference' => 'string', + 'tags' => 'array', + ), + 'MongoGridFSCursor::skip' => + array ( + 0 => 'MongoCursor', + 'num' => 'int', + ), + 'MongoGridFSCursor::slaveOkay' => + array ( + 0 => 'MongoCursor', + 'okay=' => 'bool', + ), + 'MongoGridFSCursor::snapshot' => + array ( + 0 => 'MongoCursor', + ), + 'MongoGridFSCursor::sort' => + array ( + 0 => 'MongoCursor', + 'fields' => 'array', + ), + 'MongoGridFSCursor::tailable' => + array ( + 0 => 'MongoCursor', + 'tail=' => 'bool', + ), + 'MongoGridFSCursor::timeout' => + array ( + 0 => 'MongoCursor', + 'ms' => 'int', + ), + 'MongoGridFSCursor::valid' => + array ( + 0 => 'bool', + ), + 'MongoGridFSFile::getBytes' => + array ( + 0 => 'string', + ), + 'MongoGridFSFile::getFilename' => + array ( + 0 => 'string', + ), + 'MongoGridFSFile::getResource' => + array ( + 0 => 'resource', + ), + 'MongoGridFSFile::getSize' => + array ( + 0 => 'int', + ), + 'MongoGridFSFile::write' => + array ( + 0 => 'int', + 'filename=' => 'string', + ), + 'MongoGridfsFile::__construct' => + array ( + 0 => 'void', + 'gridfs' => 'MongoGridFS', + 'file' => 'array', + ), + 'MongoId::__construct' => + array ( + 0 => 'void', + 'id=' => 'MongoId|string', + ), + 'MongoId::__set_state' => + array ( + 0 => 'MongoId', + 'props' => 'array', + ), + 'MongoId::__toString' => + array ( + 0 => 'string', + ), + 'MongoId::getHostname' => + array ( + 0 => 'string', + ), + 'MongoId::getInc' => + array ( + 0 => 'int', + ), + 'MongoId::getPID' => + array ( + 0 => 'int', + ), + 'MongoId::getTimestamp' => + array ( + 0 => 'int', + ), + 'MongoId::isValid' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'MongoInsertBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoInt32::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoInt32::__toString' => + array ( + 0 => 'string', + ), + 'MongoInt64::__construct' => + array ( + 0 => 'void', + 'value' => 'string', + ), + 'MongoInt64::__toString' => + array ( + 0 => 'string', + ), + 'MongoLog::getCallback' => + array ( + 0 => 'callable', + ), + 'MongoLog::getLevel' => + array ( + 0 => 'int', + ), + 'MongoLog::getModule' => + array ( + 0 => 'int', + ), + 'MongoLog::setCallback' => + array ( + 0 => 'void', + 'log_function' => 'callable', + ), + 'MongoLog::setLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'MongoLog::setModule' => + array ( + 0 => 'void', + 'module' => 'int', + ), + 'MongoPool::getSize' => + array ( + 0 => 'int', + ), + 'MongoPool::info' => + array ( + 0 => 'array', + ), + 'MongoPool::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'MongoRegex::__construct' => + array ( + 0 => 'void', + 'regex' => 'string', + ), + 'MongoRegex::__toString' => + array ( + 0 => 'string', + ), + 'MongoResultException::__clone' => + array ( + 0 => 'void', + ), + 'MongoResultException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoResultException::__toString' => + array ( + 0 => 'string', + ), + 'MongoResultException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoResultException::getCode' => + array ( + 0 => 'int', + ), + 'MongoResultException::getDocument' => + array ( + 0 => 'array', + ), + 'MongoResultException::getFile' => + array ( + 0 => 'string', + ), + 'MongoResultException::getLine' => + array ( + 0 => 'int', + ), + 'MongoResultException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoResultException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoResultException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoResultException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MongoTimestamp::__construct' => + array ( + 0 => 'void', + 'second=' => 'int', + 'inc=' => 'int', + ), + 'MongoTimestamp::__toString' => + array ( + 0 => 'string', + ), + 'MongoUpdateBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'write_options=' => 'array', + ), + 'MongoUpdateBatch::add' => + array ( + 0 => 'bool', + 'item' => 'array', + ), + 'MongoUpdateBatch::execute' => + array ( + 0 => 'array', + 'write_options' => 'array', + ), + 'MongoWriteBatch::__construct' => + array ( + 0 => 'void', + 'collection' => 'MongoCollection', + 'batch_type' => 'string', + 'write_options' => 'array', + ), + 'MongoWriteBatch::add' => + array ( + 0 => 'bool', + 'item' => 'array', + ), + 'MongoWriteBatch::execute' => + array ( + 0 => 'array', + 'write_options' => 'array', + ), + 'MongoWriteConcernException::__clone' => + array ( + 0 => 'void', + ), + 'MongoWriteConcernException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'MongoWriteConcernException::__toString' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::__wakeup' => + array ( + 0 => 'void', + ), + 'MongoWriteConcernException::getCode' => + array ( + 0 => 'int', + ), + 'MongoWriteConcernException::getDocument' => + array ( + 0 => 'array', + ), + 'MongoWriteConcernException::getFile' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::getLine' => + array ( + 0 => 'int', + ), + 'MongoWriteConcernException::getMessage' => + array ( + 0 => 'string', + ), + 'MongoWriteConcernException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'MongoWriteConcernException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'MongoWriteConcernException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'MultipleIterator::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'MultipleIterator::attachIterator' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'info=' => 'int|null|string', + ), + 'MultipleIterator::containsIterator' => + array ( + 0 => 'bool', + 'iterator' => 'Iterator', + ), + 'MultipleIterator::countIterators' => + array ( + 0 => 'int', + ), + 'MultipleIterator::current' => + array ( + 0 => 'array|false', + ), + 'MultipleIterator::detachIterator' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'MultipleIterator::getFlags' => + array ( + 0 => 'int', + ), + 'MultipleIterator::key' => + array ( + 0 => 'array', + ), + 'MultipleIterator::next' => + array ( + 0 => 'void', + ), + 'MultipleIterator::rewind' => + array ( + 0 => 'void', + ), + 'MultipleIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'MultipleIterator::valid' => + array ( + 0 => 'bool', + ), + 'Mutex::create' => + array ( + 0 => 'long', + 'lock=' => 'bool', + ), + 'Mutex::destroy' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::lock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::trylock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + ), + 'Mutex::unlock' => + array ( + 0 => 'bool', + 'mutex' => 'long', + 'destroy=' => 'bool', + ), + 'MysqlndUhConnection::__construct' => + array ( + 0 => 'void', + ), + 'MysqlndUhConnection::changeUser' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'user' => 'string', + 'password' => 'string', + 'database' => 'string', + 'silent' => 'bool', + 'passwd_len' => 'int', + ), + 'MysqlndUhConnection::charsetName' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::close' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'close_type' => 'int', + ), + 'MysqlndUhConnection::connect' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'host' => 'string', + 'use' => 'string', + 'password' => 'string', + 'database' => 'string', + 'port' => 'int', + 'socket' => 'string', + 'mysql_flags' => 'int', + ), + 'MysqlndUhConnection::endPSession' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::escapeString' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + 'escape_string' => 'string', + ), + 'MysqlndUhConnection::getAffectedRows' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getErrorNumber' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getErrorString' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getFieldCount' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getHostInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getLastInsertId' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getLastMessage' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getProtocolInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerInformation' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerStatistics' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getServerVersion' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getSqlstate' => + array ( + 0 => 'string', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getStatistics' => + array ( + 0 => 'array', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getThreadId' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::getWarningCount' => + array ( + 0 => 'int', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::init' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::killConnection' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'pid' => 'int', + ), + 'MysqlndUhConnection::listFields' => + array ( + 0 => 'array', + 'connection' => 'mysqlnd_connection', + 'table' => 'string', + 'achtung_wild' => 'string', + ), + 'MysqlndUhConnection::listMethod' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + 'achtung_wild' => 'string', + 'par1' => 'string', + ), + 'MysqlndUhConnection::moreResults' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::nextResult' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::ping' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::query' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + ), + 'MysqlndUhConnection::queryReadResultsetHeader' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'mysqlnd_stmt' => 'mysqlnd_statement', + ), + 'MysqlndUhConnection::reapQuery' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::refreshServer' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'options' => 'int', + ), + 'MysqlndUhConnection::restartPSession' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::selectDb' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'database' => 'string', + ), + 'MysqlndUhConnection::sendClose' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::sendQuery' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'query' => 'string', + ), + 'MysqlndUhConnection::serverDumpDebugInformation' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::setAutocommit' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'mode' => 'int', + ), + 'MysqlndUhConnection::setCharset' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'charset' => 'string', + ), + 'MysqlndUhConnection::setClientOption' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'option' => 'int', + 'value' => 'int', + ), + 'MysqlndUhConnection::setServerOption' => + array ( + 0 => 'void', + 'connection' => 'mysqlnd_connection', + 'option' => 'int', + ), + 'MysqlndUhConnection::shutdownServer' => + array ( + 0 => 'void', + 'MYSQLND_UH_RES_MYSQLND_NAME' => 'string', + 'level' => 'string', + ), + 'MysqlndUhConnection::simpleCommand' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'command' => 'int', + 'arg' => 'string', + 'ok_packet' => 'int', + 'silent' => 'bool', + 'ignore_upsert_status' => 'bool', + ), + 'MysqlndUhConnection::simpleCommandHandleResponse' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'ok_packet' => 'int', + 'silent' => 'bool', + 'command' => 'int', + 'ignore_upsert_status' => 'bool', + ), + 'MysqlndUhConnection::sslSet' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + 'key' => 'string', + 'cert' => 'string', + 'ca' => 'string', + 'capath' => 'string', + 'cipher' => 'string', + ), + 'MysqlndUhConnection::stmtInit' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::storeResult' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::txCommit' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::txRollback' => + array ( + 0 => 'bool', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhConnection::useResult' => + array ( + 0 => 'resource', + 'connection' => 'mysqlnd_connection', + ), + 'MysqlndUhPreparedStatement::__construct' => + array ( + 0 => 'void', + ), + 'MysqlndUhPreparedStatement::execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqlnd_prepared_statement', + ), + 'MysqlndUhPreparedStatement::prepare' => + array ( + 0 => 'bool', + 'statement' => 'mysqlnd_prepared_statement', + 'query' => 'string', + ), + 'NoRewindIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + ), + 'NoRewindIterator::current' => + array ( + 0 => 'mixed', + ), + 'NoRewindIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'NoRewindIterator::key' => + array ( + 0 => 'mixed', + ), + 'NoRewindIterator::next' => + array ( + 0 => 'void', + ), + 'NoRewindIterator::rewind' => + array ( + 0 => 'void', + ), + 'NoRewindIterator::valid' => + array ( + 0 => 'bool', + ), + 'Normalizer::isNormalized' => + array ( + 0 => 'bool', + 'string' => 'string', + 'form=' => 'int', + ), + 'Normalizer::normalize' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'NumberFormatter::__construct' => + array ( + 0 => 'void', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'NumberFormatter::create' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'NumberFormatter::format' => + array ( + 0 => 'false|string', + 'num' => 'mixed', + 'type=' => 'int', + ), + 'NumberFormatter::formatCurrency' => + array ( + 0 => 'false|string', + 'amount' => 'float', + 'currency' => 'string', + ), + 'NumberFormatter::getAttribute' => + array ( + 0 => 'false|float|int', + 'attribute' => 'int', + ), + 'NumberFormatter::getErrorCode' => + array ( + 0 => 'int', + ), + 'NumberFormatter::getErrorMessage' => + array ( + 0 => 'string', + ), + 'NumberFormatter::getLocale' => + array ( + 0 => 'string', + 'type=' => 'int', + ), + 'NumberFormatter::getPattern' => + array ( + 0 => 'false|string', + ), + 'NumberFormatter::getSymbol' => + array ( + 0 => 'false|string', + 'symbol' => 'int', + ), + 'NumberFormatter::getTextAttribute' => + array ( + 0 => 'false|string', + 'attribute' => 'int', + ), + 'NumberFormatter::parse' => + array ( + 0 => 'false|float|int', + 'string' => 'string', + 'type=' => 'int', + '&rw_offset=' => 'int', + ), + 'NumberFormatter::parseCurrency' => + array ( + 0 => 'false|float', + 'string' => 'string', + '&w_currency' => 'string', + '&rw_offset=' => 'int', + ), + 'NumberFormatter::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'float|int', + ), + 'NumberFormatter::setPattern' => + array ( + 0 => 'bool', + 'pattern' => 'string', + ), + 'NumberFormatter::setSymbol' => + array ( + 0 => 'bool', + 'symbol' => 'int', + 'value' => 'string', + ), + 'NumberFormatter::setTextAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'string', + ), + 'OAuth::__construct' => + array ( + 0 => 'void', + 'consumer_key' => 'string', + 'consumer_secret' => 'string', + 'signature_method=' => 'string', + 'auth_type=' => 'int', + ), + 'OAuth::disableDebug' => + array ( + 0 => 'bool', + ), + 'OAuth::disableRedirects' => + array ( + 0 => 'bool', + ), + 'OAuth::disableSSLChecks' => + array ( + 0 => 'bool', + ), + 'OAuth::enableDebug' => + array ( + 0 => 'bool', + ), + 'OAuth::enableRedirects' => + array ( + 0 => 'bool', + ), + 'OAuth::enableSSLChecks' => + array ( + 0 => 'bool', + ), + 'OAuth::fetch' => + array ( + 0 => 'mixed', + 'protected_resource_url' => 'string', + 'extra_parameters=' => 'array', + 'http_method=' => 'string', + 'http_headers=' => 'array', + ), + 'OAuth::generateSignature' => + array ( + 0 => 'string', + 'http_method' => 'string', + 'url' => 'string', + 'extra_parameters=' => 'mixed', + ), + 'OAuth::getAccessToken' => + array ( + 0 => 'array|false', + 'access_token_url' => 'string', + 'auth_session_handle=' => 'string', + 'verifier_token=' => 'string', + 'http_method=' => 'string', + ), + 'OAuth::getCAPath' => + array ( + 0 => 'array', + ), + 'OAuth::getLastResponse' => + array ( + 0 => 'string', + ), + 'OAuth::getLastResponseHeaders' => + array ( + 0 => 'false|string', + ), + 'OAuth::getLastResponseInfo' => + array ( + 0 => 'array', + ), + 'OAuth::getRequestHeader' => + array ( + 0 => 'false|string', + 'http_method' => 'string', + 'url' => 'string', + 'extra_parameters=' => 'mixed', + ), + 'OAuth::getRequestToken' => + array ( + 0 => 'array|false', + 'request_token_url' => 'string', + 'callback_url=' => 'string', + 'http_method=' => 'string', + ), + 'OAuth::setAuthType' => + array ( + 0 => 'bool', + 'auth_type' => 'int', + ), + 'OAuth::setCAPath' => + array ( + 0 => 'mixed', + 'ca_path=' => 'string', + 'ca_info=' => 'string', + ), + 'OAuth::setNonce' => + array ( + 0 => 'mixed', + 'nonce' => 'string', + ), + 'OAuth::setRSACertificate' => + array ( + 0 => 'mixed', + 'cert' => 'string', + ), + 'OAuth::setRequestEngine' => + array ( + 0 => 'void', + 'reqengine' => 'int', + ), + 'OAuth::setSSLChecks' => + array ( + 0 => 'bool', + 'sslcheck' => 'int', + ), + 'OAuth::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'OAuth::setTimestamp' => + array ( + 0 => 'mixed', + 'timestamp' => 'string', + ), + 'OAuth::setToken' => + array ( + 0 => 'bool', + 'token' => 'string', + 'token_secret' => 'string', + ), + 'OAuth::setVersion' => + array ( + 0 => 'bool', + 'version' => 'string', + ), + 'OAuthProvider::__construct' => + array ( + 0 => 'void', + 'params_array=' => 'array', + ), + 'OAuthProvider::addRequiredParameter' => + array ( + 0 => 'bool', + 'req_params' => 'string', + ), + 'OAuthProvider::callTimestampNonceHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::callconsumerHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::calltokenHandler' => + array ( + 0 => 'void', + ), + 'OAuthProvider::checkOAuthRequest' => + array ( + 0 => 'void', + 'uri=' => 'string', + 'method=' => 'string', + ), + 'OAuthProvider::consumerHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'OAuthProvider::generateToken' => + array ( + 0 => 'string', + 'size' => 'int', + 'strong=' => 'bool', + ), + 'OAuthProvider::is2LeggedEndpoint' => + array ( + 0 => 'void', + 'params_array' => 'mixed', + ), + 'OAuthProvider::isRequestTokenEndpoint' => + array ( + 0 => 'void', + 'will_issue_request_token' => 'bool', + ), + 'OAuthProvider::removeRequiredParameter' => + array ( + 0 => 'bool', + 'req_params' => 'string', + ), + 'OAuthProvider::reportProblem' => + array ( + 0 => 'string', + 'oauthexception' => 'string', + 'send_headers=' => 'bool', + ), + 'OAuthProvider::setParam' => + array ( + 0 => 'bool', + 'param_key' => 'string', + 'param_val=' => 'mixed', + ), + 'OAuthProvider::setRequestTokenPath' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'OAuthProvider::timestampNonceHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'OAuthProvider::tokenHandler' => + array ( + 0 => 'void', + 'callback_function' => 'callable', + ), + 'OCICollection::append' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'OCICollection::assign' => + array ( + 0 => 'bool', + 'from' => 'OCI_Collection', + ), + 'OCICollection::assignElem' => + array ( + 0 => 'bool', + 'index' => 'int', + 'value' => 'mixed', + ), + 'OCICollection::free' => + array ( + 0 => 'bool', + ), + 'OCICollection::getElem' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'OCICollection::max' => + array ( + 0 => 'false|int', + ), + 'OCICollection::size' => + array ( + 0 => 'false|int', + ), + 'OCICollection::trim' => + array ( + 0 => 'bool', + 'num' => 'int', + ), + 'OCILob::append' => + array ( + 0 => 'bool', + 'lob_from' => 'OCILob', + ), + 'OCILob::close' => + array ( + 0 => 'bool', + ), + 'OCILob::eof' => + array ( + 0 => 'bool', + ), + 'OCILob::erase' => + array ( + 0 => 'false|int', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'OCILob::export' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'OCILob::flush' => + array ( + 0 => 'bool', + 'flag=' => 'int', + ), + 'OCILob::free' => + array ( + 0 => 'bool', + ), + 'OCILob::getbuffering' => + array ( + 0 => 'bool', + ), + 'OCILob::import' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'OCILob::load' => + array ( + 0 => 'false|string', + ), + 'OCILob::read' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'OCILob::rewind' => + array ( + 0 => 'bool', + ), + 'OCILob::save' => + array ( + 0 => 'bool', + 'data' => 'string', + 'offset=' => 'int', + ), + 'OCILob::savefile' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + ), + 'OCILob::seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'OCILob::setbuffering' => + array ( + 0 => 'bool', + 'on_off' => 'bool', + ), + 'OCILob::size' => + array ( + 0 => 'false|int', + ), + 'OCILob::tell' => + array ( + 0 => 'false|int', + ), + 'OCILob::truncate' => + array ( + 0 => 'bool', + 'length=' => 'int', + ), + 'OCILob::write' => + array ( + 0 => 'false|int', + 'data' => 'string', + 'length=' => 'int', + ), + 'OCILob::writeTemporary' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lob_type=' => 'int', + ), + 'OCILob::writetofile' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + 'start' => 'mixed', + 'length' => 'mixed', + ), + 'OutOfBoundsException::__clone' => + array ( + 0 => 'void', + ), + 'OutOfBoundsException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OutOfBoundsException::__toString' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getCode' => + array ( + 0 => 'int', + ), + 'OutOfBoundsException::getFile' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getLine' => + array ( + 0 => 'int', + ), + 'OutOfBoundsException::getMessage' => + array ( + 0 => 'string', + ), + 'OutOfBoundsException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OutOfBoundsException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OutOfBoundsException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::__clone' => + array ( + 0 => 'void', + ), + 'OutOfRangeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OutOfRangeException::__toString' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getCode' => + array ( + 0 => 'int', + ), + 'OutOfRangeException::getFile' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getLine' => + array ( + 0 => 'int', + ), + 'OutOfRangeException::getMessage' => + array ( + 0 => 'string', + ), + 'OutOfRangeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OutOfRangeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OutOfRangeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'OuterIterator::current' => + array ( + 0 => 'mixed', + ), + 'OuterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'OuterIterator::key' => + array ( + 0 => 'int|string', + ), + 'OuterIterator::next' => + array ( + 0 => 'void', + ), + 'OuterIterator::rewind' => + array ( + 0 => 'void', + ), + 'OuterIterator::valid' => + array ( + 0 => 'bool', + ), + 'OverflowException::__clone' => + array ( + 0 => 'void', + ), + 'OverflowException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'OverflowException::__toString' => + array ( + 0 => 'string', + ), + 'OverflowException::getCode' => + array ( + 0 => 'int', + ), + 'OverflowException::getFile' => + array ( + 0 => 'string', + ), + 'OverflowException::getLine' => + array ( + 0 => 'int', + ), + 'OverflowException::getMessage' => + array ( + 0 => 'string', + ), + 'OverflowException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'OverflowException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'OverflowException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'OwsrequestObj::__construct' => + array ( + 0 => 'void', + ), + 'OwsrequestObj::addParameter' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'OwsrequestObj::getName' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'OwsrequestObj::getValue' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'OwsrequestObj::getValueByName' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'OwsrequestObj::loadParams' => + array ( + 0 => 'int', + ), + 'OwsrequestObj::setParameter' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'PDF_activate_item' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'id' => 'int', + ), + 'PDF_add_launchlink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'PDF_add_locallink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDF_add_nameddest' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_note' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'PDF_add_pdflink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'bottom_left_x' => 'float', + 'bottom_left_y' => 'float', + 'up_right_x' => 'float', + 'up_right_y' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDF_add_table_cell' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'column' => 'int', + 'row' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_textflow' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_add_thumbnail' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + ), + 'PDF_add_weblink' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'url' => 'string', + ), + 'PDF_arc' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_arcn' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_attach_file' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'description' => 'string', + 'author' => 'string', + 'mimetype' => 'string', + 'icon' => 'string', + ), + 'PDF_begin_document' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_begin_font' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + 'optlist' => 'string', + ), + 'PDF_begin_glyph' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'glyphname' => 'string', + 'wx' => 'float', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + ), + 'PDF_begin_item' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'tag' => 'string', + 'optlist' => 'string', + ), + 'PDF_begin_layer' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'layer' => 'int', + ), + 'PDF_begin_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_begin_page_ext' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDF_begin_pattern' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'PDF_begin_template' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_begin_template_ext' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDF_circle' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + ), + 'PDF_clip' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_close' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_close_image' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'image' => 'int', + ), + 'PDF_close_pdi' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'doc' => 'int', + ), + 'PDF_close_pdi_page' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'page' => 'int', + ), + 'PDF_closepath' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_closepath_fill_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_closepath_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_concat' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDF_continue_text' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'text' => 'string', + ), + 'PDF_create_3dview' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'username' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_action' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_annotation' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_bookmark' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_field' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'name' => 'string', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_fieldgroup' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_gstate' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_create_pvf' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'data' => 'string', + 'optlist' => 'string', + ), + 'PDF_create_textflow' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_curveto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'PDF_define_layer' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDF_delete' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_delete_pvf' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + ), + 'PDF_delete_table' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'optlist' => 'string', + ), + 'PDF_delete_textflow' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + ), + 'PDF_encoding_set_char' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'encoding' => 'string', + 'slot' => 'int', + 'glyphname' => 'string', + 'uv' => 'int', + ), + 'PDF_end_document' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_end_font' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_glyph' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_item' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'id' => 'int', + ), + 'PDF_end_layer' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + ), + 'PDF_end_page' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_end_page_ext' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_end_pattern' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_end_template' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_endpath' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill_imageblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'image' => 'int', + 'optlist' => 'string', + ), + 'PDF_fill_pdfblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'contents' => 'int', + 'optlist' => 'string', + ), + 'PDF_fill_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_fill_textblock' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'blockname' => 'string', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDF_findfont' => + array ( + 0 => 'int', + 'p' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed' => 'int', + ), + 'PDF_fit_image' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_pdi_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_table' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_textflow' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDF_fit_textline' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDF_get_apiname' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + ), + 'PDF_get_buffer' => + array ( + 0 => 'string', + 'p' => 'resource', + ), + 'PDF_get_errmsg' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + ), + 'PDF_get_errnum' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + ), + 'PDF_get_majorversion' => + array ( + 0 => 'int', + ), + 'PDF_get_minorversion' => + array ( + 0 => 'int', + ), + 'PDF_get_parameter' => + array ( + 0 => 'string', + 'p' => 'resource', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDF_get_pdi_parameter' => + array ( + 0 => 'string', + 'p' => 'resource', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDF_get_pdi_value' => + array ( + 0 => 'float', + 'p' => 'resource', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDF_get_value' => + array ( + 0 => 'float', + 'p' => 'resource', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDF_info_font' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'font' => 'int', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDF_info_matchbox' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'boxname' => 'string', + 'num' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_table' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'table' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_textflow' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'textflow' => 'int', + 'keyword' => 'string', + ), + 'PDF_info_textline' => + array ( + 0 => 'float', + 'pdfdoc' => 'resource', + 'text' => 'string', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDF_initgraphics' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_lineto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_load_3ddata' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_font' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_iccprofile' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'profilename' => 'string', + 'optlist' => 'string', + ), + 'PDF_load_image' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'imagetype' => 'string', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_makespotcolor' => + array ( + 0 => 'int', + 'p' => 'resource', + 'spotname' => 'string', + ), + 'PDF_moveto' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_new' => + array ( + 0 => 'resource', + ), + 'PDF_open_ccitt' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'bitreverse' => 'int', + 'k' => 'int', + 'blackls1' => 'int', + ), + 'PDF_open_file' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'filename' => 'string', + ), + 'PDF_open_image' => + array ( + 0 => 'int', + 'p' => 'resource', + 'imagetype' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'PDF_open_image_file' => + array ( + 0 => 'int', + 'p' => 'resource', + 'imagetype' => 'string', + 'filename' => 'string', + 'stringparam' => 'string', + 'intparam' => 'int', + ), + 'PDF_open_memory_image' => + array ( + 0 => 'int', + 'p' => 'resource', + 'image' => 'resource', + ), + 'PDF_open_pdi' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + 'length' => 'int', + ), + 'PDF_open_pdi_document' => + array ( + 0 => 'int', + 'p' => 'resource', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDF_open_pdi_page' => + array ( + 0 => 'int', + 'p' => 'resource', + 'doc' => 'int', + 'pagenumber' => 'int', + 'optlist' => 'string', + ), + 'PDF_pcos_get_number' => + array ( + 0 => 'float', + 'p' => 'resource', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDF_pcos_get_stream' => + array ( + 0 => 'string', + 'p' => 'resource', + 'doc' => 'int', + 'optlist' => 'string', + 'path' => 'string', + ), + 'PDF_pcos_get_string' => + array ( + 0 => 'string', + 'p' => 'resource', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDF_place_image' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'PDF_place_pdi_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDF_process_pdi' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'doc' => 'int', + 'page' => 'int', + 'optlist' => 'string', + ), + 'PDF_rect' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'PDF_restore' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_resume_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_rotate' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'phi' => 'float', + ), + 'PDF_save' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_scale' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDF_set_border_color' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_set_border_dash' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'black' => 'float', + 'white' => 'float', + ), + 'PDF_set_border_style' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'style' => 'string', + 'width' => 'float', + ), + 'PDF_set_gstate' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'gstate' => 'int', + ), + 'PDF_set_info' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'PDF_set_layer_dependency' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDF_set_parameter' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'PDF_set_text_pos' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_set_value' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'float', + ), + 'PDF_setcolor' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'fstype' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'PDF_setdash' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'b' => 'float', + 'w' => 'float', + ), + 'PDF_setdashpattern' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_setflat' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'flatness' => 'float', + ), + 'PDF_setfont' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDF_setgray' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setgray_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setgray_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'g' => 'float', + ), + 'PDF_setlinecap' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'linecap' => 'int', + ), + 'PDF_setlinejoin' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'value' => 'int', + ), + 'PDF_setlinewidth' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'width' => 'float', + ), + 'PDF_setmatrix' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDF_setmiterlimit' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'miter' => 'float', + ), + 'PDF_setrgbcolor' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_setrgbcolor_fill' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_setrgbcolor_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDF_shading' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'shtype' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'PDF_shading_pattern' => + array ( + 0 => 'int', + 'pdfdoc' => 'resource', + 'shading' => 'int', + 'optlist' => 'string', + ), + 'PDF_shfill' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'shading' => 'int', + ), + 'PDF_show' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'text' => 'string', + ), + 'PDF_show_boxed' => + array ( + 0 => 'int', + 'p' => 'resource', + 'text' => 'string', + 'left' => 'float', + 'top' => 'float', + 'width' => 'float', + 'height' => 'float', + 'mode' => 'string', + 'feature' => 'string', + ), + 'PDF_show_xy' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'PDF_skew' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDF_stringwidth' => + array ( + 0 => 'float', + 'p' => 'resource', + 'text' => 'string', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDF_stroke' => + array ( + 0 => 'bool', + 'p' => 'resource', + ), + 'PDF_suspend_page' => + array ( + 0 => 'bool', + 'pdfdoc' => 'resource', + 'optlist' => 'string', + ), + 'PDF_translate' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'tx' => 'float', + 'ty' => 'float', + ), + 'PDF_utf16_to_utf8' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf16string' => 'string', + ), + 'PDF_utf32_to_utf16' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf32string' => 'string', + 'ordering' => 'string', + ), + 'PDF_utf8_to_utf16' => + array ( + 0 => 'string', + 'pdfdoc' => 'resource', + 'utf8string' => 'string', + 'ordering' => 'string', + ), + 'PDFlib::activate_item' => + array ( + 0 => 'bool', + 'id' => 'mixed', + ), + 'PDFlib::add_launchlink' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'PDFlib::add_locallink' => + array ( + 0 => 'bool', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDFlib::add_nameddest' => + array ( + 0 => 'bool', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_note' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'PDFlib::add_pdflink' => + array ( + 0 => 'bool', + 'bottom_left_x' => 'float', + 'bottom_left_y' => 'float', + 'up_right_x' => 'float', + 'up_right_y' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'PDFlib::add_table_cell' => + array ( + 0 => 'int', + 'table' => 'int', + 'column' => 'int', + 'row' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_textflow' => + array ( + 0 => 'int', + 'textflow' => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::add_thumbnail' => + array ( + 0 => 'bool', + 'image' => 'int', + ), + 'PDFlib::add_weblink' => + array ( + 0 => 'bool', + 'lowerleftx' => 'float', + 'lowerlefty' => 'float', + 'upperrightx' => 'float', + 'upperrighty' => 'float', + 'url' => 'string', + ), + 'PDFlib::arc' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::arcn' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::attach_file' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'description' => 'string', + 'author' => 'string', + 'mimetype' => 'string', + 'icon' => 'string', + ), + 'PDFlib::begin_document' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::begin_font' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::begin_glyph' => + array ( + 0 => 'bool', + 'glyphname' => 'string', + 'wx' => 'float', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + ), + 'PDFlib::begin_item' => + array ( + 0 => 'int', + 'tag' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::begin_layer' => + array ( + 0 => 'bool', + 'layer' => 'int', + ), + 'PDFlib::begin_page' => + array ( + 0 => 'bool', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::begin_page_ext' => + array ( + 0 => 'bool', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::begin_pattern' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'PDFlib::begin_template' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::begin_template_ext' => + array ( + 0 => 'int', + 'width' => 'float', + 'height' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::circle' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + ), + 'PDFlib::clip' => + array ( + 0 => 'bool', + ), + 'PDFlib::close' => + array ( + 0 => 'bool', + ), + 'PDFlib::close_image' => + array ( + 0 => 'bool', + 'image' => 'int', + ), + 'PDFlib::close_pdi' => + array ( + 0 => 'bool', + 'doc' => 'int', + ), + 'PDFlib::close_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + ), + 'PDFlib::closepath' => + array ( + 0 => 'bool', + ), + 'PDFlib::closepath_fill_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::closepath_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::concat' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDFlib::continue_text' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'PDFlib::create_3dview' => + array ( + 0 => 'int', + 'username' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_action' => + array ( + 0 => 'int', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_annotation' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_bookmark' => + array ( + 0 => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_field' => + array ( + 0 => 'bool', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'name' => 'string', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_fieldgroup' => + array ( + 0 => 'bool', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_gstate' => + array ( + 0 => 'int', + 'optlist' => 'string', + ), + 'PDFlib::create_pvf' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'data' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::create_textflow' => + array ( + 0 => 'int', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::curveto' => + array ( + 0 => 'bool', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'PDFlib::define_layer' => + array ( + 0 => 'int', + 'name' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::delete' => + array ( + 0 => 'bool', + ), + 'PDFlib::delete_pvf' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'PDFlib::delete_table' => + array ( + 0 => 'bool', + 'table' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::delete_textflow' => + array ( + 0 => 'bool', + 'textflow' => 'int', + ), + 'PDFlib::encoding_set_char' => + array ( + 0 => 'bool', + 'encoding' => 'string', + 'slot' => 'int', + 'glyphname' => 'string', + 'uv' => 'int', + ), + 'PDFlib::end_document' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::end_font' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_glyph' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_item' => + array ( + 0 => 'bool', + 'id' => 'int', + ), + 'PDFlib::end_layer' => + array ( + 0 => 'bool', + ), + 'PDFlib::end_page' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::end_page_ext' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::end_pattern' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::end_template' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::endpath' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::fill' => + array ( + 0 => 'bool', + ), + 'PDFlib::fill_imageblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'image' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::fill_pdfblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'contents' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::fill_stroke' => + array ( + 0 => 'bool', + ), + 'PDFlib::fill_textblock' => + array ( + 0 => 'int', + 'page' => 'int', + 'blockname' => 'string', + 'text' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::findfont' => + array ( + 0 => 'int', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed' => 'int', + ), + 'PDFlib::fit_image' => + array ( + 0 => 'bool', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_table' => + array ( + 0 => 'string', + 'table' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_textflow' => + array ( + 0 => 'string', + 'textflow' => 'int', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::fit_textline' => + array ( + 0 => 'bool', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::get_apiname' => + array ( + 0 => 'string', + ), + 'PDFlib::get_buffer' => + array ( + 0 => 'string', + ), + 'PDFlib::get_errmsg' => + array ( + 0 => 'string', + ), + 'PDFlib::get_errnum' => + array ( + 0 => 'int', + ), + 'PDFlib::get_majorversion' => + array ( + 0 => 'int', + ), + 'PDFlib::get_minorversion' => + array ( + 0 => 'int', + ), + 'PDFlib::get_parameter' => + array ( + 0 => 'string', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDFlib::get_pdi_parameter' => + array ( + 0 => 'string', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDFlib::get_pdi_value' => + array ( + 0 => 'float', + 'key' => 'string', + 'doc' => 'int', + 'page' => 'int', + 'reserved' => 'int', + ), + 'PDFlib::get_value' => + array ( + 0 => 'float', + 'key' => 'string', + 'modifier' => 'float', + ), + 'PDFlib::info_font' => + array ( + 0 => 'float', + 'font' => 'int', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::info_matchbox' => + array ( + 0 => 'float', + 'boxname' => 'string', + 'num' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_table' => + array ( + 0 => 'float', + 'table' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_textflow' => + array ( + 0 => 'float', + 'textflow' => 'int', + 'keyword' => 'string', + ), + 'PDFlib::info_textline' => + array ( + 0 => 'float', + 'text' => 'string', + 'keyword' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::initgraphics' => + array ( + 0 => 'bool', + ), + 'PDFlib::lineto' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::load_3ddata' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_font' => + array ( + 0 => 'int', + 'fontname' => 'string', + 'encoding' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_iccprofile' => + array ( + 0 => 'int', + 'profilename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::load_image' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::makespotcolor' => + array ( + 0 => 'int', + 'spotname' => 'string', + ), + 'PDFlib::moveto' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::open_ccitt' => + array ( + 0 => 'int', + 'filename' => 'string', + 'width' => 'int', + 'height' => 'int', + 'BitReverse' => 'int', + 'k' => 'int', + 'Blackls1' => 'int', + ), + 'PDFlib::open_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'PDFlib::open_image' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'PDFlib::open_image_file' => + array ( + 0 => 'int', + 'imagetype' => 'string', + 'filename' => 'string', + 'stringparam' => 'string', + 'intparam' => 'int', + ), + 'PDFlib::open_memory_image' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'PDFlib::open_pdi' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + 'length' => 'int', + ), + 'PDFlib::open_pdi_document' => + array ( + 0 => 'int', + 'filename' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::open_pdi_page' => + array ( + 0 => 'int', + 'doc' => 'int', + 'pagenumber' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::pcos_get_number' => + array ( + 0 => 'float', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDFlib::pcos_get_stream' => + array ( + 0 => 'string', + 'doc' => 'int', + 'optlist' => 'string', + 'path' => 'string', + ), + 'PDFlib::pcos_get_string' => + array ( + 0 => 'string', + 'doc' => 'int', + 'path' => 'string', + ), + 'PDFlib::place_image' => + array ( + 0 => 'bool', + 'image' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'PDFlib::place_pdi_page' => + array ( + 0 => 'bool', + 'page' => 'int', + 'x' => 'float', + 'y' => 'float', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDFlib::process_pdi' => + array ( + 0 => 'int', + 'doc' => 'int', + 'page' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::rect' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'PDFlib::restore' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::resume_page' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::rotate' => + array ( + 0 => 'bool', + 'phi' => 'float', + ), + 'PDFlib::save' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::scale' => + array ( + 0 => 'bool', + 'sx' => 'float', + 'sy' => 'float', + ), + 'PDFlib::set_border_color' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::set_border_dash' => + array ( + 0 => 'bool', + 'black' => 'float', + 'white' => 'float', + ), + 'PDFlib::set_border_style' => + array ( + 0 => 'bool', + 'style' => 'string', + 'width' => 'float', + ), + 'PDFlib::set_gstate' => + array ( + 0 => 'bool', + 'gstate' => 'int', + ), + 'PDFlib::set_info' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'PDFlib::set_layer_dependency' => + array ( + 0 => 'bool', + 'type' => 'string', + 'optlist' => 'string', + ), + 'PDFlib::set_parameter' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'PDFlib::set_text_pos' => + array ( + 0 => 'bool', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::set_value' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'float', + ), + 'PDFlib::setcolor' => + array ( + 0 => 'bool', + 'fstype' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'PDFlib::setdash' => + array ( + 0 => 'bool', + 'b' => 'float', + 'w' => 'float', + ), + 'PDFlib::setdashpattern' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::setflat' => + array ( + 0 => 'bool', + 'flatness' => 'float', + ), + 'PDFlib::setfont' => + array ( + 0 => 'bool', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDFlib::setgray' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setgray_fill' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setgray_stroke' => + array ( + 0 => 'bool', + 'g' => 'float', + ), + 'PDFlib::setlinecap' => + array ( + 0 => 'bool', + 'linecap' => 'int', + ), + 'PDFlib::setlinejoin' => + array ( + 0 => 'bool', + 'value' => 'int', + ), + 'PDFlib::setlinewidth' => + array ( + 0 => 'bool', + 'width' => 'float', + ), + 'PDFlib::setmatrix' => + array ( + 0 => 'bool', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'e' => 'float', + 'f' => 'float', + ), + 'PDFlib::setmiterlimit' => + array ( + 0 => 'bool', + 'miter' => 'float', + ), + 'PDFlib::setrgbcolor' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::setrgbcolor_fill' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::setrgbcolor_stroke' => + array ( + 0 => 'bool', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'PDFlib::shading' => + array ( + 0 => 'int', + 'shtype' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'PDFlib::shading_pattern' => + array ( + 0 => 'int', + 'shading' => 'int', + 'optlist' => 'string', + ), + 'PDFlib::shfill' => + array ( + 0 => 'bool', + 'shading' => 'int', + ), + 'PDFlib::show' => + array ( + 0 => 'bool', + 'text' => 'string', + ), + 'PDFlib::show_boxed' => + array ( + 0 => 'int', + 'text' => 'string', + 'left' => 'float', + 'top' => 'float', + 'width' => 'float', + 'height' => 'float', + 'mode' => 'string', + 'feature' => 'string', + ), + 'PDFlib::show_xy' => + array ( + 0 => 'bool', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'PDFlib::skew' => + array ( + 0 => 'bool', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'PDFlib::stringwidth' => + array ( + 0 => 'float', + 'text' => 'string', + 'font' => 'int', + 'fontsize' => 'float', + ), + 'PDFlib::stroke' => + array ( + 0 => 'bool', + 'p' => 'mixed', + ), + 'PDFlib::suspend_page' => + array ( + 0 => 'bool', + 'optlist' => 'string', + ), + 'PDFlib::translate' => + array ( + 0 => 'bool', + 'tx' => 'float', + 'ty' => 'float', + ), + 'PDFlib::utf16_to_utf8' => + array ( + 0 => 'string', + 'utf16string' => 'string', + ), + 'PDFlib::utf32_to_utf16' => + array ( + 0 => 'string', + 'utf32string' => 'string', + 'ordering' => 'string', + ), + 'PDFlib::utf8_to_utf16' => + array ( + 0 => 'string', + 'utf8string' => 'string', + 'ordering' => 'string', + ), + 'PDO::__construct' => + array ( + 0 => 'void', + 'dsn' => 'string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'options=' => 'array|null', + ), + 'PDO::beginTransaction' => + array ( + 0 => 'bool', + ), + 'PDO::commit' => + array ( + 0 => 'bool', + ), + 'PDO::cubrid_schema' => + array ( + 0 => 'array', + 'schema_type' => 'int', + 'table_name=' => 'string', + 'col_name=' => 'string', + ), + 'PDO::errorCode' => + array ( + 0 => 'null|string', + ), + 'PDO::errorInfo' => + array ( + 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', + ), + 'PDO::exec' => + array ( + 0 => 'false|int', + 'statement' => 'string', + ), + 'PDO::getAttribute' => + array ( + 0 => 'mixed', + 'attribute' => 'int', + ), + 'PDO::getAvailableDrivers' => + array ( + 0 => 'array', + ), + 'PDO::inTransaction' => + array ( + 0 => 'bool', + ), + 'PDO::lastInsertId' => + array ( + 0 => 'string', + 'name=' => 'null|string', + ), + 'PDO::pgsqlCopyFromArray' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'rows' => 'array', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyFromFile' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'filename' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyToArray' => + array ( + 0 => 'array', + 'table_name' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlCopyToFile' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'filename' => 'string', + 'delimiter' => 'string', + 'null_as' => 'string', + 'fields' => 'string', + ), + 'PDO::pgsqlGetNotify' => + array ( + 0 => 'array{message: string, payload?: string, pid: int}|false', + 'result_type=' => 'PDO::FETCH_*', + 'ms_timeout=' => 'int', + ), + 'PDO::pgsqlGetPid' => + array ( + 0 => 'int', + ), + 'PDO::pgsqlLOBCreate' => + array ( + 0 => 'string', + ), + 'PDO::pgsqlLOBOpen' => + array ( + 0 => 'resource', + 'oid' => 'string', + 'mode=' => 'string', + ), + 'PDO::pgsqlLOBUnlink' => + array ( + 0 => 'bool', + 'oid' => 'string', + ), + 'PDO::prepare' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'options=' => 'array', + ), + 'PDO::query' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + ), + 'PDO::query\'1' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_column' => 'int', + 'colno=' => 'int', + ), + 'PDO::query\'2' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_class' => 'int', + 'classname' => 'string', + 'constructorArgs' => 'array', + ), + 'PDO::query\'3' => + array ( + 0 => 'PDOStatement|false', + 'query' => 'string', + 'fetch_into' => 'int', + 'object' => 'object', + ), + 'PDO::quote' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'type=' => 'int', + ), + 'PDO::rollBack' => + array ( + 0 => 'bool', + ), + 'PDO::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'mixed', + ), + 'PDO::sqliteCreateAggregate' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'PDO::sqliteCreateCollation' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + ), + 'PDO::sqliteCreateFunction' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'PDOException::getCode' => + array ( + 0 => 'int|string', + ), + 'PDOException::getFile' => + array ( + 0 => 'string', + ), + 'PDOException::getLine' => + array ( + 0 => 'int', + ), + 'PDOException::getMessage' => + array ( + 0 => 'string', + ), + 'PDOException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'PDOException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'PDOException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'PDOStatement::bindColumn' => + array ( + 0 => 'bool', + 'column' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + 'maxLength=' => 'int', + 'driverOptions=' => 'mixed', + ), + 'PDOStatement::bindParam' => + array ( + 0 => 'bool', + 'param' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + 'maxLength=' => 'int', + 'driverOptions=' => 'mixed', + ), + 'PDOStatement::bindValue' => + array ( + 0 => 'bool', + 'param' => 'int|string', + 'value' => 'mixed', + 'type=' => 'int', + ), + 'PDOStatement::closeCursor' => + array ( + 0 => 'bool', + ), + 'PDOStatement::columnCount' => + array ( + 0 => 'int', + ), + 'PDOStatement::debugDumpParams' => + array ( + 0 => 'void', + ), + 'PDOStatement::errorCode' => + array ( + 0 => 'string', + ), + 'PDOStatement::errorInfo' => + array ( + 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', + ), + 'PDOStatement::execute' => + array ( + 0 => 'bool', + 'bound_input_params=' => 'array|null', + ), + 'PDOStatement::fetch' => + array ( + 0 => 'mixed', + 'how=' => 'int', + 'orientation=' => 'int', + 'offset=' => 'int', + ), + 'PDOStatement::fetchAll' => + array ( + 0 => 'array|false', + 'how=' => 'int', + 'fetch_argument=' => 'callable|int|string', + 'ctor_args=' => 'array|null', + ), + 'PDOStatement::fetchColumn' => + array ( + 0 => 'null|scalar', + 'column_number=' => 'int', + ), + 'PDOStatement::fetchObject' => + array ( + 0 => 'false|object', + 'class=' => 'class-string|null', + 'constructorArgs=' => 'array', + ), + 'PDOStatement::getAttribute' => + array ( + 0 => 'mixed', + 'name' => 'int', + ), + 'PDOStatement::getColumnMeta' => + array ( + 0 => 'array|false', + 'column' => 'int', + ), + 'PDOStatement::nextRowset' => + array ( + 0 => 'bool', + ), + 'PDOStatement::rowCount' => + array ( + 0 => 'int', + ), + 'PDOStatement::setAttribute' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'mixed', + ), + 'PDOStatement::setFetchMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'PDOStatement::setFetchMode\'1' => + array ( + 0 => 'bool', + 'fetch_column' => 'int', + 'colno' => 'int', + ), + 'PDOStatement::setFetchMode\'2' => + array ( + 0 => 'bool', + 'fetch_class' => 'int', + 'classname' => 'string', + 'ctorargs' => 'array', + ), + 'PDOStatement::setFetchMode\'3' => + array ( + 0 => 'bool', + 'fetch_into' => 'int', + 'object' => 'object', + ), + 'ParentIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + ), + 'ParentIterator::accept' => + array ( + 0 => 'bool', + ), + 'ParentIterator::getChildren' => + array ( + 0 => 'ParentIterator|null', + ), + 'ParentIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'ParentIterator::next' => + array ( + 0 => 'void', + ), + 'ParentIterator::rewind' => + array ( + 0 => 'void', + ), + 'ParentIterator::valid' => + array ( + 0 => 'bool', + ), + 'Parle\\Lexer::advance' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::build' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::callout' => + array ( + 0 => 'void', + 'id' => 'int', + 'callback' => 'callable', + ), + 'Parle\\Lexer::consume' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'Parle\\Lexer::dump' => + array ( + 0 => 'void', + ), + 'Parle\\Lexer::getToken' => + array ( + 0 => 'Parle\\Token', + ), + 'Parle\\Lexer::insertMacro' => + array ( + 0 => 'void', + 'name' => 'string', + 'regex' => 'string', + ), + 'Parle\\Lexer::push' => + array ( + 0 => 'void', + 'regex' => 'string', + 'id' => 'int', + ), + 'Parle\\Lexer::reset' => + array ( + 0 => 'void', + 'pos' => 'int', + ), + 'Parle\\Parser::advance' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::build' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::consume' => + array ( + 0 => 'void', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\Parser::dump' => + array ( + 0 => 'void', + ), + 'Parle\\Parser::errorInfo' => + array ( + 0 => 'Parle\\ErrorInfo', + ), + 'Parle\\Parser::left' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::nonassoc' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::precedence' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::push' => + array ( + 0 => 'int', + 'name' => 'string', + 'rule' => 'string', + ), + 'Parle\\Parser::reset' => + array ( + 0 => 'void', + 'tokenId' => 'int', + ), + 'Parle\\Parser::right' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::sigil' => + array ( + 0 => 'string', + 'idx' => 'array', + ), + 'Parle\\Parser::token' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\Parser::tokenId' => + array ( + 0 => 'int', + 'token' => 'string', + ), + 'Parle\\Parser::trace' => + array ( + 0 => 'string', + ), + 'Parle\\Parser::validate' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\RLexer::advance' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::build' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::callout' => + array ( + 0 => 'void', + 'id' => 'int', + 'callback' => 'callable', + ), + 'Parle\\RLexer::consume' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'Parle\\RLexer::dump' => + array ( + 0 => 'void', + ), + 'Parle\\RLexer::getToken' => + array ( + 0 => 'Parle\\Token', + ), + 'Parle\\RLexer::push' => + array ( + 0 => 'void', + 'state' => 'string', + 'regex' => 'string', + 'newState' => 'string', + ), + 'Parle\\RLexer::pushState' => + array ( + 0 => 'int', + 'state' => 'string', + ), + 'Parle\\RLexer::reset' => + array ( + 0 => 'void', + 'pos' => 'int', + ), + 'Parle\\RParser::advance' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::build' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::consume' => + array ( + 0 => 'void', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\RParser::dump' => + array ( + 0 => 'void', + ), + 'Parle\\RParser::errorInfo' => + array ( + 0 => 'Parle\\ErrorInfo', + ), + 'Parle\\RParser::left' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::nonassoc' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::precedence' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::push' => + array ( + 0 => 'int', + 'name' => 'string', + 'rule' => 'string', + ), + 'Parle\\RParser::reset' => + array ( + 0 => 'void', + 'tokenId' => 'int', + ), + 'Parle\\RParser::right' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::sigil' => + array ( + 0 => 'string', + 'idx' => 'array', + ), + 'Parle\\RParser::token' => + array ( + 0 => 'void', + 'token' => 'string', + ), + 'Parle\\RParser::tokenId' => + array ( + 0 => 'int', + 'token' => 'string', + ), + 'Parle\\RParser::trace' => + array ( + 0 => 'string', + ), + 'Parle\\RParser::validate' => + array ( + 0 => 'bool', + 'data' => 'string', + 'lexer' => 'Parle\\Lexer', + ), + 'Parle\\Stack::pop' => + array ( + 0 => 'void', + ), + 'Parle\\Stack::push' => + array ( + 0 => 'void', + 'item' => 'mixed', + ), + 'ParseError::__clone' => + array ( + 0 => 'void', + ), + 'ParseError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'ParseError::__toString' => + array ( + 0 => 'string', + ), + 'ParseError::getCode' => + array ( + 0 => 'int', + ), + 'ParseError::getFile' => + array ( + 0 => 'string', + ), + 'ParseError::getLine' => + array ( + 0 => 'int', + ), + 'ParseError::getMessage' => + array ( + 0 => 'string', + ), + 'ParseError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'ParseError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'ParseError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Phar::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'alias=' => 'null|string', + ), + 'Phar::addEmptyDir' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'Phar::addFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'string', + ), + 'Phar::addFromString' => + array ( + 0 => 'void', + 'localName' => 'string', + 'contents' => 'string', + ), + 'Phar::apiVersion' => + array ( + 0 => 'string', + ), + 'Phar::buildFromDirectory' => + array ( + 0 => 'array|false', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'Phar::buildFromIterator' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'string', + ), + 'Phar::canCompress' => + array ( + 0 => 'bool', + 'compression=' => 'int', + ), + 'Phar::canWrite' => + array ( + 0 => 'bool', + ), + 'Phar::compress' => + array ( + 0 => 'Phar|null', + 'compression' => 'int', + 'extension=' => 'string', + ), + 'Phar::compressFiles' => + array ( + 0 => 'void', + 'compression' => 'int', + ), + 'Phar::convertToData' => + array ( + 0 => 'PharData|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'Phar::convertToExecutable' => + array ( + 0 => 'Phar|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'Phar::copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'Phar::count' => + array ( + 0 => 'int', + 'mode=' => 'int', + ), + 'Phar::createDefaultStub' => + array ( + 0 => 'string', + 'index=' => 'string', + 'webIndex=' => 'string', + ), + 'Phar::decompress' => + array ( + 0 => 'Phar|null', + 'extension=' => 'string', + ), + 'Phar::decompressFiles' => + array ( + 0 => 'bool', + ), + 'Phar::delMetadata' => + array ( + 0 => 'bool', + ), + 'Phar::delete' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'Phar::extractTo' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'files=' => 'array|null|string', + 'overwrite=' => 'bool', + ), + 'Phar::getAlias' => + array ( + 0 => 'null|string', + ), + 'Phar::getMetadata' => + array ( + 0 => 'mixed', + ), + 'Phar::getModified' => + array ( + 0 => 'bool', + ), + 'Phar::getPath' => + array ( + 0 => 'string', + ), + 'Phar::getSignature' => + array ( + 0 => 'array{hash: string, hash_type: string}', + ), + 'Phar::getStub' => + array ( + 0 => 'string', + ), + 'Phar::getSupportedCompression' => + array ( + 0 => 'array', + ), + 'Phar::getSupportedSignatures' => + array ( + 0 => 'array', + ), + 'Phar::getVersion' => + array ( + 0 => 'string', + ), + 'Phar::hasMetadata' => + array ( + 0 => 'bool', + ), + 'Phar::interceptFileFuncs' => + array ( + 0 => 'void', + ), + 'Phar::isBuffering' => + array ( + 0 => 'bool', + ), + 'Phar::isCompressed' => + array ( + 0 => 'false|int', + ), + 'Phar::isFileFormat' => + array ( + 0 => 'bool', + 'format' => 'int', + ), + 'Phar::isValidPharFilename' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'executable=' => 'bool', + ), + 'Phar::isWritable' => + array ( + 0 => 'bool', + ), + 'Phar::loadPhar' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'alias=' => 'null|string', + ), + 'Phar::mapPhar' => + array ( + 0 => 'bool', + 'alias=' => 'null|string', + 'offset=' => 'int', + ), + 'Phar::mount' => + array ( + 0 => 'void', + 'pharPath' => 'string', + 'externalPath' => 'string', + ), + 'Phar::mungServer' => + array ( + 0 => 'void', + 'variables' => 'list', + ), + 'Phar::offsetExists' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'Phar::offsetGet' => + array ( + 0 => 'PharFileInfo', + 'localName' => 'string', + ), + 'Phar::offsetSet' => + array ( + 0 => 'void', + 'localName' => 'string', + 'value' => 'resource|string', + ), + 'Phar::offsetUnset' => + array ( + 0 => 'void', + 'localName' => 'string', + ), + 'Phar::running' => + array ( + 0 => 'string', + 'returnPhar=' => 'bool', + ), + 'Phar::setAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'Phar::setDefaultStub' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'string', + ), + 'Phar::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'Phar::setSignatureAlgorithm' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'string', + ), + 'Phar::setStub' => + array ( + 0 => 'bool', + 'stub' => 'string', + 'length=' => 'int', + ), + 'Phar::startBuffering' => + array ( + 0 => 'void', + ), + 'Phar::stopBuffering' => + array ( + 0 => 'void', + ), + 'Phar::unlinkArchive' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'Phar::webPhar' => + array ( + 0 => 'void', + 'alias=' => 'null|string', + 'index=' => 'null|string', + 'fileNotFoundScript=' => 'string', + 'mimeTypes=' => 'array', + 'rewrite=' => 'callable', + ), + 'PharData::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'alias=' => 'null|string', + 'format=' => 'int', + ), + 'PharData::addEmptyDir' => + array ( + 0 => 'void', + 'directory' => 'string', + ), + 'PharData::addFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'localName=' => 'string', + ), + 'PharData::addFromString' => + array ( + 0 => 'void', + 'localName' => 'string', + 'contents' => 'string', + ), + 'PharData::buildFromDirectory' => + array ( + 0 => 'array|false', + 'directory' => 'string', + 'pattern=' => 'string', + ), + 'PharData::buildFromIterator' => + array ( + 0 => 'array|false', + 'iterator' => 'Traversable', + 'baseDirectory=' => 'string', + ), + 'PharData::compress' => + array ( + 0 => 'PharData|null', + 'compression' => 'int', + 'extension=' => 'string', + ), + 'PharData::compressFiles' => + array ( + 0 => 'void', + 'compression' => 'int', + ), + 'PharData::convertToData' => + array ( + 0 => 'PharData|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'PharData::convertToExecutable' => + array ( + 0 => 'Phar|null', + 'format=' => 'int', + 'compression=' => 'int', + 'extension=' => 'string', + ), + 'PharData::copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'PharData::decompress' => + array ( + 0 => 'PharData|null', + 'extension=' => 'string', + ), + 'PharData::decompressFiles' => + array ( + 0 => 'bool', + ), + 'PharData::delMetadata' => + array ( + 0 => 'bool', + ), + 'PharData::delete' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'PharData::extractTo' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'files=' => 'array|null|string', + 'overwrite=' => 'bool', + ), + 'PharData::isWritable' => + array ( + 0 => 'bool', + ), + 'PharData::offsetExists' => + array ( + 0 => 'bool', + 'localName' => 'string', + ), + 'PharData::offsetGet' => + array ( + 0 => 'PharFileInfo', + 'localName' => 'string', + ), + 'PharData::offsetSet' => + array ( + 0 => 'void', + 'localName' => 'string', + 'value' => 'string', + ), + 'PharData::offsetUnset' => + array ( + 0 => 'void', + 'localName' => 'string', + ), + 'PharData::setAlias' => + array ( + 0 => 'bool', + 'alias' => 'string', + ), + 'PharData::setDefaultStub' => + array ( + 0 => 'bool', + 'index=' => 'null|string', + 'webIndex=' => 'string', + ), + 'PharData::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'PharData::setSignatureAlgorithm' => + array ( + 0 => 'void', + 'algo' => 'int', + 'privateKey=' => 'string', + ), + 'PharData::setStub' => + array ( + 0 => 'bool', + 'stub' => 'string', + 'length=' => 'int', + ), + 'PharFileInfo::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'PharFileInfo::chmod' => + array ( + 0 => 'void', + 'perms' => 'int', + ), + 'PharFileInfo::compress' => + array ( + 0 => 'bool', + 'compression' => 'int', + ), + 'PharFileInfo::decompress' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::delMetadata' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::getCRC32' => + array ( + 0 => 'int', + ), + 'PharFileInfo::getCompressedSize' => + array ( + 0 => 'int', + ), + 'PharFileInfo::getContent' => + array ( + 0 => 'string', + ), + 'PharFileInfo::getMetadata' => + array ( + 0 => 'mixed', + ), + 'PharFileInfo::getPharFlags' => + array ( + 0 => 'int', + ), + 'PharFileInfo::hasMetadata' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::isCRCChecked' => + array ( + 0 => 'bool', + ), + 'PharFileInfo::isCompressed' => + array ( + 0 => 'bool', + 'compression=' => 'int', + ), + 'PharFileInfo::setMetadata' => + array ( + 0 => 'void', + 'metadata' => 'mixed', + ), + 'Pool::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'class' => 'string', + 'ctor=' => 'array', + ), + 'Pool::collect' => + array ( + 0 => 'int', + 'collector=' => 'callable', + ), + 'Pool::resize' => + array ( + 0 => 'void', + 'size' => 'int', + ), + 'Pool::shutdown' => + array ( + 0 => 'void', + ), + 'Pool::submit' => + array ( + 0 => 'int', + 'task' => 'Threaded', + ), + 'Pool::submitTo' => + array ( + 0 => 'int', + 'worker' => 'int', + 'task' => 'Threaded', + ), + 'Postal\\Expand::expand_address' => + array ( + 0 => 'array', + 'address' => 'string', + 'options=' => 'array', + ), + 'Postal\\Parser::parse_address' => + array ( + 0 => 'array', + 'address' => 'string', + 'options=' => 'array', + ), + 'QuickHashIntHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntHash::add' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value=' => 'int', + ), + 'QuickHashIntHash::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntHash::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntHash::get' => + array ( + 0 => 'int', + 'key' => 'int', + ), + 'QuickHashIntHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntHash::loadFromFile' => + array ( + 0 => 'QuickHashIntHash', + 'filename' => 'string', + 'options=' => 'int', + ), + 'QuickHashIntHash::loadFromString' => + array ( + 0 => 'QuickHashIntHash', + 'contents' => 'string', + 'options=' => 'int', + ), + 'QuickHashIntHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntHash::set' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'int', + ), + 'QuickHashIntHash::update' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'int', + ), + 'QuickHashIntSet::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::add' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntSet::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntSet::loadFromFile' => + array ( + 0 => 'QuickHashIntSet', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::loadFromString' => + array ( + 0 => 'QuickHashIntSet', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntSet::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntSet::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntStringHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::add' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashIntStringHash::delete' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntStringHash::exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'QuickHashIntStringHash::get' => + array ( + 0 => 'mixed', + 'key' => 'int', + ), + 'QuickHashIntStringHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashIntStringHash::loadFromFile' => + array ( + 0 => 'QuickHashIntStringHash', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::loadFromString' => + array ( + 0 => 'QuickHashIntStringHash', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashIntStringHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashIntStringHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashIntStringHash::set' => + array ( + 0 => 'int', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashIntStringHash::update' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'QuickHashStringIntHash::__construct' => + array ( + 0 => 'void', + 'size' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int', + ), + 'QuickHashStringIntHash::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'QuickHashStringIntHash::exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'QuickHashStringIntHash::get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'QuickHashStringIntHash::getSize' => + array ( + 0 => 'int', + ), + 'QuickHashStringIntHash::loadFromFile' => + array ( + 0 => 'QuickHashStringIntHash', + 'filename' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::loadFromString' => + array ( + 0 => 'QuickHashStringIntHash', + 'contents' => 'string', + 'size=' => 'int', + 'options=' => 'int', + ), + 'QuickHashStringIntHash::saveToFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'QuickHashStringIntHash::saveToString' => + array ( + 0 => 'string', + ), + 'QuickHashStringIntHash::set' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'QuickHashStringIntHash::update' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'int', + ), + 'RRDCreator::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + 'starttime=' => 'string', + 'step=' => 'int', + ), + 'RRDCreator::addArchive' => + array ( + 0 => 'void', + 'description' => 'string', + ), + 'RRDCreator::addDataSource' => + array ( + 0 => 'void', + 'description' => 'string', + ), + 'RRDCreator::save' => + array ( + 0 => 'bool', + ), + 'RRDGraph::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'RRDGraph::save' => + array ( + 0 => 'array|false', + ), + 'RRDGraph::saveVerbose' => + array ( + 0 => 'array|false', + ), + 'RRDGraph::setOptions' => + array ( + 0 => 'void', + 'options' => 'array', + ), + 'RRDUpdater::__construct' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'RRDUpdater::update' => + array ( + 0 => 'bool', + 'values' => 'array', + 'time=' => 'string', + ), + 'RangeException::__clone' => + array ( + 0 => 'void', + ), + 'RangeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'RangeException::__toString' => + array ( + 0 => 'string', + ), + 'RangeException::getCode' => + array ( + 0 => 'int', + ), + 'RangeException::getFile' => + array ( + 0 => 'string', + ), + 'RangeException::getLine' => + array ( + 0 => 'int', + ), + 'RangeException::getMessage' => + array ( + 0 => 'string', + ), + 'RangeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'RangeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RangeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'RarArchive::__toString' => + array ( + 0 => 'string', + ), + 'RarArchive::close' => + array ( + 0 => 'bool', + ), + 'RarArchive::getComment' => + array ( + 0 => 'null|string', + ), + 'RarArchive::getEntries' => + array ( + 0 => 'array|false', + ), + 'RarArchive::getEntry' => + array ( + 0 => 'RarEntry|false', + 'entryname' => 'string', + ), + 'RarArchive::isBroken' => + array ( + 0 => 'bool', + ), + 'RarArchive::isSolid' => + array ( + 0 => 'bool', + ), + 'RarArchive::open' => + array ( + 0 => 'RarArchive|false', + 'filename' => 'string', + 'password=' => 'string', + 'volume_callback=' => 'callable', + ), + 'RarArchive::setAllowBroken' => + array ( + 0 => 'bool', + 'allow_broken' => 'bool', + ), + 'RarEntry::__toString' => + array ( + 0 => 'string', + ), + 'RarEntry::extract' => + array ( + 0 => 'bool', + 'dir' => 'string', + 'filepath=' => 'string', + 'password=' => 'string', + 'extended_data=' => 'bool', + ), + 'RarEntry::getAttr' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getCrc' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getFileTime' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getHostOs' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getMethod' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getName' => + array ( + 0 => 'false|string', + ), + 'RarEntry::getPackedSize' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getStream' => + array ( + 0 => 'false|resource', + 'password=' => 'string', + ), + 'RarEntry::getUnpackedSize' => + array ( + 0 => 'false|int', + ), + 'RarEntry::getVersion' => + array ( + 0 => 'false|int', + ), + 'RarEntry::isDirectory' => + array ( + 0 => 'bool', + ), + 'RarEntry::isEncrypted' => + array ( + 0 => 'bool', + ), + 'RarException::getCode' => + array ( + 0 => 'int', + ), + 'RarException::getFile' => + array ( + 0 => 'string', + ), + 'RarException::getLine' => + array ( + 0 => 'int', + ), + 'RarException::getMessage' => + array ( + 0 => 'string', + ), + 'RarException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'RarException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RarException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'RarException::isUsingExceptions' => + array ( + 0 => 'bool', + ), + 'RarException::setUsingExceptions' => + array ( + 0 => 'RarEntry', + 'using_exceptions' => 'bool', + ), + 'RecursiveArrayIterator::__construct' => + array ( + 0 => 'void', + 'array=' => 'array|object', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::append' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'RecursiveArrayIterator::asort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::count' => + array ( + 0 => 'int', + ), + 'RecursiveArrayIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveArrayIterator::getArrayCopy' => + array ( + 0 => 'array', + ), + 'RecursiveArrayIterator::getChildren' => + array ( + 0 => 'RecursiveArrayIterator|null', + ), + 'RecursiveArrayIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveArrayIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveArrayIterator::key' => + array ( + 0 => 'int|null|string', + ), + 'RecursiveArrayIterator::ksort' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'RecursiveArrayIterator::natcasesort' => + array ( + 0 => 'true', + ), + 'RecursiveArrayIterator::natsort' => + array ( + 0 => 'true', + ), + 'RecursiveArrayIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveArrayIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::offsetGet' => + array ( + 0 => 'mixed', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'int|null|string', + 'value' => 'string', + ), + 'RecursiveArrayIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'int|string', + ), + 'RecursiveArrayIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveArrayIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'RecursiveArrayIterator::serialize' => + array ( + 0 => 'string', + ), + 'RecursiveArrayIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveArrayIterator::uasort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'RecursiveArrayIterator::uksort' => + array ( + 0 => 'true', + 'callback' => 'callable(mixed, mixed):int', + ), + 'RecursiveArrayIterator::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'RecursiveArrayIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'flags=' => 'int', + ), + 'RecursiveCachingIterator::__toString' => + array ( + 0 => 'string', + ), + 'RecursiveCachingIterator::count' => + array ( + 0 => 'int', + ), + 'RecursiveCachingIterator::current' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::getCache' => + array ( + 0 => 'array', + ), + 'RecursiveCachingIterator::getChildren' => + array ( + 0 => 'RecursiveCachingIterator|null', + ), + 'RecursiveCachingIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveCachingIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveCachingIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::hasNext' => + array ( + 0 => 'bool', + ), + 'RecursiveCachingIterator::key' => + array ( + 0 => 'scalar', + ), + 'RecursiveCachingIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::offsetExists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RecursiveCachingIterator::offsetGet' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RecursiveCachingIterator::offsetSet' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'RecursiveCachingIterator::offsetUnset' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'RecursiveCachingIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveCachingIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveCachingIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + 'callback' => 'callable(mixed, mixed=, mixed=):bool', + ), + 'RecursiveCallbackFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveCallbackFilterIterator::getChildren' => + array ( + 0 => 'RecursiveCallbackFilterIterator', + ), + 'RecursiveCallbackFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveCallbackFilterIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveCallbackFilterIterator::key' => + array ( + 0 => 'scalar', + ), + 'RecursiveCallbackFilterIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveCallbackFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveCallbackFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::__construct' => + array ( + 0 => 'void', + 'directory' => 'string', + 'flags=' => 'int', + ), + 'RecursiveDirectoryIterator::__toString' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::current' => + array ( + 0 => 'FilesystemIterator|SplFileInfo|string', + ), + 'RecursiveDirectoryIterator::getATime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'RecursiveDirectoryIterator::getCTime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getChildren' => + array ( + 0 => 'RecursiveDirectoryIterator', + ), + 'RecursiveDirectoryIterator::getExtension' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::getFilename' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getGroup' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getInode' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getLinkTarget' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getMTime' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getOwner' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getPath' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::getPathname' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getPerms' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getRealPath' => + array ( + 0 => 'non-falsy-string', + ), + 'RecursiveDirectoryIterator::getSize' => + array ( + 0 => 'int', + ), + 'RecursiveDirectoryIterator::getSubPath' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getSubPathname' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::getType' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::hasChildren' => + array ( + 0 => 'bool', + 'allowLinks=' => 'bool', + ), + 'RecursiveDirectoryIterator::isDir' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isDot' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isExecutable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isFile' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isLink' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isReadable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::isWritable' => + array ( + 0 => 'bool', + ), + 'RecursiveDirectoryIterator::key' => + array ( + 0 => 'string', + ), + 'RecursiveDirectoryIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveDirectoryIterator::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'RecursiveDirectoryIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveDirectoryIterator::seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'RecursiveDirectoryIterator::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveDirectoryIterator::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'RecursiveDirectoryIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + ), + 'RecursiveFilterIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveFilterIterator::getChildren' => + array ( + 0 => 'RecursiveFilterIterator|null', + ), + 'RecursiveFilterIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveFilterIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveFilterIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveFilterIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveFilterIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveFilterIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveIterator::__construct' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveIterator::getChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveIterator::key' => + array ( + 0 => 'int|string', + ), + 'RecursiveIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveIteratorIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'IteratorAggregate|RecursiveIterator', + 'mode=' => 'int', + 'flags=' => 'int', + ), + 'RecursiveIteratorIterator::beginChildren' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::beginIteration' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::callGetChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveIteratorIterator::callHasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveIteratorIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveIteratorIterator::endChildren' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::endIteration' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::getDepth' => + array ( + 0 => 'int', + ), + 'RecursiveIteratorIterator::getInnerIterator' => + array ( + 0 => 'RecursiveIterator', + ), + 'RecursiveIteratorIterator::getMaxDepth' => + array ( + 0 => 'false|int', + ), + 'RecursiveIteratorIterator::getSubIterator' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int', + ), + 'RecursiveIteratorIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveIteratorIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::nextElement' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveIteratorIterator::setMaxDepth' => + array ( + 0 => 'void', + 'maxDepth=' => 'int', + ), + 'RecursiveIteratorIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'RecursiveIterator', + 'pattern' => 'string', + 'mode=' => 'int', + 'flags=' => 'int', + 'pregFlags=' => 'int', + ), + 'RecursiveRegexIterator::accept' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::current' => + array ( + 0 => 'mixed', + ), + 'RecursiveRegexIterator::getChildren' => + array ( + 0 => 'RecursiveRegexIterator', + ), + 'RecursiveRegexIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RecursiveRegexIterator::getMode' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getPregFlags' => + array ( + 0 => 'int', + ), + 'RecursiveRegexIterator::getRegex' => + array ( + 0 => 'string', + ), + 'RecursiveRegexIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveRegexIterator::key' => + array ( + 0 => 'mixed', + ), + 'RecursiveRegexIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveRegexIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveRegexIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RecursiveRegexIterator::setMode' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'RecursiveRegexIterator::setPregFlags' => + array ( + 0 => 'void', + 'pregFlags' => 'int', + ), + 'RecursiveRegexIterator::valid' => + array ( + 0 => 'bool', + ), + 'RecursiveTreeIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'IteratorAggregate|RecursiveIterator', + 'flags=' => 'int', + 'cachingIteratorFlags=' => 'int', + 'mode=' => 'int', + ), + 'RecursiveTreeIterator::beginChildren' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::beginIteration' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::callGetChildren' => + array ( + 0 => 'RecursiveIterator|null', + ), + 'RecursiveTreeIterator::callHasChildren' => + array ( + 0 => 'bool', + ), + 'RecursiveTreeIterator::current' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::endChildren' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::endIteration' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::getDepth' => + array ( + 0 => 'int', + ), + 'RecursiveTreeIterator::getEntry' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getInnerIterator' => + array ( + 0 => 'RecursiveIterator', + ), + 'RecursiveTreeIterator::getMaxDepth' => + array ( + 0 => 'false|int', + ), + 'RecursiveTreeIterator::getPostfix' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getPrefix' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::getSubIterator' => + array ( + 0 => 'RecursiveIterator|null', + 'level=' => 'int', + ), + 'RecursiveTreeIterator::key' => + array ( + 0 => 'string', + ), + 'RecursiveTreeIterator::next' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::nextElement' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::rewind' => + array ( + 0 => 'void', + ), + 'RecursiveTreeIterator::setMaxDepth' => + array ( + 0 => 'void', + 'maxDepth=' => 'int', + ), + 'RecursiveTreeIterator::setPostfix' => + array ( + 0 => 'void', + 'postfix' => 'string', + ), + 'RecursiveTreeIterator::setPrefixPart' => + array ( + 0 => 'void', + 'part' => 'int', + 'value' => 'string', + ), + 'RecursiveTreeIterator::valid' => + array ( + 0 => 'bool', + ), + 'Redis::__construct' => + array ( + 0 => 'void', + ), + 'Redis::__destruct' => + array ( + 0 => 'void', + ), + 'Redis::_prefix' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'Redis::_serialize' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'Redis::_unserialize' => + array ( + 0 => 'mixed', + 'value' => 'string', + ), + 'Redis::append' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::auth' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'Redis::bgRewriteAOF' => + array ( + 0 => 'bool', + ), + 'Redis::bgSave' => + array ( + 0 => 'bool', + ), + 'Redis::bitCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::bitOp' => + array ( + 0 => 'int', + 'operation' => 'string', + 'ret_key' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::bitpos' => + array ( + 0 => 'int', + 'key' => 'string', + 'bit' => 'int', + 'start=' => 'int', + 'end=' => 'int', + ), + 'Redis::blPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'Redis::blPop\'1' => + array ( + 0 => 'array', + 'key' => 'string', + 'timeout_or_key' => 'int|string', + '...extra_args' => 'int|string', + ), + 'Redis::brPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'Redis::brPop\'1' => + array ( + 0 => 'array', + 'key' => 'string', + 'timeout_or_key' => 'int|string', + '...extra_args' => 'int|string', + ), + 'Redis::brpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'timeout' => 'int', + ), + 'Redis::clearLastError' => + array ( + 0 => 'bool', + ), + 'Redis::client' => + array ( + 0 => 'mixed', + 'command' => 'string', + 'arg=' => 'string', + ), + 'Redis::close' => + array ( + 0 => 'bool', + ), + 'Redis::command' => + array ( + 0 => 'mixed', + '...args' => 'mixed', + ), + 'Redis::config' => + array ( + 0 => 'string', + 'operation' => 'string', + 'key' => 'string', + 'value=' => 'string', + ), + 'Redis::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'reserved=' => 'null', + 'retry_interval=' => 'int|null', + 'read_timeout=' => 'float', + ), + 'Redis::dbSize' => + array ( + 0 => 'int', + ), + 'Redis::debug' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'Redis::decr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::decrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'Redis::decrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + ), + 'Redis::del' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::del\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::delete' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::delete\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::discard' => + array ( + 0 => 'mixed', + ), + 'Redis::dump' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::echo' => + array ( + 0 => 'string', + 'message' => 'string', + ), + 'Redis::eval' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + 'args=' => 'mixed', + 'numKeys=' => 'mixed', + ), + 'Redis::evalSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::evaluate' => + array ( + 0 => 'mixed', + 'script' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::evaluateSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'Redis::exec' => + array ( + 0 => 'array', + ), + 'Redis::exists' => + array ( + 0 => 'int', + 'keys' => 'array|string', + ), + 'Redis::exists\'1' => + array ( + 0 => 'int', + '...keys' => 'string', + ), + 'Redis::expire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::expireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiry' => 'int', + ), + 'Redis::flushAll' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'Redis::flushDb' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'Redis::geoAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'member' => 'string', + '...other_triples=' => 'float|int|string', + ), + 'Redis::geoDist' => + array ( + 0 => 'float', + 'key' => 'string', + 'member1' => 'string', + 'member2' => 'string', + 'unit=' => 'string', + ), + 'Redis::geoHash' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::geoPos' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...members=' => 'string', + ), + 'Redis::geoRadius' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'radius' => 'float', + 'unit' => 'float', + 'options=' => 'array', + ), + 'Redis::geoRadiusByMember' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'member' => 'string', + 'radius' => 'float', + 'units' => 'string', + 'options=' => 'array', + ), + 'Redis::get' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::getAuth' => + array ( + 0 => 'false|null|string', + ), + 'Redis::getBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + ), + 'Redis::getDBNum' => + array ( + 0 => 'false|int', + ), + 'Redis::getHost' => + array ( + 0 => 'false|string', + ), + 'Redis::getKeys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'Redis::getLastError' => + array ( + 0 => 'null|string', + ), + 'Redis::getMode' => + array ( + 0 => 'int', + ), + 'Redis::getMultiple' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'Redis::getOption' => + array ( + 0 => 'int', + 'name' => 'int', + ), + 'Redis::getPersistentID' => + array ( + 0 => 'false|null|string', + ), + 'Redis::getPort' => + array ( + 0 => 'false|int', + ), + 'Redis::getRange' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::getReadTimeout' => + array ( + 0 => 'false|float', + ), + 'Redis::getSet' => + array ( + 0 => 'string', + 'key' => 'string', + 'string' => 'string', + ), + 'Redis::getTimeout' => + array ( + 0 => 'false|float', + ), + 'Redis::hDel' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey1' => 'string', + '...otherHashKeys=' => 'string', + ), + 'Redis::hExists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'Redis::hGet' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'Redis::hGetAll' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::hIncrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'int', + ), + 'Redis::hIncrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'field' => 'string', + 'increment' => 'float', + ), + 'Redis::hKeys' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::hLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::hMGet' => + array ( + 0 => 'array', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'Redis::hMSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'Redis::hScan' => + array ( + 0 => 'array', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::hSet' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'Redis::hSetNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'Redis::hStrLen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + 'member' => 'mixed', + ), + 'Redis::hVals' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::incr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::incrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'Redis::incrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + ), + 'Redis::info' => + array ( + 0 => 'array', + 'option=' => 'string', + ), + 'Redis::isConnected' => + array ( + 0 => 'bool', + ), + 'Redis::keys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'Redis::lGet' => + array ( + 0 => 'string', + 'key' => 'string', + 'index' => 'int', + ), + 'Redis::lGetRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::lIndex' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'index' => 'int', + ), + 'Redis::lInsert' => + array ( + 0 => 'int', + 'key' => 'string', + 'position' => 'int', + 'pivot' => 'string', + 'value' => 'string', + ), + 'Redis::lLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::lPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::lPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::lPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::lRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::lRem' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'Redis::lRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'Redis::lSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'index' => 'int', + 'value' => 'string', + ), + 'Redis::lSize' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::lTrim' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'Redis::lastSave' => + array ( + 0 => 'int', + ), + 'Redis::listTrim' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'Redis::mGet' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'Redis::mSet' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'Redis::mSetNx' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'Redis::migrate' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'key' => 'array|string', + 'db' => 'int', + 'timeout' => 'int', + 'copy=' => 'bool', + 'replace=' => 'bool', + ), + 'Redis::move' => + array ( + 0 => 'bool', + 'key' => 'string', + 'dbindex' => 'int', + ), + 'Redis::multi' => + array ( + 0 => 'Redis', + 'mode=' => 'int', + ), + 'Redis::object' => + array ( + 0 => 'false|long|string', + 'info' => 'string', + 'key' => 'string', + ), + 'Redis::open' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'reserved=' => 'null', + 'retry_interval=' => 'int|null', + 'read_timeout=' => 'float', + ), + 'Redis::pExpire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::pconnect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'persistent_id=' => 'string', + 'retry_interval=' => 'int|null', + ), + 'Redis::persist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'Redis::pexpireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'expiry' => 'int', + ), + 'Redis::pfAdd' => + array ( + 0 => 'bool', + 'key' => 'string', + 'elements' => 'array', + ), + 'Redis::pfCount' => + array ( + 0 => 'int', + 'key' => 'array|string', + ), + 'Redis::pfMerge' => + array ( + 0 => 'bool', + 'destkey' => 'string', + 'sourcekeys' => 'array', + ), + 'Redis::ping' => + array ( + 0 => 'string', + ), + 'Redis::pipeline' => + array ( + 0 => 'Redis', + ), + 'Redis::popen' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'float', + 'persistent_id=' => 'string', + 'retry_interval=' => 'int|null', + ), + 'Redis::psetex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::psubscribe' => + array ( + 0 => 'mixed', + 'patterns' => 'array', + 'callback' => 'array|string', + ), + 'Redis::pttl' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::publish' => + array ( + 0 => 'int', + 'channel' => 'string', + 'message' => 'string', + ), + 'Redis::pubsub' => + array ( + 0 => 'array|int', + 'keyword' => 'string', + 'argument=' => 'array|string', + ), + 'Redis::punsubscribe' => + array ( + 0 => 'mixed', + 'pattern' => 'string', + '...other_patterns=' => 'string', + ), + 'Redis::rPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::rPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::rPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::randomKey' => + array ( + 0 => 'string', + ), + 'Redis::rawCommand' => + array ( + 0 => 'mixed', + 'command' => 'string', + '...arguments=' => 'mixed', + ), + 'Redis::rename' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::renameKey' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::renameNx' => + array ( + 0 => 'bool', + 'srckey' => 'string', + 'dstkey' => 'string', + ), + 'Redis::resetStat' => + array ( + 0 => 'bool', + ), + 'Redis::restore' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::role' => + array ( + 0 => 'array', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'Redis::rpoplpush' => + array ( + 0 => 'string', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'Redis::sAdd' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'Redis::sAddArray' => + array ( + 0 => 'bool', + 'key' => 'string', + 'values' => 'array', + ), + 'Redis::sCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::sContains' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::sDiff' => + array ( + 0 => 'array', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sDiffStore' => + array ( + 0 => 'false|int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sGetMembers' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'Redis::sInter' => + array ( + 0 => 'array|false', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sInterStore' => + array ( + 0 => 'false|int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sIsMember' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::sMembers' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'Redis::sMove' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'member' => 'string', + ), + 'Redis::sPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'Redis::sRandMember' => + array ( + 0 => 'array|false|string', + 'key' => 'string', + 'count=' => 'int', + ), + 'Redis::sRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'Redis::sRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'Redis::sScan' => + array ( + 0 => 'array|bool', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::sSize' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::sUnion' => + array ( + 0 => 'array', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::sUnionStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::save' => + array ( + 0 => 'bool', + ), + 'Redis::scan' => + array ( + 0 => 'array|false', + '&rw_iterator' => 'int|null', + 'pattern=' => 'null|string', + 'count=' => 'int|null', + ), + 'Redis::script' => + array ( + 0 => 'mixed', + 'command' => 'string', + '...args=' => 'mixed', + ), + 'Redis::select' => + array ( + 0 => 'bool', + 'dbindex' => 'int', + ), + 'Redis::sendEcho' => + array ( + 0 => 'string', + 'msg' => 'string', + ), + 'Redis::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'options=' => 'array', + ), + 'Redis::set\'1' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'timeout=' => 'int', + ), + 'Redis::setBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'int', + ), + 'Redis::setEx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'Redis::setNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'Redis::setOption' => + array ( + 0 => 'bool', + 'name' => 'int', + 'value' => 'mixed', + ), + 'Redis::setRange' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'end' => 'int', + ), + 'Redis::setTimeout' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'ttl' => 'int', + ), + 'Redis::slave' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + ), + 'Redis::slave\'1' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + ), + 'Redis::slaveof' => + array ( + 0 => 'bool', + 'host=' => 'string', + 'port=' => 'int', + ), + 'Redis::slowLog' => + array ( + 0 => 'mixed', + 'operation' => 'string', + 'length=' => 'int', + ), + 'Redis::sort' => + array ( + 0 => 'array|int', + 'key' => 'string', + 'options=' => 'array', + ), + 'Redis::sortAsc' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'string', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortAscAlpha' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortDesc' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::sortDescAlpha' => + array ( + 0 => 'array', + 'key' => 'string', + 'pattern=' => 'mixed', + 'get=' => 'string', + 'start=' => 'int', + 'end=' => 'int', + 'getList=' => 'bool', + ), + 'Redis::strLen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::subscribe' => + array ( + 0 => 'mixed|null', + 'channels' => 'array', + 'callback' => 'array|string', + ), + 'Redis::substr' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::swapdb' => + array ( + 0 => 'bool', + 'srcdb' => 'int', + 'dstdb' => 'int', + ), + 'Redis::time' => + array ( + 0 => 'array', + ), + 'Redis::ttl' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'Redis::type' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...args' => 'string', + ), + 'Redis::unlink\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'Redis::unsubscribe' => + array ( + 0 => 'mixed', + 'channel' => 'string', + '...other_channels=' => 'string', + ), + 'Redis::unwatch' => + array ( + 0 => 'mixed', + ), + 'Redis::wait' => + array ( + 0 => 'int', + 'numSlaves' => 'int', + 'timeout' => 'int', + ), + 'Redis::watch' => + array ( + 0 => 'void', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'Redis::xack' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'arr_ids' => 'array', + ), + 'Redis::xadd' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_id' => 'string', + 'arr_fields' => 'array', + 'i_maxlen=' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'Redis::xclaim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'i_min_idle' => 'mixed', + 'arr_ids' => 'array', + 'arr_opts=' => 'array', + ), + 'Redis::xdel' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'arr_ids' => 'array', + ), + 'Redis::xgroup' => + array ( + 0 => 'mixed', + 'str_operation' => 'string', + 'str_key=' => 'string', + 'str_arg1=' => 'mixed', + 'str_arg2=' => 'mixed', + 'str_arg3=' => 'mixed', + ), + 'Redis::xinfo' => + array ( + 0 => 'mixed', + 'str_cmd' => 'string', + 'str_key=' => 'string', + 'str_group=' => 'string', + ), + 'Redis::xlen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'Redis::xpending' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_start=' => 'mixed', + 'str_end=' => 'mixed', + 'i_count=' => 'mixed', + 'str_consumer=' => 'string', + ), + 'Redis::xrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'Redis::xread' => + array ( + 0 => 'mixed', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'Redis::xreadgroup' => + array ( + 0 => 'mixed', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'Redis::xrevrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'Redis::xtrim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'i_maxlen' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'Redis::zAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'Redis::zAdd\'1' => + array ( + 0 => 'int', + 'options' => 'array', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'Redis::zCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'Redis::zCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + ), + 'Redis::zDelete' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zDeleteRangeByRank' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zDeleteRangeByScore' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'start' => 'float', + 'end' => 'float', + ), + 'Redis::zIncrBy' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + 'member' => 'string', + ), + 'Redis::zInter' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zInterStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zLexCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + ), + 'Redis::zRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscores=' => 'bool', + ), + 'Redis::zRangeByLex' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'Redis::zRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int|string', + 'end' => 'int|string', + 'options=' => 'array', + ), + 'Redis::zRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zRemRangeByLex' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + ), + 'Redis::zRemRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zRemRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'Redis::zRemove' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'Redis::zRemoveRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'Redis::zRemoveRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'Redis::zRevRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'Redis::zRevRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'string', + 'max' => 'string', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'Redis::zRevRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + 'options=' => 'array', + ), + 'Redis::zRevRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zReverseRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'Redis::zScan' => + array ( + 0 => 'array|bool', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'Redis::zScore' => + array ( + 0 => 'false|float', + 'key' => 'string', + 'member' => 'string', + ), + 'Redis::zSize' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'Redis::zUnion' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Redis::zUnionStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'RedisArray::__call' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + ), + 'RedisArray::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'hosts=' => 'array|null', + 'opts=' => 'array|null', + ), + 'RedisArray::_continuum' => + array ( + 0 => 'mixed', + ), + 'RedisArray::_distributor' => + array ( + 0 => 'mixed', + ), + 'RedisArray::_function' => + array ( + 0 => 'string', + ), + 'RedisArray::_hosts' => + array ( + 0 => 'array', + ), + 'RedisArray::_instance' => + array ( + 0 => 'mixed', + 'host' => 'mixed', + ), + 'RedisArray::_rehash' => + array ( + 0 => 'mixed', + 'callable=' => 'callable', + ), + 'RedisArray::_target' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RedisArray::bgsave' => + array ( + 0 => 'mixed', + ), + 'RedisArray::del' => + array ( + 0 => 'bool', + 'key' => 'string', + '...args' => 'string', + ), + 'RedisArray::delete' => + array ( + 0 => 'bool', + 'key' => 'string', + '...args' => 'string', + ), + 'RedisArray::delete\'1' => + array ( + 0 => 'bool', + 'key' => 'array', + ), + 'RedisArray::discard' => + array ( + 0 => 'mixed', + ), + 'RedisArray::exec' => + array ( + 0 => 'array', + ), + 'RedisArray::flushAll' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'RedisArray::flushDb' => + array ( + 0 => 'bool', + 'async=' => 'bool', + ), + 'RedisArray::getMultiple' => + array ( + 0 => 'mixed', + 'keys' => 'mixed', + ), + 'RedisArray::getOption' => + array ( + 0 => 'mixed', + 'opt' => 'mixed', + ), + 'RedisArray::info' => + array ( + 0 => 'array', + ), + 'RedisArray::keys' => + array ( + 0 => 'array', + 'pattern' => 'mixed', + ), + 'RedisArray::mGet' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'RedisArray::mSet' => + array ( + 0 => 'bool', + 'pairs' => 'array', + ), + 'RedisArray::multi' => + array ( + 0 => 'RedisArray', + 'host' => 'string', + 'mode=' => 'int', + ), + 'RedisArray::ping' => + array ( + 0 => 'string', + ), + 'RedisArray::save' => + array ( + 0 => 'bool', + ), + 'RedisArray::select' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'RedisArray::setOption' => + array ( + 0 => 'mixed', + 'opt' => 'mixed', + 'value' => 'mixed', + ), + 'RedisArray::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisArray::unlink\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'RedisArray::unwatch' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::__construct' => + array ( + 0 => 'void', + 'name' => 'null|string', + 'seeds=' => 'array', + 'timeout=' => 'float', + 'readTimeout=' => 'float', + 'persistent=' => 'bool', + 'auth=' => 'null|string', + ), + 'RedisCluster::_masters' => + array ( + 0 => 'array', + ), + 'RedisCluster::_prefix' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'RedisCluster::_redir' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::_serialize' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'RedisCluster::_unserialize' => + array ( + 0 => 'mixed', + 'value' => 'string', + ), + 'RedisCluster::append' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::bgrewriteaof' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::bgsave' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::bitCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::bitOp' => + array ( + 0 => 'int', + 'operation' => 'string', + 'retKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::bitpos' => + array ( + 0 => 'int', + 'key' => 'string', + 'bit' => 'int', + 'start=' => 'int', + 'end=' => 'int', + ), + 'RedisCluster::blPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'RedisCluster::brPop' => + array ( + 0 => 'array', + 'keys' => 'array', + 'timeout' => 'int', + ), + 'RedisCluster::brpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'timeout' => 'int', + ), + 'RedisCluster::clearLastError' => + array ( + 0 => 'bool', + ), + 'RedisCluster::client' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'subCmd=' => 'string', + '...args=' => 'mixed', + ), + 'RedisCluster::close' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::cluster' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'arguments=' => 'mixed', + ), + 'RedisCluster::command' => + array ( + 0 => 'array|bool', + ), + 'RedisCluster::config' => + array ( + 0 => 'array|bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'operation' => 'string', + 'key' => 'string', + 'value=' => 'string', + ), + 'RedisCluster::dbSize' => + array ( + 0 => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::decr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::decrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'RedisCluster::del' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::del\'1' => + array ( + 0 => 'int', + 'key' => 'array', + ), + 'RedisCluster::discard' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::dump' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::echo' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'msg' => 'string', + ), + 'RedisCluster::eval' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + 'args=' => 'mixed', + 'numKeys=' => 'mixed', + ), + 'RedisCluster::evalSha' => + array ( + 0 => 'mixed', + 'scriptSha' => 'string', + 'args=' => 'array', + 'numKeys=' => 'int', + ), + 'RedisCluster::exec' => + array ( + 0 => 'array|null', + ), + 'RedisCluster::exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RedisCluster::expire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'RedisCluster::expireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timestamp' => 'int', + ), + 'RedisCluster::flushAll' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'async=' => 'bool', + ), + 'RedisCluster::flushDB' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'async=' => 'bool', + ), + 'RedisCluster::geoAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'member' => 'string', + '...other_members=' => 'float|string', + ), + 'RedisCluster::geoDist' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'member1' => 'string', + 'member2' => 'string', + 'unit=' => 'string', + ), + 'RedisCluster::geoRadius' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'longitude' => 'float', + 'latitude' => 'float', + 'radius' => 'float', + 'radiusUnit' => 'string', + 'options=' => 'array', + ), + 'RedisCluster::geoRadiusByMember' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + 'radius' => 'float', + 'radiusUnit' => 'string', + 'options=' => 'array', + ), + 'RedisCluster::geohash' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::geopos' => + array ( + 0 => 'array', + 'key' => 'string', + 'member' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::get' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::getBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + ), + 'RedisCluster::getLastError' => + array ( + 0 => 'null|string', + ), + 'RedisCluster::getMode' => + array ( + 0 => 'int', + ), + 'RedisCluster::getOption' => + array ( + 0 => 'int', + 'option' => 'int', + ), + 'RedisCluster::getRange' => + array ( + 0 => 'string', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::getSet' => + array ( + 0 => 'string', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hDel' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'hashKey' => 'string', + '...other_hashKeys=' => 'array', + ), + 'RedisCluster::hExists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'RedisCluster::hGet' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'hashKey' => 'string', + ), + 'RedisCluster::hGetAll' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::hIncrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'int', + ), + 'RedisCluster::hIncrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'field' => 'string', + 'increment' => 'float', + ), + 'RedisCluster::hKeys' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::hLen' => + array ( + 0 => 'false|int', + 'key' => 'string', + ), + 'RedisCluster::hMGet' => + array ( + 0 => 'array', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'RedisCluster::hMSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKeys' => 'array', + ), + 'RedisCluster::hScan' => + array ( + 0 => 'array', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::hSet' => + array ( + 0 => 'int', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hSetNx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'hashKey' => 'string', + 'value' => 'string', + ), + 'RedisCluster::hStrlen' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::hVals' => + array ( + 0 => 'array', + 'key' => 'string', + ), + 'RedisCluster::incr' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::incrBy' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'int', + ), + 'RedisCluster::incrByFloat' => + array ( + 0 => 'float', + 'key' => 'string', + 'increment' => 'float', + ), + 'RedisCluster::info' => + array ( + 0 => 'array', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'option=' => 'string', + ), + 'RedisCluster::keys' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'RedisCluster::lGet' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'index' => 'int', + ), + 'RedisCluster::lIndex' => + array ( + 0 => 'false|string', + 'key' => 'string', + 'index' => 'int', + ), + 'RedisCluster::lInsert' => + array ( + 0 => 'int', + 'key' => 'string', + 'position' => 'int', + 'pivot' => 'string', + 'value' => 'string', + ), + 'RedisCluster::lLen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::lPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::lPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::lPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::lRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::lRem' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + 'count' => 'int', + ), + 'RedisCluster::lSet' => + array ( + 0 => 'bool', + 'key' => 'string', + 'index' => 'int', + 'value' => 'string', + ), + 'RedisCluster::lTrim' => + array ( + 0 => 'array|false', + 'key' => 'string', + 'start' => 'int', + 'stop' => 'int', + ), + 'RedisCluster::lastSave' => + array ( + 0 => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::mget' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'RedisCluster::mset' => + array ( + 0 => 'bool', + 'array' => 'array', + ), + 'RedisCluster::msetnx' => + array ( + 0 => 'int', + 'array' => 'array', + ), + 'RedisCluster::multi' => + array ( + 0 => 'Redis', + 'mode=' => 'int', + ), + 'RedisCluster::object' => + array ( + 0 => 'false|int|string', + 'string' => 'string', + 'key' => 'string', + ), + 'RedisCluster::pExpire' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + ), + 'RedisCluster::pExpireAt' => + array ( + 0 => 'bool', + 'key' => 'string', + 'timestamp' => 'int', + ), + 'RedisCluster::persist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'RedisCluster::pfAdd' => + array ( + 0 => 'bool', + 'key' => 'string', + 'elements' => 'array', + ), + 'RedisCluster::pfCount' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::pfMerge' => + array ( + 0 => 'bool', + 'destKey' => 'string', + 'sourceKeys' => 'array', + ), + 'RedisCluster::ping' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::psetex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::psubscribe' => + array ( + 0 => 'mixed', + 'patterns' => 'array', + 'callback' => 'string', + ), + 'RedisCluster::pttl' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::publish' => + array ( + 0 => 'int', + 'channel' => 'string', + 'message' => 'string', + ), + 'RedisCluster::pubsub' => + array ( + 0 => 'array', + 'nodeParams' => 'string', + 'keyword' => 'string', + '...argument=' => 'string', + ), + 'RedisCluster::punSubscribe' => + array ( + 0 => 'mixed', + 'channels' => 'mixed', + 'callback' => 'mixed', + ), + 'RedisCluster::rPop' => + array ( + 0 => 'false|string', + 'key' => 'string', + ), + 'RedisCluster::rPush' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::rPushx' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::randomKey' => + array ( + 0 => 'string', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::rawCommand' => + array ( + 0 => 'mixed', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'arguments=' => 'mixed', + ), + 'RedisCluster::rename' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::renameNx' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::restore' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::role' => + array ( + 0 => 'array', + ), + 'RedisCluster::rpoplpush' => + array ( + 0 => 'false|string', + 'srcKey' => 'string', + 'dstKey' => 'string', + ), + 'RedisCluster::sAdd' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'value1' => 'string', + 'value2=' => 'string', + 'valueN=' => 'string', + ), + 'RedisCluster::sAddArray' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'valueArray' => 'array', + ), + 'RedisCluster::sCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::sDiff' => + array ( + 0 => 'list', + 'key1' => 'string', + 'key2' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sDiffStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sInter' => + array ( + 0 => 'list', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sInterStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sIsMember' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::sMembers' => + array ( + 0 => 'list', + 'key' => 'string', + ), + 'RedisCluster::sMove' => + array ( + 0 => 'bool', + 'srcKey' => 'string', + 'dstKey' => 'string', + 'member' => 'string', + ), + 'RedisCluster::sPop' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'RedisCluster::sRandMember' => + array ( + 0 => 'array|string', + 'key' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::sRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::sScan' => + array ( + 0 => 'array|false', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'null', + 'count=' => 'int', + ), + 'RedisCluster::sUnion' => + array ( + 0 => 'list', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::sUnion\'1' => + array ( + 0 => 'list', + 'keys' => 'array', + ), + 'RedisCluster::sUnionStore' => + array ( + 0 => 'int', + 'dstKey' => 'string', + 'key1' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::save' => + array ( + 0 => 'bool', + 'nodeParams' => 'array{0: string, 1: int}|string', + ), + 'RedisCluster::scan' => + array ( + 0 => 'array|false', + '&iterator' => 'int', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::script' => + array ( + 0 => 'array|bool|string', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'script=' => 'string', + '...other_scripts=' => 'array', + ), + 'RedisCluster::set' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + 'timeout=' => 'array|int', + ), + 'RedisCluster::setBit' => + array ( + 0 => 'int', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'bool|int', + ), + 'RedisCluster::setOption' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'RedisCluster::setRange' => + array ( + 0 => 'string', + 'key' => 'string', + 'offset' => 'int', + 'value' => 'string', + ), + 'RedisCluster::setex' => + array ( + 0 => 'bool', + 'key' => 'string', + 'ttl' => 'int', + 'value' => 'string', + ), + 'RedisCluster::setnx' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'string', + ), + 'RedisCluster::slowLog' => + array ( + 0 => 'array|bool|int', + 'nodeParams' => 'array{0: string, 1: int}|string', + 'command' => 'string', + 'length=' => 'int', + ), + 'RedisCluster::sort' => + array ( + 0 => 'array', + 'key' => 'string', + 'option=' => 'array', + ), + 'RedisCluster::strlen' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::subscribe' => + array ( + 0 => 'mixed', + 'channels' => 'array', + 'callback' => 'string', + ), + 'RedisCluster::time' => + array ( + 0 => 'array', + ), + 'RedisCluster::ttl' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::type' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::unSubscribe' => + array ( + 0 => 'mixed', + 'channels' => 'mixed', + '...other_channels=' => 'mixed', + ), + 'RedisCluster::unlink' => + array ( + 0 => 'int', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::unwatch' => + array ( + 0 => 'mixed', + ), + 'RedisCluster::watch' => + array ( + 0 => 'void', + 'key' => 'string', + '...other_keys=' => 'string', + ), + 'RedisCluster::xack' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'arr_ids' => 'array', + ), + 'RedisCluster::xadd' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_id' => 'string', + 'arr_fields' => 'array', + 'i_maxlen=' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'RedisCluster::xclaim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'i_min_idle' => 'mixed', + 'arr_ids' => 'array', + 'arr_opts=' => 'array', + ), + 'RedisCluster::xdel' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'arr_ids' => 'array', + ), + 'RedisCluster::xgroup' => + array ( + 0 => 'mixed', + 'str_operation' => 'string', + 'str_key=' => 'string', + 'str_arg1=' => 'mixed', + 'str_arg2=' => 'mixed', + 'str_arg3=' => 'mixed', + ), + 'RedisCluster::xinfo' => + array ( + 0 => 'mixed', + 'str_cmd' => 'string', + 'str_key=' => 'string', + 'str_group=' => 'string', + ), + 'RedisCluster::xlen' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + ), + 'RedisCluster::xpending' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_group' => 'string', + 'str_start=' => 'mixed', + 'str_end=' => 'mixed', + 'i_count=' => 'mixed', + 'str_consumer=' => 'string', + ), + 'RedisCluster::xrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'RedisCluster::xread' => + array ( + 0 => 'mixed', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'RedisCluster::xreadgroup' => + array ( + 0 => 'mixed', + 'str_group' => 'string', + 'str_consumer' => 'string', + 'arr_streams' => 'array', + 'i_count=' => 'mixed', + 'i_block=' => 'mixed', + ), + 'RedisCluster::xrevrange' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'str_start' => 'mixed', + 'str_end' => 'mixed', + 'i_count=' => 'mixed', + ), + 'RedisCluster::xtrim' => + array ( + 0 => 'mixed', + 'str_key' => 'string', + 'i_maxlen' => 'mixed', + 'boo_approximate=' => 'mixed', + ), + 'RedisCluster::zAdd' => + array ( + 0 => 'int', + 'key' => 'string', + 'score1' => 'float', + 'value1' => 'string', + 'score2=' => 'float', + 'value2=' => 'string', + 'scoreN=' => 'float', + 'valueN=' => 'string', + ), + 'RedisCluster::zCard' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'RedisCluster::zCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'string', + 'end' => 'string', + ), + 'RedisCluster::zIncrBy' => + array ( + 0 => 'float', + 'key' => 'string', + 'value' => 'float', + 'member' => 'string', + ), + 'RedisCluster::zInterStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'RedisCluster::zLexCount' => + array ( + 0 => 'int', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + ), + 'RedisCluster::zRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscores=' => 'bool', + ), + 'RedisCluster::zRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'RedisCluster::zRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'options=' => 'array', + ), + 'RedisCluster::zRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zRem' => + array ( + 0 => 'int', + 'key' => 'string', + 'member1' => 'string', + '...other_members=' => 'string', + ), + 'RedisCluster::zRemRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + ), + 'RedisCluster::zRemRangeByRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + ), + 'RedisCluster::zRemRangeByScore' => + array ( + 0 => 'int', + 'key' => 'string', + 'start' => 'float|string', + 'end' => 'float|string', + ), + 'RedisCluster::zRevRange' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'withscore=' => 'bool', + ), + 'RedisCluster::zRevRangeByLex' => + array ( + 0 => 'array', + 'key' => 'string', + 'min' => 'int', + 'max' => 'int', + 'offset=' => 'int', + 'limit=' => 'int', + ), + 'RedisCluster::zRevRangeByScore' => + array ( + 0 => 'array', + 'key' => 'string', + 'start' => 'int', + 'end' => 'int', + 'options=' => 'array', + ), + 'RedisCluster::zRevRank' => + array ( + 0 => 'int', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zScan' => + array ( + 0 => 'array|false', + 'key' => 'string', + '&iterator' => 'int', + 'pattern=' => 'string', + 'count=' => 'int', + ), + 'RedisCluster::zScore' => + array ( + 0 => 'float', + 'key' => 'string', + 'member' => 'string', + ), + 'RedisCluster::zUnionStore' => + array ( + 0 => 'int', + 'Output' => 'string', + 'ZSetKeys' => 'array', + 'Weights=' => 'array|null', + 'aggregateFunction=' => 'string', + ), + 'Reflection::export' => + array ( + 0 => 'null|string', + 'r' => 'reflector', + 'return=' => 'bool', + ), + 'Reflection::getModifierNames' => + array ( + 0 => 'list', + 'modifiers' => 'int', + ), + 'ReflectionClass::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionClass::__construct' => + array ( + 0 => 'void', + 'objectOrClass' => 'class-string|object', + ), + 'ReflectionClass::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionClass::export' => + array ( + 0 => 'null|string', + 'argument' => 'object|string', + 'return=' => 'bool', + ), + 'ReflectionClass::getConstant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'ReflectionClass::getConstants' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getConstructor' => + array ( + 0 => 'ReflectionMethod|null', + ), + 'ReflectionClass::getDefaultProperties' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionClass::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionClass::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionClass::getInterfaceNames' => + array ( + 0 => 'list', + ), + 'ReflectionClass::getInterfaces' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getMethod' => + array ( + 0 => 'ReflectionMethod', + 'name' => 'string', + ), + 'ReflectionClass::getMethods' => + array ( + 0 => 'list', + 'filter=' => 'int', + ), + 'ReflectionClass::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionClass::getName' => + array ( + 0 => 'class-string', + ), + 'ReflectionClass::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionClass::getParentClass' => + array ( + 0 => 'ReflectionClass|false', + ), + 'ReflectionClass::getProperties' => + array ( + 0 => 'list', + 'filter=' => 'int', + ), + 'ReflectionClass::getProperty' => + array ( + 0 => 'ReflectionProperty', + 'name' => 'string', + ), + 'ReflectionClass::getReflectionConstant' => + array ( + 0 => 'ReflectionClassConstant|false', + 'name' => 'string', + ), + 'ReflectionClass::getReflectionConstants' => + array ( + 0 => 'list', + ), + 'ReflectionClass::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionClass::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionClass::getStaticProperties' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getStaticPropertyValue' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'ReflectionClass::getTraitAliases' => + array ( + 0 => 'array', + ), + 'ReflectionClass::getTraitNames' => + array ( + 0 => 'list', + ), + 'ReflectionClass::getTraits' => + array ( + 0 => 'array', + ), + 'ReflectionClass::hasConstant' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::hasMethod' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::hasProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionClass::implementsInterface' => + array ( + 0 => 'bool', + 'interface' => 'ReflectionClass|class-string', + ), + 'ReflectionClass::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isAnonymous' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isCloneable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInstance' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'ReflectionClass::isInstantiable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInterface' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isIterateable' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isSubclassOf' => + array ( + 0 => 'bool', + 'class' => 'ReflectionClass|class-string', + ), + 'ReflectionClass::isTrait' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionClass::newInstance' => + array ( + 0 => 'object', + '...args=' => 'mixed', + ), + 'ReflectionClass::newInstanceArgs' => + array ( + 0 => 'object', + 'args=' => 'list', + ), + 'ReflectionClass::newInstanceWithoutConstructor' => + array ( + 0 => 'object', + ), + 'ReflectionClass::setStaticPropertyValue' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'ReflectionClassConstant::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'constant' => 'string', + ), + 'ReflectionClassConstant::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionClassConstant::export' => + array ( + 0 => 'string', + 'class' => 'mixed', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionClassConstant::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionClassConstant::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionClassConstant::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionClassConstant::getName' => + array ( + 0 => 'string', + ), + 'ReflectionClassConstant::getValue' => + array ( + 0 => 'array|null|scalar', + ), + 'ReflectionClassConstant::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionClassConstant::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionClassConstant::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionExtension::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionExtension::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'ReflectionExtension::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionExtension::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionExtension::getClassNames' => + array ( + 0 => 'list', + ), + 'ReflectionExtension::getClasses' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getConstants' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getDependencies' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getFunctions' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getINIEntries' => + array ( + 0 => 'array', + ), + 'ReflectionExtension::getName' => + array ( + 0 => 'string', + ), + 'ReflectionExtension::getVersion' => + array ( + 0 => 'null|string', + ), + 'ReflectionExtension::info' => + array ( + 0 => 'void', + ), + 'ReflectionExtension::isPersistent' => + array ( + 0 => 'bool', + ), + 'ReflectionExtension::isTemporary' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::__construct' => + array ( + 0 => 'void', + 'function' => 'Closure|callable-string', + ), + 'ReflectionFunction::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionFunction::getClosure' => + array ( + 0 => 'Closure', + ), + 'ReflectionFunction::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionFunction::getClosureThis' => + array ( + 0 => 'object', + ), + 'ReflectionFunction::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunction::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionFunction::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunction::getName' => + array ( + 0 => 'callable-string', + ), + 'ReflectionFunction::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunction::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunction::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionFunction::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunction::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionFunction::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunction::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionFunction::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::invoke' => + array ( + 0 => 'mixed', + '...args=' => 'mixed', + ), + 'ReflectionFunction::invokeArgs' => + array ( + 0 => 'mixed', + 'args' => 'array', + ), + 'ReflectionFunction::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isDisabled' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionFunction::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionFunctionAbstract::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::export' => + array ( + 0 => 'null|string', + ), + 'ReflectionFunctionAbstract::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionFunctionAbstract::getClosureThis' => + array ( + 0 => 'null|object', + ), + 'ReflectionFunctionAbstract::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunctionAbstract::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionFunctionAbstract::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionFunctionAbstract::getName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionFunctionAbstract::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionFunctionAbstract::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionFunctionAbstract::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionFunctionAbstract::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionFunctionAbstract::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionFunctionAbstract::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionFunctionAbstract::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionGenerator::__construct' => + array ( + 0 => 'void', + 'generator' => 'Generator', + ), + 'ReflectionGenerator::getExecutingFile' => + array ( + 0 => 'string', + ), + 'ReflectionGenerator::getExecutingGenerator' => + array ( + 0 => 'Generator', + ), + 'ReflectionGenerator::getExecutingLine' => + array ( + 0 => 'int', + ), + 'ReflectionGenerator::getFunction' => + array ( + 0 => 'ReflectionFunctionAbstract', + ), + 'ReflectionGenerator::getThis' => + array ( + 0 => 'null|object', + ), + 'ReflectionGenerator::getTrace' => + array ( + 0 => 'array', + 'options=' => 'int', + ), + 'ReflectionMethod::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'name' => 'string', + ), + 'ReflectionMethod::__construct\'1' => + array ( + 0 => 'void', + 'class_method' => 'string', + ), + 'ReflectionMethod::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::export' => + array ( + 0 => 'null|string', + 'class' => 'string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionMethod::getClosure' => + array ( + 0 => 'Closure|null', + 'object=' => 'object', + ), + 'ReflectionMethod::getClosureScopeClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionMethod::getClosureThis' => + array ( + 0 => 'object', + ), + 'ReflectionMethod::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionMethod::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionMethod::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionMethod::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionMethod::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getNumberOfParameters' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getNumberOfRequiredParameters' => + array ( + 0 => 'int', + ), + 'ReflectionMethod::getParameters' => + array ( + 0 => 'list', + ), + 'ReflectionMethod::getPrototype' => + array ( + 0 => 'ReflectionMethod', + ), + 'ReflectionMethod::getReturnType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionMethod::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionMethod::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionMethod::getStaticVariables' => + array ( + 0 => 'array', + ), + 'ReflectionMethod::hasReturnType' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::invoke' => + array ( + 0 => 'mixed', + 'object' => 'null|object', + '...args=' => 'mixed', + ), + 'ReflectionMethod::invokeArgs' => + array ( + 0 => 'mixed', + 'object' => 'null|object', + 'args' => 'array', + ), + 'ReflectionMethod::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isClosure' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isConstructor' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isDeprecated' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isDestructor' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isGenerator' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isStatic' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::returnsReference' => + array ( + 0 => 'bool', + ), + 'ReflectionMethod::setAccessible' => + array ( + 0 => 'void', + 'accessible' => 'bool', + ), + 'ReflectionNamedType::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionNamedType::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionNamedType::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionNamedType::getName' => + array ( + 0 => 'string', + ), + 'ReflectionNamedType::isBuiltin' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionObject::__construct' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'ReflectionObject::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionObject::export' => + array ( + 0 => 'null|string', + 'argument' => 'object', + 'return=' => 'bool', + ), + 'ReflectionObject::getConstant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'ReflectionObject::getConstants' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getConstructor' => + array ( + 0 => 'ReflectionMethod|null', + ), + 'ReflectionObject::getDefaultProperties' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getEndLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionObject::getExtension' => + array ( + 0 => 'ReflectionExtension|null', + ), + 'ReflectionObject::getExtensionName' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getFileName' => + array ( + 0 => 'false|string', + ), + 'ReflectionObject::getInterfaceNames' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getInterfaces' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getMethod' => + array ( + 0 => 'ReflectionMethod', + 'name' => 'string', + ), + 'ReflectionObject::getMethods' => + array ( + 0 => 'array', + 'filter=' => 'int', + ), + 'ReflectionObject::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionObject::getName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getNamespaceName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getParentClass' => + array ( + 0 => 'ReflectionClass|false', + ), + 'ReflectionObject::getProperties' => + array ( + 0 => 'array', + 'filter=' => 'int', + ), + 'ReflectionObject::getProperty' => + array ( + 0 => 'ReflectionProperty', + 'name' => 'string', + ), + 'ReflectionObject::getReflectionConstant' => + array ( + 0 => 'ReflectionClassConstant', + 'name' => 'string', + ), + 'ReflectionObject::getReflectionConstants' => + array ( + 0 => 'list', + ), + 'ReflectionObject::getShortName' => + array ( + 0 => 'string', + ), + 'ReflectionObject::getStartLine' => + array ( + 0 => 'false|int', + ), + 'ReflectionObject::getStaticProperties' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getStaticPropertyValue' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'ReflectionObject::getTraitAliases' => + array ( + 0 => 'array', + ), + 'ReflectionObject::getTraitNames' => + array ( + 0 => 'list', + ), + 'ReflectionObject::getTraits' => + array ( + 0 => 'array', + ), + 'ReflectionObject::hasConstant' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::hasMethod' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::hasProperty' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ReflectionObject::implementsInterface' => + array ( + 0 => 'bool', + 'interface' => 'ReflectionClass|class-string', + ), + 'ReflectionObject::inNamespace' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isAbstract' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isAnonymous' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isCloneable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isFinal' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInstance' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'ReflectionObject::isInstantiable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInterface' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isInternal' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isIterable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isIterateable' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isSubclassOf' => + array ( + 0 => 'bool', + 'class' => 'ReflectionClass|string', + ), + 'ReflectionObject::isTrait' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::isUserDefined' => + array ( + 0 => 'bool', + ), + 'ReflectionObject::newInstance' => + array ( + 0 => 'object', + 'args=' => 'mixed', + '...args=' => 'array', + ), + 'ReflectionObject::newInstanceArgs' => + array ( + 0 => 'object', + 'args=' => 'list', + ), + 'ReflectionObject::newInstanceWithoutConstructor' => + array ( + 0 => 'object', + ), + 'ReflectionObject::setStaticPropertyValue' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'ReflectionParameter::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionParameter::__construct' => + array ( + 0 => 'void', + 'function' => 'array|object|string', + 'param' => 'int|string', + ), + 'ReflectionParameter::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionParameter::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::canBePassedByValue' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::export' => + array ( + 0 => 'null|string', + 'function' => 'string', + 'parameter' => 'string', + 'return=' => 'bool', + ), + 'ReflectionParameter::getClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionParameter::getDeclaringClass' => + array ( + 0 => 'ReflectionClass|null', + ), + 'ReflectionParameter::getDeclaringFunction' => + array ( + 0 => 'ReflectionFunctionAbstract', + ), + 'ReflectionParameter::getDefaultValue' => + array ( + 0 => 'mixed', + ), + 'ReflectionParameter::getDefaultValueConstantName' => + array ( + 0 => 'null|string', + ), + 'ReflectionParameter::getName' => + array ( + 0 => 'non-empty-string', + ), + 'ReflectionParameter::getPosition' => + array ( + 0 => 'int<0, max>', + ), + 'ReflectionParameter::getType' => + array ( + 0 => 'ReflectionType|null', + ), + 'ReflectionParameter::hasType' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isArray' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isCallable' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isDefaultValueAvailable' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isDefaultValueConstant' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isOptional' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isPassedByReference' => + array ( + 0 => 'bool', + ), + 'ReflectionParameter::isVariadic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionProperty::__construct' => + array ( + 0 => 'void', + 'class' => 'class-string|object', + 'property' => 'string', + ), + 'ReflectionProperty::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionProperty::export' => + array ( + 0 => 'null|string', + 'class' => 'mixed', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionProperty::getDeclaringClass' => + array ( + 0 => 'ReflectionClass', + ), + 'ReflectionProperty::getDocComment' => + array ( + 0 => 'false|string', + ), + 'ReflectionProperty::getModifiers' => + array ( + 0 => 'int', + ), + 'ReflectionProperty::getName' => + array ( + 0 => 'string', + ), + 'ReflectionProperty::getValue' => + array ( + 0 => 'mixed', + 'object=' => 'object', + ), + 'ReflectionProperty::hasType' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isDefault' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isPrivate' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isProtected' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isPublic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::isStatic' => + array ( + 0 => 'bool', + ), + 'ReflectionProperty::setAccessible' => + array ( + 0 => 'void', + 'accessible' => 'bool', + ), + 'ReflectionProperty::setValue' => + array ( + 0 => 'void', + 'object' => 'null|object', + 'value' => 'mixed', + ), + 'ReflectionProperty::setValue\'1' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'ReflectionType::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionType::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionType::allowsNull' => + array ( + 0 => 'bool', + ), + 'ReflectionType::isBuiltin' => + array ( + 0 => 'bool', + ), + 'ReflectionZendExtension::__clone' => + array ( + 0 => 'void', + ), + 'ReflectionZendExtension::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'ReflectionZendExtension::__toString' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::export' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'return=' => 'bool', + ), + 'ReflectionZendExtension::getAuthor' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getCopyright' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getName' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getURL' => + array ( + 0 => 'string', + ), + 'ReflectionZendExtension::getVersion' => + array ( + 0 => 'string', + ), + 'Reflector::__toString' => + array ( + 0 => 'string', + ), + 'Reflector::export' => + array ( + 0 => 'null|string', + ), + 'RegexIterator::__construct' => + array ( + 0 => 'void', + 'iterator' => 'Iterator', + 'pattern' => 'string', + 'mode=' => 'int', + 'flags=' => 'int', + 'pregFlags=' => 'int', + ), + 'RegexIterator::accept' => + array ( + 0 => 'bool', + ), + 'RegexIterator::current' => + array ( + 0 => 'mixed', + ), + 'RegexIterator::getFlags' => + array ( + 0 => 'int', + ), + 'RegexIterator::getInnerIterator' => + array ( + 0 => 'Iterator', + ), + 'RegexIterator::getMode' => + array ( + 0 => 'int', + ), + 'RegexIterator::getPregFlags' => + array ( + 0 => 'int', + ), + 'RegexIterator::getRegex' => + array ( + 0 => 'string', + ), + 'RegexIterator::key' => + array ( + 0 => 'mixed', + ), + 'RegexIterator::next' => + array ( + 0 => 'void', + ), + 'RegexIterator::rewind' => + array ( + 0 => 'void', + ), + 'RegexIterator::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'RegexIterator::setMode' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'RegexIterator::setPregFlags' => + array ( + 0 => 'void', + 'pregFlags' => 'int', + ), + 'RegexIterator::valid' => + array ( + 0 => 'bool', + ), + 'ResourceBundle::__construct' => + array ( + 0 => 'void', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::count' => + array ( + 0 => 'int', + ), + 'ResourceBundle::create' => + array ( + 0 => 'ResourceBundle|null', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::get' => + array ( + 0 => 'mixed', + 'index' => 'int|string', + 'fallback=' => 'bool', + ), + 'ResourceBundle::getErrorCode' => + array ( + 0 => 'int', + ), + 'ResourceBundle::getErrorMessage' => + array ( + 0 => 'string', + ), + 'ResourceBundle::getLocales' => + array ( + 0 => 'array|false', + 'bundle' => 'string', + ), + 'Runkit_Sandbox::__construct' => + array ( + 0 => 'void', + 'options=' => 'array', + ), + 'Runkit_Sandbox_Parent' => + array ( + 0 => 'mixed', + ), + 'Runkit_Sandbox_Parent::__construct' => + array ( + 0 => 'void', + ), + 'RuntimeException::__clone' => + array ( + 0 => 'void', + ), + 'RuntimeException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'RuntimeException::__toString' => + array ( + 0 => 'string', + ), + 'RuntimeException::getCode' => + array ( + 0 => 'int', + ), + 'RuntimeException::getFile' => + array ( + 0 => 'string', + ), + 'RuntimeException::getLine' => + array ( + 0 => 'int', + ), + 'RuntimeException::getMessage' => + array ( + 0 => 'string', + ), + 'RuntimeException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'RuntimeException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'RuntimeException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SAMConnection::commit' => + array ( + 0 => 'bool', + ), + 'SAMConnection::connect' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::disconnect' => + array ( + 0 => 'bool', + ), + 'SAMConnection::errno' => + array ( + 0 => 'int', + ), + 'SAMConnection::error' => + array ( + 0 => 'string', + ), + 'SAMConnection::isConnected' => + array ( + 0 => 'bool', + ), + 'SAMConnection::peek' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::peekAll' => + array ( + 0 => 'array', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::receive' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::remove' => + array ( + 0 => 'SAMMessage', + 'target' => 'string', + 'properties=' => 'array', + ), + 'SAMConnection::rollback' => + array ( + 0 => 'bool', + ), + 'SAMConnection::send' => + array ( + 0 => 'string', + 'target' => 'string', + 'msg' => 'sammessage', + 'properties=' => 'array', + ), + 'SAMConnection::setDebug' => + array ( + 0 => 'mixed', + 'switch' => 'bool', + ), + 'SAMConnection::subscribe' => + array ( + 0 => 'string', + 'targettopic' => 'string', + ), + 'SAMConnection::unsubscribe' => + array ( + 0 => 'bool', + 'subscriptionid' => 'string', + 'targettopic=' => 'string', + ), + 'SAMMessage::body' => + array ( + 0 => 'string', + ), + 'SAMMessage::header' => + array ( + 0 => 'object', + ), + 'SCA::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SCA::getService' => + array ( + 0 => 'mixed', + 'target' => 'string', + 'binding=' => 'string', + 'config=' => 'array', + ), + 'SCA_LocalProxy::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SCA_SoapProxy::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SDO_DAS_ChangeSummary::beginLogging' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_ChangeSummary::endLogging' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_ChangeSummary::getChangeType' => + array ( + 0 => 'int', + 'dataobject' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::getChangedDataObjects' => + array ( + 0 => 'SDO_List', + ), + 'SDO_DAS_ChangeSummary::getOldContainer' => + array ( + 0 => 'SDO_DataObject', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::getOldValues' => + array ( + 0 => 'SDO_List', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_DAS_ChangeSummary::isLogging' => + array ( + 0 => 'bool', + ), + 'SDO_DAS_DataFactory::addPropertyToType' => + array ( + 0 => 'mixed', + 'parent_type_namespace_uri' => 'string', + 'parent_type_name' => 'string', + 'property_name' => 'string', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + 'options=' => 'array', + ), + 'SDO_DAS_DataFactory::addType' => + array ( + 0 => 'mixed', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + 'options=' => 'array', + ), + 'SDO_DAS_DataFactory::getDataFactory' => + array ( + 0 => 'SDO_DAS_DataFactory', + ), + 'SDO_DAS_DataObject::getChangeSummary' => + array ( + 0 => 'SDO_DAS_ChangeSummary', + ), + 'SDO_DAS_Relational::__construct' => + array ( + 0 => 'void', + 'database_metadata' => 'array', + 'application_root_type=' => 'string', + 'sdo_containment_references_metadata=' => 'array', + ), + 'SDO_DAS_Relational::applyChanges' => + array ( + 0 => 'mixed', + 'database_handle' => 'pdo', + 'root_data_object' => 'sdodataobject', + ), + 'SDO_DAS_Relational::createRootDataObject' => + array ( + 0 => 'SDODataObject', + ), + 'SDO_DAS_Relational::executePreparedQuery' => + array ( + 0 => 'SDODataObject', + 'database_handle' => 'pdo', + 'prepared_statement' => 'pdostatement', + 'value_list' => 'array', + 'column_specifier=' => 'array', + ), + 'SDO_DAS_Relational::executeQuery' => + array ( + 0 => 'SDODataObject', + 'database_handle' => 'pdo', + 'sql_statement' => 'string', + 'column_specifier=' => 'array', + ), + 'SDO_DAS_Setting::getListIndex' => + array ( + 0 => 'int', + ), + 'SDO_DAS_Setting::getPropertyIndex' => + array ( + 0 => 'int', + ), + 'SDO_DAS_Setting::getPropertyName' => + array ( + 0 => 'string', + ), + 'SDO_DAS_Setting::getValue' => + array ( + 0 => 'mixed', + ), + 'SDO_DAS_Setting::isSet' => + array ( + 0 => 'bool', + ), + 'SDO_DAS_XML::addTypes' => + array ( + 0 => 'mixed', + 'xsd_file' => 'string', + ), + 'SDO_DAS_XML::create' => + array ( + 0 => 'SDO_DAS_XML', + 'xsd_file=' => 'mixed', + 'key=' => 'string', + ), + 'SDO_DAS_XML::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SDO_DAS_XML::createDocument' => + array ( + 0 => 'SDO_DAS_XML_Document', + 'document_element_name' => 'string', + 'document_element_namespace_uri' => 'string', + 'dataobject=' => 'sdo_dataobject', + ), + 'SDO_DAS_XML::loadFile' => + array ( + 0 => 'SDO_XMLDocument', + 'xml_file' => 'string', + ), + 'SDO_DAS_XML::loadString' => + array ( + 0 => 'SDO_DAS_XML_Document', + 'xml_string' => 'string', + ), + 'SDO_DAS_XML::saveFile' => + array ( + 0 => 'mixed', + 'xdoc' => 'sdo_xmldocument', + 'xml_file' => 'string', + 'indent=' => 'int', + ), + 'SDO_DAS_XML::saveString' => + array ( + 0 => 'string', + 'xdoc' => 'sdo_xmldocument', + 'indent=' => 'int', + ), + 'SDO_DAS_XML_Document::getRootDataObject' => + array ( + 0 => 'SDO_DataObject', + ), + 'SDO_DAS_XML_Document::getRootElementName' => + array ( + 0 => 'string', + ), + 'SDO_DAS_XML_Document::getRootElementURI' => + array ( + 0 => 'string', + ), + 'SDO_DAS_XML_Document::setEncoding' => + array ( + 0 => 'mixed', + 'encoding' => 'string', + ), + 'SDO_DAS_XML_Document::setXMLDeclaration' => + array ( + 0 => 'mixed', + 'xmldeclatation' => 'bool', + ), + 'SDO_DAS_XML_Document::setXMLVersion' => + array ( + 0 => 'mixed', + 'xmlversion' => 'string', + ), + 'SDO_DataFactory::create' => + array ( + 0 => 'void', + 'type_namespace_uri' => 'string', + 'type_name' => 'string', + ), + 'SDO_DataObject::clear' => + array ( + 0 => 'void', + ), + 'SDO_DataObject::createDataObject' => + array ( + 0 => 'SDO_DataObject', + 'identifier' => 'mixed', + ), + 'SDO_DataObject::getContainer' => + array ( + 0 => 'SDO_DataObject', + ), + 'SDO_DataObject::getSequence' => + array ( + 0 => 'SDO_Sequence', + ), + 'SDO_DataObject::getTypeName' => + array ( + 0 => 'string', + ), + 'SDO_DataObject::getTypeNamespaceURI' => + array ( + 0 => 'string', + ), + 'SDO_Exception::getCause' => + array ( + 0 => 'mixed', + ), + 'SDO_List::insert' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'index=' => 'int', + ), + 'SDO_Model_Property::getContainingType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Property::getDefault' => + array ( + 0 => 'mixed', + ), + 'SDO_Model_Property::getName' => + array ( + 0 => 'string', + ), + 'SDO_Model_Property::getType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Property::isContainment' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Property::isMany' => + array ( + 0 => 'bool', + ), + 'SDO_Model_ReflectionDataObject::__construct' => + array ( + 0 => 'void', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_Model_ReflectionDataObject::export' => + array ( + 0 => 'mixed', + 'rdo' => 'sdo_model_reflectiondataobject', + 'return=' => 'bool', + ), + 'SDO_Model_ReflectionDataObject::getContainmentProperty' => + array ( + 0 => 'SDO_Model_Property', + ), + 'SDO_Model_ReflectionDataObject::getInstanceProperties' => + array ( + 0 => 'array', + ), + 'SDO_Model_ReflectionDataObject::getType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Type::getBaseType' => + array ( + 0 => 'SDO_Model_Type', + ), + 'SDO_Model_Type::getName' => + array ( + 0 => 'string', + ), + 'SDO_Model_Type::getNamespaceURI' => + array ( + 0 => 'string', + ), + 'SDO_Model_Type::getProperties' => + array ( + 0 => 'array', + ), + 'SDO_Model_Type::getProperty' => + array ( + 0 => 'SDO_Model_Property', + 'identifier' => 'mixed', + ), + 'SDO_Model_Type::isAbstractType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isDataType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isInstance' => + array ( + 0 => 'bool', + 'data_object' => 'sdo_dataobject', + ), + 'SDO_Model_Type::isOpenType' => + array ( + 0 => 'bool', + ), + 'SDO_Model_Type::isSequencedType' => + array ( + 0 => 'bool', + ), + 'SDO_Sequence::getProperty' => + array ( + 0 => 'SDO_Model_Property', + 'sequence_index' => 'int', + ), + 'SDO_Sequence::insert' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'sequenceindex=' => 'int', + 'propertyidentifier=' => 'mixed', + ), + 'SDO_Sequence::move' => + array ( + 0 => 'void', + 'toindex' => 'int', + 'fromindex' => 'int', + ), + 'SNMP::__construct' => + array ( + 0 => 'void', + 'version' => 'int', + 'hostname' => 'string', + 'community' => 'string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'SNMP::close' => + array ( + 0 => 'bool', + ), + 'SNMP::get' => + array ( + 0 => 'array|false|string', + 'objectId' => 'array|string', + 'preserveKeys=' => 'bool', + ), + 'SNMP::getErrno' => + array ( + 0 => 'int', + ), + 'SNMP::getError' => + array ( + 0 => 'string', + ), + 'SNMP::getnext' => + array ( + 0 => 'array|false|string', + 'objectId' => 'array|string', + ), + 'SNMP::set' => + array ( + 0 => 'bool', + 'objectId' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + ), + 'SNMP::setSecurity' => + array ( + 0 => 'bool', + 'securityLevel' => 'string', + 'authProtocol=' => 'string', + 'authPassphrase=' => 'string', + 'privacyProtocol=' => 'string', + 'privacyPassphrase=' => 'string', + 'contextName=' => 'string', + 'contextEngineId=' => 'string', + ), + 'SNMP::walk' => + array ( + 0 => 'array|false', + 'objectId' => 'array|string', + 'suffixAsKey=' => 'bool', + 'maxRepetitions=' => 'int', + 'nonRepeaters=' => 'int', + ), + 'SQLite3::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'encryptionKey=' => 'string', + ), + 'SQLite3::busyTimeout' => + array ( + 0 => 'bool', + 'milliseconds' => 'int', + ), + 'SQLite3::changes' => + array ( + 0 => 'int', + ), + 'SQLite3::close' => + array ( + 0 => 'bool', + ), + 'SQLite3::createAggregate' => + array ( + 0 => 'bool', + 'name' => 'string', + 'stepCallback' => 'callable', + 'finalCallback' => 'callable', + 'argCount=' => 'int', + ), + 'SQLite3::createCollation' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + ), + 'SQLite3::createFunction' => + array ( + 0 => 'bool', + 'name' => 'string', + 'callback' => 'callable', + 'argCount=' => 'int', + ), + 'SQLite3::enableExceptions' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'SQLite3::escapeString' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SQLite3::exec' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'SQLite3::lastErrorCode' => + array ( + 0 => 'int', + ), + 'SQLite3::lastErrorMsg' => + array ( + 0 => 'string', + ), + 'SQLite3::lastInsertRowID' => + array ( + 0 => 'int', + ), + 'SQLite3::loadExtension' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'SQLite3::open' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + 'encryptionKey=' => 'string', + ), + 'SQLite3::openBlob' => + array ( + 0 => 'false|resource', + 'table' => 'string', + 'column' => 'string', + 'rowid' => 'int', + 'dbname=' => 'string', + ), + 'SQLite3::prepare' => + array ( + 0 => 'SQLite3Stmt|false', + 'query' => 'string', + ), + 'SQLite3::query' => + array ( + 0 => 'SQLite3Result|false', + 'query' => 'string', + ), + 'SQLite3::querySingle' => + array ( + 0 => 'array|null|scalar', + 'query' => 'string', + 'entireRow=' => 'bool', + ), + 'SQLite3::version' => + array ( + 0 => 'array', + ), + 'SQLite3Result::__construct' => + array ( + 0 => 'void', + ), + 'SQLite3Result::columnName' => + array ( + 0 => 'string', + 'column' => 'int', + ), + 'SQLite3Result::columnType' => + array ( + 0 => 'int', + 'column' => 'int', + ), + 'SQLite3Result::fetchArray' => + array ( + 0 => 'array|false', + 'mode=' => 'int', + ), + 'SQLite3Result::finalize' => + array ( + 0 => 'bool', + ), + 'SQLite3Result::numColumns' => + array ( + 0 => 'int', + ), + 'SQLite3Result::reset' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::__construct' => + array ( + 0 => 'void', + 'sqlite3' => 'sqlite3', + 'query' => 'string', + ), + 'SQLite3Stmt::bindParam' => + array ( + 0 => 'bool', + 'param' => 'int|string', + '&rw_var' => 'mixed', + 'type=' => 'int', + ), + 'SQLite3Stmt::bindValue' => + array ( + 0 => 'bool', + 'param' => 'int|string', + 'value' => 'mixed', + 'type=' => 'int', + ), + 'SQLite3Stmt::clear' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::close' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::execute' => + array ( + 0 => 'SQLite3Result|false', + ), + 'SQLite3Stmt::getSQL' => + array ( + 0 => 'string', + 'expand=' => 'bool', + ), + 'SQLite3Stmt::paramCount' => + array ( + 0 => 'int', + ), + 'SQLite3Stmt::readOnly' => + array ( + 0 => 'bool', + ), + 'SQLite3Stmt::reset' => + array ( + 0 => 'bool', + ), + 'SQLiteDatabase::__construct' => + array ( + 0 => 'void', + 'filename' => 'mixed', + 'mode=' => 'int|mixed', + '&error_message' => 'mixed', + ), + 'SQLiteDatabase::arrayQuery' => + array ( + 0 => 'array', + 'query' => 'string', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteDatabase::busyTimeout' => + array ( + 0 => 'int', + 'milliseconds' => 'int', + ), + 'SQLiteDatabase::changes' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::createAggregate' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'SQLiteDatabase::createFunction' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'SQLiteDatabase::exec' => + array ( + 0 => 'bool', + 'query' => 'string', + 'error_msg=' => 'string', + ), + 'SQLiteDatabase::fetchColumnTypes' => + array ( + 0 => 'array', + 'table_name' => 'string', + 'result_type=' => 'int', + ), + 'SQLiteDatabase::lastError' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::lastInsertRowid' => + array ( + 0 => 'int', + ), + 'SQLiteDatabase::query' => + array ( + 0 => 'SQLiteResult|false', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'SQLiteDatabase::queryExec' => + array ( + 0 => 'bool', + 'query' => 'string', + '&w_error_msg=' => 'string', + ), + 'SQLiteDatabase::singleQuery' => + array ( + 0 => 'array', + 'query' => 'string', + 'first_row_only=' => 'bool', + 'decode_binary=' => 'bool', + ), + 'SQLiteDatabase::unbufferedQuery' => + array ( + 0 => 'SQLiteUnbuffered|false', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'SQLiteException::__clone' => + array ( + 0 => 'void', + ), + 'SQLiteException::__construct' => + array ( + 0 => 'void', + 'message' => 'mixed', + 'code' => 'mixed', + 'previous' => 'mixed', + ), + 'SQLiteException::__toString' => + array ( + 0 => 'string', + ), + 'SQLiteException::__wakeup' => + array ( + 0 => 'void', + ), + 'SQLiteException::getCode' => + array ( + 0 => 'int', + ), + 'SQLiteException::getFile' => + array ( + 0 => 'string', + ), + 'SQLiteException::getLine' => + array ( + 0 => 'int', + ), + 'SQLiteException::getMessage' => + array ( + 0 => 'string', + ), + 'SQLiteException::getPrevious' => + array ( + 0 => 'RuntimeException|Throwable|null', + ), + 'SQLiteException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SQLiteException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SQLiteResult::__construct' => + array ( + 0 => 'void', + ), + 'SQLiteResult::column' => + array ( + 0 => 'mixed', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::count' => + array ( + 0 => 'int', + ), + 'SQLiteResult::current' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetch' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchAll' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchObject' => + array ( + 0 => 'object', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fetchSingle' => + array ( + 0 => 'string', + 'decode_binary=' => 'bool', + ), + 'SQLiteResult::fieldName' => + array ( + 0 => 'string', + 'field_index' => 'int', + ), + 'SQLiteResult::hasPrev' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::key' => + array ( + 0 => 'mixed|null', + ), + 'SQLiteResult::next' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::numFields' => + array ( + 0 => 'int', + ), + 'SQLiteResult::numRows' => + array ( + 0 => 'int', + ), + 'SQLiteResult::prev' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::rewind' => + array ( + 0 => 'bool', + ), + 'SQLiteResult::seek' => + array ( + 0 => 'bool', + 'rownum' => 'int', + ), + 'SQLiteResult::valid' => + array ( + 0 => 'bool', + ), + 'SQLiteUnbuffered::column' => + array ( + 0 => 'void', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::current' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetch' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchAll' => + array ( + 0 => 'array', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchObject' => + array ( + 0 => 'object', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fetchSingle' => + array ( + 0 => 'string', + 'decode_binary=' => 'bool', + ), + 'SQLiteUnbuffered::fieldName' => + array ( + 0 => 'string', + 'field_index' => 'int', + ), + 'SQLiteUnbuffered::next' => + array ( + 0 => 'bool', + ), + 'SQLiteUnbuffered::numFields' => + array ( + 0 => 'int', + ), + 'SQLiteUnbuffered::valid' => + array ( + 0 => 'bool', + ), + 'SVM::__construct' => + array ( + 0 => 'void', + ), + 'SVM::getOptions' => + array ( + 0 => 'array', + ), + 'SVM::setOptions' => + array ( + 0 => 'bool', + 'params' => 'array', + ), + 'SVMModel::__construct' => + array ( + 0 => 'void', + 'filename=' => 'string', + ), + 'SVMModel::checkProbabilityModel' => + array ( + 0 => 'bool', + ), + 'SVMModel::getLabels' => + array ( + 0 => 'array', + ), + 'SVMModel::getNrClass' => + array ( + 0 => 'int', + ), + 'SVMModel::getSvmType' => + array ( + 0 => 'int', + ), + 'SVMModel::getSvrProbability' => + array ( + 0 => 'float', + ), + 'SVMModel::load' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'SVMModel::predict' => + array ( + 0 => 'float', + 'data' => 'array', + ), + 'SVMModel::predict_probability' => + array ( + 0 => 'float', + 'data' => 'array', + ), + 'SVMModel::save' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'SWFAction::__construct' => + array ( + 0 => 'void', + 'script' => 'string', + ), + 'SWFBitmap::__construct' => + array ( + 0 => 'void', + 'file' => 'mixed', + 'alphafile=' => 'mixed', + ), + 'SWFBitmap::getHeight' => + array ( + 0 => 'float', + ), + 'SWFBitmap::getWidth' => + array ( + 0 => 'float', + ), + 'SWFButton::__construct' => + array ( + 0 => 'void', + ), + 'SWFButton::addASound' => + array ( + 0 => 'SWFSoundInstance', + 'sound' => 'swfsound', + 'flags' => 'int', + ), + 'SWFButton::addAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + 'flags' => 'int', + ), + 'SWFButton::addShape' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + 'flags' => 'int', + ), + 'SWFButton::setAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + ), + 'SWFButton::setDown' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setHit' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setMenu' => + array ( + 0 => 'void', + 'flag' => 'int', + ), + 'SWFButton::setOver' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFButton::setUp' => + array ( + 0 => 'void', + 'shape' => 'swfshape', + ), + 'SWFDisplayItem::addAction' => + array ( + 0 => 'void', + 'action' => 'swfaction', + 'flags' => 'int', + ), + 'SWFDisplayItem::addColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFDisplayItem::endMask' => + array ( + 0 => 'void', + ), + 'SWFDisplayItem::getRot' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getX' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getXScale' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getXSkew' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getY' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getYScale' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::getYSkew' => + array ( + 0 => 'float', + ), + 'SWFDisplayItem::move' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFDisplayItem::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFDisplayItem::multColor' => + array ( + 0 => 'void', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + 'a=' => 'float', + ), + 'SWFDisplayItem::remove' => + array ( + 0 => 'void', + ), + 'SWFDisplayItem::rotate' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFDisplayItem::rotateTo' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFDisplayItem::scale' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFDisplayItem::scaleTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y=' => 'float', + ), + 'SWFDisplayItem::setDepth' => + array ( + 0 => 'void', + 'depth' => 'int', + ), + 'SWFDisplayItem::setMaskLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'SWFDisplayItem::setMatrix' => + array ( + 0 => 'void', + 'a' => 'float', + 'b' => 'float', + 'c' => 'float', + 'd' => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFDisplayItem::setName' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'SWFDisplayItem::setRatio' => + array ( + 0 => 'void', + 'ratio' => 'float', + ), + 'SWFDisplayItem::skewX' => + array ( + 0 => 'void', + 'ddegrees' => 'float', + ), + 'SWFDisplayItem::skewXTo' => + array ( + 0 => 'void', + 'degrees' => 'float', + ), + 'SWFDisplayItem::skewY' => + array ( + 0 => 'void', + 'ddegrees' => 'float', + ), + 'SWFDisplayItem::skewYTo' => + array ( + 0 => 'void', + 'degrees' => 'float', + ), + 'SWFFill::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFFill::rotateTo' => + array ( + 0 => 'void', + 'angle' => 'float', + ), + 'SWFFill::scaleTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y=' => 'float', + ), + 'SWFFill::skewXTo' => + array ( + 0 => 'void', + 'x' => 'float', + ), + 'SWFFill::skewYTo' => + array ( + 0 => 'void', + 'y' => 'float', + ), + 'SWFFont::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'SWFFont::getAscent' => + array ( + 0 => 'float', + ), + 'SWFFont::getDescent' => + array ( + 0 => 'float', + ), + 'SWFFont::getLeading' => + array ( + 0 => 'float', + ), + 'SWFFont::getShape' => + array ( + 0 => 'string', + 'code' => 'int', + ), + 'SWFFont::getUTF8Width' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFFont::getWidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFFontChar::addChars' => + array ( + 0 => 'void', + 'char' => 'string', + ), + 'SWFFontChar::addUTF8Chars' => + array ( + 0 => 'void', + 'char' => 'string', + ), + 'SWFGradient::__construct' => + array ( + 0 => 'void', + ), + 'SWFGradient::addEntry' => + array ( + 0 => 'void', + 'ratio' => 'float', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + 'SWFMorph::__construct' => + array ( + 0 => 'void', + ), + 'SWFMorph::getShape1' => + array ( + 0 => 'SWFShape', + ), + 'SWFMorph::getShape2' => + array ( + 0 => 'SWFShape', + ), + 'SWFMovie::__construct' => + array ( + 0 => 'void', + 'version=' => 'int', + ), + 'SWFMovie::add' => + array ( + 0 => 'mixed', + 'instance' => 'object', + ), + 'SWFMovie::addExport' => + array ( + 0 => 'void', + 'char' => 'swfcharacter', + 'name' => 'string', + ), + 'SWFMovie::addFont' => + array ( + 0 => 'mixed', + 'font' => 'swffont', + ), + 'SWFMovie::importChar' => + array ( + 0 => 'SWFSprite', + 'libswf' => 'string', + 'name' => 'string', + ), + 'SWFMovie::importFont' => + array ( + 0 => 'SWFFontChar', + 'libswf' => 'string', + 'name' => 'string', + ), + 'SWFMovie::labelFrame' => + array ( + 0 => 'void', + 'label' => 'string', + ), + 'SWFMovie::namedAnchor' => + array ( + 0 => 'mixed', + ), + 'SWFMovie::nextFrame' => + array ( + 0 => 'void', + ), + 'SWFMovie::output' => + array ( + 0 => 'int', + 'compression=' => 'int', + ), + 'SWFMovie::protect' => + array ( + 0 => 'mixed', + ), + 'SWFMovie::remove' => + array ( + 0 => 'void', + 'instance' => 'object', + ), + 'SWFMovie::save' => + array ( + 0 => 'int', + 'filename' => 'string', + 'compression=' => 'int', + ), + 'SWFMovie::saveToFile' => + array ( + 0 => 'int', + 'x' => 'resource', + 'compression=' => 'int', + ), + 'SWFMovie::setDimension' => + array ( + 0 => 'void', + 'width' => 'float', + 'height' => 'float', + ), + 'SWFMovie::setFrames' => + array ( + 0 => 'void', + 'number' => 'int', + ), + 'SWFMovie::setRate' => + array ( + 0 => 'void', + 'rate' => 'float', + ), + 'SWFMovie::setbackground' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'SWFMovie::startSound' => + array ( + 0 => 'SWFSoundInstance', + 'sound' => 'swfsound', + ), + 'SWFMovie::stopSound' => + array ( + 0 => 'void', + 'sound' => 'swfsound', + ), + 'SWFMovie::streamMP3' => + array ( + 0 => 'int', + 'mp3file' => 'mixed', + 'skip=' => 'float', + ), + 'SWFMovie::writeExports' => + array ( + 0 => 'void', + ), + 'SWFPrebuiltClip::__construct' => + array ( + 0 => 'void', + 'file' => 'mixed', + ), + 'SWFShape::__construct' => + array ( + 0 => 'void', + ), + 'SWFShape::addFill' => + array ( + 0 => 'SWFFill', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + 'bitmap=' => 'swfbitmap', + 'flags=' => 'int', + 'gradient=' => 'swfgradient', + ), + 'SWFShape::addFill\'1' => + array ( + 0 => 'SWFFill', + 'bitmap' => 'SWFBitmap', + 'flags=' => 'int', + ), + 'SWFShape::addFill\'2' => + array ( + 0 => 'SWFFill', + 'gradient' => 'SWFGradient', + 'flags=' => 'int', + ), + 'SWFShape::drawArc' => + array ( + 0 => 'void', + 'r' => 'float', + 'startangle' => 'float', + 'endangle' => 'float', + ), + 'SWFShape::drawCircle' => + array ( + 0 => 'void', + 'r' => 'float', + ), + 'SWFShape::drawCubic' => + array ( + 0 => 'int', + 'bx' => 'float', + 'by' => 'float', + 'cx' => 'float', + 'cy' => 'float', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawCubicTo' => + array ( + 0 => 'int', + 'bx' => 'float', + 'by' => 'float', + 'cx' => 'float', + 'cy' => 'float', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawCurve' => + array ( + 0 => 'int', + 'controldx' => 'float', + 'controldy' => 'float', + 'anchordx' => 'float', + 'anchordy' => 'float', + 'targetdx=' => 'float', + 'targetdy=' => 'float', + ), + 'SWFShape::drawCurveTo' => + array ( + 0 => 'int', + 'controlx' => 'float', + 'controly' => 'float', + 'anchorx' => 'float', + 'anchory' => 'float', + 'targetx=' => 'float', + 'targety=' => 'float', + ), + 'SWFShape::drawGlyph' => + array ( + 0 => 'void', + 'font' => 'swffont', + 'character' => 'string', + 'size=' => 'int', + ), + 'SWFShape::drawLine' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::drawLineTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFShape::movePen' => + array ( + 0 => 'void', + 'dx' => 'float', + 'dy' => 'float', + ), + 'SWFShape::movePenTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFShape::setLeftFill' => + array ( + 0 => 'mixed', + 'fill' => 'swfgradient', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFShape::setLine' => + array ( + 0 => 'mixed', + 'shape' => 'swfshape', + 'width' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFShape::setRightFill' => + array ( + 0 => 'mixed', + 'fill' => 'swfgradient', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFSound' => + array ( + 0 => 'SWFSound', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'SWFSound::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'SWFSoundInstance::loopCount' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::loopInPoint' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::loopOutPoint' => + array ( + 0 => 'void', + 'point' => 'int', + ), + 'SWFSoundInstance::noMultiple' => + array ( + 0 => 'void', + ), + 'SWFSprite::__construct' => + array ( + 0 => 'void', + ), + 'SWFSprite::add' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SWFSprite::labelFrame' => + array ( + 0 => 'void', + 'label' => 'string', + ), + 'SWFSprite::nextFrame' => + array ( + 0 => 'void', + ), + 'SWFSprite::remove' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SWFSprite::setFrames' => + array ( + 0 => 'void', + 'number' => 'int', + ), + 'SWFSprite::startSound' => + array ( + 0 => 'SWFSoundInstance', + 'sount' => 'swfsound', + ), + 'SWFSprite::stopSound' => + array ( + 0 => 'void', + 'sount' => 'swfsound', + ), + 'SWFText::__construct' => + array ( + 0 => 'void', + ), + 'SWFText::addString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'SWFText::addUTF8String' => + array ( + 0 => 'void', + 'text' => 'string', + ), + 'SWFText::getAscent' => + array ( + 0 => 'float', + ), + 'SWFText::getDescent' => + array ( + 0 => 'float', + ), + 'SWFText::getLeading' => + array ( + 0 => 'float', + ), + 'SWFText::getUTF8Width' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFText::getWidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'SWFText::moveTo' => + array ( + 0 => 'void', + 'x' => 'float', + 'y' => 'float', + ), + 'SWFText::setColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFText::setFont' => + array ( + 0 => 'void', + 'font' => 'swffont', + ), + 'SWFText::setHeight' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFText::setSpacing' => + array ( + 0 => 'void', + 'spacing' => 'float', + ), + 'SWFTextField::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'SWFTextField::addChars' => + array ( + 0 => 'void', + 'chars' => 'string', + ), + 'SWFTextField::addString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'SWFTextField::align' => + array ( + 0 => 'void', + 'alignement' => 'int', + ), + 'SWFTextField::setBounds' => + array ( + 0 => 'void', + 'width' => 'float', + 'height' => 'float', + ), + 'SWFTextField::setColor' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'SWFTextField::setFont' => + array ( + 0 => 'void', + 'font' => 'swffont', + ), + 'SWFTextField::setHeight' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFTextField::setIndentation' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFTextField::setLeftMargin' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFTextField::setLineSpacing' => + array ( + 0 => 'void', + 'height' => 'float', + ), + 'SWFTextField::setMargins' => + array ( + 0 => 'void', + 'left' => 'float', + 'right' => 'float', + ), + 'SWFTextField::setName' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'SWFTextField::setPadding' => + array ( + 0 => 'void', + 'padding' => 'float', + ), + 'SWFTextField::setRightMargin' => + array ( + 0 => 'void', + 'width' => 'float', + ), + 'SWFVideoStream::__construct' => + array ( + 0 => 'void', + 'file=' => 'string', + ), + 'SWFVideoStream::getNumFrames' => + array ( + 0 => 'int', + ), + 'SWFVideoStream::setDimension' => + array ( + 0 => 'void', + 'x' => 'int', + 'y' => 'int', + ), + 'Saxon\\SaxonProcessor::__construct' => + array ( + 0 => 'void', + 'license=' => 'bool', + 'cwd=' => 'string', + ), + 'Saxon\\SaxonProcessor::createAtomicValue' => + array ( + 0 => 'Saxon\\XdmValue', + 'primitive_type_val' => 'scalar', + ), + 'Saxon\\SaxonProcessor::newSchemaValidator' => + array ( + 0 => 'Saxon\\SchemaValidator', + ), + 'Saxon\\SaxonProcessor::newXPathProcessor' => + array ( + 0 => 'Saxon\\XPathProcessor', + ), + 'Saxon\\SaxonProcessor::newXQueryProcessor' => + array ( + 0 => 'Saxon\\XQueryProcessor', + ), + 'Saxon\\SaxonProcessor::newXsltProcessor' => + array ( + 0 => 'Saxon\\XsltProcessor', + ), + 'Saxon\\SaxonProcessor::parseXmlFromFile' => + array ( + 0 => 'Saxon\\XdmNode', + 'fileName' => 'string', + ), + 'Saxon\\SaxonProcessor::parseXmlFromString' => + array ( + 0 => 'Saxon\\XdmNode', + 'value' => 'string', + ), + 'Saxon\\SaxonProcessor::registerPHPFunctions' => + array ( + 0 => 'void', + 'library' => 'string', + ), + 'Saxon\\SaxonProcessor::setConfigurationProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\SaxonProcessor::setResourceDirectory' => + array ( + 0 => 'void', + 'dir' => 'string', + ), + 'Saxon\\SaxonProcessor::setcwd' => + array ( + 0 => 'void', + 'cwd' => 'string', + ), + 'Saxon\\SaxonProcessor::version' => + array ( + 0 => 'string', + ), + 'Saxon\\SchemaValidator::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\SchemaValidator::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\SchemaValidator::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\SchemaValidator::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\SchemaValidator::getValidationReport' => + array ( + 0 => 'Saxon\\XdmNode', + ), + 'Saxon\\SchemaValidator::registerSchemaFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\SchemaValidator::registerSchemaFromString' => + array ( + 0 => 'void', + 'schemaStr' => 'string', + ), + 'Saxon\\SchemaValidator::setOutputFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\SchemaValidator::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\SchemaValidator::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\SchemaValidator::setSourceNode' => + array ( + 0 => 'void', + 'node' => 'Saxon\\XdmNode', + ), + 'Saxon\\SchemaValidator::validate' => + array ( + 0 => 'void', + 'filename=' => 'null|string', + ), + 'Saxon\\SchemaValidator::validateToNode' => + array ( + 0 => 'Saxon\\XdmNode', + 'filename=' => 'null|string', + ), + 'Saxon\\XPathProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::declareNamespace' => + array ( + 0 => 'void', + 'prefix' => 'mixed', + 'namespace' => 'mixed', + ), + 'Saxon\\XPathProcessor::effectiveBooleanValue' => + array ( + 0 => 'bool', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::evaluate' => + array ( + 0 => 'Saxon\\XdmValue', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::evaluateSingle' => + array ( + 0 => 'Saxon\\XdmItem', + 'xpathStr' => 'string', + ), + 'Saxon\\XPathProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XPathProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XPathProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XPathProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XPathProcessor::setBaseURI' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Saxon\\XPathProcessor::setContextFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XPathProcessor::setContextItem' => + array ( + 0 => 'void', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XPathProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XPathProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XQueryProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::declareNamespace' => + array ( + 0 => 'void', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'Saxon\\XQueryProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XQueryProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XQueryProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XQueryProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XQueryProcessor::runQueryToFile' => + array ( + 0 => 'void', + 'outfilename' => 'string', + ), + 'Saxon\\XQueryProcessor::runQueryToString' => + array ( + 0 => 'null|string', + ), + 'Saxon\\XQueryProcessor::runQueryToValue' => + array ( + 0 => 'Saxon\\XdmValue|null', + ), + 'Saxon\\XQueryProcessor::setContextItem' => + array ( + 0 => 'void', + 'object' => 'Saxon\\XdmAtomicValue|Saxon\\XdmItem|Saxon\\XdmNode|Saxon\\XdmValue', + ), + 'Saxon\\XQueryProcessor::setContextItemFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XQueryProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XQueryProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryBaseURI' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryContent' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'Saxon\\XQueryProcessor::setQueryItem' => + array ( + 0 => 'void', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmAtomicValue::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmAtomicValue::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmAtomicValue::getBooleanValue' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmAtomicValue::getDoubleValue' => + array ( + 0 => 'float', + ), + 'Saxon\\XdmAtomicValue::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmAtomicValue::getLongValue' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmAtomicValue::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmAtomicValue::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmAtomicValue::isAtomic' => + array ( + 0 => 'true', + ), + 'Saxon\\XdmAtomicValue::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmAtomicValue::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmAtomicValue::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmItem::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmItem::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmItem::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmItem::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmItem::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmItem::isAtomic' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmItem::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmItem::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmItem::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmNode::getAtomicValue' => + array ( + 0 => 'Saxon\\XdmAtomicValue|null', + ), + 'Saxon\\XdmNode::getAttributeCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getAttributeNode' => + array ( + 0 => 'Saxon\\XdmNode|null', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getAttributeValue' => + array ( + 0 => 'null|string', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getChildCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getChildNode' => + array ( + 0 => 'Saxon\\XdmNode|null', + 'index' => 'int', + ), + 'Saxon\\XdmNode::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmNode::getNodeKind' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmNode::getNodeName' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmNode::getNodeValue' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmNode::getParent' => + array ( + 0 => 'Saxon\\XdmNode|null', + ), + 'Saxon\\XdmNode::getStringValue' => + array ( + 0 => 'string', + ), + 'Saxon\\XdmNode::isAtomic' => + array ( + 0 => 'false', + ), + 'Saxon\\XdmNode::isNode' => + array ( + 0 => 'bool', + ), + 'Saxon\\XdmNode::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmNode::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XdmValue::addXdmItem' => + array ( + 0 => 'mixed', + 'item' => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmValue::getHead' => + array ( + 0 => 'Saxon\\XdmItem', + ), + 'Saxon\\XdmValue::itemAt' => + array ( + 0 => 'Saxon\\XdmItem', + 'index' => 'int', + ), + 'Saxon\\XdmValue::size' => + array ( + 0 => 'int', + ), + 'Saxon\\XsltProcessor::clearParameters' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::clearProperties' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::compileFromFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::compileFromString' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'Saxon\\XsltProcessor::compileFromValue' => + array ( + 0 => 'void', + 'node' => 'Saxon\\XdmNode', + ), + 'Saxon\\XsltProcessor::exceptionClear' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::getErrorCode' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XsltProcessor::getErrorMessage' => + array ( + 0 => 'string', + 'i' => 'int', + ), + 'Saxon\\XsltProcessor::getExceptionCount' => + array ( + 0 => 'int', + ), + 'Saxon\\XsltProcessor::setOutputFile' => + array ( + 0 => 'void', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::setParameter' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XsltProcessor::setProperty' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Saxon\\XsltProcessor::setSourceFromFile' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'Saxon\\XsltProcessor::setSourceFromXdmValue' => + array ( + 0 => 'void', + 'value' => 'Saxon\\XdmValue', + ), + 'Saxon\\XsltProcessor::transformFileToFile' => + array ( + 0 => 'void', + 'sourceFileName' => 'string', + 'stylesheetFileName' => 'string', + 'outputfileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformFileToString' => + array ( + 0 => 'null|string', + 'sourceFileName' => 'string', + 'stylesheetFileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformFileToValue' => + array ( + 0 => 'Saxon\\XdmValue', + 'fileName' => 'string', + ), + 'Saxon\\XsltProcessor::transformToFile' => + array ( + 0 => 'void', + ), + 'Saxon\\XsltProcessor::transformToString' => + array ( + 0 => 'string', + ), + 'Saxon\\XsltProcessor::transformToValue' => + array ( + 0 => 'Saxon\\XdmValue|null', + ), + 'SeasLog::__destruct' => + array ( + 0 => 'void', + ), + 'SeasLog::alert' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::analyzerCount' => + array ( + 0 => 'mixed', + 'level' => 'string', + 'log_path=' => 'string', + 'key_word=' => 'string', + ), + 'SeasLog::analyzerDetail' => + array ( + 0 => 'mixed', + 'level' => 'string', + 'log_path=' => 'string', + 'key_word=' => 'string', + 'start=' => 'int', + 'limit=' => 'int', + 'order=' => 'int', + ), + 'SeasLog::closeLoggerStream' => + array ( + 0 => 'bool', + 'model' => 'int', + 'logger' => 'string', + ), + 'SeasLog::critical' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::debug' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::emergency' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::flushBuffer' => + array ( + 0 => 'bool', + ), + 'SeasLog::getBasePath' => + array ( + 0 => 'string', + ), + 'SeasLog::getBuffer' => + array ( + 0 => 'array', + ), + 'SeasLog::getBufferEnabled' => + array ( + 0 => 'bool', + ), + 'SeasLog::getDatetimeFormat' => + array ( + 0 => 'string', + ), + 'SeasLog::getLastLogger' => + array ( + 0 => 'string', + ), + 'SeasLog::getRequestID' => + array ( + 0 => 'string', + ), + 'SeasLog::getRequestVariable' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'SeasLog::info' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::log' => + array ( + 0 => 'bool', + 'level' => 'string', + 'message=' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::notice' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeasLog::setBasePath' => + array ( + 0 => 'bool', + 'base_path' => 'string', + ), + 'SeasLog::setDatetimeFormat' => + array ( + 0 => 'bool', + 'format' => 'string', + ), + 'SeasLog::setLogger' => + array ( + 0 => 'bool', + 'logger' => 'string', + ), + 'SeasLog::setRequestID' => + array ( + 0 => 'bool', + 'request_id' => 'string', + ), + 'SeasLog::setRequestVariable' => + array ( + 0 => 'bool', + 'key' => 'int', + 'value' => 'string', + ), + 'SeasLog::warning' => + array ( + 0 => 'bool', + 'message' => 'string', + 'content=' => 'array', + 'logger=' => 'string', + ), + 'SeekableIterator::__construct' => + array ( + 0 => 'void', + ), + 'SeekableIterator::current' => + array ( + 0 => 'mixed', + ), + 'SeekableIterator::key' => + array ( + 0 => 'int|string', + ), + 'SeekableIterator::next' => + array ( + 0 => 'void', + ), + 'SeekableIterator::rewind' => + array ( + 0 => 'void', + ), + 'SeekableIterator::seek' => + array ( + 0 => 'void', + 'position' => 'int', + ), + 'SeekableIterator::valid' => + array ( + 0 => 'bool', + ), + 'Serializable::__construct' => + array ( + 0 => 'void', + ), + 'Serializable::serialize' => + array ( + 0 => 'null|string', + ), + 'Serializable::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'ServerRequest::withInput' => + array ( + 0 => 'ServerRequest', + 'input' => 'mixed', + ), + 'ServerRequest::withParam' => + array ( + 0 => 'ServerRequest', + 'key' => 'int|string', + 'value' => 'mixed', + ), + 'ServerRequest::withParams' => + array ( + 0 => 'ServerRequest', + 'params' => 'mixed', + ), + 'ServerRequest::withUrl' => + array ( + 0 => 'ServerRequest', + 'url' => 'array', + ), + 'ServerRequest::withoutParams' => + array ( + 0 => 'ServerRequest', + 'params' => 'int|string', + ), + 'ServerResponse::addHeader' => + array ( + 0 => 'void', + 'label' => 'string', + 'value' => 'string', + ), + 'ServerResponse::date' => + array ( + 0 => 'string', + 'date' => 'DateTimeInterface|string', + ), + 'ServerResponse::getHeader' => + array ( + 0 => 'string', + 'label' => 'string', + ), + 'ServerResponse::getHeaders' => + array ( + 0 => 'array', + ), + 'ServerResponse::getStatus' => + array ( + 0 => 'int', + ), + 'ServerResponse::getVersion' => + array ( + 0 => 'string', + ), + 'ServerResponse::setHeader' => + array ( + 0 => 'void', + 'label' => 'string', + 'value' => 'string', + ), + 'ServerResponse::setStatus' => + array ( + 0 => 'void', + 'status' => 'int', + ), + 'ServerResponse::setVersion' => + array ( + 0 => 'void', + 'version' => 'string', + ), + 'SessionHandler::close' => + array ( + 0 => 'bool', + ), + 'SessionHandler::create_sid' => + array ( + 0 => 'string', + ), + 'SessionHandler::destroy' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'SessionHandler::gc' => + array ( + 0 => 'bool', + 'max_lifetime' => 'int', + ), + 'SessionHandler::open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'name' => 'string', + ), + 'SessionHandler::read' => + array ( + 0 => 'false|string', + 'id' => 'string', + ), + 'SessionHandler::write' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionHandlerInterface::close' => + array ( + 0 => 'bool', + ), + 'SessionHandlerInterface::destroy' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'SessionHandlerInterface::gc' => + array ( + 0 => 'false|int', + 'max_lifetime' => 'int', + ), + 'SessionHandlerInterface::open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'name' => 'string', + ), + 'SessionHandlerInterface::read' => + array ( + 0 => 'false|string', + 'id' => 'string', + ), + 'SessionHandlerInterface::write' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionIdInterface::create_sid' => + array ( + 0 => 'string', + ), + 'SessionUpdateTimestampHandler::updateTimestamp' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionUpdateTimestampHandler::validateId' => + array ( + 0 => 'char', + 'id' => 'string', + ), + 'SessionUpdateTimestampHandlerInterface::updateTimestamp' => + array ( + 0 => 'bool', + 'id' => 'string', + 'data' => 'string', + ), + 'SessionUpdateTimestampHandlerInterface::validateId' => + array ( + 0 => 'bool', + 'id' => 'string', + ), + 'SimpleXMLElement::__construct' => + array ( + 0 => 'void', + 'data' => 'string', + 'options=' => 'int', + 'dataIsURL=' => 'bool', + 'namespaceOrPrefix=' => 'string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::__get' => + array ( + 0 => 'SimpleXMLElement', + 'name' => 'string', + ), + 'SimpleXMLElement::__toString' => + array ( + 0 => 'string', + ), + 'SimpleXMLElement::addAttribute' => + array ( + 0 => 'void', + 'qualifiedName' => 'string', + 'value' => 'string', + 'namespace=' => 'null|string', + ), + 'SimpleXMLElement::addChild' => + array ( + 0 => 'SimpleXMLElement|null', + 'qualifiedName' => 'string', + 'value=' => 'null|string', + 'namespace=' => 'null|string', + ), + 'SimpleXMLElement::asXML' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + ), + 'SimpleXMLElement::asXML\'1' => + array ( + 0 => 'false|string', + ), + 'SimpleXMLElement::attributes' => + array ( + 0 => 'SimpleXMLElement|null', + 'namespaceOrPrefix=' => 'null|string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::children' => + array ( + 0 => 'SimpleXMLElement|null', + 'namespaceOrPrefix=' => 'null|string', + 'isPrefix=' => 'bool', + ), + 'SimpleXMLElement::count' => + array ( + 0 => 'int', + ), + 'SimpleXMLElement::getDocNamespaces' => + array ( + 0 => 'array', + 'recursive=' => 'bool', + 'fromRoot=' => 'bool', + ), + 'SimpleXMLElement::getName' => + array ( + 0 => 'string', + ), + 'SimpleXMLElement::getNamespaces' => + array ( + 0 => 'array', + 'recursive=' => 'bool', + ), + 'SimpleXMLElement::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::offsetGet' => + array ( + 0 => 'SimpleXMLElement', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'SimpleXMLElement::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'SimpleXMLElement::registerXPathNamespace' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'namespace' => 'string', + ), + 'SimpleXMLElement::saveXML' => + array ( + 0 => 'bool|string', + 'filename=' => 'string', + ), + 'SimpleXMLElement::xpath' => + array ( + 0 => 'array|false|null', + 'expression' => 'string', + ), + 'SimpleXMLIterator::current' => + array ( + 0 => 'SimpleXMLIterator|null', + ), + 'SimpleXMLIterator::getChildren' => + array ( + 0 => 'SimpleXMLIterator|null', + ), + 'SimpleXMLIterator::hasChildren' => + array ( + 0 => 'bool', + ), + 'SimpleXMLIterator::key' => + array ( + 0 => 'false|string', + ), + 'SimpleXMLIterator::next' => + array ( + 0 => 'void', + ), + 'SimpleXMLIterator::rewind' => + array ( + 0 => 'void', + ), + 'SimpleXMLIterator::valid' => + array ( + 0 => 'bool', + ), + 'SoapClient::SoapClient' => + array ( + 0 => 'object', + 'wsdl' => 'mixed', + 'options=' => 'array|null', + ), + 'SoapClient::__call' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + ), + 'SoapClient::__construct' => + array ( + 0 => 'void', + 'wsdl' => 'mixed', + 'options=' => 'array|null', + ), + 'SoapClient::__doRequest' => + array ( + 0 => 'null|string', + 'request' => 'string', + 'location' => 'string', + 'action' => 'string', + 'version' => 'int', + 'one_way=' => 'int', + ), + 'SoapClient::__getCookies' => + array ( + 0 => 'array', + ), + 'SoapClient::__getFunctions' => + array ( + 0 => 'array|null', + ), + 'SoapClient::__getLastRequest' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastRequestHeaders' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastResponse' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getLastResponseHeaders' => + array ( + 0 => 'null|string', + ), + 'SoapClient::__getTypes' => + array ( + 0 => 'array|null', + ), + 'SoapClient::__setCookie' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'value=' => 'string', + ), + 'SoapClient::__setLocation' => + array ( + 0 => 'string', + 'new_location=' => 'string', + ), + 'SoapClient::__setSoapHeaders' => + array ( + 0 => 'bool', + 'soapheaders=' => 'mixed', + ), + 'SoapClient::__soapCall' => + array ( + 0 => 'mixed', + 'function_name' => 'string', + 'arguments' => 'array', + 'options=' => 'array', + 'input_headers=' => 'SoapHeader|array', + '&w_output_headers=' => 'array', + ), + 'SoapFault::SoapFault' => + array ( + 0 => 'object', + 'faultcode' => 'string', + 'faultstring' => 'string', + 'faultactor=' => 'null|string', + 'detail=' => 'mixed|null', + 'faultname=' => 'null|string', + 'headerfault=' => 'mixed|null', + ), + 'SoapFault::__clone' => + array ( + 0 => 'void', + ), + 'SoapFault::__construct' => + array ( + 0 => 'void', + 'code' => 'array|null|string', + 'string' => 'string', + 'actor=' => 'null|string', + 'details=' => 'mixed|null', + 'name=' => 'null|string', + 'headerFault=' => 'mixed|null', + ), + 'SoapFault::__toString' => + array ( + 0 => 'string', + ), + 'SoapFault::__wakeup' => + array ( + 0 => 'void', + ), + 'SoapFault::getCode' => + array ( + 0 => 'int', + ), + 'SoapFault::getFile' => + array ( + 0 => 'string', + ), + 'SoapFault::getLine' => + array ( + 0 => 'int', + ), + 'SoapFault::getMessage' => + array ( + 0 => 'string', + ), + 'SoapFault::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'SoapFault::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SoapFault::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SoapHeader::SoapHeader' => + array ( + 0 => 'object', + 'namespace' => 'string', + 'name' => 'string', + 'data=' => 'mixed', + 'mustunderstand=' => 'bool', + 'actor=' => 'string', + ), + 'SoapHeader::__construct' => + array ( + 0 => 'void', + 'namespace' => 'string', + 'name' => 'string', + 'data=' => 'mixed', + 'mustunderstand=' => 'bool', + 'actor=' => 'string', + ), + 'SoapParam::SoapParam' => + array ( + 0 => 'object', + 'data' => 'mixed', + 'name' => 'string', + ), + 'SoapParam::__construct' => + array ( + 0 => 'void', + 'data' => 'mixed', + 'name' => 'string', + ), + 'SoapServer::SoapServer' => + array ( + 0 => 'object', + 'wsdl' => 'null|string', + 'options=' => 'array', + ), + 'SoapServer::__construct' => + array ( + 0 => 'void', + 'wsdl' => 'null|string', + 'options=' => 'array', + ), + 'SoapServer::addFunction' => + array ( + 0 => 'void', + 'functions' => 'mixed', + ), + 'SoapServer::addSoapHeader' => + array ( + 0 => 'void', + 'object' => 'SoapHeader', + ), + 'SoapServer::fault' => + array ( + 0 => 'void', + 'code' => 'string', + 'string' => 'string', + 'actor=' => 'string', + 'details=' => 'string', + 'name=' => 'string', + ), + 'SoapServer::getFunctions' => + array ( + 0 => 'array', + ), + 'SoapServer::handle' => + array ( + 0 => 'void', + 'soap_request=' => 'string', + ), + 'SoapServer::setClass' => + array ( + 0 => 'void', + 'class_name' => 'string', + '...args=' => 'mixed', + ), + 'SoapServer::setObject' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SoapServer::setPersistence' => + array ( + 0 => 'void', + 'mode' => 'int', + ), + 'SoapVar::SoapVar' => + array ( + 0 => 'object', + 'data' => 'mixed', + 'encoding' => 'int', + 'type_name=' => 'null|string', + 'type_namespace=' => 'null|string', + 'node_name=' => 'null|string', + 'node_namespace=' => 'null|string', + ), + 'SoapVar::__construct' => + array ( + 0 => 'void', + 'data' => 'mixed', + 'encoding' => 'int', + 'type_name=' => 'null|string', + 'type_namespace=' => 'null|string', + 'node_name=' => 'null|string', + 'node_namespace=' => 'null|string', + ), + 'Sodium\\add' => + array ( + 0 => 'void', + '&left' => 'string', + 'right' => 'string', + ), + 'Sodium\\bin2hex' => + array ( + 0 => 'string', + 'binary' => 'string', + ), + 'Sodium\\compare' => + array ( + 0 => 'int', + 'left' => 'string', + 'right' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_decrypt' => + array ( + 0 => 'false|string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_encrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_aes256gcm_is_available' => + array ( + 0 => 'bool', + ), + 'Sodium\\crypto_aead_chacha20poly1305_decrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_aead_chacha20poly1305_encrypt' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'key' => 'string', + 'ad=' => 'string', + ), + 'Sodium\\crypto_auth' => + array ( + 0 => 'string', + 'msg' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_auth_verify' => + array ( + 0 => 'bool', + 'mac' => 'string', + 'msg' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_box' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_keypair' => + array ( + 0 => 'string', + ), + 'Sodium\\crypto_box_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_box_open' => + array ( + 0 => 'string', + 'msg' => 'string', + 'nonce' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_publickey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_box_seal' => + array ( + 0 => 'string', + 'message' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_box_seal_open' => + array ( + 0 => 'string', + 'encrypted' => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_secretkey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_box_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'Sodium\\crypto_generichash' => + array ( + 0 => 'string', + 'input' => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_final' => + array ( + 0 => 'string', + 'state' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_init' => + array ( + 0 => 'string', + 'key=' => 'string', + 'length=' => 'int', + ), + 'Sodium\\crypto_generichash_update' => + array ( + 0 => 'bool', + '&hashState' => 'string', + 'append' => 'string', + ), + 'Sodium\\crypto_kx' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + 'client_publickey' => 'string', + 'server_publickey' => 'string', + ), + 'Sodium\\crypto_pwhash' => + array ( + 0 => 'string', + 'out_len' => 'int', + 'passwd' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256' => + array ( + 0 => 'string', + 'out_len' => 'int', + 'passwd' => 'string', + 'salt' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str' => + array ( + 0 => 'string', + 'passwd' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'passwd' => 'string', + ), + 'Sodium\\crypto_pwhash_str' => + array ( + 0 => 'string', + 'passwd' => 'string', + 'opslimit' => 'int', + 'memlimit' => 'int', + ), + 'Sodium\\crypto_pwhash_str_verify' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'passwd' => 'string', + ), + 'Sodium\\crypto_scalarmult' => + array ( + 0 => 'string', + 'ecdhA' => 'string', + 'ecdhB' => 'string', + ), + 'Sodium\\crypto_scalarmult_base' => + array ( + 0 => 'string', + 'sk' => 'string', + ), + 'Sodium\\crypto_secretbox' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_secretbox_open' => + array ( + 0 => 'string', + 'ciphertext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_shorthash' => + array ( + 0 => 'string', + 'message' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_sign' => + array ( + 0 => 'string', + 'message' => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_detached' => + array ( + 0 => 'string', + 'message' => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_ed25519_pk_to_curve25519' => + array ( + 0 => 'string', + 'sign_pk' => 'string', + ), + 'Sodium\\crypto_sign_ed25519_sk_to_curve25519' => + array ( + 0 => 'string', + 'sign_sk' => 'string', + ), + 'Sodium\\crypto_sign_keypair' => + array ( + 0 => 'string', + ), + 'Sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_sign_open' => + array ( + 0 => 'false|string', + 'signed_message' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_sign_publickey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_sign_publickey_from_secretkey' => + array ( + 0 => 'string', + 'secretkey' => 'string', + ), + 'Sodium\\crypto_sign_secretkey' => + array ( + 0 => 'string', + 'keypair' => 'string', + ), + 'Sodium\\crypto_sign_seed_keypair' => + array ( + 0 => 'string', + 'seed' => 'string', + ), + 'Sodium\\crypto_sign_verify_detached' => + array ( + 0 => 'bool', + 'signature' => 'string', + 'msg' => 'string', + 'publickey' => 'string', + ), + 'Sodium\\crypto_stream' => + array ( + 0 => 'string', + 'length' => 'int', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\crypto_stream_xor' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'nonce' => 'string', + 'key' => 'string', + ), + 'Sodium\\hex2bin' => + array ( + 0 => 'string', + 'hex' => 'string', + ), + 'Sodium\\increment' => + array ( + 0 => 'string', + '&nonce' => 'string', + ), + 'Sodium\\library_version_major' => + array ( + 0 => 'int', + ), + 'Sodium\\library_version_minor' => + array ( + 0 => 'int', + ), + 'Sodium\\memcmp' => + array ( + 0 => 'int', + 'left' => 'string', + 'right' => 'string', + ), + 'Sodium\\memzero' => + array ( + 0 => 'void', + '&target' => 'string', + ), + 'Sodium\\randombytes_buf' => + array ( + 0 => 'string', + 'length' => 'int', + ), + 'Sodium\\randombytes_random16' => + array ( + 0 => 'int|string', + ), + 'Sodium\\randombytes_uniform' => + array ( + 0 => 'int', + 'upperBoundNonInclusive' => 'int', + ), + 'Sodium\\version_string' => + array ( + 0 => 'string', + ), + 'SolrClient::__construct' => + array ( + 0 => 'void', + 'clientOptions' => 'array', + ), + 'SolrClient::__destruct' => + array ( + 0 => 'void', + ), + 'SolrClient::addDocument' => + array ( + 0 => 'SolrUpdateResponse', + 'doc' => 'SolrInputDocument', + 'allowdups=' => 'bool', + 'commitwithin=' => 'int', + ), + 'SolrClient::addDocuments' => + array ( + 0 => 'SolrUpdateResponse', + 'docs' => 'array', + 'allowdups=' => 'bool', + 'commitwithin=' => 'int', + ), + 'SolrClient::commit' => + array ( + 0 => 'SolrUpdateResponse', + 'maxsegments=' => 'int', + 'waitflush=' => 'bool', + 'waitsearcher=' => 'bool', + ), + 'SolrClient::deleteById' => + array ( + 0 => 'SolrUpdateResponse', + 'id' => 'string', + ), + 'SolrClient::deleteByIds' => + array ( + 0 => 'SolrUpdateResponse', + 'ids' => 'array', + ), + 'SolrClient::deleteByQueries' => + array ( + 0 => 'SolrUpdateResponse', + 'queries' => 'array', + ), + 'SolrClient::deleteByQuery' => + array ( + 0 => 'SolrUpdateResponse', + 'query' => 'string', + ), + 'SolrClient::getById' => + array ( + 0 => 'SolrQueryResponse', + 'id' => 'string', + ), + 'SolrClient::getByIds' => + array ( + 0 => 'SolrQueryResponse', + 'ids' => 'array', + ), + 'SolrClient::getDebug' => + array ( + 0 => 'string', + ), + 'SolrClient::getOptions' => + array ( + 0 => 'array', + ), + 'SolrClient::optimize' => + array ( + 0 => 'SolrUpdateResponse', + 'maxsegments=' => 'int', + 'waitflush=' => 'bool', + 'waitsearcher=' => 'bool', + ), + 'SolrClient::ping' => + array ( + 0 => 'SolrPingResponse', + ), + 'SolrClient::query' => + array ( + 0 => 'SolrQueryResponse', + 'query' => 'SolrParams', + ), + 'SolrClient::request' => + array ( + 0 => 'SolrUpdateResponse', + 'raw_request' => 'string', + ), + 'SolrClient::rollback' => + array ( + 0 => 'SolrUpdateResponse', + ), + 'SolrClient::setResponseWriter' => + array ( + 0 => 'void', + 'responsewriter' => 'string', + ), + 'SolrClient::setServlet' => + array ( + 0 => 'bool', + 'type' => 'int', + 'value' => 'string', + ), + 'SolrClient::system' => + array ( + 0 => 'SolrGenericResponse', + ), + 'SolrClient::threads' => + array ( + 0 => 'SolrGenericResponse', + ), + 'SolrClientException::__clone' => + array ( + 0 => 'void', + ), + 'SolrClientException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrClientException::__toString' => + array ( + 0 => 'string', + ), + 'SolrClientException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrClientException::getCode' => + array ( + 0 => 'int', + ), + 'SolrClientException::getFile' => + array ( + 0 => 'string', + ), + 'SolrClientException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrClientException::getLine' => + array ( + 0 => 'int', + ), + 'SolrClientException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrClientException::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'SolrClientException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrClientException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::__construct' => + array ( + 0 => 'void', + 'field' => 'string', + ), + 'SolrCollapseFunction::__toString' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getField' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getHint' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getMax' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getMin' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getNullPolicy' => + array ( + 0 => 'string', + ), + 'SolrCollapseFunction::getSize' => + array ( + 0 => 'int', + ), + 'SolrCollapseFunction::setField' => + array ( + 0 => 'SolrCollapseFunction', + 'fieldName' => 'string', + ), + 'SolrCollapseFunction::setHint' => + array ( + 0 => 'SolrCollapseFunction', + 'hint' => 'string', + ), + 'SolrCollapseFunction::setMax' => + array ( + 0 => 'SolrCollapseFunction', + 'max' => 'string', + ), + 'SolrCollapseFunction::setMin' => + array ( + 0 => 'SolrCollapseFunction', + 'min' => 'string', + ), + 'SolrCollapseFunction::setNullPolicy' => + array ( + 0 => 'SolrCollapseFunction', + 'nullPolicy' => 'string', + ), + 'SolrCollapseFunction::setSize' => + array ( + 0 => 'SolrCollapseFunction', + 'size' => 'int', + ), + 'SolrDisMaxQuery::__construct' => + array ( + 0 => 'void', + 'q=' => 'string', + ), + 'SolrDisMaxQuery::__destruct' => + array ( + 0 => 'void', + ), + 'SolrDisMaxQuery::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addBigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'value' => 'string', + 'boost=' => 'string', + ), + 'SolrDisMaxQuery::addExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::addExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order' => 'string', + ), + 'SolrDisMaxQuery::addFacetDateField' => + array ( + 0 => 'SolrQuery', + 'dateField' => 'string', + ), + 'SolrDisMaxQuery::addFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::addFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addFacetQuery' => + array ( + 0 => 'SolrQuery', + 'facetQuery' => 'string', + ), + 'SolrDisMaxQuery::addField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::addGroupField' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupFunction' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addGroupSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order' => 'int', + ), + 'SolrDisMaxQuery::addHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addMltQueryField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'boost' => 'float', + ), + 'SolrDisMaxQuery::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrDisMaxQuery::addPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addQueryField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost=' => 'string', + ), + 'SolrDisMaxQuery::addSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrDisMaxQuery::addStatsFacet' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::addTrigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + 'boost' => 'string', + 'slop=' => 'string', + ), + 'SolrDisMaxQuery::addUserField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::collapse' => + array ( + 0 => 'SolrQuery', + 'collapseFunction' => 'SolrCollapseFunction', + ), + 'SolrDisMaxQuery::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrDisMaxQuery::getExpand' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getExpandFilterQueries' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getExpandQuery' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getExpandRows' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getExpandSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacet' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getFacetDateEnd' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacetDateGap' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateHardEnd' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateOther' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetDateStart' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getFacetLimit' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMethod' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMinCount' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetMissing' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetOffset' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetPrefix' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFacetQueries' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getFacetSort' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getFields' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getFilterQueries' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getGroup' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupCachePercent' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getGroupFacet' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupFormat' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getGroupFunctions' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupLimit' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getGroupMain' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupNGroups' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupOffset' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getGroupQueries' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getGroupTruncate' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlight' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightAlternateField' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getHighlightFormatter' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFragmenter' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightFragsize' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getHighlightMergeContiguous' => + array ( + 0 => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getHighlightRegexPattern' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getHighlightRegexSlop' => + array ( + 0 => 'float', + ), + 'SolrDisMaxQuery::getHighlightRequireFieldMatch' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getHighlightSimplePost' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightSimplePre' => + array ( + 0 => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightSnippets' => + array ( + 0 => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMlt' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMltBoost' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getMltCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getMltMaxNumQueryTerms' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMaxNumTokens' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMaxWordLength' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinDocFrequency' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinTermFrequency' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltMinWordLength' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getMltQueryFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getParam' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrDisMaxQuery::getParams' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getQuery' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getRows' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getSortFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getStart' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getStats' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getStatsFacets' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getStatsFields' => + array ( + 0 => 'array', + ), + 'SolrDisMaxQuery::getTerms' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsField' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsIncludeLowerBound' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsIncludeUpperBound' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsLimit' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsLowerBound' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsMaxCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsMinCount' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsPrefix' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTermsReturnRaw' => + array ( + 0 => 'bool', + ), + 'SolrDisMaxQuery::getTermsSort' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::getTermsUpperBound' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::getTimeAllowed' => + array ( + 0 => 'int', + ), + 'SolrDisMaxQuery::removeBigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::removeExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetDateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::removeFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFacetQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::removeField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrDisMaxQuery::removeHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeMltQueryField' => + array ( + 0 => 'SolrQuery', + 'queryField' => 'string', + ), + 'SolrDisMaxQuery::removePhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeQueryField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeStatsFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::removeStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeTrigramPhraseField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::removeUserField' => + array ( + 0 => 'SolrDisMaxQuery', + 'field' => 'string', + ), + 'SolrDisMaxQuery::serialize' => + array ( + 0 => 'string', + ), + 'SolrDisMaxQuery::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrDisMaxQuery::setBigramPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setBigramPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setBoostFunction' => + array ( + 0 => 'SolrDisMaxQuery', + 'function' => 'string', + ), + 'SolrDisMaxQuery::setBoostQuery' => + array ( + 0 => 'SolrDisMaxQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setEchoHandler' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setEchoParams' => + array ( + 0 => 'SolrQuery', + 'type' => 'string', + ), + 'SolrDisMaxQuery::setExpand' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setExpandQuery' => + array ( + 0 => 'SolrQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setExpandRows' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setExplainOther' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrDisMaxQuery::setFacet' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setFacetDateEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateGap' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateHardEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetDateStart' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMethod' => + array ( + 0 => 'SolrQuery', + 'method' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMinCount' => + array ( + 0 => 'SolrQuery', + 'mincount' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetMissing' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetOffset' => + array ( + 0 => 'SolrQuery', + 'offset' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setFacetSort' => + array ( + 0 => 'SolrQuery', + 'facetSort' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setGroup' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupCachePercent' => + array ( + 0 => 'SolrQuery', + 'percent' => 'int', + ), + 'SolrDisMaxQuery::setGroupFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupFormat' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setGroupLimit' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setGroupMain' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setGroupNGroups' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setGroupOffset' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setGroupTruncate' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrDisMaxQuery::setHighlight' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightAlternateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFormatter' => + array ( + 0 => 'SolrQuery', + 'formatter' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFragmenter' => + array ( + 0 => 'SolrQuery', + 'fragmenter' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightFragsize' => + array ( + 0 => 'SolrQuery', + 'size' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => + array ( + 0 => 'SolrQuery', + 'fieldLength' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setHighlightMergeContiguous' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'maxAnalyzedChars' => 'int', + ), + 'SolrDisMaxQuery::setHighlightRegexPattern' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setHighlightRegexSlop' => + array ( + 0 => 'SolrQuery', + 'factor' => 'float', + ), + 'SolrDisMaxQuery::setHighlightRequireFieldMatch' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setHighlightSimplePost' => + array ( + 0 => 'SolrQuery', + 'simplePost' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightSimplePre' => + array ( + 0 => 'SolrQuery', + 'simplePre' => 'string', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightSnippets' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + 'field_override' => 'string', + ), + 'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMinimumMatch' => + array ( + 0 => 'SolrDisMaxQuery', + 'value' => 'string', + ), + 'SolrDisMaxQuery::setMlt' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMltBoost' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setMltCount' => + array ( + 0 => 'SolrQuery', + 'count' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxNumQueryTerms' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxNumTokens' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrDisMaxQuery::setMltMaxWordLength' => + array ( + 0 => 'SolrQuery', + 'maxWordLength' => 'int', + ), + 'SolrDisMaxQuery::setMltMinDocFrequency' => + array ( + 0 => 'SolrQuery', + 'minDocFrequency' => 'int', + ), + 'SolrDisMaxQuery::setMltMinTermFrequency' => + array ( + 0 => 'SolrQuery', + 'minTermFrequency' => 'int', + ), + 'SolrDisMaxQuery::setMltMinWordLength' => + array ( + 0 => 'SolrQuery', + 'minWordLength' => 'int', + ), + 'SolrDisMaxQuery::setOmitHeader' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrDisMaxQuery::setPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setQuery' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrDisMaxQuery::setQueryAlt' => + array ( + 0 => 'SolrDisMaxQuery', + 'q' => 'string', + ), + 'SolrDisMaxQuery::setQueryPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setRows' => + array ( + 0 => 'SolrQuery', + 'rows' => 'int', + ), + 'SolrDisMaxQuery::setShowDebugInfo' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setStart' => + array ( + 0 => 'SolrQuery', + 'start' => 'int', + ), + 'SolrDisMaxQuery::setStats' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTerms' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsField' => + array ( + 0 => 'SolrQuery', + 'fieldname' => 'string', + ), + 'SolrDisMaxQuery::setTermsIncludeLowerBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsIncludeUpperBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + ), + 'SolrDisMaxQuery::setTermsLowerBound' => + array ( + 0 => 'SolrQuery', + 'lowerBound' => 'string', + ), + 'SolrDisMaxQuery::setTermsMaxCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrDisMaxQuery::setTermsMinCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrDisMaxQuery::setTermsPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + ), + 'SolrDisMaxQuery::setTermsReturnRaw' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrDisMaxQuery::setTermsSort' => + array ( + 0 => 'SolrQuery', + 'sortType' => 'int', + ), + 'SolrDisMaxQuery::setTermsUpperBound' => + array ( + 0 => 'SolrQuery', + 'upperBound' => 'string', + ), + 'SolrDisMaxQuery::setTieBreaker' => + array ( + 0 => 'SolrDisMaxQuery', + 'tieBreaker' => 'string', + ), + 'SolrDisMaxQuery::setTimeAllowed' => + array ( + 0 => 'SolrQuery', + 'timeAllowed' => 'int', + ), + 'SolrDisMaxQuery::setTrigramPhraseFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::setTrigramPhraseSlop' => + array ( + 0 => 'SolrDisMaxQuery', + 'slop' => 'string', + ), + 'SolrDisMaxQuery::setUserFields' => + array ( + 0 => 'SolrDisMaxQuery', + 'fields' => 'string', + ), + 'SolrDisMaxQuery::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrDisMaxQuery::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrDisMaxQuery::useDisMaxQueryParser' => + array ( + 0 => 'SolrDisMaxQuery', + ), + 'SolrDisMaxQuery::useEDisMaxQueryParser' => + array ( + 0 => 'SolrDisMaxQuery', + ), + 'SolrDocument::__clone' => + array ( + 0 => 'void', + ), + 'SolrDocument::__construct' => + array ( + 0 => 'void', + ), + 'SolrDocument::__destruct' => + array ( + 0 => 'void', + ), + 'SolrDocument::__get' => + array ( + 0 => 'SolrDocumentField', + 'fieldname' => 'string', + ), + 'SolrDocument::__isset' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::__set' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::__unset' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::addField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::clear' => + array ( + 0 => 'bool', + ), + 'SolrDocument::current' => + array ( + 0 => 'SolrDocumentField', + ), + 'SolrDocument::deleteField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::fieldExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::getChildDocuments' => + array ( + 0 => 'array', + ), + 'SolrDocument::getChildDocumentsCount' => + array ( + 0 => 'int', + ), + 'SolrDocument::getField' => + array ( + 0 => 'SolrDocumentField|false', + 'fieldname' => 'string', + ), + 'SolrDocument::getFieldCount' => + array ( + 0 => 'false|int', + ), + 'SolrDocument::getFieldNames' => + array ( + 0 => 'array|false', + ), + 'SolrDocument::getInputDocument' => + array ( + 0 => 'SolrInputDocument', + ), + 'SolrDocument::hasChildDocuments' => + array ( + 0 => 'bool', + ), + 'SolrDocument::key' => + array ( + 0 => 'string', + ), + 'SolrDocument::merge' => + array ( + 0 => 'bool', + 'sourcedoc' => 'solrdocument', + 'overwrite=' => 'bool', + ), + 'SolrDocument::next' => + array ( + 0 => 'void', + ), + 'SolrDocument::offsetExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrDocument::offsetGet' => + array ( + 0 => 'SolrDocumentField', + 'fieldname' => 'string', + ), + 'SolrDocument::offsetSet' => + array ( + 0 => 'void', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + ), + 'SolrDocument::offsetUnset' => + array ( + 0 => 'void', + 'fieldname' => 'string', + ), + 'SolrDocument::reset' => + array ( + 0 => 'bool', + ), + 'SolrDocument::rewind' => + array ( + 0 => 'void', + ), + 'SolrDocument::serialize' => + array ( + 0 => 'string', + ), + 'SolrDocument::sort' => + array ( + 0 => 'bool', + 'sortorderby' => 'int', + 'sortdirection=' => 'int', + ), + 'SolrDocument::toArray' => + array ( + 0 => 'array', + ), + 'SolrDocument::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrDocument::valid' => + array ( + 0 => 'bool', + ), + 'SolrDocumentField::__construct' => + array ( + 0 => 'void', + ), + 'SolrDocumentField::__destruct' => + array ( + 0 => 'void', + ), + 'SolrException::__clone' => + array ( + 0 => 'void', + ), + 'SolrException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrException::__toString' => + array ( + 0 => 'string', + ), + 'SolrException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrException::getCode' => + array ( + 0 => 'int', + ), + 'SolrException::getFile' => + array ( + 0 => 'string', + ), + 'SolrException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrException::getLine' => + array ( + 0 => 'int', + ), + 'SolrException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrGenericResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrGenericResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrGenericResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrGenericResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrGenericResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrGenericResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrIllegalArgumentException::__clone' => + array ( + 0 => 'void', + ), + 'SolrIllegalArgumentException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrIllegalArgumentException::__toString' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrIllegalArgumentException::getCode' => + array ( + 0 => 'int', + ), + 'SolrIllegalArgumentException::getFile' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrIllegalArgumentException::getLine' => + array ( + 0 => 'int', + ), + 'SolrIllegalArgumentException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrIllegalArgumentException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrIllegalArgumentException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrIllegalArgumentException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::__clone' => + array ( + 0 => 'void', + ), + 'SolrIllegalOperationException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrIllegalOperationException::__toString' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrIllegalOperationException::getCode' => + array ( + 0 => 'int', + ), + 'SolrIllegalOperationException::getFile' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrIllegalOperationException::getLine' => + array ( + 0 => 'int', + ), + 'SolrIllegalOperationException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrIllegalOperationException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrIllegalOperationException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrIllegalOperationException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrInputDocument::__clone' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::__construct' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::__destruct' => + array ( + 0 => 'void', + ), + 'SolrInputDocument::addChildDocument' => + array ( + 0 => 'void', + 'child' => 'SolrInputDocument', + ), + 'SolrInputDocument::addChildDocuments' => + array ( + 0 => 'void', + 'docs' => 'array', + ), + 'SolrInputDocument::addField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldvalue' => 'string', + 'fieldboostvalue=' => 'float', + ), + 'SolrInputDocument::clear' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::deleteField' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrInputDocument::fieldExists' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getBoost' => + array ( + 0 => 'false|float', + ), + 'SolrInputDocument::getChildDocuments' => + array ( + 0 => 'array', + ), + 'SolrInputDocument::getChildDocumentsCount' => + array ( + 0 => 'int', + ), + 'SolrInputDocument::getField' => + array ( + 0 => 'SolrDocumentField|false', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getFieldBoost' => + array ( + 0 => 'false|float', + 'fieldname' => 'string', + ), + 'SolrInputDocument::getFieldCount' => + array ( + 0 => 'false|int', + ), + 'SolrInputDocument::getFieldNames' => + array ( + 0 => 'array|false', + ), + 'SolrInputDocument::hasChildDocuments' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::merge' => + array ( + 0 => 'bool', + 'sourcedoc' => 'SolrInputDocument', + 'overwrite=' => 'bool', + ), + 'SolrInputDocument::reset' => + array ( + 0 => 'bool', + ), + 'SolrInputDocument::setBoost' => + array ( + 0 => 'bool', + 'documentboostvalue' => 'float', + ), + 'SolrInputDocument::setFieldBoost' => + array ( + 0 => 'bool', + 'fieldname' => 'string', + 'fieldboostvalue' => 'float', + ), + 'SolrInputDocument::sort' => + array ( + 0 => 'bool', + 'sortorderby' => 'int', + 'sortdirection=' => 'int', + ), + 'SolrInputDocument::toArray' => + array ( + 0 => 'array|false', + ), + 'SolrModifiableParams::__construct' => + array ( + 0 => 'void', + ), + 'SolrModifiableParams::__destruct' => + array ( + 0 => 'void', + ), + 'SolrModifiableParams::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrModifiableParams::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrModifiableParams::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrModifiableParams::getParam' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrModifiableParams::getParams' => + array ( + 0 => 'array', + ), + 'SolrModifiableParams::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrModifiableParams::serialize' => + array ( + 0 => 'string', + ), + 'SolrModifiableParams::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrModifiableParams::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrModifiableParams::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrModifiableParams::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrObject::__construct' => + array ( + 0 => 'void', + ), + 'SolrObject::__destruct' => + array ( + 0 => 'void', + ), + 'SolrObject::getPropertyNames' => + array ( + 0 => 'array', + ), + 'SolrObject::offsetExists' => + array ( + 0 => 'bool', + 'property_name' => 'string', + ), + 'SolrObject::offsetGet' => + array ( + 0 => 'SolrDocumentField', + 'property_name' => 'string', + ), + 'SolrObject::offsetSet' => + array ( + 0 => 'void', + 'property_name' => 'string', + 'property_value' => 'string', + ), + 'SolrObject::offsetUnset' => + array ( + 0 => 'void', + 'property_name' => 'string', + ), + 'SolrParams::__construct' => + array ( + 0 => 'void', + ), + 'SolrParams::add' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::addParam' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrParams::getParam' => + array ( + 0 => 'mixed', + 'param_name=' => 'string', + ), + 'SolrParams::getParams' => + array ( + 0 => 'array', + ), + 'SolrParams::getPreparedParams' => + array ( + 0 => 'array', + ), + 'SolrParams::serialize' => + array ( + 0 => 'string', + ), + 'SolrParams::set' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::setParam' => + array ( + 0 => 'SolrParams|false', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrParams::toString' => + array ( + 0 => 'false|string', + 'url_encode=' => 'bool', + ), + 'SolrParams::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrPingResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrPingResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrPingResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrPingResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::getResponse' => + array ( + 0 => 'string', + ), + 'SolrPingResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrPingResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrQuery::__construct' => + array ( + 0 => 'void', + 'q=' => 'string', + ), + 'SolrQuery::__destruct' => + array ( + 0 => 'void', + ), + 'SolrQuery::add' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrQuery::addExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::addExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'string', + ), + 'SolrQuery::addFacetDateField' => + array ( + 0 => 'SolrQuery', + 'datefield' => 'string', + ), + 'SolrQuery::addFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::addFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addFacetQuery' => + array ( + 0 => 'SolrQuery', + 'facetquery' => 'string', + ), + 'SolrQuery::addField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::addGroupField' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupFunction' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::addGroupSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrQuery::addHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addMltQueryField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'boost' => 'float', + ), + 'SolrQuery::addParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'string', + ), + 'SolrQuery::addSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'order=' => 'int', + ), + 'SolrQuery::addStatsFacet' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::addStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::collapse' => + array ( + 0 => 'SolrQuery', + 'collapseFunction' => 'SolrCollapseFunction', + ), + 'SolrQuery::get' => + array ( + 0 => 'mixed', + 'param_name' => 'string', + ), + 'SolrQuery::getExpand' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getExpandFilterQueries' => + array ( + 0 => 'array', + ), + 'SolrQuery::getExpandQuery' => + array ( + 0 => 'array', + ), + 'SolrQuery::getExpandRows' => + array ( + 0 => 'int', + ), + 'SolrQuery::getExpandSortFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacet' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getFacetDateEnd' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacetDateGap' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateHardEnd' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateOther' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetDateStart' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getFacetLimit' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMethod' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMinCount' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetMissing' => + array ( + 0 => 'bool|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetOffset' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetPrefix' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getFacetQueries' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getFacetSort' => + array ( + 0 => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::getFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getFilterQueries' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getGroup' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupCachePercent' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupFacet' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupFormat' => + array ( + 0 => 'string', + ), + 'SolrQuery::getGroupFunctions' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupLimit' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupMain' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupNGroups' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getGroupOffset' => + array ( + 0 => 'int', + ), + 'SolrQuery::getGroupQueries' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupSortFields' => + array ( + 0 => 'array', + ), + 'SolrQuery::getGroupTruncate' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getHighlight' => + array ( + 0 => 'bool', + ), + 'SolrQuery::getHighlightAlternateField' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getHighlightFormatter' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFragmenter' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightFragsize' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightHighlightMultiTerm' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getHighlightMaxAlternateFieldLength' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightMaxAnalyzedChars' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getHighlightMergeContiguous' => + array ( + 0 => 'bool|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getHighlightRegexPattern' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getHighlightRegexSlop' => + array ( + 0 => 'float|null', + ), + 'SolrQuery::getHighlightRequireFieldMatch' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getHighlightSimplePost' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightSimplePre' => + array ( + 0 => 'null|string', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightSnippets' => + array ( + 0 => 'int|null', + 'field_override=' => 'string', + ), + 'SolrQuery::getHighlightUsePhraseHighlighter' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMlt' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMltBoost' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getMltCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getMltMaxNumQueryTerms' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMaxNumTokens' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMaxWordLength' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinDocFrequency' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinTermFrequency' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltMinWordLength' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getMltQueryFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getParam' => + array ( + 0 => 'mixed|null', + 'param_name' => 'string', + ), + 'SolrQuery::getParams' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getPreparedParams' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getQuery' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getRows' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getSortFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getStart' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getStats' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getStatsFacets' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getStatsFields' => + array ( + 0 => 'array|null', + ), + 'SolrQuery::getTerms' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsField' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsIncludeLowerBound' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsIncludeUpperBound' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsLimit' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsLowerBound' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsMaxCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsMinCount' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsPrefix' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTermsReturnRaw' => + array ( + 0 => 'bool|null', + ), + 'SolrQuery::getTermsSort' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::getTermsUpperBound' => + array ( + 0 => 'null|string', + ), + 'SolrQuery::getTimeAllowed' => + array ( + 0 => 'int|null', + ), + 'SolrQuery::removeExpandFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::removeExpandSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetDateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetDateOther' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::removeFacetField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFacetQuery' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::removeField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeFilterQuery' => + array ( + 0 => 'SolrQuery', + 'fq' => 'string', + ), + 'SolrQuery::removeHighlightField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeMltField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeMltQueryField' => + array ( + 0 => 'SolrQuery', + 'queryfield' => 'string', + ), + 'SolrQuery::removeSortField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::removeStatsFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::removeStatsField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + ), + 'SolrQuery::serialize' => + array ( + 0 => 'string', + ), + 'SolrQuery::set' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrQuery::setEchoHandler' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setEchoParams' => + array ( + 0 => 'SolrQuery', + 'type' => 'string', + ), + 'SolrQuery::setExpand' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setExpandQuery' => + array ( + 0 => 'SolrQuery', + 'q' => 'string', + ), + 'SolrQuery::setExpandRows' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setExplainOther' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrQuery::setFacet' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setFacetDateEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateGap' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateHardEnd' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetDateStart' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMethod' => + array ( + 0 => 'SolrQuery', + 'method' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMinCount' => + array ( + 0 => 'SolrQuery', + 'mincount' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetMissing' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetOffset' => + array ( + 0 => 'SolrQuery', + 'offset' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setFacetSort' => + array ( + 0 => 'SolrQuery', + 'facetsort' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setGroup' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupCachePercent' => + array ( + 0 => 'SolrQuery', + 'percent' => 'int', + ), + 'SolrQuery::setGroupFacet' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupFormat' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setGroupLimit' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setGroupMain' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setGroupNGroups' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setGroupOffset' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setGroupTruncate' => + array ( + 0 => 'SolrQuery', + 'value' => 'bool', + ), + 'SolrQuery::setHighlight' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightAlternateField' => + array ( + 0 => 'SolrQuery', + 'field' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFormatter' => + array ( + 0 => 'SolrQuery', + 'formatter' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFragmenter' => + array ( + 0 => 'SolrQuery', + 'fragmenter' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightFragsize' => + array ( + 0 => 'SolrQuery', + 'size' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightHighlightMultiTerm' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightMaxAlternateFieldLength' => + array ( + 0 => 'SolrQuery', + 'fieldlength' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setHighlightMergeContiguous' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightRegexMaxAnalyzedChars' => + array ( + 0 => 'SolrQuery', + 'maxanalyzedchars' => 'int', + ), + 'SolrQuery::setHighlightRegexPattern' => + array ( + 0 => 'SolrQuery', + 'value' => 'string', + ), + 'SolrQuery::setHighlightRegexSlop' => + array ( + 0 => 'SolrQuery', + 'factor' => 'float', + ), + 'SolrQuery::setHighlightRequireFieldMatch' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setHighlightSimplePost' => + array ( + 0 => 'SolrQuery', + 'simplepost' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightSimplePre' => + array ( + 0 => 'SolrQuery', + 'simplepre' => 'string', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightSnippets' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + 'field_override=' => 'string', + ), + 'SolrQuery::setHighlightUsePhraseHighlighter' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMlt' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMltBoost' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setMltCount' => + array ( + 0 => 'SolrQuery', + 'count' => 'int', + ), + 'SolrQuery::setMltMaxNumQueryTerms' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setMltMaxNumTokens' => + array ( + 0 => 'SolrQuery', + 'value' => 'int', + ), + 'SolrQuery::setMltMaxWordLength' => + array ( + 0 => 'SolrQuery', + 'maxwordlength' => 'int', + ), + 'SolrQuery::setMltMinDocFrequency' => + array ( + 0 => 'SolrQuery', + 'mindocfrequency' => 'int', + ), + 'SolrQuery::setMltMinTermFrequency' => + array ( + 0 => 'SolrQuery', + 'mintermfrequency' => 'int', + ), + 'SolrQuery::setMltMinWordLength' => + array ( + 0 => 'SolrQuery', + 'minwordlength' => 'int', + ), + 'SolrQuery::setOmitHeader' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setParam' => + array ( + 0 => 'SolrParams', + 'name' => 'string', + 'value' => 'mixed', + ), + 'SolrQuery::setQuery' => + array ( + 0 => 'SolrQuery', + 'query' => 'string', + ), + 'SolrQuery::setRows' => + array ( + 0 => 'SolrQuery', + 'rows' => 'int', + ), + 'SolrQuery::setShowDebugInfo' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setStart' => + array ( + 0 => 'SolrQuery', + 'start' => 'int', + ), + 'SolrQuery::setStats' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTerms' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsField' => + array ( + 0 => 'SolrQuery', + 'fieldname' => 'string', + ), + 'SolrQuery::setTermsIncludeLowerBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsIncludeUpperBound' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsLimit' => + array ( + 0 => 'SolrQuery', + 'limit' => 'int', + ), + 'SolrQuery::setTermsLowerBound' => + array ( + 0 => 'SolrQuery', + 'lowerbound' => 'string', + ), + 'SolrQuery::setTermsMaxCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrQuery::setTermsMinCount' => + array ( + 0 => 'SolrQuery', + 'frequency' => 'int', + ), + 'SolrQuery::setTermsPrefix' => + array ( + 0 => 'SolrQuery', + 'prefix' => 'string', + ), + 'SolrQuery::setTermsReturnRaw' => + array ( + 0 => 'SolrQuery', + 'flag' => 'bool', + ), + 'SolrQuery::setTermsSort' => + array ( + 0 => 'SolrQuery', + 'sorttype' => 'int', + ), + 'SolrQuery::setTermsUpperBound' => + array ( + 0 => 'SolrQuery', + 'upperbound' => 'string', + ), + 'SolrQuery::setTimeAllowed' => + array ( + 0 => 'SolrQuery', + 'timeallowed' => 'int', + ), + 'SolrQuery::toString' => + array ( + 0 => 'string', + 'url_encode=' => 'bool', + ), + 'SolrQuery::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'SolrQueryResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrQueryResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrQueryResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrQueryResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrQueryResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrQueryResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrQueryResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrServerException::__clone' => + array ( + 0 => 'void', + ), + 'SolrServerException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'SolrServerException::__toString' => + array ( + 0 => 'string', + ), + 'SolrServerException::__wakeup' => + array ( + 0 => 'void', + ), + 'SolrServerException::getCode' => + array ( + 0 => 'int', + ), + 'SolrServerException::getFile' => + array ( + 0 => 'string', + ), + 'SolrServerException::getInternalInfo' => + array ( + 0 => 'array', + ), + 'SolrServerException::getLine' => + array ( + 0 => 'int', + ), + 'SolrServerException::getMessage' => + array ( + 0 => 'string', + ), + 'SolrServerException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'SolrServerException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'SolrServerException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::__construct' => + array ( + 0 => 'void', + ), + 'SolrUpdateResponse::__destruct' => + array ( + 0 => 'void', + ), + 'SolrUpdateResponse::getDigestedResponse' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getHttpStatus' => + array ( + 0 => 'int', + ), + 'SolrUpdateResponse::getHttpStatusMessage' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawRequest' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawRequestHeaders' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawResponse' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRawResponseHeaders' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getRequestUrl' => + array ( + 0 => 'string', + ), + 'SolrUpdateResponse::getResponse' => + array ( + 0 => 'SolrObject', + ), + 'SolrUpdateResponse::setParseMode' => + array ( + 0 => 'bool', + 'parser_mode=' => 'int', + ), + 'SolrUpdateResponse::success' => + array ( + 0 => 'bool', + ), + 'SolrUtils::digestXmlResponse' => + array ( + 0 => 'SolrObject', + 'xmlresponse' => 'string', + 'parse_mode=' => 'int', + ), + 'SolrUtils::escapeQueryChars' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'SolrUtils::getSolrVersion' => + array ( + 0 => 'string', + ), + 'SolrUtils::queryPhrase' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SphinxClient::__construct' => + array ( + 0 => 'void', + ), + 'SphinxClient::addQuery' => + array ( + 0 => 'int', + 'query' => 'string', + 'index=' => 'string', + 'comment=' => 'string', + ), + 'SphinxClient::buildExcerpts' => + array ( + 0 => 'array', + 'docs' => 'array', + 'index' => 'string', + 'words' => 'string', + 'opts=' => 'array', + ), + 'SphinxClient::buildKeywords' => + array ( + 0 => 'array', + 'query' => 'string', + 'index' => 'string', + 'hits' => 'bool', + ), + 'SphinxClient::close' => + array ( + 0 => 'bool', + ), + 'SphinxClient::escapeString' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'SphinxClient::getLastError' => + array ( + 0 => 'string', + ), + 'SphinxClient::getLastWarning' => + array ( + 0 => 'string', + ), + 'SphinxClient::open' => + array ( + 0 => 'bool', + ), + 'SphinxClient::query' => + array ( + 0 => 'array', + 'query' => 'string', + 'index=' => 'string', + 'comment=' => 'string', + ), + 'SphinxClient::resetFilters' => + array ( + 0 => 'void', + ), + 'SphinxClient::resetGroupBy' => + array ( + 0 => 'void', + ), + 'SphinxClient::runQueries' => + array ( + 0 => 'array', + ), + 'SphinxClient::setArrayResult' => + array ( + 0 => 'bool', + 'array_result' => 'bool', + ), + 'SphinxClient::setConnectTimeout' => + array ( + 0 => 'bool', + 'timeout' => 'float', + ), + 'SphinxClient::setFieldWeights' => + array ( + 0 => 'bool', + 'weights' => 'array', + ), + 'SphinxClient::setFilter' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'values' => 'array', + 'exclude=' => 'bool', + ), + 'SphinxClient::setFilterFloatRange' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'min' => 'float', + 'max' => 'float', + 'exclude=' => 'bool', + ), + 'SphinxClient::setFilterRange' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'min' => 'int', + 'max' => 'int', + 'exclude=' => 'bool', + ), + 'SphinxClient::setGeoAnchor' => + array ( + 0 => 'bool', + 'attrlat' => 'string', + 'attrlong' => 'string', + 'latitude' => 'float', + 'longitude' => 'float', + ), + 'SphinxClient::setGroupBy' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'func' => 'int', + 'groupsort=' => 'string', + ), + 'SphinxClient::setGroupDistinct' => + array ( + 0 => 'bool', + 'attribute' => 'string', + ), + 'SphinxClient::setIDRange' => + array ( + 0 => 'bool', + 'min' => 'int', + 'max' => 'int', + ), + 'SphinxClient::setIndexWeights' => + array ( + 0 => 'bool', + 'weights' => 'array', + ), + 'SphinxClient::setLimits' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'limit' => 'int', + 'max_matches=' => 'int', + 'cutoff=' => 'int', + ), + 'SphinxClient::setMatchMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'SphinxClient::setMaxQueryTime' => + array ( + 0 => 'bool', + 'qtime' => 'int', + ), + 'SphinxClient::setOverride' => + array ( + 0 => 'bool', + 'attribute' => 'string', + 'type' => 'int', + 'values' => 'array', + ), + 'SphinxClient::setRankingMode' => + array ( + 0 => 'bool', + 'ranker' => 'int', + ), + 'SphinxClient::setRetries' => + array ( + 0 => 'bool', + 'count' => 'int', + 'delay=' => 'int', + ), + 'SphinxClient::setSelect' => + array ( + 0 => 'bool', + 'clause' => 'string', + ), + 'SphinxClient::setServer' => + array ( + 0 => 'bool', + 'server' => 'string', + 'port' => 'int', + ), + 'SphinxClient::setSortMode' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'sortby=' => 'string', + ), + 'SphinxClient::status' => + array ( + 0 => 'array', + ), + 'SphinxClient::updateAttributes' => + array ( + 0 => 'int', + 'index' => 'string', + 'attributes' => 'array', + 'values' => 'array', + 'mva=' => 'bool', + ), + 'SplDoublyLinkedList::__construct' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::add' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::bottom' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::count' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::current' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplDoublyLinkedList::key' => + array ( + 0 => 'int', + ), + 'SplDoublyLinkedList::next' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'SplDoublyLinkedList::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'SplDoublyLinkedList::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'SplDoublyLinkedList::pop' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::prev' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::rewind' => + array ( + 0 => 'void', + ), + 'SplDoublyLinkedList::serialize' => + array ( + 0 => 'string', + ), + 'SplDoublyLinkedList::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplDoublyLinkedList::shift' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::top' => + array ( + 0 => 'mixed', + ), + 'SplDoublyLinkedList::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplDoublyLinkedList::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplDoublyLinkedList::valid' => + array ( + 0 => 'bool', + ), + 'SplEnum::__construct' => + array ( + 0 => 'void', + 'initial_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'SplEnum::getConstList' => + array ( + 0 => 'array', + 'include_default=' => 'bool', + ), + 'SplFileInfo::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + ), + 'SplFileInfo::__toString' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getATime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplFileInfo::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getExtension' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'SplFileInfo::getFilename' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getInode' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplFileInfo::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getPath' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'SplFileInfo::getPathname' => + array ( + 0 => 'string', + ), + 'SplFileInfo::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplFileInfo::getSize' => + array ( + 0 => 'false|int', + ), + 'SplFileInfo::getType' => + array ( + 0 => 'false|string', + ), + 'SplFileInfo::isDir' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isFile' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isLink' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isReadable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::isWritable' => + array ( + 0 => 'bool', + ), + 'SplFileInfo::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'SplFileInfo::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileInfo::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'null|resource', + ), + 'SplFileObject::__toString' => + array ( + 0 => 'string', + ), + 'SplFileObject::current' => + array ( + 0 => 'array|false|string', + ), + 'SplFileObject::eof' => + array ( + 0 => 'bool', + ), + 'SplFileObject::fflush' => + array ( + 0 => 'bool', + ), + 'SplFileObject::fgetc' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplFileObject::fgets' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::fgetss' => + array ( + 0 => 'false|string', + 'allowable_tags=' => 'string', + ), + 'SplFileObject::flock' => + array ( + 0 => 'bool', + 'operation' => 'int', + '&w_wouldBlock=' => 'int', + ), + 'SplFileObject::fpassthru' => + array ( + 0 => 'int', + ), + 'SplFileObject::fputcsv' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplFileObject::fread' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'SplFileObject::fscanf' => + array ( + 0 => 'array|int', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'SplFileObject::fseek' => + array ( + 0 => 'int', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'SplFileObject::fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}', + ), + 'SplFileObject::ftell' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::ftruncate' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplFileObject::fwrite' => + array ( + 0 => 'int', + 'data' => 'string', + 'length=' => 'int', + ), + 'SplFileObject::getATime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplFileObject::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getChildren' => + array ( + 0 => 'null', + ), + 'SplFileObject::getCsvControl' => + array ( + 0 => 'array', + ), + 'SplFileObject::getCurrentLine' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::getExtension' => + array ( + 0 => 'string', + ), + 'SplFileObject::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'SplFileObject::getFilename' => + array ( + 0 => 'string', + ), + 'SplFileObject::getFlags' => + array ( + 0 => 'int', + ), + 'SplFileObject::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getInode' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::getMaxLineLen' => + array ( + 0 => 'int', + ), + 'SplFileObject::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getPath' => + array ( + 0 => 'string', + ), + 'SplFileObject::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'SplFileObject::getPathname' => + array ( + 0 => 'string', + ), + 'SplFileObject::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplFileObject::getSize' => + array ( + 0 => 'false|int', + ), + 'SplFileObject::getType' => + array ( + 0 => 'false|string', + ), + 'SplFileObject::hasChildren' => + array ( + 0 => 'false', + ), + 'SplFileObject::isDir' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isFile' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isLink' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isReadable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::isWritable' => + array ( + 0 => 'bool', + ), + 'SplFileObject::key' => + array ( + 0 => 'int', + ), + 'SplFileObject::next' => + array ( + 0 => 'void', + ), + 'SplFileObject::openFile' => + array ( + 0 => 'SplFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'SplFileObject::rewind' => + array ( + 0 => 'void', + ), + 'SplFileObject::seek' => + array ( + 0 => 'void', + 'line' => 'int', + ), + 'SplFileObject::setCsvControl' => + array ( + 0 => 'void', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplFileObject::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'SplFileObject::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplFileObject::setMaxLineLen' => + array ( + 0 => 'void', + 'maxLength' => 'int', + ), + 'SplFileObject::valid' => + array ( + 0 => 'bool', + ), + 'SplFixedArray::__construct' => + array ( + 0 => 'void', + 'size=' => 'int', + ), + 'SplFixedArray::__wakeup' => + array ( + 0 => 'void', + ), + 'SplFixedArray::count' => + array ( + 0 => 'int', + ), + 'SplFixedArray::current' => + array ( + 0 => 'mixed', + ), + 'SplFixedArray::fromArray' => + array ( + 0 => 'SplFixedArray', + 'array' => 'array', + 'preserveKeys=' => 'bool', + ), + 'SplFixedArray::getSize' => + array ( + 0 => 'int', + ), + 'SplFixedArray::key' => + array ( + 0 => 'int', + ), + 'SplFixedArray::next' => + array ( + 0 => 'void', + ), + 'SplFixedArray::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'SplFixedArray::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'SplFixedArray::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplFixedArray::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'int', + ), + 'SplFixedArray::rewind' => + array ( + 0 => 'void', + ), + 'SplFixedArray::setSize' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplFixedArray::toArray' => + array ( + 0 => 'array', + ), + 'SplFixedArray::valid' => + array ( + 0 => 'bool', + ), + 'SplHeap::__construct' => + array ( + 0 => 'void', + ), + 'SplHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplHeap::count' => + array ( + 0 => 'int', + ), + 'SplHeap::current' => + array ( + 0 => 'mixed', + ), + 'SplHeap::extract' => + array ( + 0 => 'mixed', + ), + 'SplHeap::insert' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'SplHeap::isCorrupted' => + array ( + 0 => 'bool', + ), + 'SplHeap::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplHeap::key' => + array ( + 0 => 'int', + ), + 'SplHeap::next' => + array ( + 0 => 'void', + ), + 'SplHeap::recoverFromCorruption' => + array ( + 0 => 'true', + ), + 'SplHeap::rewind' => + array ( + 0 => 'void', + ), + 'SplHeap::top' => + array ( + 0 => 'mixed', + ), + 'SplHeap::valid' => + array ( + 0 => 'bool', + ), + 'SplMaxHeap::__construct' => + array ( + 0 => 'void', + ), + 'SplMaxHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplMinHeap::compare' => + array ( + 0 => 'int', + 'value1' => 'mixed', + 'value2' => 'mixed', + ), + 'SplMinHeap::count' => + array ( + 0 => 'int', + ), + 'SplMinHeap::current' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::extract' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::insert' => + array ( + 0 => 'true', + 'value' => 'mixed', + ), + 'SplMinHeap::isCorrupted' => + array ( + 0 => 'bool', + ), + 'SplMinHeap::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplMinHeap::key' => + array ( + 0 => 'int', + ), + 'SplMinHeap::next' => + array ( + 0 => 'void', + ), + 'SplMinHeap::recoverFromCorruption' => + array ( + 0 => 'true', + ), + 'SplMinHeap::rewind' => + array ( + 0 => 'void', + ), + 'SplMinHeap::top' => + array ( + 0 => 'mixed', + ), + 'SplMinHeap::valid' => + array ( + 0 => 'bool', + ), + 'SplObjectStorage::__construct' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::addAll' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::attach' => + array ( + 0 => 'void', + 'object' => 'object', + 'info=' => 'mixed', + ), + 'SplObjectStorage::contains' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'SplObjectStorage::count' => + array ( + 0 => 'int', + 'mode=' => 'int', + ), + 'SplObjectStorage::current' => + array ( + 0 => 'object', + ), + 'SplObjectStorage::detach' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SplObjectStorage::getHash' => + array ( + 0 => 'string', + 'object' => 'object', + ), + 'SplObjectStorage::getInfo' => + array ( + 0 => 'mixed', + ), + 'SplObjectStorage::key' => + array ( + 0 => 'int', + ), + 'SplObjectStorage::next' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::offsetExists' => + array ( + 0 => 'bool', + 'object' => 'object', + ), + 'SplObjectStorage::offsetGet' => + array ( + 0 => 'mixed', + 'object' => 'object', + ), + 'SplObjectStorage::offsetSet' => + array ( + 0 => 'void', + 'object' => 'object', + 'info=' => 'mixed', + ), + 'SplObjectStorage::offsetUnset' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'SplObjectStorage::removeAll' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::removeAllExcept' => + array ( + 0 => 'int', + 'storage' => 'SplObjectStorage', + ), + 'SplObjectStorage::rewind' => + array ( + 0 => 'void', + ), + 'SplObjectStorage::serialize' => + array ( + 0 => 'string', + ), + 'SplObjectStorage::setInfo' => + array ( + 0 => 'void', + 'info' => 'mixed', + ), + 'SplObjectStorage::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplObjectStorage::valid' => + array ( + 0 => 'bool', + ), + 'SplObserver::update' => + array ( + 0 => 'void', + 'subject' => 'SplSubject', + ), + 'SplPriorityQueue::__construct' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::compare' => + array ( + 0 => 'int', + 'priority1' => 'mixed', + 'priority2' => 'mixed', + ), + 'SplPriorityQueue::count' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::current' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::extract' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::getExtractFlags' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::insert' => + array ( + 0 => 'bool', + 'value' => 'mixed', + 'priority' => 'mixed', + ), + 'SplPriorityQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplPriorityQueue::key' => + array ( + 0 => 'int', + ), + 'SplPriorityQueue::next' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::recoverFromCorruption' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::rewind' => + array ( + 0 => 'void', + ), + 'SplPriorityQueue::setExtractFlags' => + array ( + 0 => 'int', + 'flags' => 'int', + ), + 'SplPriorityQueue::top' => + array ( + 0 => 'mixed', + ), + 'SplPriorityQueue::valid' => + array ( + 0 => 'bool', + ), + 'SplQueue::dequeue' => + array ( + 0 => 'mixed', + ), + 'SplQueue::enqueue' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplQueue::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplQueue::key' => + array ( + 0 => 'int', + ), + 'SplQueue::next' => + array ( + 0 => 'void', + ), + 'SplQueue::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'mixed', + ), + 'SplQueue::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'SplQueue::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplQueue::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'mixed', + ), + 'SplQueue::pop' => + array ( + 0 => 'mixed', + ), + 'SplQueue::prev' => + array ( + 0 => 'void', + ), + 'SplQueue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::rewind' => + array ( + 0 => 'void', + ), + 'SplQueue::serialize' => + array ( + 0 => 'string', + ), + 'SplQueue::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplQueue::shift' => + array ( + 0 => 'mixed', + ), + 'SplQueue::top' => + array ( + 0 => 'mixed', + ), + 'SplQueue::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplQueue::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplQueue::valid' => + array ( + 0 => 'bool', + ), + 'SplStack::__construct' => + array ( + 0 => 'void', + ), + 'SplStack::add' => + array ( + 0 => 'void', + 'index' => 'int', + 'value' => 'mixed', + ), + 'SplStack::bottom' => + array ( + 0 => 'mixed', + ), + 'SplStack::count' => + array ( + 0 => 'int', + ), + 'SplStack::current' => + array ( + 0 => 'mixed', + ), + 'SplStack::getIteratorMode' => + array ( + 0 => 'int', + ), + 'SplStack::isEmpty' => + array ( + 0 => 'bool', + ), + 'SplStack::key' => + array ( + 0 => 'int', + ), + 'SplStack::next' => + array ( + 0 => 'void', + ), + 'SplStack::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'mixed', + ), + 'SplStack::offsetGet' => + array ( + 0 => 'mixed', + 'index' => 'mixed', + ), + 'SplStack::offsetSet' => + array ( + 0 => 'void', + 'index' => 'int|null', + 'value' => 'mixed', + ), + 'SplStack::offsetUnset' => + array ( + 0 => 'void', + 'index' => 'mixed', + ), + 'SplStack::pop' => + array ( + 0 => 'mixed', + ), + 'SplStack::prev' => + array ( + 0 => 'void', + ), + 'SplStack::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplStack::rewind' => + array ( + 0 => 'void', + ), + 'SplStack::serialize' => + array ( + 0 => 'string', + ), + 'SplStack::setIteratorMode' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'SplStack::shift' => + array ( + 0 => 'mixed', + ), + 'SplStack::top' => + array ( + 0 => 'mixed', + ), + 'SplStack::unserialize' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'SplStack::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'SplStack::valid' => + array ( + 0 => 'bool', + ), + 'SplSubject::attach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'SplSubject::detach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'SplSubject::notify' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::__construct' => + array ( + 0 => 'void', + 'maxMemory=' => 'int', + ), + 'SplTempFileObject::__toString' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::current' => + array ( + 0 => 'array|false|string', + ), + 'SplTempFileObject::eof' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::fflush' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::fgetc' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplTempFileObject::fgets' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::fgetss' => + array ( + 0 => 'string', + 'allowable_tags=' => 'string', + ), + 'SplTempFileObject::flock' => + array ( + 0 => 'bool', + 'operation' => 'int', + '&w_wouldBlock=' => 'int', + ), + 'SplTempFileObject::fpassthru' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::fputcsv' => + array ( + 0 => 'false|int', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplTempFileObject::fread' => + array ( + 0 => 'false|string', + 'length' => 'int', + ), + 'SplTempFileObject::fscanf' => + array ( + 0 => 'array|int', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'SplTempFileObject::fseek' => + array ( + 0 => 'int', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'SplTempFileObject::fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}', + ), + 'SplTempFileObject::ftell' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::ftruncate' => + array ( + 0 => 'bool', + 'size' => 'int', + ), + 'SplTempFileObject::fwrite' => + array ( + 0 => 'int', + 'data' => 'string', + 'length=' => 'int', + ), + 'SplTempFileObject::getATime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getBasename' => + array ( + 0 => 'string', + 'suffix=' => 'string', + ), + 'SplTempFileObject::getCTime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getChildren' => + array ( + 0 => 'null', + ), + 'SplTempFileObject::getCsvControl' => + array ( + 0 => 'array', + ), + 'SplTempFileObject::getCurrentLine' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getExtension' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getFileInfo' => + array ( + 0 => 'SplFileInfo', + 'class=' => 'class-string', + ), + 'SplTempFileObject::getFilename' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getFlags' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::getGroup' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getInode' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getLinkTarget' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::getMaxLineLen' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::getMTime' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getOwner' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getPath' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getPathInfo' => + array ( + 0 => 'SplFileInfo|null', + 'class=' => 'class-string', + ), + 'SplTempFileObject::getPathname' => + array ( + 0 => 'string', + ), + 'SplTempFileObject::getPerms' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getRealPath' => + array ( + 0 => 'false|non-falsy-string', + ), + 'SplTempFileObject::getSize' => + array ( + 0 => 'false|int', + ), + 'SplTempFileObject::getType' => + array ( + 0 => 'false|string', + ), + 'SplTempFileObject::hasChildren' => + array ( + 0 => 'false', + ), + 'SplTempFileObject::isDir' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isExecutable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isFile' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isLink' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isReadable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::isWritable' => + array ( + 0 => 'bool', + ), + 'SplTempFileObject::key' => + array ( + 0 => 'int', + ), + 'SplTempFileObject::next' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::openFile' => + array ( + 0 => 'SplTempFileObject', + 'mode=' => 'string', + 'useIncludePath=' => 'bool', + 'context=' => 'resource', + ), + 'SplTempFileObject::rewind' => + array ( + 0 => 'void', + ), + 'SplTempFileObject::seek' => + array ( + 0 => 'void', + 'line' => 'int', + ), + 'SplTempFileObject::setCsvControl' => + array ( + 0 => 'void', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'SplTempFileObject::setFileClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplTempFileObject::setFlags' => + array ( + 0 => 'void', + 'flags' => 'int', + ), + 'SplTempFileObject::setInfoClass' => + array ( + 0 => 'void', + 'class=' => 'class-string', + ), + 'SplTempFileObject::setMaxLineLen' => + array ( + 0 => 'void', + 'maxLength' => 'int', + ), + 'SplTempFileObject::valid' => + array ( + 0 => 'bool', + ), + 'SplType::__construct' => + array ( + 0 => 'void', + 'initial_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'Spoofchecker::__construct' => + array ( + 0 => 'void', + ), + 'Spoofchecker::areConfusable' => + array ( + 0 => 'bool', + 'string1' => 'string', + 'string2' => 'string', + '&w_errorCode=' => 'int', + ), + 'Spoofchecker::isSuspicious' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_errorCode=' => 'int', + ), + 'Spoofchecker::setAllowedLocales' => + array ( + 0 => 'void', + 'locales' => 'string', + ), + 'Spoofchecker::setChecks' => + array ( + 0 => 'void', + 'checks' => 'int', + ), + 'Spoofchecker::setRestrictionLevel' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'Stomp::__construct' => + array ( + 0 => 'void', + 'broker=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::abort' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::ack' => + array ( + 0 => 'bool', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'Stomp::begin' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::commit' => + array ( + 0 => 'bool', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::error' => + array ( + 0 => 'string', + ), + 'Stomp::getReadTimeout' => + array ( + 0 => 'array', + ), + 'Stomp::getSessionId' => + array ( + 0 => 'string', + ), + 'Stomp::hasFrame' => + array ( + 0 => 'bool', + ), + 'Stomp::readFrame' => + array ( + 0 => 'array', + 'class_name=' => 'string', + ), + 'Stomp::send' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'Stomp::setReadTimeout' => + array ( + 0 => 'void', + 'seconds' => 'int', + 'microseconds=' => 'int|null', + ), + 'Stomp::subscribe' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'Stomp::unsubscribe' => + array ( + 0 => 'bool', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'StompException::getDetails' => + array ( + 0 => 'string', + ), + 'StompFrame::__construct' => + array ( + 0 => 'void', + 'command=' => 'string', + 'headers=' => 'array|null', + 'body=' => 'string', + ), + 'Swish::__construct' => + array ( + 0 => 'void', + 'index_names' => 'string', + ), + 'Swish::getMetaList' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'Swish::getPropertyList' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'Swish::prepare' => + array ( + 0 => 'object', + 'query=' => 'string', + ), + 'Swish::query' => + array ( + 0 => 'object', + 'query' => 'string', + ), + 'SwishResult::getMetaList' => + array ( + 0 => 'array', + ), + 'SwishResult::stem' => + array ( + 0 => 'array', + 'word' => 'string', + ), + 'SwishResults::getParsedWords' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'SwishResults::getRemovedStopwords' => + array ( + 0 => 'array', + 'index_name' => 'string', + ), + 'SwishResults::nextResult' => + array ( + 0 => 'object', + ), + 'SwishResults::seekResult' => + array ( + 0 => 'int', + 'position' => 'int', + ), + 'SwishSearch::execute' => + array ( + 0 => 'object', + 'query=' => 'string', + ), + 'SwishSearch::resetLimit' => + array ( + 0 => 'mixed', + ), + 'SwishSearch::setLimit' => + array ( + 0 => 'mixed', + 'property' => 'string', + 'low' => 'string', + 'high' => 'string', + ), + 'SwishSearch::setPhraseDelimiter' => + array ( + 0 => 'mixed', + 'delimiter' => 'string', + ), + 'SwishSearch::setSort' => + array ( + 0 => 'mixed', + 'sort' => 'string', + ), + 'SwishSearch::setStructure' => + array ( + 0 => 'mixed', + 'structure' => 'int', + ), + 'SyncEvent::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'manual=' => 'bool', + ), + 'SyncEvent::fire' => + array ( + 0 => 'bool', + ), + 'SyncEvent::reset' => + array ( + 0 => 'bool', + ), + 'SyncEvent::wait' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncMutex::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'SyncMutex::lock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncMutex::unlock' => + array ( + 0 => 'bool', + 'all=' => 'bool', + ), + 'SyncReaderWriter::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'autounlock=' => 'bool', + ), + 'SyncReaderWriter::readlock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncReaderWriter::readunlock' => + array ( + 0 => 'bool', + ), + 'SyncReaderWriter::writelock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncReaderWriter::writeunlock' => + array ( + 0 => 'bool', + ), + 'SyncSemaphore::__construct' => + array ( + 0 => 'void', + 'name=' => 'string', + 'initialval=' => 'int', + 'autounlock=' => 'bool', + ), + 'SyncSemaphore::lock' => + array ( + 0 => 'bool', + 'wait=' => 'int', + ), + 'SyncSemaphore::unlock' => + array ( + 0 => 'bool', + '&w_prevcount=' => 'int', + ), + 'SyncSharedMemory::__construct' => + array ( + 0 => 'void', + 'name' => 'string', + 'size' => 'int', + ), + 'SyncSharedMemory::first' => + array ( + 0 => 'bool', + ), + 'SyncSharedMemory::read' => + array ( + 0 => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'SyncSharedMemory::size' => + array ( + 0 => 'int', + ), + 'SyncSharedMemory::write' => + array ( + 0 => 'int', + 'string=' => 'string', + 'start=' => 'int', + ), + 'Thread::__construct' => + array ( + 0 => 'void', + ), + 'Thread::addRef' => + array ( + 0 => 'void', + ), + 'Thread::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Thread::count' => + array ( + 0 => 'int', + ), + 'Thread::delRef' => + array ( + 0 => 'void', + ), + 'Thread::detach' => + array ( + 0 => 'void', + ), + 'Thread::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Thread::getCreatorId' => + array ( + 0 => 'int', + ), + 'Thread::getCurrentThread' => + array ( + 0 => 'Thread', + ), + 'Thread::getCurrentThreadId' => + array ( + 0 => 'int', + ), + 'Thread::getRefCount' => + array ( + 0 => 'int', + ), + 'Thread::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Thread::getThreadId' => + array ( + 0 => 'int', + ), + 'Thread::globally' => + array ( + 0 => 'mixed', + ), + 'Thread::isGarbage' => + array ( + 0 => 'bool', + ), + 'Thread::isJoined' => + array ( + 0 => 'bool', + ), + 'Thread::isRunning' => + array ( + 0 => 'bool', + ), + 'Thread::isStarted' => + array ( + 0 => 'bool', + ), + 'Thread::isTerminated' => + array ( + 0 => 'bool', + ), + 'Thread::isWaiting' => + array ( + 0 => 'bool', + ), + 'Thread::join' => + array ( + 0 => 'bool', + ), + 'Thread::kill' => + array ( + 0 => 'void', + ), + 'Thread::lock' => + array ( + 0 => 'bool', + ), + 'Thread::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'mixed', + ), + 'Thread::notify' => + array ( + 0 => 'bool', + ), + 'Thread::notifyOne' => + array ( + 0 => 'bool', + ), + 'Thread::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Thread::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Thread::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Thread::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Thread::pop' => + array ( + 0 => 'bool', + ), + 'Thread::run' => + array ( + 0 => 'void', + ), + 'Thread::setGarbage' => + array ( + 0 => 'void', + ), + 'Thread::shift' => + array ( + 0 => 'bool', + ), + 'Thread::start' => + array ( + 0 => 'bool', + 'options=' => 'int', + ), + 'Thread::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '_=' => 'mixed', + ), + 'Thread::unlock' => + array ( + 0 => 'bool', + ), + 'Thread::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'Threaded::__construct' => + array ( + 0 => 'void', + ), + 'Threaded::addRef' => + array ( + 0 => 'void', + ), + 'Threaded::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Threaded::count' => + array ( + 0 => 'int', + ), + 'Threaded::delRef' => + array ( + 0 => 'void', + ), + 'Threaded::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Threaded::from' => + array ( + 0 => 'Threaded', + 'run' => 'Closure', + 'construct=' => 'Closure', + 'args=' => 'array', + ), + 'Threaded::getRefCount' => + array ( + 0 => 'int', + ), + 'Threaded::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Threaded::isGarbage' => + array ( + 0 => 'bool', + ), + 'Threaded::isRunning' => + array ( + 0 => 'bool', + ), + 'Threaded::isTerminated' => + array ( + 0 => 'bool', + ), + 'Threaded::isWaiting' => + array ( + 0 => 'bool', + ), + 'Threaded::lock' => + array ( + 0 => 'bool', + ), + 'Threaded::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'bool', + ), + 'Threaded::notify' => + array ( + 0 => 'bool', + ), + 'Threaded::notifyOne' => + array ( + 0 => 'bool', + ), + 'Threaded::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Threaded::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Threaded::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Threaded::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Threaded::pop' => + array ( + 0 => 'bool', + ), + 'Threaded::run' => + array ( + 0 => 'void', + ), + 'Threaded::setGarbage' => + array ( + 0 => 'void', + ), + 'Threaded::shift' => + array ( + 0 => 'mixed', + ), + 'Threaded::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '...args=' => 'mixed', + ), + 'Threaded::unlock' => + array ( + 0 => 'bool', + ), + 'Threaded::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'Throwable::__toString' => + array ( + 0 => 'string', + ), + 'Throwable::getCode' => + array ( + 0 => 'int|string', + ), + 'Throwable::getFile' => + array ( + 0 => 'string', + ), + 'Throwable::getLine' => + array ( + 0 => 'int', + ), + 'Throwable::getMessage' => + array ( + 0 => 'string', + ), + 'Throwable::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'Throwable::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Throwable::getTraceAsString' => + array ( + 0 => 'string', + ), + 'TokyoTyrant::__construct' => + array ( + 0 => 'void', + 'host=' => 'string', + 'port=' => 'int', + 'options=' => 'array', + ), + 'TokyoTyrant::add' => + array ( + 0 => 'float|int', + 'key' => 'string', + 'increment' => 'float', + 'type=' => 'int', + ), + 'TokyoTyrant::connect' => + array ( + 0 => 'TokyoTyrant', + 'host' => 'string', + 'port=' => 'int', + 'options=' => 'array', + ), + 'TokyoTyrant::connectUri' => + array ( + 0 => 'TokyoTyrant', + 'uri' => 'string', + ), + 'TokyoTyrant::copy' => + array ( + 0 => 'TokyoTyrant', + 'path' => 'string', + ), + 'TokyoTyrant::ext' => + array ( + 0 => 'string', + 'name' => 'string', + 'options' => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'TokyoTyrant::fwmKeys' => + array ( + 0 => 'array', + 'prefix' => 'string', + 'max_recs' => 'int', + ), + 'TokyoTyrant::get' => + array ( + 0 => 'array', + 'keys' => 'mixed', + ), + 'TokyoTyrant::getIterator' => + array ( + 0 => 'TokyoTyrantIterator', + ), + 'TokyoTyrant::num' => + array ( + 0 => 'int', + ), + 'TokyoTyrant::out' => + array ( + 0 => 'string', + 'keys' => 'mixed', + ), + 'TokyoTyrant::put' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putCat' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putKeep' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putNr' => + array ( + 0 => 'TokyoTyrant', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrant::putShl' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'string', + 'width' => 'int', + ), + 'TokyoTyrant::restore' => + array ( + 0 => 'mixed', + 'log_dir' => 'string', + 'timestamp' => 'int', + 'check_consistency=' => 'bool', + ), + 'TokyoTyrant::setMaster' => + array ( + 0 => 'mixed', + 'host' => 'string', + 'port' => 'int', + 'timestamp' => 'int', + 'check_consistency=' => 'bool', + ), + 'TokyoTyrant::size' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'TokyoTyrant::stat' => + array ( + 0 => 'array', + ), + 'TokyoTyrant::sync' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrant::tune' => + array ( + 0 => 'TokyoTyrant', + 'timeout' => 'float', + 'options=' => 'int', + ), + 'TokyoTyrant::vanish' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::__construct' => + array ( + 0 => 'void', + 'object' => 'mixed', + ), + 'TokyoTyrantIterator::current' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::key' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::next' => + array ( + 0 => 'mixed', + ), + 'TokyoTyrantIterator::rewind' => + array ( + 0 => 'void', + ), + 'TokyoTyrantIterator::valid' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantQuery::__construct' => + array ( + 0 => 'void', + 'table' => 'TokyoTyrantTable', + ), + 'TokyoTyrantQuery::addCond' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'op' => 'int', + 'expr' => 'string', + ), + 'TokyoTyrantQuery::count' => + array ( + 0 => 'int', + ), + 'TokyoTyrantQuery::current' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::hint' => + array ( + 0 => 'string', + ), + 'TokyoTyrantQuery::key' => + array ( + 0 => 'string', + ), + 'TokyoTyrantQuery::metaSearch' => + array ( + 0 => 'array', + 'queries' => 'array', + 'type' => 'int', + ), + 'TokyoTyrantQuery::next' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::out' => + array ( + 0 => 'TokyoTyrantQuery', + ), + 'TokyoTyrantQuery::rewind' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantQuery::search' => + array ( + 0 => 'array', + ), + 'TokyoTyrantQuery::setLimit' => + array ( + 0 => 'mixed', + 'max=' => 'int', + 'skip=' => 'int', + ), + 'TokyoTyrantQuery::setOrder' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'type' => 'int', + ), + 'TokyoTyrantQuery::valid' => + array ( + 0 => 'bool', + ), + 'TokyoTyrantTable::add' => + array ( + 0 => 'void', + 'key' => 'string', + 'increment' => 'mixed', + 'type=' => 'string', + ), + 'TokyoTyrantTable::genUid' => + array ( + 0 => 'int', + ), + 'TokyoTyrantTable::get' => + array ( + 0 => 'array', + 'keys' => 'mixed', + ), + 'TokyoTyrantTable::getIterator' => + array ( + 0 => 'TokyoTyrantIterator', + ), + 'TokyoTyrantTable::getQuery' => + array ( + 0 => 'TokyoTyrantQuery', + ), + 'TokyoTyrantTable::out' => + array ( + 0 => 'void', + 'keys' => 'mixed', + ), + 'TokyoTyrantTable::put' => + array ( + 0 => 'int', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putCat' => + array ( + 0 => 'void', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putKeep' => + array ( + 0 => 'void', + 'key' => 'string', + 'columns' => 'array', + ), + 'TokyoTyrantTable::putNr' => + array ( + 0 => 'void', + 'keys' => 'mixed', + 'value=' => 'string', + ), + 'TokyoTyrantTable::putShl' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + 'width' => 'int', + ), + 'TokyoTyrantTable::setIndex' => + array ( + 0 => 'mixed', + 'column' => 'string', + 'type' => 'int', + ), + 'Transliterator::create' => + array ( + 0 => 'Transliterator|null', + 'id' => 'string', + 'direction=' => 'int', + ), + 'Transliterator::createFromRules' => + array ( + 0 => 'Transliterator|null', + 'rules' => 'string', + 'direction=' => 'int', + ), + 'Transliterator::createInverse' => + array ( + 0 => 'Transliterator|null', + ), + 'Transliterator::getErrorCode' => + array ( + 0 => 'int', + ), + 'Transliterator::getErrorMessage' => + array ( + 0 => 'string', + ), + 'Transliterator::listIDs' => + array ( + 0 => 'array', + ), + 'Transliterator::transliterate' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'TypeError::__clone' => + array ( + 0 => 'void', + ), + 'TypeError::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'TypeError::__toString' => + array ( + 0 => 'string', + ), + 'TypeError::getCode' => + array ( + 0 => 'int', + ), + 'TypeError::getFile' => + array ( + 0 => 'string', + ), + 'TypeError::getLine' => + array ( + 0 => 'int', + ), + 'TypeError::getMessage' => + array ( + 0 => 'string', + ), + 'TypeError::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'TypeError::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'TypeError::getTraceAsString' => + array ( + 0 => 'string', + ), + 'UConverter::__construct' => + array ( + 0 => 'void', + 'destination_encoding=' => 'null|string', + 'source_encoding=' => 'null|string', + ), + 'UConverter::convert' => + array ( + 0 => 'string', + 'str' => 'string', + 'reverse=' => 'bool', + ), + 'UConverter::fromUCallback' => + array ( + 0 => 'array|int|null|string', + 'reason' => 'int', + 'source' => 'array', + 'codePoint' => 'int', + '&w_error' => 'int', + ), + 'UConverter::getAliases' => + array ( + 0 => 'array|false|null', + 'name' => 'string', + ), + 'UConverter::getAvailable' => + array ( + 0 => 'array', + ), + 'UConverter::getDestinationEncoding' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::getDestinationType' => + array ( + 0 => 'false|int|null', + ), + 'UConverter::getErrorCode' => + array ( + 0 => 'int', + ), + 'UConverter::getErrorMessage' => + array ( + 0 => 'null|string', + ), + 'UConverter::getSourceEncoding' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::getSourceType' => + array ( + 0 => 'false|int|null', + ), + 'UConverter::getStandards' => + array ( + 0 => 'array|null', + ), + 'UConverter::getSubstChars' => + array ( + 0 => 'false|null|string', + ), + 'UConverter::reasonText' => + array ( + 0 => 'string', + 'reason' => 'int', + ), + 'UConverter::setDestinationEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'UConverter::setSourceEncoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'UConverter::setSubstChars' => + array ( + 0 => 'bool', + 'chars' => 'string', + ), + 'UConverter::toUCallback' => + array ( + 0 => 'array|int|null|string', + 'reason' => 'int', + 'source' => 'string', + 'codeUnits' => 'string', + '&w_error' => 'int', + ), + 'UConverter::transcode' => + array ( + 0 => 'string', + 'str' => 'string', + 'toEncoding' => 'string', + 'fromEncoding' => 'string', + 'options=' => 'array|null', + ), + 'UnderflowException::__clone' => + array ( + 0 => 'void', + ), + 'UnderflowException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'UnderflowException::__toString' => + array ( + 0 => 'string', + ), + 'UnderflowException::getCode' => + array ( + 0 => 'int', + ), + 'UnderflowException::getFile' => + array ( + 0 => 'string', + ), + 'UnderflowException::getLine' => + array ( + 0 => 'int', + ), + 'UnderflowException::getMessage' => + array ( + 0 => 'string', + ), + 'UnderflowException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'UnderflowException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'UnderflowException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::__clone' => + array ( + 0 => 'void', + ), + 'UnexpectedValueException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Throwable|null', + ), + 'UnexpectedValueException::__toString' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getCode' => + array ( + 0 => 'int', + ), + 'UnexpectedValueException::getFile' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getLine' => + array ( + 0 => 'int', + ), + 'UnexpectedValueException::getMessage' => + array ( + 0 => 'string', + ), + 'UnexpectedValueException::getPrevious' => + array ( + 0 => 'Throwable|null', + ), + 'UnexpectedValueException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'UnexpectedValueException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'V8Js::__construct' => + array ( + 0 => 'void', + 'object_name=' => 'string', + 'variables=' => 'array', + 'extensions=' => 'array', + 'report_uncaught_exceptions=' => 'bool', + 'snapshot_blob=' => 'string', + ), + 'V8Js::clearPendingException' => + array ( + 0 => 'mixed', + ), + 'V8Js::compileString' => + array ( + 0 => 'resource', + 'script' => 'mixed', + 'identifier=' => 'string', + ), + 'V8Js::createSnapshot' => + array ( + 0 => 'false|string', + 'embed_source' => 'string', + ), + 'V8Js::executeScript' => + array ( + 0 => 'mixed', + 'script' => 'resource', + 'flags=' => 'int', + 'time_limit=' => 'int', + 'memory_limit=' => 'int', + ), + 'V8Js::executeString' => + array ( + 0 => 'mixed', + 'script' => 'string', + 'identifier=' => 'string', + 'flags=' => 'int', + ), + 'V8Js::getExtensions' => + array ( + 0 => 'array', + ), + 'V8Js::getPendingException' => + array ( + 0 => 'V8JsException|null', + ), + 'V8Js::registerExtension' => + array ( + 0 => 'bool', + 'extension_name' => 'string', + 'script' => 'string', + 'dependencies=' => 'array', + 'auto_enable=' => 'bool', + ), + 'V8Js::setAverageObjectSize' => + array ( + 0 => 'mixed', + 'average_object_size' => 'int', + ), + 'V8Js::setMemoryLimit' => + array ( + 0 => 'mixed', + 'limit' => 'int', + ), + 'V8Js::setModuleLoader' => + array ( + 0 => 'mixed', + 'loader' => 'callable', + ), + 'V8Js::setModuleNormaliser' => + array ( + 0 => 'mixed', + 'normaliser' => 'callable', + ), + 'V8Js::setTimeLimit' => + array ( + 0 => 'mixed', + 'limit' => 'int', + ), + 'V8JsException::getJsFileName' => + array ( + 0 => 'string', + ), + 'V8JsException::getJsLineNumber' => + array ( + 0 => 'int', + ), + 'V8JsException::getJsSourceLine' => + array ( + 0 => 'int', + ), + 'V8JsException::getJsTrace' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::__clone' => + array ( + 0 => 'void', + ), + 'V8JsScriptException::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'V8JsScriptException::__toString' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::__wakeup' => + array ( + 0 => 'void', + ), + 'V8JsScriptException::getCode' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getFile' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsEndColumn' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsFileName' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsLineNumber' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsSourceLine' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getJsStartColumn' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getJsTrace' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getLine' => + array ( + 0 => 'int', + ), + 'V8JsScriptException::getMessage' => + array ( + 0 => 'string', + ), + 'V8JsScriptException::getPrevious' => + array ( + 0 => 'Exception|Throwable', + ), + 'V8JsScriptException::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'V8JsScriptException::getTraceAsString' => + array ( + 0 => 'string', + ), + 'VARIANT::__construct' => + array ( + 0 => 'void', + 'value=' => 'mixed', + 'type=' => 'int', + 'codepage=' => 'int', + ), + 'VarnishAdmin::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishAdmin::auth' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::ban' => + array ( + 0 => 'int', + 'vcl_regex' => 'string', + ), + 'VarnishAdmin::banUrl' => + array ( + 0 => 'int', + 'vcl_regex' => 'string', + ), + 'VarnishAdmin::clearPanic' => + array ( + 0 => 'int', + ), + 'VarnishAdmin::connect' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::disconnect' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::getPanic' => + array ( + 0 => 'string', + ), + 'VarnishAdmin::getParams' => + array ( + 0 => 'array', + ), + 'VarnishAdmin::isRunning' => + array ( + 0 => 'bool', + ), + 'VarnishAdmin::setCompat' => + array ( + 0 => 'void', + 'compat' => 'int', + ), + 'VarnishAdmin::setHost' => + array ( + 0 => 'void', + 'host' => 'string', + ), + 'VarnishAdmin::setIdent' => + array ( + 0 => 'void', + 'ident' => 'string', + ), + 'VarnishAdmin::setParam' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'int|string', + ), + 'VarnishAdmin::setPort' => + array ( + 0 => 'void', + 'port' => 'int', + ), + 'VarnishAdmin::setSecret' => + array ( + 0 => 'void', + 'secret' => 'string', + ), + 'VarnishAdmin::setTimeout' => + array ( + 0 => 'void', + 'timeout' => 'int', + ), + 'VarnishAdmin::start' => + array ( + 0 => 'int', + ), + 'VarnishAdmin::stop' => + array ( + 0 => 'int', + ), + 'VarnishLog::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishLog::getLine' => + array ( + 0 => 'array', + ), + 'VarnishLog::getTagName' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'VarnishStat::__construct' => + array ( + 0 => 'void', + 'args=' => 'array', + ), + 'VarnishStat::getSnapshot' => + array ( + 0 => 'array', + ), + 'Vtiful\\Kernel\\Chart::__construct' => + array ( + 0 => 'void', + 'handle' => 'resource', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Chart::axisNameX' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'name' => 'string', + ), + 'Vtiful\\Kernel\\Chart::axisNameY' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'name' => 'string', + ), + 'Vtiful\\Kernel\\Chart::legendSetPosition' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Chart::series' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'value' => 'string', + 'categories=' => 'string', + ), + 'Vtiful\\Kernel\\Chart::seriesName' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'value' => 'string', + ), + 'Vtiful\\Kernel\\Chart::style' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Chart::title' => + array ( + 0 => 'Vtiful\\Kernel\\Chart', + 'title' => 'string', + ), + 'Vtiful\\Kernel\\Chart::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Excel::__construct' => + array ( + 0 => 'void', + 'config' => 'array', + ), + 'Vtiful\\Kernel\\Excel::activateSheet' => + array ( + 0 => 'bool', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::addSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::autoFilter' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + ), + 'Vtiful\\Kernel\\Excel::checkoutSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::close' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::columnIndexFromString' => + array ( + 0 => 'int', + 'index' => 'string', + ), + 'Vtiful\\Kernel\\Excel::constMemory' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'file_name' => 'string', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::data' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'data' => 'array', + ), + 'Vtiful\\Kernel\\Excel::defaultFormat' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'format_handle' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::existSheet' => + array ( + 0 => 'bool', + 'sheet_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::fileName' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'file_name' => 'string', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::freezePanes' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + ), + 'Vtiful\\Kernel\\Excel::getHandle' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Excel::getSheetData' => + array ( + 0 => 'array|false', + ), + 'Vtiful\\Kernel\\Excel::gridline' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'option=' => 'int', + ), + 'Vtiful\\Kernel\\Excel::header' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'header' => 'array', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertChart' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'chart_resource' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::insertComment' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'comment' => 'string', + ), + 'Vtiful\\Kernel\\Excel::insertDate' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'timestamp' => 'int', + 'format=' => 'null|string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'formula' => 'string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertImage' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'image' => 'string', + 'width=' => 'float|null', + 'height=' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::insertText' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'data' => 'float|int|string', + 'format=' => 'null|string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::insertUrl' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'row' => 'int', + 'column' => 'int', + 'url' => 'string', + 'text=' => 'null|string', + 'tool_tip=' => 'null|string', + 'format=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::mergeCells' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'data' => 'string', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::nextCellCallback' => + array ( + 0 => 'void', + 'fci' => 'callable(int, int, mixed)', + 'sheet_name=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::nextRow' => + array ( + 0 => 'array|false', + 'zv_type_t=' => 'array|null', + ), + 'Vtiful\\Kernel\\Excel::openFile' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zs_file_name' => 'string', + ), + 'Vtiful\\Kernel\\Excel::openSheet' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zs_sheet_name=' => 'null|string', + 'zl_flag=' => 'int|null', + ), + 'Vtiful\\Kernel\\Excel::output' => + array ( + 0 => 'string', + ), + 'Vtiful\\Kernel\\Excel::protection' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'password=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::putCSV' => + array ( + 0 => 'bool', + 'fp' => 'resource', + 'delimiter_str=' => 'null|string', + 'enclosure_str=' => 'null|string', + 'escape_str=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::putCSVCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable(array):array', + 'fp' => 'resource', + 'delimiter_str=' => 'null|string', + 'enclosure_str=' => 'null|string', + 'escape_str=' => 'null|string', + ), + 'Vtiful\\Kernel\\Excel::setColumn' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'width' => 'float', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::setCurrentSheetHide' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setCurrentSheetIsFirst' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setGlobalType' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_type_t' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setLandscape' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setMargins' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'left=' => 'float|null', + 'right=' => 'float|null', + 'top=' => 'float|null', + 'bottom=' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::setPaper' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'paper' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setPortrait' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::setRow' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'height' => 'float', + 'format_handle=' => 'null|resource', + ), + 'Vtiful\\Kernel\\Excel::setSkipRows' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_skip_t' => 'int', + ), + 'Vtiful\\Kernel\\Excel::setType' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'zv_type_t' => 'array', + ), + 'Vtiful\\Kernel\\Excel::sheetList' => + array ( + 0 => 'array', + ), + 'Vtiful\\Kernel\\Excel::showComment' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + ), + 'Vtiful\\Kernel\\Excel::stringFromColumnIndex' => + array ( + 0 => 'string', + 'index' => 'int', + ), + 'Vtiful\\Kernel\\Excel::timestampFromDateDouble' => + array ( + 0 => 'int', + 'index' => 'float|null', + ), + 'Vtiful\\Kernel\\Excel::validation' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'range' => 'string', + 'validation_resource' => 'resource', + ), + 'Vtiful\\Kernel\\Excel::zoom' => + array ( + 0 => 'Vtiful\\Kernel\\Excel', + 'scale' => 'int', + ), + 'Vtiful\\Kernel\\Format::__construct' => + array ( + 0 => 'void', + 'handle' => 'resource', + ), + 'Vtiful\\Kernel\\Format::align' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + '...style' => 'int', + ), + 'Vtiful\\Kernel\\Format::background' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'color' => 'int', + 'pattern=' => 'int', + ), + 'Vtiful\\Kernel\\Format::bold' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::border' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Format::font' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'font' => 'string', + ), + 'Vtiful\\Kernel\\Format::fontColor' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'color' => 'int', + ), + 'Vtiful\\Kernel\\Format::fontSize' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'size' => 'float', + ), + 'Vtiful\\Kernel\\Format::italic' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::number' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'format' => 'string', + ), + 'Vtiful\\Kernel\\Format::strikeout' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Format::underline' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + 'style' => 'int', + ), + 'Vtiful\\Kernel\\Format::unlocked' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Format::wrap' => + array ( + 0 => 'Vtiful\\Kernel\\Format', + ), + 'Vtiful\\Kernel\\Validation::__construct' => + array ( + 0 => 'void', + ), + 'Vtiful\\Kernel\\Validation::criteriaType' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Validation::maximumFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'maximum_formula' => 'string', + ), + 'Vtiful\\Kernel\\Validation::maximumNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'maximum_number' => 'float', + ), + 'Vtiful\\Kernel\\Validation::minimumFormula' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'minimum_formula' => 'string', + ), + 'Vtiful\\Kernel\\Validation::minimumNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'minimum_number' => 'float', + ), + 'Vtiful\\Kernel\\Validation::toResource' => + array ( + 0 => 'resource', + ), + 'Vtiful\\Kernel\\Validation::validationType' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'type' => 'int', + ), + 'Vtiful\\Kernel\\Validation::valueList' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'value_list' => 'array', + ), + 'Vtiful\\Kernel\\Validation::valueNumber' => + array ( + 0 => 'Vtiful\\Kernel\\Validation|null', + 'value_number' => 'int', + ), + 'Weakref::acquire' => + array ( + 0 => 'bool', + ), + 'Weakref::get' => + array ( + 0 => 'object', + ), + 'Weakref::release' => + array ( + 0 => 'bool', + ), + 'Weakref::valid' => + array ( + 0 => 'bool', + ), + 'Worker::__construct' => + array ( + 0 => 'void', + ), + 'Worker::addRef' => + array ( + 0 => 'void', + ), + 'Worker::chunk' => + array ( + 0 => 'array', + 'size' => 'int', + 'preserve' => 'bool', + ), + 'Worker::collect' => + array ( + 0 => 'int', + 'collector=' => 'callable', + ), + 'Worker::count' => + array ( + 0 => 'int', + ), + 'Worker::delRef' => + array ( + 0 => 'void', + ), + 'Worker::detach' => + array ( + 0 => 'void', + ), + 'Worker::extend' => + array ( + 0 => 'bool', + 'class' => 'string', + ), + 'Worker::getCreatorId' => + array ( + 0 => 'int', + ), + 'Worker::getCurrentThread' => + array ( + 0 => 'Thread', + ), + 'Worker::getCurrentThreadId' => + array ( + 0 => 'int', + ), + 'Worker::getRefCount' => + array ( + 0 => 'int', + ), + 'Worker::getStacked' => + array ( + 0 => 'int', + ), + 'Worker::getTerminationInfo' => + array ( + 0 => 'array', + ), + 'Worker::getThreadId' => + array ( + 0 => 'int', + ), + 'Worker::globally' => + array ( + 0 => 'mixed', + ), + 'Worker::isGarbage' => + array ( + 0 => 'bool', + ), + 'Worker::isJoined' => + array ( + 0 => 'bool', + ), + 'Worker::isRunning' => + array ( + 0 => 'bool', + ), + 'Worker::isShutdown' => + array ( + 0 => 'bool', + ), + 'Worker::isStarted' => + array ( + 0 => 'bool', + ), + 'Worker::isTerminated' => + array ( + 0 => 'bool', + ), + 'Worker::isWaiting' => + array ( + 0 => 'bool', + ), + 'Worker::isWorking' => + array ( + 0 => 'bool', + ), + 'Worker::join' => + array ( + 0 => 'bool', + ), + 'Worker::kill' => + array ( + 0 => 'bool', + ), + 'Worker::lock' => + array ( + 0 => 'bool', + ), + 'Worker::merge' => + array ( + 0 => 'bool', + 'from' => 'mixed', + 'overwrite=' => 'mixed', + ), + 'Worker::notify' => + array ( + 0 => 'bool', + ), + 'Worker::notifyOne' => + array ( + 0 => 'bool', + ), + 'Worker::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'Worker::offsetGet' => + array ( + 0 => 'mixed', + 'offset' => 'int|string', + ), + 'Worker::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'Worker::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'Worker::pop' => + array ( + 0 => 'bool', + ), + 'Worker::run' => + array ( + 0 => 'void', + ), + 'Worker::setGarbage' => + array ( + 0 => 'void', + ), + 'Worker::shift' => + array ( + 0 => 'bool', + ), + 'Worker::shutdown' => + array ( + 0 => 'bool', + ), + 'Worker::stack' => + array ( + 0 => 'int', + '&rw_work' => 'Threaded', + ), + 'Worker::start' => + array ( + 0 => 'bool', + 'options=' => 'int', + ), + 'Worker::synchronized' => + array ( + 0 => 'mixed', + 'block' => 'Closure', + '_=' => 'mixed', + ), + 'Worker::unlock' => + array ( + 0 => 'bool', + ), + 'Worker::unstack' => + array ( + 0 => 'int', + '&rw_work=' => 'Threaded', + ), + 'Worker::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'int', + ), + 'XMLDiff\\Base::__construct' => + array ( + 0 => 'void', + 'nsname' => 'string', + ), + 'XMLDiff\\Base::diff' => + array ( + 0 => 'mixed', + 'from' => 'mixed', + 'to' => 'mixed', + ), + 'XMLDiff\\Base::merge' => + array ( + 0 => 'mixed', + 'src' => 'mixed', + 'diff' => 'mixed', + ), + 'XMLDiff\\DOM::diff' => + array ( + 0 => 'DOMDocument', + 'from' => 'DOMDocument', + 'to' => 'DOMDocument', + ), + 'XMLDiff\\DOM::merge' => + array ( + 0 => 'DOMDocument', + 'src' => 'DOMDocument', + 'diff' => 'DOMDocument', + ), + 'XMLDiff\\File::diff' => + array ( + 0 => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'XMLDiff\\File::merge' => + array ( + 0 => 'string', + 'src' => 'string', + 'diff' => 'string', + ), + 'XMLDiff\\Memory::diff' => + array ( + 0 => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'XMLDiff\\Memory::merge' => + array ( + 0 => 'string', + 'src' => 'string', + 'diff' => 'string', + ), + 'XMLReader::XML' => + array ( + 0 => 'XMLReader|bool', + 'source' => 'string', + 'encoding=' => 'null|string', + 'flags=' => 'int', + ), + 'XMLReader::close' => + array ( + 0 => 'bool', + ), + 'XMLReader::expand' => + array ( + 0 => 'DOMNode|false', + 'baseNode=' => 'DOMNode|null', + ), + 'XMLReader::getAttribute' => + array ( + 0 => 'null|string', + 'name' => 'string', + ), + 'XMLReader::getAttributeNo' => + array ( + 0 => 'null|string', + 'index' => 'int', + ), + 'XMLReader::getAttributeNs' => + array ( + 0 => 'null|string', + 'name' => 'string', + 'namespace' => 'string', + ), + 'XMLReader::getParserProperty' => + array ( + 0 => 'bool', + 'property' => 'int', + ), + 'XMLReader::isValid' => + array ( + 0 => 'bool', + ), + 'XMLReader::lookupNamespace' => + array ( + 0 => 'null|string', + 'prefix' => 'string', + ), + 'XMLReader::moveToAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLReader::moveToAttributeNo' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'XMLReader::moveToAttributeNs' => + array ( + 0 => 'bool', + 'name' => 'string', + 'namespace' => 'string', + ), + 'XMLReader::moveToElement' => + array ( + 0 => 'bool', + ), + 'XMLReader::moveToFirstAttribute' => + array ( + 0 => 'bool', + ), + 'XMLReader::moveToNextAttribute' => + array ( + 0 => 'bool', + ), + 'XMLReader::next' => + array ( + 0 => 'bool', + 'name=' => 'string', + ), + 'XMLReader::open' => + array ( + 0 => 'XmlReader|bool', + 'uri' => 'string', + 'encoding=' => 'null|string', + 'flags=' => 'int', + ), + 'XMLReader::read' => + array ( + 0 => 'bool', + ), + 'XMLReader::readInnerXML' => + array ( + 0 => 'string', + ), + 'XMLReader::readOuterXML' => + array ( + 0 => 'string', + ), + 'XMLReader::readString' => + array ( + 0 => 'string', + ), + 'XMLReader::setParserProperty' => + array ( + 0 => 'bool', + 'property' => 'int', + 'value' => 'bool', + ), + 'XMLReader::setRelaxNGSchema' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XMLReader::setRelaxNGSchemaSource' => + array ( + 0 => 'bool', + 'source' => 'null|string', + ), + 'XMLReader::setSchema' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XMLWriter::endAttribute' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endCdata' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endComment' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDocument' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtd' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdAttlist' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endDtdEntity' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::endPi' => + array ( + 0 => 'bool', + ), + 'XMLWriter::flush' => + array ( + 0 => 'false|int|string', + 'empty=' => 'bool', + ), + 'XMLWriter::fullEndElement' => + array ( + 0 => 'bool', + ), + 'XMLWriter::openMemory' => + array ( + 0 => 'bool', + ), + 'XMLWriter::openUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'XMLWriter::outputMemory' => + array ( + 0 => 'string', + 'flush=' => 'bool', + ), + 'XMLWriter::setIndent' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'XMLWriter::setIndentString' => + array ( + 0 => 'bool', + 'indentation' => 'string', + ), + 'XMLWriter::startAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startAttributeNs' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'XMLWriter::startCdata' => + array ( + 0 => 'bool', + ), + 'XMLWriter::startComment' => + array ( + 0 => 'bool', + ), + 'XMLWriter::startDocument' => + array ( + 0 => 'bool', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + 'XMLWriter::startDtd' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + 'XMLWriter::startDtdAttlist' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startDtdElement' => + array ( + 0 => 'bool', + 'qualifiedName' => 'string', + ), + 'XMLWriter::startDtdEntity' => + array ( + 0 => 'bool', + 'name' => 'string', + 'isParam' => 'bool', + ), + 'XMLWriter::startElement' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'XMLWriter::startElementNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'XMLWriter::startPi' => + array ( + 0 => 'bool', + 'target' => 'string', + ), + 'XMLWriter::text' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeAttribute' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'XMLWriter::writeAttributeNs' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'XMLWriter::writeCdata' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeComment' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XMLWriter::writeDtd' => + array ( + 0 => 'bool', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + 'XMLWriter::writeDtdAttlist' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeDtdElement' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeDtdEntity' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + 'isParam' => 'bool', + 'publicId' => 'string', + 'systemId' => 'string', + 'notationData' => 'string', + ), + 'XMLWriter::writeElement' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content=' => 'null|string', + ), + 'XMLWriter::writeElementNs' => + array ( + 0 => 'bool', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + 'content=' => 'null|string', + ), + 'XMLWriter::writePi' => + array ( + 0 => 'bool', + 'target' => 'string', + 'content' => 'string', + ), + 'XMLWriter::writeRaw' => + array ( + 0 => 'bool', + 'content' => 'string', + ), + 'XSLTProcessor::getParameter' => + array ( + 0 => 'false|string', + 'namespace' => 'string', + 'name' => 'string', + ), + 'XSLTProcessor::hasExsltSupport' => + array ( + 0 => 'bool', + ), + 'XSLTProcessor::importStylesheet' => + array ( + 0 => 'bool', + 'stylesheet' => 'object', + ), + 'XSLTProcessor::registerPHPFunctions' => + array ( + 0 => 'void', + 'functions=' => 'array|null|string', + ), + 'XSLTProcessor::removeParameter' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'name' => 'string', + ), + 'XSLTProcessor::setParameter' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'XSLTProcessor::setParameter\'1' => + array ( + 0 => 'bool', + 'namespace' => 'string', + 'options' => 'array', + ), + 'XSLTProcessor::setProfiling' => + array ( + 0 => 'bool', + 'filename' => 'null|string', + ), + 'XSLTProcessor::transformToDoc' => + array ( + 0 => 'DOMDocument|false', + 'document' => 'DOMNode', + 'returnClass=' => 'null|string', + ), + 'XSLTProcessor::transformToURI' => + array ( + 0 => 'int', + 'document' => 'DOMDocument', + 'uri' => 'string', + ), + 'XSLTProcessor::transformToXML' => + array ( + 0 => 'false|string', + 'document' => 'DOMDocument', + ), + 'Xcom::__construct' => + array ( + 0 => 'void', + 'fabric_url=' => 'string', + 'fabric_token=' => 'string', + 'capability_token=' => 'string', + ), + 'Xcom::decode' => + array ( + 0 => 'object', + 'avro_msg' => 'string', + 'json_schema' => 'string', + ), + 'Xcom::encode' => + array ( + 0 => 'string', + 'data' => 'stdClass', + 'avro_schema' => 'string', + ), + 'Xcom::getDebugOutput' => + array ( + 0 => 'string', + ), + 'Xcom::getLastResponse' => + array ( + 0 => 'string', + ), + 'Xcom::getLastResponseInfo' => + array ( + 0 => 'array', + ), + 'Xcom::getOnboardingURL' => + array ( + 0 => 'string', + 'capability_name' => 'string', + 'agreement_url' => 'string', + ), + 'Xcom::send' => + array ( + 0 => 'int', + 'topic' => 'string', + 'data' => 'mixed', + 'json_schema=' => 'string', + 'http_headers=' => 'array', + ), + 'Xcom::sendAsync' => + array ( + 0 => 'int', + 'topic' => 'string', + 'data' => 'mixed', + 'json_schema=' => 'string', + 'http_headers=' => 'array', + ), + 'XsltProcessor::getSecurityPrefs' => + array ( + 0 => 'int', + ), + 'XsltProcessor::setSecurityPrefs' => + array ( + 0 => 'int', + 'preferences' => 'int', + ), + 'Yaconf::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default_value=' => 'mixed', + ), + 'Yaconf::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Action_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Action_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + 'view' => 'Yaf\\View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf\\Action_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::execute' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Action_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::getController' => + array ( + 0 => 'Yaf\\Controller_Abstract', + ), + 'Yaf\\Action_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf\\Action_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf\\Action_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Action_Abstract::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Action_Abstract::getResponse' => + array ( + 0 => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Action_Abstract::getView' => + array ( + 0 => 'Yaf\\View_Interface', + ), + 'Yaf\\Action_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf\\Action_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Action_Abstract::initView' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf\\Action_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Action_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Action_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf\\Application::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::__construct' => + array ( + 0 => 'void', + 'config' => 'array|string', + 'envrion=' => 'string', + ), + 'Yaf\\Application::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::__sleep' => + array ( + 0 => 'array', + ), + 'Yaf\\Application::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::app' => + array ( + 0 => 'Yaf\\Application|null', + ), + 'Yaf\\Application::bootstrap' => + array ( + 0 => 'Yaf\\Application', + 'bootstrap=' => 'Yaf\\Bootstrap_Abstract|null', + ), + 'Yaf\\Application::clearLastError' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::environ' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::execute' => + array ( + 0 => 'void', + 'entry' => 'callable', + '_=' => 'string', + ), + 'Yaf\\Application::getAppDirectory' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::getConfig' => + array ( + 0 => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Application::getDispatcher' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Application::getLastErrorMsg' => + array ( + 0 => 'string', + ), + 'Yaf\\Application::getLastErrorNo' => + array ( + 0 => 'int', + ), + 'Yaf\\Application::getModules' => + array ( + 0 => 'array', + ), + 'Yaf\\Application::run' => + array ( + 0 => 'void', + ), + 'Yaf\\Application::setAppDirectory' => + array ( + 0 => 'Yaf\\Application', + 'directory' => 'string', + ), + 'Yaf\\Config\\Ini::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf\\Config\\Ini::__get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Ini::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Config\\Ini::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Config\\Ini::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Config\\Ini::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Ini::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Config\\Ini::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Ini::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Ini::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Ini::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Ini::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Ini::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Config\\Ini::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Simple::__construct' => + array ( + 0 => 'void', + 'array' => 'array', + 'readonly=' => 'string', + ), + 'Yaf\\Config\\Simple::__get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Simple::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Config\\Simple::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Config\\Simple::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Config\\Simple::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf\\Config\\Simple::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Config\\Simple::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Simple::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Config\\Simple::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config\\Simple::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Config\\Simple::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config\\Simple::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Config\\Simple::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Config_Abstract::get' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf\\Config_Abstract::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf\\Config_Abstract::set' => + array ( + 0 => 'Yaf\\Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Config_Abstract::toArray' => + array ( + 0 => 'array', + ), + 'Yaf\\Controller_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Controller_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + 'view' => 'Yaf\\View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf\\Controller_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf\\Controller_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Controller_Abstract::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Controller_Abstract::getResponse' => + array ( + 0 => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Controller_Abstract::getView' => + array ( + 0 => 'Yaf\\View_Interface', + ), + 'Yaf\\Controller_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf\\Controller_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Controller_Abstract::initView' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Controller_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf\\Controller_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf\\Dispatcher::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Dispatcher::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Dispatcher::autoRender' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::catchException' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::disableView' => + array ( + 0 => 'bool', + ), + 'Yaf\\Dispatcher::dispatch' => + array ( + 0 => 'Yaf\\Response_Abstract', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::enableView' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Dispatcher::flushInstantly' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Dispatcher::getApplication' => + array ( + 0 => 'Yaf\\Application', + ), + 'Yaf\\Dispatcher::getInstance' => + array ( + 0 => 'Yaf\\Dispatcher', + ), + 'Yaf\\Dispatcher::getRequest' => + array ( + 0 => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::getRouter' => + array ( + 0 => 'Yaf\\Router', + ), + 'Yaf\\Dispatcher::initView' => + array ( + 0 => 'Yaf\\View_Interface', + 'templates_dir' => 'string', + 'options=' => 'array|null', + ), + 'Yaf\\Dispatcher::registerPlugin' => + array ( + 0 => 'Yaf\\Dispatcher', + 'plugin' => 'Yaf\\Plugin_Abstract', + ), + 'Yaf\\Dispatcher::returnResponse' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag' => 'bool', + ), + 'Yaf\\Dispatcher::setDefaultAction' => + array ( + 0 => 'Yaf\\Dispatcher', + 'action' => 'string', + ), + 'Yaf\\Dispatcher::setDefaultController' => + array ( + 0 => 'Yaf\\Dispatcher', + 'controller' => 'string', + ), + 'Yaf\\Dispatcher::setDefaultModule' => + array ( + 0 => 'Yaf\\Dispatcher', + 'module' => 'string', + ), + 'Yaf\\Dispatcher::setErrorHandler' => + array ( + 0 => 'Yaf\\Dispatcher', + 'callback' => 'callable', + 'error_types' => 'int', + ), + 'Yaf\\Dispatcher::setRequest' => + array ( + 0 => 'Yaf\\Dispatcher', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Dispatcher::setView' => + array ( + 0 => 'Yaf\\Dispatcher', + 'view' => 'Yaf\\View_Interface', + ), + 'Yaf\\Dispatcher::throwException' => + array ( + 0 => 'Yaf\\Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf\\Loader::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Loader::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Loader::autoload' => + array ( + 0 => 'bool', + 'class_name' => 'string', + ), + 'Yaf\\Loader::clearLocalNamespace' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Loader::getInstance' => + array ( + 0 => 'Yaf\\Loader', + 'local_library_path=' => 'string', + 'global_library_path=' => 'string', + ), + 'Yaf\\Loader::getLibraryPath' => + array ( + 0 => 'string', + 'is_global=' => 'bool', + ), + 'Yaf\\Loader::getLocalNamespace' => + array ( + 0 => 'string', + ), + 'Yaf\\Loader::import' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'Yaf\\Loader::isLocalName' => + array ( + 0 => 'bool', + 'class_name' => 'string', + ), + 'Yaf\\Loader::registerLocalNamespace' => + array ( + 0 => 'bool', + 'name_prefix' => 'array|string', + ), + 'Yaf\\Loader::setLibraryPath' => + array ( + 0 => 'Yaf\\Loader', + 'directory' => 'string', + 'global=' => 'bool', + ), + 'Yaf\\Plugin_Abstract::dispatchLoopShutdown' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::dispatchLoopStartup' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::postDispatch' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::preDispatch' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::preResponse' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::routerShutdown' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Plugin_Abstract::routerStartup' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + 'response' => 'Yaf\\Response_Abstract', + ), + 'Yaf\\Registry::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Registry::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Registry::del' => + array ( + 0 => 'bool|null', + 'name' => 'string', + ), + 'Yaf\\Registry::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Registry::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Registry::set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Request\\Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Request\\Http::__construct' => + array ( + 0 => 'void', + 'request_uri' => 'string', + 'base_uri' => 'string', + ), + 'Yaf\\Request\\Http::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Http::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request\\Http::getFiles' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request\\Http::getPost' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getRequest' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Http::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Http::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request\\Http::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request\\Http::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request\\Http::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Http::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request\\Http::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request\\Http::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request\\Http::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Request\\Simple::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Request\\Simple::__construct' => + array ( + 0 => 'void', + 'method' => 'string', + 'controller' => 'string', + 'action' => 'string', + 'params=' => 'string', + ), + 'Yaf\\Request\\Simple::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request\\Simple::getFiles' => + array ( + 0 => 'array', + 'name=' => 'mixed', + 'default=' => 'null', + ), + 'Yaf\\Request\\Simple::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request\\Simple::getPost' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getRequest' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'string', + ), + 'Yaf\\Request\\Simple::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request\\Simple::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request\\Simple::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request\\Simple::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request\\Simple::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request\\Simple::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request\\Simple::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request\\Simple::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request\\Simple::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request\\Simple::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Request_Abstract::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::getException' => + array ( + 0 => 'Yaf\\Exception', + ), + 'Yaf\\Request_Abstract::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::getParams' => + array ( + 0 => 'array', + ), + 'Yaf\\Request_Abstract::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf\\Request_Abstract::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf\\Request_Abstract::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::setActionName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf\\Request_Abstract::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Request_Abstract::setControllerName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf\\Request_Abstract::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf\\Request_Abstract::setModuleName' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf\\Request_Abstract::setParam' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf\\Request_Abstract::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf\\Request_Abstract::setRouted' => + array ( + 0 => 'Yaf\\Request_Abstract|bool', + ), + 'Yaf\\Response\\Cli::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Cli::__toString' => + array ( + 0 => 'string', + ), + 'Yaf\\Response\\Cli::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response\\Cli::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Cli::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response\\Http::__toString' => + array ( + 0 => 'string', + ), + 'Yaf\\Response\\Http::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::clearHeaders' => + array ( + 0 => 'Yaf\\Response_Abstract|false', + 'name=' => 'string', + ), + 'Yaf\\Response\\Http::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response\\Http::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf\\Response\\Http::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::response' => + array ( + 0 => 'bool', + ), + 'Yaf\\Response\\Http::setAllHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'Yaf\\Response\\Http::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response\\Http::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'Yaf\\Response\\Http::setRedirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf\\Response_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::__toString' => + array ( + 0 => 'void', + ), + 'Yaf\\Response_Abstract::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf\\Response_Abstract::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Response_Abstract::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf\\Route\\Map::__construct' => + array ( + 0 => 'void', + 'controller_prefer=' => 'bool', + 'delimiter=' => 'string', + ), + 'Yaf\\Route\\Map::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Map::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Regex::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'map=' => 'array|null', + 'verify=' => 'array|null', + 'reverse=' => 'string', + ), + 'Yaf\\Route\\Regex::addConfig' => + array ( + 0 => 'Yaf\\Router|bool', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Route\\Regex::addRoute' => + array ( + 0 => 'Yaf\\Router|bool', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route\\Regex::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Regex::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Route\\Regex::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Route\\Regex::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Route\\Regex::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Rewrite::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'verify=' => 'array|null', + 'reverse=' => 'string', + ), + 'Yaf\\Route\\Rewrite::addConfig' => + array ( + 0 => 'Yaf\\Router|bool', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Route\\Rewrite::addRoute' => + array ( + 0 => 'Yaf\\Router|bool', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route\\Rewrite::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Rewrite::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Route\\Rewrite::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Route\\Rewrite::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Route\\Rewrite::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Simple::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'controller_name' => 'string', + 'action_name' => 'string', + ), + 'Yaf\\Route\\Simple::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Simple::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route\\Supervar::__construct' => + array ( + 0 => 'void', + 'supervar_name' => 'string', + ), + 'Yaf\\Route\\Supervar::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route\\Supervar::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route_Interface::__construct' => + array ( + 0 => 'Yaf\\Route_Interface', + ), + 'Yaf\\Route_Interface::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route_Interface::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Route_Static::assemble' => + array ( + 0 => 'bool', + 'info' => 'array', + 'query=' => 'array|null', + ), + 'Yaf\\Route_Static::match' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf\\Route_Static::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Router::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Router::addConfig' => + array ( + 0 => 'Yaf\\Router|false', + 'config' => 'Yaf\\Config_Abstract', + ), + 'Yaf\\Router::addRoute' => + array ( + 0 => 'Yaf\\Router|false', + 'name' => 'string', + 'route' => 'Yaf\\Route_Interface', + ), + 'Yaf\\Router::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf\\Router::getRoute' => + array ( + 0 => 'Yaf\\Route_Interface', + 'name' => 'string', + ), + 'Yaf\\Router::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf\\Router::route' => + array ( + 0 => 'Yaf\\Router|false', + 'request' => 'Yaf\\Request_Abstract', + ), + 'Yaf\\Session::__clone' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::__construct' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::__get' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__isset' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__set' => + array ( + 0 => 'void', + 'name' => 'mixed', + 'value' => 'mixed', + ), + 'Yaf\\Session::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf\\Session::__unset' => + array ( + 0 => 'void', + 'name' => 'mixed', + ), + 'Yaf\\Session::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::count' => + array ( + 0 => 'int', + ), + 'Yaf\\Session::current' => + array ( + 0 => 'mixed', + ), + 'Yaf\\Session::del' => + array ( + 0 => 'Yaf\\Session|false', + 'name' => 'string', + ), + 'Yaf\\Session::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\Session::getInstance' => + array ( + 0 => 'Yaf\\Session', + ), + 'Yaf\\Session::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf\\Session::key' => + array ( + 0 => 'int|string', + ), + 'Yaf\\Session::next' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'Yaf\\Session::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'Yaf\\Session::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'Yaf\\Session::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'Yaf\\Session::rewind' => + array ( + 0 => 'void', + ), + 'Yaf\\Session::set' => + array ( + 0 => 'Yaf\\Session|false', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf\\Session::start' => + array ( + 0 => 'Yaf\\Session', + ), + 'Yaf\\Session::valid' => + array ( + 0 => 'bool', + ), + 'Yaf\\View\\Simple::__construct' => + array ( + 0 => 'void', + 'template_dir' => 'string', + 'options=' => 'array|null', + ), + 'Yaf\\View\\Simple::__get' => + array ( + 0 => 'mixed', + 'name=' => 'null', + ), + 'Yaf\\View\\Simple::__isset' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf\\View\\Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'mixed', + ), + 'Yaf\\View\\Simple::assign' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name' => 'array|string', + 'value=' => 'mixed', + ), + 'Yaf\\View\\Simple::assignRef' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name' => 'string', + '&value' => 'mixed', + ), + 'Yaf\\View\\Simple::clear' => + array ( + 0 => 'Yaf\\View\\Simple', + 'name=' => 'string', + ), + 'Yaf\\View\\Simple::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::eval' => + array ( + 0 => 'bool|null', + 'tpl_str' => 'string', + 'vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf\\View\\Simple::render' => + array ( + 0 => 'null|string', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View\\Simple::setScriptPath' => + array ( + 0 => 'Yaf\\View\\Simple', + 'template_dir' => 'string', + ), + 'Yaf\\View_Interface::assign' => + array ( + 0 => 'bool', + 'name' => 'array|string', + 'value' => 'mixed', + ), + 'Yaf\\View_Interface::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View_Interface::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf\\View_Interface::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array|null', + ), + 'Yaf\\View_Interface::setScriptPath' => + array ( + 0 => 'void', + 'template_dir' => 'string', + ), + 'Yaf_Action_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Action_Abstract::__construct' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + 'view' => 'Yaf_View_Interface', + 'invokeArgs=' => 'array|null', + ), + 'Yaf_Action_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::execute' => + array ( + 0 => 'mixed', + 'arg=' => 'mixed', + '...args=' => 'mixed', + ), + 'Yaf_Action_Abstract::forward' => + array ( + 0 => 'bool', + 'module' => 'string', + 'controller=' => 'string', + 'action=' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::getController' => + array ( + 0 => 'Yaf_Controller_Abstract', + ), + 'Yaf_Action_Abstract::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::getInvokeArg' => + array ( + 0 => 'mixed|null', + 'name' => 'string', + ), + 'Yaf_Action_Abstract::getInvokeArgs' => + array ( + 0 => 'array', + ), + 'Yaf_Action_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Action_Abstract::getResponse' => + array ( + 0 => 'Yaf_Response_Abstract', + ), + 'Yaf_Action_Abstract::getView' => + array ( + 0 => 'Yaf_View_Interface', + ), + 'Yaf_Action_Abstract::getViewpath' => + array ( + 0 => 'string', + ), + 'Yaf_Action_Abstract::init' => + array ( + 0 => 'mixed', + ), + 'Yaf_Action_Abstract::initView' => + array ( + 0 => 'Yaf_Response_Abstract', + 'options=' => 'array|null', + ), + 'Yaf_Action_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Action_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array|null', + ), + 'Yaf_Action_Abstract::setViewpath' => + array ( + 0 => 'bool', + 'view_directory' => 'string', + ), + 'Yaf_Application::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Application::__construct' => + array ( + 0 => 'void', + 'config' => 'mixed', + 'envrion=' => 'string', + ), + 'Yaf_Application::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Application::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Application::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Application::app' => + array ( + 0 => 'Yaf_Application|null', + ), + 'Yaf_Application::bootstrap' => + array ( + 0 => 'Yaf_Application', + 'bootstrap=' => 'Yaf_Bootstrap_Abstract', + ), + 'Yaf_Application::clearLastError' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Application::environ' => + array ( + 0 => 'string', + ), + 'Yaf_Application::execute' => + array ( + 0 => 'void', + 'entry' => 'callable', + '...args' => 'string', + ), + 'Yaf_Application::getAppDirectory' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Application::getConfig' => + array ( + 0 => 'Yaf_Config_Abstract', + ), + 'Yaf_Application::getDispatcher' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Application::getLastErrorMsg' => + array ( + 0 => 'string', + ), + 'Yaf_Application::getLastErrorNo' => + array ( + 0 => 'int', + ), + 'Yaf_Application::getModules' => + array ( + 0 => 'array', + ), + 'Yaf_Application::run' => + array ( + 0 => 'void', + ), + 'Yaf_Application::setAppDirectory' => + array ( + 0 => 'Yaf_Application', + 'directory' => 'string', + ), + 'Yaf_Config_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Abstract::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Abstract::readonly' => + array ( + 0 => 'bool', + ), + 'Yaf_Config_Abstract::set' => + array ( + 0 => 'Yaf_Config_Abstract', + ), + 'Yaf_Config_Abstract::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Ini::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf_Config_Ini::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_Config_Ini::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Ini::count' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::current' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf_Config_Ini::key' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::next' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Ini::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Ini::readonly' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Ini::set' => + array ( + 0 => 'Yaf_Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Ini::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Ini::valid' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::__construct' => + array ( + 0 => 'void', + 'config_file' => 'string', + 'section=' => 'string', + ), + 'Yaf_Config_Simple::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_Config_Simple::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Simple::count' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::current' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::get' => + array ( + 0 => 'mixed', + 'name=' => 'mixed', + ), + 'Yaf_Config_Simple::key' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::next' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Config_Simple::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Config_Simple::readonly' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Config_Simple::set' => + array ( + 0 => 'Yaf_Config_Abstract', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Config_Simple::toArray' => + array ( + 0 => 'array', + ), + 'Yaf_Config_Simple::valid' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward' => + array ( + 0 => 'void', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward\'1' => + array ( + 0 => 'void', + 'controller' => 'string', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::forward\'2' => + array ( + 0 => 'void', + 'module' => 'string', + 'controller' => 'string', + 'action' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::getInvokeArg' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Controller_Abstract::getInvokeArgs' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Controller_Abstract::getName' => + array ( + 0 => 'string', + ), + 'Yaf_Controller_Abstract::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Controller_Abstract::getResponse' => + array ( + 0 => 'Yaf_Response_Abstract', + ), + 'Yaf_Controller_Abstract::getView' => + array ( + 0 => 'Yaf_View_Interface', + ), + 'Yaf_Controller_Abstract::getViewpath' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::init' => + array ( + 0 => 'void', + ), + 'Yaf_Controller_Abstract::initView' => + array ( + 0 => 'void', + 'options=' => 'array', + ), + 'Yaf_Controller_Abstract::redirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Controller_Abstract::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'parameters=' => 'array', + ), + 'Yaf_Controller_Abstract::setViewpath' => + array ( + 0 => 'void', + 'view_directory' => 'string', + ), + 'Yaf_Dispatcher::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Dispatcher::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Dispatcher::autoRender' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::catchException' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::disableView' => + array ( + 0 => 'bool', + ), + 'Yaf_Dispatcher::dispatch' => + array ( + 0 => 'Yaf_Response_Abstract', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::enableView' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Dispatcher::flushInstantly' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Dispatcher::getApplication' => + array ( + 0 => 'Yaf_Application', + ), + 'Yaf_Dispatcher::getDefaultAction' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getDefaultController' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getDefaultModule' => + array ( + 0 => 'string', + ), + 'Yaf_Dispatcher::getInstance' => + array ( + 0 => 'Yaf_Dispatcher', + ), + 'Yaf_Dispatcher::getRequest' => + array ( + 0 => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::getRouter' => + array ( + 0 => 'Yaf_Router', + ), + 'Yaf_Dispatcher::initView' => + array ( + 0 => 'Yaf_View_Interface', + 'templates_dir' => 'string', + 'options=' => 'array', + ), + 'Yaf_Dispatcher::registerPlugin' => + array ( + 0 => 'Yaf_Dispatcher', + 'plugin' => 'Yaf_Plugin_Abstract', + ), + 'Yaf_Dispatcher::returnResponse' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag' => 'bool', + ), + 'Yaf_Dispatcher::setDefaultAction' => + array ( + 0 => 'Yaf_Dispatcher', + 'action' => 'string', + ), + 'Yaf_Dispatcher::setDefaultController' => + array ( + 0 => 'Yaf_Dispatcher', + 'controller' => 'string', + ), + 'Yaf_Dispatcher::setDefaultModule' => + array ( + 0 => 'Yaf_Dispatcher', + 'module' => 'string', + ), + 'Yaf_Dispatcher::setErrorHandler' => + array ( + 0 => 'Yaf_Dispatcher', + 'callback' => 'callable', + 'error_types' => 'int', + ), + 'Yaf_Dispatcher::setRequest' => + array ( + 0 => 'Yaf_Dispatcher', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Dispatcher::setView' => + array ( + 0 => 'Yaf_Dispatcher', + 'view' => 'Yaf_View_Interface', + ), + 'Yaf_Dispatcher::throwException' => + array ( + 0 => 'Yaf_Dispatcher', + 'flag=' => 'bool', + ), + 'Yaf_Exception::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Exception::getPrevious' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Loader::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::autoload' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::clearLocalNamespace' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::getInstance' => + array ( + 0 => 'Yaf_Loader', + ), + 'Yaf_Loader::getLibraryPath' => + array ( + 0 => 'Yaf_Loader', + 'is_global=' => 'bool', + ), + 'Yaf_Loader::getLocalNamespace' => + array ( + 0 => 'void', + ), + 'Yaf_Loader::getNamespacePath' => + array ( + 0 => 'string', + 'namespaces' => 'string', + ), + 'Yaf_Loader::import' => + array ( + 0 => 'bool', + ), + 'Yaf_Loader::isLocalName' => + array ( + 0 => 'bool', + ), + 'Yaf_Loader::registerLocalNamespace' => + array ( + 0 => 'void', + 'prefix' => 'mixed', + ), + 'Yaf_Loader::registerNamespace' => + array ( + 0 => 'bool', + 'namespaces' => 'array|string', + 'path=' => 'string', + ), + 'Yaf_Loader::setLibraryPath' => + array ( + 0 => 'Yaf_Loader', + 'directory' => 'string', + 'is_global=' => 'bool', + ), + 'Yaf_Plugin_Abstract::dispatchLoopShutdown' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::dispatchLoopStartup' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::postDispatch' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::preDispatch' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::preResponse' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::routerShutdown' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Plugin_Abstract::routerStartup' => + array ( + 0 => 'void', + 'request' => 'Yaf_Request_Abstract', + 'response' => 'Yaf_Response_Abstract', + ), + 'Yaf_Registry::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Registry::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Registry::del' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Registry::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf_Registry::has' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Yaf_Registry::set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Request_Abstract::clearParams' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Abstract::getActionName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getBaseUri' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getControllerName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getEnv' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::getException' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getLanguage' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getMethod' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getModuleName' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getParam' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::getParams' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getRequestUri' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::getServer' => + array ( + 0 => 'void', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Abstract::isCli' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isDispatched' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isGet' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isHead' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isOptions' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isPost' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isPut' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isRouted' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::isXmlHttpRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::setActionName' => + array ( + 0 => 'void', + 'action' => 'string', + ), + 'Yaf_Request_Abstract::setBaseUri' => + array ( + 0 => 'bool', + 'uir' => 'string', + ), + 'Yaf_Request_Abstract::setControllerName' => + array ( + 0 => 'void', + 'controller' => 'string', + ), + 'Yaf_Request_Abstract::setDispatched' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Abstract::setModuleName' => + array ( + 0 => 'void', + 'module' => 'string', + ), + 'Yaf_Request_Abstract::setParam' => + array ( + 0 => 'void', + 'name' => 'string', + 'value=' => 'string', + ), + 'Yaf_Request_Abstract::setRequestUri' => + array ( + 0 => 'void', + 'uir' => 'string', + ), + 'Yaf_Request_Abstract::setRouted' => + array ( + 0 => 'void', + 'flag=' => 'string', + ), + 'Yaf_Request_Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getCookie' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::getException' => + array ( + 0 => 'Yaf_Exception', + ), + 'Yaf_Request_Http::getFiles' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::getParams' => + array ( + 0 => 'array', + ), + 'Yaf_Request_Http::getPost' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getQuery' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'string', + ), + 'Yaf_Request_Http::getRaw' => + array ( + 0 => 'mixed', + ), + 'Yaf_Request_Http::getRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Http::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Http::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Http::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::isXmlHttpRequest' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::setActionName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf_Request_Http::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf_Request_Http::setControllerName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf_Request_Http::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Http::setModuleName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf_Request_Http::setParam' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf_Request_Http::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf_Request_Http::setRouted' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + ), + 'Yaf_Request_Simple::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::get' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getActionName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getBaseUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getControllerName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getCookie' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getEnv' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::getException' => + array ( + 0 => 'Yaf_Exception', + ), + 'Yaf_Request_Simple::getFiles' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getLanguage' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getMethod' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getModuleName' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getParam' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::getParams' => + array ( + 0 => 'array', + ), + 'Yaf_Request_Simple::getPost' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getQuery' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::getRequestUri' => + array ( + 0 => 'string', + ), + 'Yaf_Request_Simple::getServer' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'default=' => 'mixed', + ), + 'Yaf_Request_Simple::isCli' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isGet' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isHead' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isOptions' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isPost' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isPut' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isRouted' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::isXmlHttpRequest' => + array ( + 0 => 'void', + ), + 'Yaf_Request_Simple::setActionName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'action' => 'string', + ), + 'Yaf_Request_Simple::setBaseUri' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'Yaf_Request_Simple::setControllerName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'controller' => 'string', + ), + 'Yaf_Request_Simple::setDispatched' => + array ( + 0 => 'bool', + ), + 'Yaf_Request_Simple::setModuleName' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'module' => 'string', + ), + 'Yaf_Request_Simple::setParam' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + 'name' => 'array|string', + 'value=' => 'string', + ), + 'Yaf_Request_Simple::setRequestUri' => + array ( + 0 => 'mixed', + 'uri' => 'string', + ), + 'Yaf_Request_Simple::setRouted' => + array ( + 0 => 'Yaf_Request_Abstract|bool', + ), + 'Yaf_Response_Abstract::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Abstract::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::clearHeaders' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::getHeader' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::response' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setAllHeaders' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Abstract::setHeader' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Abstract::setRedirect' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Cli::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Cli::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf_Response_Cli::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Cli::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__destruct' => + array ( + 0 => 'void', + ), + 'Yaf_Response_Http::__toString' => + array ( + 0 => 'string', + ), + 'Yaf_Response_Http::appendBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::clearBody' => + array ( + 0 => 'bool', + 'key=' => 'string', + ), + 'Yaf_Response_Http::clearHeaders' => + array ( + 0 => 'Yaf_Response_Abstract|false', + 'name=' => 'string', + ), + 'Yaf_Response_Http::getBody' => + array ( + 0 => 'mixed', + 'key=' => 'null|string', + ), + 'Yaf_Response_Http::getHeader' => + array ( + 0 => 'mixed', + 'name=' => 'string', + ), + 'Yaf_Response_Http::prependBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::response' => + array ( + 0 => 'bool', + ), + 'Yaf_Response_Http::setAllHeaders' => + array ( + 0 => 'bool', + 'headers' => 'array', + ), + 'Yaf_Response_Http::setBody' => + array ( + 0 => 'bool', + 'content' => 'string', + 'key=' => 'string', + ), + 'Yaf_Response_Http::setHeader' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'Yaf_Response_Http::setRedirect' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'Yaf_Route_Interface::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Route_Interface::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Interface::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Map::__construct' => + array ( + 0 => 'void', + 'controller_prefer=' => 'string', + 'delimiter=' => 'string', + ), + 'Yaf_Route_Map::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Map::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Regex::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'map=' => 'array', + 'verify=' => 'array', + 'reverse=' => 'string', + ), + 'Yaf_Route_Regex::addConfig' => + array ( + 0 => 'Yaf_Router|bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Route_Regex::addRoute' => + array ( + 0 => 'Yaf_Router|bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Route_Regex::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Regex::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Route_Regex::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Route_Regex::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf_Route_Regex::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Rewrite::__construct' => + array ( + 0 => 'void', + 'match' => 'string', + 'route' => 'array', + 'verify=' => 'array', + ), + 'Yaf_Route_Rewrite::addConfig' => + array ( + 0 => 'Yaf_Router|bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Route_Rewrite::addRoute' => + array ( + 0 => 'Yaf_Router|bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Route_Rewrite::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Rewrite::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Route_Rewrite::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Route_Rewrite::getRoutes' => + array ( + 0 => 'array', + ), + 'Yaf_Route_Rewrite::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Simple::__construct' => + array ( + 0 => 'void', + 'module_name' => 'string', + 'controller_name' => 'string', + 'action_name' => 'string', + ), + 'Yaf_Route_Simple::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Simple::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Static::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Static::match' => + array ( + 0 => 'void', + 'uri' => 'string', + ), + 'Yaf_Route_Static::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Route_Supervar::__construct' => + array ( + 0 => 'void', + 'supervar_name' => 'string', + ), + 'Yaf_Route_Supervar::assemble' => + array ( + 0 => 'string', + 'info' => 'array', + 'query=' => 'array', + ), + 'Yaf_Route_Supervar::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Router::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Router::addConfig' => + array ( + 0 => 'bool', + 'config' => 'Yaf_Config_Abstract', + ), + 'Yaf_Router::addRoute' => + array ( + 0 => 'bool', + 'name' => 'string', + 'route' => 'Yaf_Route_Interface', + ), + 'Yaf_Router::getCurrentRoute' => + array ( + 0 => 'string', + ), + 'Yaf_Router::getRoute' => + array ( + 0 => 'Yaf_Route_Interface', + 'name' => 'string', + ), + 'Yaf_Router::getRoutes' => + array ( + 0 => 'mixed', + ), + 'Yaf_Router::route' => + array ( + 0 => 'bool', + 'request' => 'Yaf_Request_Abstract', + ), + 'Yaf_Session::__clone' => + array ( + 0 => 'void', + ), + 'Yaf_Session::__construct' => + array ( + 0 => 'void', + ), + 'Yaf_Session::__get' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Session::__sleep' => + array ( + 0 => 'list', + ), + 'Yaf_Session::__unset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::__wakeup' => + array ( + 0 => 'void', + ), + 'Yaf_Session::count' => + array ( + 0 => 'void', + ), + 'Yaf_Session::current' => + array ( + 0 => 'void', + ), + 'Yaf_Session::del' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'Yaf_Session::getInstance' => + array ( + 0 => 'void', + ), + 'Yaf_Session::has' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::key' => + array ( + 0 => 'void', + ), + 'Yaf_Session::next' => + array ( + 0 => 'void', + ), + 'Yaf_Session::offsetExists' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::offsetGet' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::offsetSet' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'string', + ), + 'Yaf_Session::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_Session::rewind' => + array ( + 0 => 'void', + ), + 'Yaf_Session::set' => + array ( + 0 => 'Yaf_Session|bool', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_Session::start' => + array ( + 0 => 'void', + ), + 'Yaf_Session::valid' => + array ( + 0 => 'void', + ), + 'Yaf_View_Interface::assign' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + ), + 'Yaf_View_Interface::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Interface::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf_View_Interface::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Interface::setScriptPath' => + array ( + 0 => 'void', + 'template_dir' => 'string', + ), + 'Yaf_View_Simple::__construct' => + array ( + 0 => 'void', + 'tempalte_dir' => 'string', + 'options=' => 'array', + ), + 'Yaf_View_Simple::__get' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'Yaf_View_Simple::__isset' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'Yaf_View_Simple::__set' => + array ( + 0 => 'void', + 'name' => 'string', + 'value' => 'mixed', + ), + 'Yaf_View_Simple::assign' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'mixed', + ), + 'Yaf_View_Simple::assignRef' => + array ( + 0 => 'bool', + 'name' => 'string', + '&rw_value' => 'mixed', + ), + 'Yaf_View_Simple::clear' => + array ( + 0 => 'bool', + 'name=' => 'string', + ), + 'Yaf_View_Simple::display' => + array ( + 0 => 'bool', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::eval' => + array ( + 0 => 'string', + 'tpl_content' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::getScriptPath' => + array ( + 0 => 'string', + ), + 'Yaf_View_Simple::render' => + array ( + 0 => 'string', + 'tpl' => 'string', + 'tpl_vars=' => 'array', + ), + 'Yaf_View_Simple::setScriptPath' => + array ( + 0 => 'bool', + 'template_dir' => 'string', + ), + 'Yar_Client::__call' => + array ( + 0 => 'void', + 'method' => 'string', + 'parameters' => 'array', + ), + 'Yar_Client::__construct' => + array ( + 0 => 'void', + 'url' => 'string', + ), + 'Yar_Client::setOpt' => + array ( + 0 => 'Yar_Client|false', + 'name' => 'int', + 'value' => 'mixed', + ), + 'Yar_Client_Exception::__clone' => + array ( + 0 => 'void', + ), + 'Yar_Client_Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'Yar_Client_Exception::__toString' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::__wakeup' => + array ( + 0 => 'void', + ), + 'Yar_Client_Exception::getCode' => + array ( + 0 => 'int', + ), + 'Yar_Client_Exception::getFile' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getLine' => + array ( + 0 => 'int', + ), + 'Yar_Client_Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'Yar_Client_Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Yar_Client_Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Yar_Client_Exception::getType' => + array ( + 0 => 'string', + ), + 'Yar_Concurrent_Client::call' => + array ( + 0 => 'int', + 'uri' => 'string', + 'method' => 'string', + 'parameters' => 'array', + 'callback=' => 'callable', + ), + 'Yar_Concurrent_Client::loop' => + array ( + 0 => 'bool', + 'callback=' => 'callable', + 'error_callback=' => 'callable', + ), + 'Yar_Concurrent_Client::reset' => + array ( + 0 => 'bool', + ), + 'Yar_Server::__construct' => + array ( + 0 => 'void', + 'object' => 'object', + ), + 'Yar_Server::handle' => + array ( + 0 => 'bool', + ), + 'Yar_Server_Exception::__clone' => + array ( + 0 => 'void', + ), + 'Yar_Server_Exception::__construct' => + array ( + 0 => 'void', + 'message=' => 'string', + 'code=' => 'int', + 'previous=' => 'Exception|Throwable|null', + ), + 'Yar_Server_Exception::__toString' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::__wakeup' => + array ( + 0 => 'void', + ), + 'Yar_Server_Exception::getCode' => + array ( + 0 => 'int', + ), + 'Yar_Server_Exception::getFile' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getLine' => + array ( + 0 => 'int', + ), + 'Yar_Server_Exception::getMessage' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getPrevious' => + array ( + 0 => 'Exception|Throwable|null', + ), + 'Yar_Server_Exception::getTrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', + ), + 'Yar_Server_Exception::getTraceAsString' => + array ( + 0 => 'string', + ), + 'Yar_Server_Exception::getType' => + array ( + 0 => 'string', + ), + 'ZMQ::__construct' => + array ( + 0 => 'void', + ), + 'ZMQContext::__construct' => + array ( + 0 => 'void', + 'io_threads=' => 'int', + 'is_persistent=' => 'bool', + ), + 'ZMQContext::getOpt' => + array ( + 0 => 'int|string', + 'key' => 'string', + ), + 'ZMQContext::getSocket' => + array ( + 0 => 'ZMQSocket', + 'type' => 'int', + 'persistent_id=' => 'string', + 'on_new_socket=' => 'callable', + ), + 'ZMQContext::isPersistent' => + array ( + 0 => 'bool', + ), + 'ZMQContext::setOpt' => + array ( + 0 => 'ZMQContext', + 'key' => 'int', + 'value' => 'mixed', + ), + 'ZMQDevice::__construct' => + array ( + 0 => 'void', + 'frontend' => 'ZMQSocket', + 'backend' => 'ZMQSocket', + 'listener=' => 'ZMQSocket', + ), + 'ZMQDevice::getIdleTimeout' => + array ( + 0 => 'ZMQDevice', + ), + 'ZMQDevice::getTimerTimeout' => + array ( + 0 => 'ZMQDevice', + ), + 'ZMQDevice::run' => + array ( + 0 => 'void', + ), + 'ZMQDevice::setIdleCallback' => + array ( + 0 => 'ZMQDevice', + 'cb_func' => 'callable', + 'timeout' => 'int', + 'user_data=' => 'mixed', + ), + 'ZMQDevice::setIdleTimeout' => + array ( + 0 => 'ZMQDevice', + 'timeout' => 'int', + ), + 'ZMQDevice::setTimerCallback' => + array ( + 0 => 'ZMQDevice', + 'cb_func' => 'callable', + 'timeout' => 'int', + 'user_data=' => 'mixed', + ), + 'ZMQDevice::setTimerTimeout' => + array ( + 0 => 'ZMQDevice', + 'timeout' => 'int', + ), + 'ZMQPoll::add' => + array ( + 0 => 'string', + 'entry' => 'mixed', + 'type' => 'int', + ), + 'ZMQPoll::clear' => + array ( + 0 => 'ZMQPoll', + ), + 'ZMQPoll::count' => + array ( + 0 => 'int', + ), + 'ZMQPoll::getLastErrors' => + array ( + 0 => 'array', + ), + 'ZMQPoll::poll' => + array ( + 0 => 'int', + '&w_readable' => 'array', + '&w_writable' => 'array', + 'timeout=' => 'int', + ), + 'ZMQPoll::remove' => + array ( + 0 => 'bool', + 'item' => 'mixed', + ), + 'ZMQSocket::__construct' => + array ( + 0 => 'void', + 'context' => 'ZMQContext', + 'type' => 'int', + 'persistent_id=' => 'string', + 'on_new_socket=' => 'callable', + ), + 'ZMQSocket::bind' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + 'force=' => 'bool', + ), + 'ZMQSocket::connect' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + 'force=' => 'bool', + ), + 'ZMQSocket::disconnect' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + ), + 'ZMQSocket::getEndpoints' => + array ( + 0 => 'array', + ), + 'ZMQSocket::getPersistentId' => + array ( + 0 => 'null|string', + ), + 'ZMQSocket::getSockOpt' => + array ( + 0 => 'int|string', + 'key' => 'string', + ), + 'ZMQSocket::getSocketType' => + array ( + 0 => 'int', + ), + 'ZMQSocket::isPersistent' => + array ( + 0 => 'bool', + ), + 'ZMQSocket::recv' => + array ( + 0 => 'string', + 'mode=' => 'int', + ), + 'ZMQSocket::recvMulti' => + array ( + 0 => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::send' => + array ( + 0 => 'ZMQSocket', + 'message' => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::send\'1' => + array ( + 0 => 'ZMQSocket', + 'message' => 'string', + 'mode=' => 'int', + ), + 'ZMQSocket::sendmulti' => + array ( + 0 => 'ZMQSocket', + 'message' => 'array', + 'mode=' => 'int', + ), + 'ZMQSocket::setSockOpt' => + array ( + 0 => 'ZMQSocket', + 'key' => 'int', + 'value' => 'mixed', + ), + 'ZMQSocket::unbind' => + array ( + 0 => 'ZMQSocket', + 'dsn' => 'string', + ), + 'ZendAPI_Job::ZendAPI_Job' => + array ( + 0 => 'Job', + 'script' => 'script', + ), + 'ZendAPI_Job::addJobToQueue' => + array ( + 0 => 'int', + 'jobqueue_url' => 'string', + 'password' => 'string', + ), + 'ZendAPI_Job::getApplicationID' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getEndTime' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getGlobalVariables' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getHost' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getID' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getInterval' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobDependency' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobName' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobPriority' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getJobStatus' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getLastPerformedStatus' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getOutput' => + array ( + 0 => 'An', + ), + 'ZendAPI_Job::getPreserved' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getProperties' => + array ( + 0 => 'array', + ), + 'ZendAPI_Job::getScheduledTime' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getScript' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::getTimeToNextRepeat' => + array ( + 0 => 'int', + ), + 'ZendAPI_Job::getUserVariables' => + array ( + 0 => 'mixed', + ), + 'ZendAPI_Job::setApplicationID' => + array ( + 0 => 'mixed', + 'app_id' => 'mixed', + ), + 'ZendAPI_Job::setGlobalVariables' => + array ( + 0 => 'mixed', + 'vars' => 'mixed', + ), + 'ZendAPI_Job::setJobDependency' => + array ( + 0 => 'mixed', + 'job_id' => 'mixed', + ), + 'ZendAPI_Job::setJobName' => + array ( + 0 => 'mixed', + 'name' => 'mixed', + ), + 'ZendAPI_Job::setJobPriority' => + array ( + 0 => 'mixed', + 'priority' => 'int', + ), + 'ZendAPI_Job::setPreserved' => + array ( + 0 => 'mixed', + 'preserved' => 'mixed', + ), + 'ZendAPI_Job::setRecurrenceData' => + array ( + 0 => 'mixed', + 'interval' => 'mixed', + 'end_time=' => 'mixed', + ), + 'ZendAPI_Job::setScheduledTime' => + array ( + 0 => 'mixed', + 'timestamp' => 'mixed', + ), + 'ZendAPI_Job::setScript' => + array ( + 0 => 'mixed', + 'script' => 'mixed', + ), + 'ZendAPI_Job::setUserVariables' => + array ( + 0 => 'mixed', + 'vars' => 'mixed', + ), + 'ZendAPI_Queue::addJob' => + array ( + 0 => 'int', + '&job' => 'Job', + ), + 'ZendAPI_Queue::getAllApplicationIDs' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::getAllhosts' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::getHistoricJobs' => + array ( + 0 => 'array', + 'status' => 'int', + 'start_time' => 'mixed', + 'end_time' => 'mixed', + 'index' => 'int', + 'count' => 'int', + '&total' => 'int', + ), + 'ZendAPI_Queue::getJob' => + array ( + 0 => 'Job', + 'job_id' => 'int', + ), + 'ZendAPI_Queue::getJobsInQueue' => + array ( + 0 => 'array', + 'filter_options=' => 'array', + 'max_jobs=' => 'int', + 'with_globals_and_output=' => 'bool', + ), + 'ZendAPI_Queue::getLastError' => + array ( + 0 => 'string', + ), + 'ZendAPI_Queue::getNumOfJobsInQueue' => + array ( + 0 => 'int', + 'filter_options=' => 'array', + ), + 'ZendAPI_Queue::getStatistics' => + array ( + 0 => 'array', + ), + 'ZendAPI_Queue::isScriptExists' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'ZendAPI_Queue::isSuspend' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::login' => + array ( + 0 => 'bool', + 'password' => 'string', + 'application_id=' => 'int', + ), + 'ZendAPI_Queue::removeJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::requeueJob' => + array ( + 0 => 'bool', + 'job' => 'Job', + ), + 'ZendAPI_Queue::resumeJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::resumeQueue' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::setMaxHistoryTime' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::suspendJob' => + array ( + 0 => 'bool', + 'job_id' => 'array|int', + ), + 'ZendAPI_Queue::suspendQueue' => + array ( + 0 => 'bool', + ), + 'ZendAPI_Queue::updateJob' => + array ( + 0 => 'int', + '&job' => 'Job', + ), + 'ZendAPI_Queue::zendapi_queue' => + array ( + 0 => 'ZendAPI_Queue', + 'queue_url' => 'string', + ), + 'ZipArchive::addEmptyDir' => + array ( + 0 => 'bool', + 'dirname' => 'string', + ), + 'ZipArchive::addFile' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'entryname=' => 'string', + 'start=' => 'int', + 'length=' => 'int', + ), + 'ZipArchive::addFromString' => + array ( + 0 => 'bool', + 'name' => 'string', + 'content' => 'string', + ), + 'ZipArchive::addGlob' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'flags=' => 'int', + 'options=' => 'array', + ), + 'ZipArchive::addPattern' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'path=' => 'string', + 'options=' => 'array', + ), + 'ZipArchive::close' => + array ( + 0 => 'bool', + ), + 'ZipArchive::deleteIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ZipArchive::deleteName' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'ZipArchive::extractTo' => + array ( + 0 => 'bool', + 'pathto' => 'string', + 'files=' => 'array|null|string', + ), + 'ZipArchive::getArchiveComment' => + array ( + 0 => 'false|string', + 'flags=' => 'int', + ), + 'ZipArchive::getCommentIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getCommentName' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::getExternalAttributesIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + '&w_opsys' => 'int', + '&w_attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getExternalAttributesName' => + array ( + 0 => 'bool', + 'name' => 'string', + '&w_opsys' => 'int', + '&w_attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getFromIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'len=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getFromName' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'len=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getNameIndex' => + array ( + 0 => 'false|string', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::getStatusString' => + array ( + 0 => 'false|string', + ), + 'ZipArchive::getStream' => + array ( + 0 => 'false|resource', + 'name' => 'string', + ), + 'ZipArchive::isCompressionMethodSupported' => + array ( + 0 => 'bool', + 'method' => 'int', + 'enc=' => 'bool', + ), + 'ZipArchive::isEncryptionMethodSupported' => + array ( + 0 => 'bool', + 'method' => 'int', + 'enc=' => 'bool', + ), + 'ZipArchive::locateName' => + array ( + 0 => 'false|int', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::open' => + array ( + 0 => 'bool|int', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::registerCancelCallback' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'ZipArchive::registerProgressCallback' => + array ( + 0 => 'bool', + 'rate' => 'float', + 'callback' => 'callable', + ), + 'ZipArchive::renameIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'new_name' => 'string', + ), + 'ZipArchive::renameName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'new_name' => 'string', + ), + 'ZipArchive::replaceFile' => + array ( + 0 => 'bool', + 'filepath' => 'string', + 'index' => 'int', + 'start=' => 'int', + 'length=' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setArchiveComment' => + array ( + 0 => 'bool', + 'comment' => 'string', + ), + 'ZipArchive::setCommentIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'comment' => 'string', + ), + 'ZipArchive::setCommentName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'comment' => 'string', + ), + 'ZipArchive::setCompressionIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'method' => 'int', + 'compflags=' => 'int', + ), + 'ZipArchive::setCompressionName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'method' => 'int', + 'compflags=' => 'int', + ), + 'ZipArchive::setExternalAttributesIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'opsys' => 'int', + 'attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setExternalAttributesName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'opsys' => 'int', + 'attr' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setMtimeIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + 'timestamp' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setMtimeName' => + array ( + 0 => 'bool', + 'name' => 'string', + 'timestamp' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::setPassword' => + array ( + 0 => 'bool', + 'password' => 'string', + ), + 'ZipArchive::statIndex' => + array ( + 0 => 'array|false', + 'index' => 'int', + 'flags=' => 'int', + ), + 'ZipArchive::statName' => + array ( + 0 => 'array|false', + 'name' => 'string', + 'flags=' => 'int', + ), + 'ZipArchive::unchangeAll' => + array ( + 0 => 'bool', + ), + 'ZipArchive::unchangeArchive' => + array ( + 0 => 'bool', + ), + 'ZipArchive::unchangeIndex' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ZipArchive::unchangeName' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'Zookeeper::addAuth' => + array ( + 0 => 'bool', + 'scheme' => 'string', + 'cert' => 'string', + 'completion_cb=' => 'callable', + ), + 'Zookeeper::close' => + array ( + 0 => 'void', + ), + 'Zookeeper::connect' => + array ( + 0 => 'void', + 'host' => 'string', + 'watcher_cb=' => 'callable', + 'recv_timeout=' => 'int', + ), + 'Zookeeper::create' => + array ( + 0 => 'string', + 'path' => 'string', + 'value' => 'string', + 'acls' => 'array', + 'flags=' => 'int', + ), + 'Zookeeper::delete' => + array ( + 0 => 'bool', + 'path' => 'string', + 'version=' => 'int', + ), + 'Zookeeper::exists' => + array ( + 0 => 'bool', + 'path' => 'string', + 'watcher_cb=' => 'callable', + ), + 'Zookeeper::get' => + array ( + 0 => 'string', + 'path' => 'string', + 'watcher_cb=' => 'callable', + 'stat=' => 'array', + 'max_size=' => 'int', + ), + 'Zookeeper::getAcl' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'Zookeeper::getChildren' => + array ( + 0 => 'array|false', + 'path' => 'string', + 'watcher_cb=' => 'callable', + ), + 'Zookeeper::getClientId' => + array ( + 0 => 'int', + ), + 'Zookeeper::getConfig' => + array ( + 0 => 'ZookeeperConfig', + ), + 'Zookeeper::getRecvTimeout' => + array ( + 0 => 'int', + ), + 'Zookeeper::getState' => + array ( + 0 => 'int', + ), + 'Zookeeper::isRecoverable' => + array ( + 0 => 'bool', + ), + 'Zookeeper::set' => + array ( + 0 => 'bool', + 'path' => 'string', + 'value' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'Zookeeper::setAcl' => + array ( + 0 => 'bool', + 'path' => 'string', + 'version' => 'int', + 'acl' => 'array', + ), + 'Zookeeper::setDebugLevel' => + array ( + 0 => 'bool', + 'logLevel' => 'int', + ), + 'Zookeeper::setDeterministicConnOrder' => + array ( + 0 => 'bool', + 'yesOrNo' => 'bool', + ), + 'Zookeeper::setLogStream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'Zookeeper::setWatcher' => + array ( + 0 => 'bool', + 'watcher_cb' => 'callable', + ), + 'ZookeeperConfig::add' => + array ( + 0 => 'void', + 'members' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'ZookeeperConfig::get' => + array ( + 0 => 'string', + 'watcher_cb=' => 'callable', + 'stat=' => 'array', + ), + 'ZookeeperConfig::remove' => + array ( + 0 => 'void', + 'id_list' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + 'ZookeeperConfig::set' => + array ( + 0 => 'void', + 'members' => 'string', + 'version=' => 'int', + 'stat=' => 'array', + ), + '_' => + array ( + 0 => 'string', + 'message' => 'string', + ), + '__halt_compiler' => + array ( + 0 => 'void', + ), + 'abs' => + array ( + 0 => 'int<0, max>', + 'num' => 'int', + ), + 'abs\'1' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'abs\'2' => + array ( + 0 => 'numeric', + 'num' => 'numeric', + ), + 'accelerator_get_configuration' => + array ( + 0 => 'array', + ), + 'accelerator_get_scripts' => + array ( + 0 => 'array', + ), + 'accelerator_get_status' => + array ( + 0 => 'array', + 'fetch_scripts' => 'bool', + ), + 'accelerator_reset' => + array ( + 0 => 'mixed', + ), + 'accelerator_set_status' => + array ( + 0 => 'void', + 'status' => 'bool', + ), + 'acos' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'acosh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'addcslashes' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters' => 'string', + ), + 'addslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'apache_child_terminate' => + array ( + 0 => 'bool', + ), + 'apache_get_modules' => + array ( + 0 => 'array', + ), + 'apache_get_version' => + array ( + 0 => 'false|string', + ), + 'apache_getenv' => + array ( + 0 => 'false|string', + 'variable' => 'string', + 'walk_to_top=' => 'bool', + ), + 'apache_lookup_uri' => + array ( + 0 => 'object', + 'filename' => 'string', + ), + 'apache_note' => + array ( + 0 => 'false|string', + 'note_name' => 'string', + 'note_value=' => 'string', + ), + 'apache_request_headers' => + array ( + 0 => 'array|false', + ), + 'apache_reset_timeout' => + array ( + 0 => 'bool', + ), + 'apache_response_headers' => + array ( + 0 => 'array|false', + ), + 'apache_setenv' => + array ( + 0 => 'bool', + 'variable' => 'string', + 'value' => 'string', + 'walk_to_top=' => 'bool', + ), + 'apc_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_add\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_bin_dump' => + array ( + 0 => 'false|null|string', + 'files=' => 'array', + 'user_vars=' => 'array', + ), + 'apc_bin_dumpfile' => + array ( + 0 => 'false|int', + 'files' => 'array', + 'user_vars' => 'array', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'apc_bin_load' => + array ( + 0 => 'bool', + 'data' => 'string', + 'flags=' => 'int', + ), + 'apc_bin_loadfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'context=' => 'resource', + 'flags=' => 'int', + ), + 'apc_cache_info' => + array ( + 0 => 'array|false', + 'cache_type=' => 'string', + 'limited=' => 'bool', + ), + 'apc_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old' => 'int', + 'new' => 'int', + ), + 'apc_clear_cache' => + array ( + 0 => 'bool', + 'cache_type=' => 'string', + ), + 'apc_compile_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'atomic=' => 'bool', + ), + 'apc_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + ), + 'apc_define_constants' => + array ( + 0 => 'bool', + 'key' => 'string', + 'constants' => 'array', + 'case_sensitive=' => 'bool', + ), + 'apc_delete' => + array ( + 0 => 'bool', + 'key' => 'APCIterator|array|string', + ), + 'apc_delete_file' => + array ( + 0 => 'array|bool', + 'keys' => 'mixed', + ), + 'apc_exists' => + array ( + 0 => 'bool', + 'keys' => 'string', + ), + 'apc_exists\'1' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'apc_fetch' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + '&w_success=' => 'bool', + ), + 'apc_fetch\'1' => + array ( + 0 => 'array|false', + 'key' => 'array', + '&w_success=' => 'bool', + ), + 'apc_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + ), + 'apc_load_constants' => + array ( + 0 => 'bool', + 'key' => 'string', + 'case_sensitive=' => 'bool', + ), + 'apc_sma_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apc_store' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apc_store\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_add\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_cache_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apcu_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old' => 'int', + 'new' => 'int', + ), + 'apcu_clear_cache' => + array ( + 0 => 'bool', + ), + 'apcu_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + 'ttl=' => 'int', + ), + 'apcu_delete' => + array ( + 0 => 'bool', + 'key' => 'APCuIterator|string', + ), + 'apcu_delete\'1' => + array ( + 0 => 'list', + 'key' => 'array', + ), + 'apcu_enabled' => + array ( + 0 => 'bool', + ), + 'apcu_entry' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'generator' => 'callable(string):mixed', + 'ttl=' => 'int', + ), + 'apcu_exists' => + array ( + 0 => 'bool', + 'keys' => 'string', + ), + 'apcu_exists\'1' => + array ( + 0 => 'array', + 'keys' => 'array', + ), + 'apcu_fetch' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + '&w_success=' => 'bool', + ), + 'apcu_fetch\'1' => + array ( + 0 => 'array|false', + 'key' => 'array', + '&w_success=' => 'bool', + ), + 'apcu_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'step=' => 'int', + '&w_success=' => 'bool', + 'ttl=' => 'int', + ), + 'apcu_key_info' => + array ( + 0 => 'array|null', + 'key' => 'string', + ), + 'apcu_sma_info' => + array ( + 0 => 'array|false', + 'limited=' => 'bool', + ), + 'apcu_store' => + array ( + 0 => 'bool', + 'key' => 'string', + 'var=' => 'mixed', + 'ttl=' => 'int', + ), + 'apcu_store\'1' => + array ( + 0 => 'array', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'apd_breakpoint' => + array ( + 0 => 'bool', + 'debug_level' => 'int', + ), + 'apd_callstack' => + array ( + 0 => 'array', + ), + 'apd_clunk' => + array ( + 0 => 'void', + 'warning' => 'string', + 'delimiter=' => 'string', + ), + 'apd_continue' => + array ( + 0 => 'bool', + 'debug_level' => 'int', + ), + 'apd_croak' => + array ( + 0 => 'void', + 'warning' => 'string', + 'delimiter=' => 'string', + ), + 'apd_dump_function_table' => + array ( + 0 => 'void', + ), + 'apd_dump_persistent_resources' => + array ( + 0 => 'array', + ), + 'apd_dump_regular_resources' => + array ( + 0 => 'array', + ), + 'apd_echo' => + array ( + 0 => 'bool', + 'output' => 'string', + ), + 'apd_get_active_symbols' => + array ( + 0 => 'array', + ), + 'apd_set_pprof_trace' => + array ( + 0 => 'string', + 'dump_directory=' => 'string', + 'fragment=' => 'string', + ), + 'apd_set_session' => + array ( + 0 => 'void', + 'debug_level' => 'int', + ), + 'apd_set_session_trace' => + array ( + 0 => 'void', + 'debug_level' => 'int', + 'dump_directory=' => 'string', + ), + 'apd_set_session_trace_socket' => + array ( + 0 => 'bool', + 'tcp_server' => 'string', + 'socket_type' => 'int', + 'port' => 'int', + 'debug_level' => 'int', + ), + 'array_change_key_case' => + array ( + 0 => 'array', + 'array' => 'array', + 'case=' => 'int', + ), + 'array_chunk' => + array ( + 0 => 'list>>', + 'array' => 'array', + 'length' => 'int', + 'preserve_keys=' => 'bool', + ), + 'array_column' => + array ( + 0 => 'array', + 'array' => 'array', + 'column_key' => 'mixed', + 'index_key=' => 'mixed', + ), + 'array_combine' => + array ( + 0 => 'array|false', + 'keys' => 'array', + 'values' => 'array', + ), + 'array_count_values' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'array_diff' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_diff_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_diff_key' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_diff_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_diff_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_diff_ukey' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_diff_ukey\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_fill' => + array ( + 0 => 'array', + 'start_index' => 'int', + 'count' => 'int', + 'value' => 'mixed', + ), + 'array_fill_keys' => + array ( + 0 => 'array', + 'keys' => 'array', + 'value' => 'mixed', + ), + 'array_filter' => + array ( + 0 => 'array', + 'array' => 'array', + 'callback=' => 'callable(mixed, array-key=):mixed', + 'mode=' => 'int', + ), + 'array_flip' => + array ( + 0 => 'array', + 'array' => 'array', + ), + 'array_intersect' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_intersect_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_intersect_key' => + array ( + 0 => 'array', + 'array' => 'array', + '...arrays' => 'array', + ), + 'array_intersect_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_intersect_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest' => 'array|callable(mixed, mixed):int', + ), + 'array_intersect_ukey' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_intersect_ukey\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest' => 'array|callable(mixed, mixed):int', + ), + 'array_key_exists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array|object', + ), + 'array_keys' => + array ( + 0 => 'list', + 'array' => 'array', + 'filter_value=' => 'mixed', + 'strict=' => 'bool', + ), + 'array_map' => + array ( + 0 => 'array', + 'callback' => 'callable|null', + 'array' => 'array', + '...arrays=' => 'array', + ), + 'array_merge' => + array ( + 0 => 'array', + '...arrays' => 'array', + ), + 'array_merge_recursive' => + array ( + 0 => 'array', + '...arrays' => 'array', + ), + 'array_multisort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'rest=' => 'array|int', + 'array1_sort_flags=' => 'array|int', + '...args=' => 'array|int', + ), + 'array_pad' => + array ( + 0 => 'array', + 'array' => 'array', + 'length' => 'int', + 'value' => 'mixed', + ), + 'array_pop' => + array ( + 0 => 'mixed', + '&rw_array' => 'array', + ), + 'array_product' => + array ( + 0 => 'float|int', + 'array' => 'array', + ), + 'array_push' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values' => 'mixed', + ), + 'array_rand' => + array ( + 0 => 'array|int|string', + 'array' => 'non-empty-array', + 'num' => 'int', + ), + 'array_rand\'1' => + array ( + 0 => 'int|string', + 'array' => 'array', + ), + 'array_reduce' => + array ( + 0 => 'mixed', + 'array' => 'array', + 'callback' => 'callable(mixed, mixed):mixed', + 'initial=' => 'mixed', + ), + 'array_replace' => + array ( + 0 => 'array', + 'array' => 'array', + '...replacements=' => 'array', + ), + 'array_replace_recursive' => + array ( + 0 => 'array', + 'array' => 'array', + '...replacements=' => 'array', + ), + 'array_reverse' => + array ( + 0 => 'array', + 'array' => 'array', + 'preserve_keys=' => 'bool', + ), + 'array_search' => + array ( + 0 => 'false|int|string', + 'needle' => 'mixed', + 'haystack' => 'array', + 'strict=' => 'bool', + ), + 'array_shift' => + array ( + 0 => 'mixed|null', + '&rw_array' => 'array', + ), + 'array_slice' => + array ( + 0 => 'array', + 'array' => 'array', + 'offset' => 'int', + 'length=' => 'int|null', + 'preserve_keys=' => 'bool', + ), + 'array_splice' => + array ( + 0 => 'array', + '&rw_array' => 'array', + 'offset' => 'int', + 'length=' => 'int', + 'replacement=' => 'array|string', + ), + 'array_sum' => + array ( + 0 => 'float|int', + 'array' => 'array', + ), + 'array_udiff' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_udiff_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff_assoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_udiff_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_comp_func' => 'callable(mixed, mixed):int', + 'key_comp_func' => 'callable(mixed, mixed):int', + ), + 'array_udiff_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + 'arg5' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect_assoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect_assoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_uintersect_uassoc' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'data_compare_func' => 'callable(mixed, mixed):int', + 'key_compare_func' => 'callable(mixed, mixed):int', + ), + 'array_uintersect_uassoc\'1' => + array ( + 0 => 'array', + 'array' => 'array', + 'rest' => 'array', + 'arr3' => 'array', + 'arg4' => 'array|callable(mixed, mixed):int', + 'arg5' => 'array|callable(mixed, mixed):int', + '...rest=' => 'array|callable(mixed, mixed):int', + ), + 'array_unique' => + array ( + 0 => 'array', + 'array' => 'array', + 'flags=' => 'int', + ), + 'array_unshift' => + array ( + 0 => 'int', + '&rw_array' => 'array', + '...values' => 'mixed', + ), + 'array_values' => + array ( + 0 => 'list', + 'array' => 'array', + ), + 'array_walk' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk\'1' => + array ( + 0 => 'bool', + '&rw_array' => 'object', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk_recursive' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'array_walk_recursive\'1' => + array ( + 0 => 'bool', + '&rw_array' => 'object', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'arsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'asin' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'asinh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'asort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'assert' => + array ( + 0 => 'bool', + 'assertion' => 'bool|int|string', + 'description=' => 'Throwable|null|string', + ), + 'assert_options' => + array ( + 0 => 'false|mixed', + 'option' => 'int', + 'value=' => 'mixed', + ), + 'ast\\Node::__construct' => + array ( + 0 => 'void', + 'kind=' => 'int', + 'flags=' => 'int', + 'children=' => 'array', + 'start_line=' => 'int', + ), + 'ast\\get_kind_name' => + array ( + 0 => 'string', + 'kind' => 'int', + ), + 'ast\\get_metadata' => + array ( + 0 => 'array', + ), + 'ast\\get_supported_versions' => + array ( + 0 => 'array', + 'exclude_deprecated=' => 'bool', + ), + 'ast\\kind_uses_flags' => + array ( + 0 => 'bool', + 'kind' => 'int', + ), + 'ast\\parse_code' => + array ( + 0 => 'ast\\Node', + 'code' => 'string', + 'version' => 'int', + 'filename=' => 'string', + ), + 'ast\\parse_file' => + array ( + 0 => 'ast\\Node', + 'filename' => 'string', + 'version' => 'int', + ), + 'atan' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'atan2' => + array ( + 0 => 'float', + 'y' => 'float', + 'x' => 'float', + ), + 'atanh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'base64_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'strict=' => 'false', + ), + 'base64_decode\'1' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'strict=' => 'true', + ), + 'base64_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'base_convert' => + array ( + 0 => 'string', + 'num' => 'string', + 'from_base' => 'int', + 'to_base' => 'int', + ), + 'basename' => + array ( + 0 => 'string', + 'path' => 'string', + 'suffix=' => 'string', + ), + 'bbcode_add_element' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'tag_name' => 'string', + 'tag_rules' => 'array', + ), + 'bbcode_add_smiley' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'smiley' => 'string', + 'replace_by' => 'string', + ), + 'bbcode_create' => + array ( + 0 => 'resource', + 'bbcode_initial_tags=' => 'array', + ), + 'bbcode_destroy' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + ), + 'bbcode_parse' => + array ( + 0 => 'string', + 'bbcode_container' => 'resource', + 'to_parse' => 'string', + ), + 'bbcode_set_arg_parser' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'bbcode_arg_parser' => 'resource', + ), + 'bbcode_set_flags' => + array ( + 0 => 'bool', + 'bbcode_container' => 'resource', + 'flags' => 'int', + 'mode=' => 'int', + ), + 'bcadd' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bccomp' => + array ( + 0 => 'int', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcdiv' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcmod' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcmul' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcompiler_load' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'bcompiler_load_exe' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'bcompiler_parse_class' => + array ( + 0 => 'bool', + 'class' => 'string', + 'callback' => 'string', + ), + 'bcompiler_read' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'bcompiler_write_class' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'classname' => 'string', + 'extends=' => 'string', + ), + 'bcompiler_write_constant' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'constantname' => 'string', + ), + 'bcompiler_write_exe_footer' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'startpos' => 'int', + ), + 'bcompiler_write_file' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcompiler_write_footer' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + ), + 'bcompiler_write_function' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'functionname' => 'string', + ), + 'bcompiler_write_functions_from_file' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcompiler_write_header' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'write_ver=' => 'string', + ), + 'bcompiler_write_included_filename' => + array ( + 0 => 'bool', + 'filehandle' => 'resource', + 'filename' => 'string', + ), + 'bcpow' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcpowmod' => + array ( + 0 => 'false|numeric-string', + 'num' => 'numeric-string', + 'exponent' => 'numeric-string', + 'modulus' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcscale' => + array ( + 0 => 'int', + 'scale' => 'int', + ), + 'bcsqrt' => + array ( + 0 => 'numeric-string', + 'num' => 'numeric-string', + 'scale=' => 'int', + ), + 'bcsub' => + array ( + 0 => 'numeric-string', + 'num1' => 'numeric-string', + 'num2' => 'numeric-string', + 'scale=' => 'int', + ), + 'bin2hex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'bind_textdomain_codeset' => + array ( + 0 => 'string', + 'domain' => 'string', + 'codeset' => 'string', + ), + 'bindec' => + array ( + 0 => 'float|int', + 'binary_string' => 'string', + ), + 'bindtextdomain' => + array ( + 0 => 'string', + 'domain' => 'string', + 'directory' => 'string', + ), + 'birdstep_autocommit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_close' => + array ( + 0 => 'bool', + 'id' => 'int', + ), + 'birdstep_commit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_connect' => + array ( + 0 => 'int', + 'server' => 'string', + 'user' => 'string', + 'pass' => 'string', + ), + 'birdstep_exec' => + array ( + 0 => 'int', + 'index' => 'int', + 'exec_str' => 'string', + ), + 'birdstep_fetch' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_fieldname' => + array ( + 0 => 'string', + 'index' => 'int', + 'col' => 'int', + ), + 'birdstep_fieldnum' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'birdstep_freeresult' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_off_autocommit' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'birdstep_result' => + array ( + 0 => 'mixed', + 'index' => 'int', + 'col' => 'mixed', + ), + 'birdstep_rollback' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'blenc_encrypt' => + array ( + 0 => 'string', + 'plaintext' => 'string', + 'encodedfile' => 'string', + 'encryption_key=' => 'string', + ), + 'boolval' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'bson_decode' => + array ( + 0 => 'array', + 'bson' => 'string', + ), + 'bson_encode' => + array ( + 0 => 'string', + 'anything' => 'mixed', + ), + 'bzclose' => + array ( + 0 => 'bool', + 'bz' => 'resource', + ), + 'bzcompress' => + array ( + 0 => 'int|string', + 'data' => 'string', + 'block_size=' => 'int', + 'work_factor=' => 'int', + ), + 'bzdecompress' => + array ( + 0 => 'false|int|string', + 'data' => 'string', + 'use_less_memory=' => 'int', + ), + 'bzerrno' => + array ( + 0 => 'int', + 'bz' => 'resource', + ), + 'bzerror' => + array ( + 0 => 'array', + 'bz' => 'resource', + ), + 'bzerrstr' => + array ( + 0 => 'string', + 'bz' => 'resource', + ), + 'bzflush' => + array ( + 0 => 'bool', + 'bz' => 'resource', + ), + 'bzopen' => + array ( + 0 => 'false|resource', + 'file' => 'resource|string', + 'mode' => 'string', + ), + 'bzread' => + array ( + 0 => 'false|string', + 'bz' => 'resource', + 'length=' => 'int', + ), + 'bzwrite' => + array ( + 0 => 'false|int', + 'bz' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'cal_days_in_month' => + array ( + 0 => 'int', + 'calendar' => 'int', + 'month' => 'int', + 'year' => 'int', + ), + 'cal_from_jd' => + array ( + 0 => 'array{abbrevdayname: string, abbrevmonth: string, date: string, day: int, dayname: string, dow: int, month: int, monthname: string, year: int}', + 'julian_day' => 'int', + 'calendar' => 'int', + ), + 'cal_info' => + array ( + 0 => 'array', + 'calendar=' => 'int', + ), + 'cal_to_jd' => + array ( + 0 => 'int', + 'calendar' => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'calcul_hmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'siretcode' => 'string', + 'price' => 'string', + 'reference' => 'string', + 'validity' => 'string', + 'taxation' => 'string', + 'devise' => 'string', + 'language' => 'string', + ), + 'calculhmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'call_user_func' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'call_user_func_array' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + 'args' => 'list', + ), + 'call_user_method' => + array ( + 0 => 'mixed', + 'method_name' => 'string', + 'object' => 'object', + 'parameter=' => 'mixed', + '...args=' => 'mixed', + ), + 'call_user_method_array' => + array ( + 0 => 'mixed', + 'method_name' => 'string', + 'object' => 'object', + 'params' => 'list', + ), + 'ceil' => + array ( + 0 => 'float', + 'num' => 'float|int', + ), + 'chdb::__construct' => + array ( + 0 => 'void', + 'pathname' => 'string', + ), + 'chdb::get' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'chdb_create' => + array ( + 0 => 'bool', + 'pathname' => 'string', + 'data' => 'array', + ), + 'chdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'checkdate' => + array ( + 0 => 'bool', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'checkdnsrr' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'type=' => 'string', + ), + 'chgrp' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'group' => 'int|string', + ), + 'chmod' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'permissions' => 'int', + ), + 'chop' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'chown' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'user' => 'int|string', + ), + 'chr' => + array ( + 0 => 'non-empty-string', + 'codepoint' => 'int', + ), + 'chroot' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'chunk_split' => + array ( + 0 => 'string', + 'string' => 'string', + 'length=' => 'int', + 'separator=' => 'string', + ), + 'classObj::__construct' => + array ( + 0 => 'void', + 'layer' => 'layerObj', + 'class' => 'classObj', + ), + 'classObj::addLabel' => + array ( + 0 => 'int', + 'label' => 'labelObj', + ), + 'classObj::convertToString' => + array ( + 0 => 'string', + ), + 'classObj::createLegendIcon' => + array ( + 0 => 'imageObj', + 'width' => 'int', + 'height' => 'int', + ), + 'classObj::deletestyle' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::drawLegendIcon' => + array ( + 0 => 'int', + 'width' => 'int', + 'height' => 'int', + 'im' => 'imageObj', + 'dstX' => 'int', + 'dstY' => 'int', + ), + 'classObj::free' => + array ( + 0 => 'void', + ), + 'classObj::getExpressionString' => + array ( + 0 => 'string', + ), + 'classObj::getLabel' => + array ( + 0 => 'labelObj', + 'index' => 'int', + ), + 'classObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'classObj::getStyle' => + array ( + 0 => 'styleObj', + 'index' => 'int', + ), + 'classObj::getTextString' => + array ( + 0 => 'string', + ), + 'classObj::movestyledown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::movestyleup' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'classObj::ms_newClassObj' => + array ( + 0 => 'classObj', + 'layer' => 'layerObj', + 'class' => 'classObj', + ), + 'classObj::removeLabel' => + array ( + 0 => 'labelObj', + 'index' => 'int', + ), + 'classObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'classObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'classObj::setExpression' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'classObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'classObj::settext' => + array ( + 0 => 'int', + 'text' => 'string', + ), + 'classObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'class_alias' => + array ( + 0 => 'bool', + 'class' => 'string', + 'alias' => 'string', + 'autoload=' => 'bool', + ), + 'class_exists' => + array ( + 0 => 'bool', + 'class' => 'string', + 'autoload=' => 'bool', + ), + 'class_implements' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'class_parents' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'class_uses' => + array ( + 0 => 'array|false', + 'object_or_class' => 'object|string', + 'autoload=' => 'bool', + ), + 'classkit_import' => + array ( + 0 => 'array', + 'filename' => 'string', + ), + 'classkit_method_add' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + ), + 'classkit_method_copy' => + array ( + 0 => 'bool', + 'dclass' => 'string', + 'dmethod' => 'string', + 'sclass' => 'string', + 'smethod=' => 'string', + ), + 'classkit_method_redefine' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + ), + 'classkit_method_remove' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + ), + 'classkit_method_rename' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'newname' => 'string', + ), + 'clearstatcache' => + array ( + 0 => 'void', + 'clear_realpath_cache=' => 'bool', + 'filename=' => 'string', + ), + 'cli_get_process_title' => + array ( + 0 => 'null|string', + ), + 'cli_set_process_title' => + array ( + 0 => 'bool', + 'title' => 'string', + ), + 'closedir' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'closelog' => + array ( + 0 => 'true', + ), + 'clusterObj::convertToString' => + array ( + 0 => 'string', + ), + 'clusterObj::getFilterString' => + array ( + 0 => 'string', + ), + 'clusterObj::getGroupString' => + array ( + 0 => 'string', + ), + 'clusterObj::setFilter' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'clusterObj::setGroup' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'collator_asort' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'collator_compare' => + array ( + 0 => 'int', + 'object' => 'collator', + 'string1' => 'string', + 'string2' => 'string', + ), + 'collator_create' => + array ( + 0 => 'Collator|null', + 'locale' => 'string', + ), + 'collator_get_attribute' => + array ( + 0 => 'false|int', + 'object' => 'collator', + 'attribute' => 'int', + ), + 'collator_get_error_code' => + array ( + 0 => 'int', + 'object' => 'collator', + ), + 'collator_get_error_message' => + array ( + 0 => 'string', + 'object' => 'collator', + ), + 'collator_get_locale' => + array ( + 0 => 'string', + 'object' => 'collator', + 'type' => 'int', + ), + 'collator_get_sort_key' => + array ( + 0 => 'string', + 'object' => 'collator', + 'string' => 'string', + ), + 'collator_get_strength' => + array ( + 0 => 'false|int', + 'object' => 'collator', + ), + 'collator_set_attribute' => + array ( + 0 => 'bool', + 'object' => 'collator', + 'attribute' => 'int', + 'value' => 'int', + ), + 'collator_set_strength' => + array ( + 0 => 'bool', + 'object' => 'collator', + 'strength' => 'int', + ), + 'collator_sort' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'collator_sort_with_sort_keys' => + array ( + 0 => 'bool', + 'object' => 'collator', + '&rw_array' => 'array', + ), + 'colorObj::setHex' => + array ( + 0 => 'int', + 'hex' => 'string', + ), + 'colorObj::toHex' => + array ( + 0 => 'string', + ), + 'com_addref' => + array ( + 0 => 'mixed', + ), + 'com_create_guid' => + array ( + 0 => 'string', + ), + 'com_event_sink' => + array ( + 0 => 'bool', + 'variant' => 'VARIANT', + 'sink_object' => 'object', + 'sink_interface=' => 'mixed', + ), + 'com_get_active_object' => + array ( + 0 => 'VARIANT', + 'prog_id' => 'string', + 'codepage=' => 'int', + ), + 'com_isenum' => + array ( + 0 => 'bool', + 'com_module' => 'variant', + ), + 'com_load_typelib' => + array ( + 0 => 'bool', + 'typelib_name' => 'string', + 'case_insensitive=' => 'bool', + ), + 'com_message_pump' => + array ( + 0 => 'bool', + 'timeout_milliseconds=' => 'int', + ), + 'com_print_typeinfo' => + array ( + 0 => 'bool', + 'variant' => 'object', + 'dispatch_interface=' => 'string', + 'display_sink=' => 'bool', + ), + 'commonmark\\cql::__invoke' => + array ( + 0 => 'mixed', + 'root' => 'CommonMark\\Node', + 'handler' => 'callable', + ), + 'commonmark\\interfaces\\ivisitable::accept' => + array ( + 0 => 'void', + 'visitor' => 'CommonMark\\Interfaces\\IVisitor', + ), + 'commonmark\\interfaces\\ivisitor::enter' => + array ( + 0 => 'IVisitable|int|null', + 'visitable' => 'IVisitable', + ), + 'commonmark\\interfaces\\ivisitor::leave' => + array ( + 0 => 'IVisitable|int|null', + 'visitable' => 'IVisitable', + ), + 'commonmark\\node::accept' => + array ( + 0 => 'void', + 'visitor' => 'CommonMark\\Interfaces\\IVisitor', + ), + 'commonmark\\node::appendChild' => + array ( + 0 => 'CommonMark\\Node', + 'child' => 'CommonMark\\Node', + ), + 'commonmark\\node::insertAfter' => + array ( + 0 => 'CommonMark\\Node', + 'sibling' => 'CommonMark\\Node', + ), + 'commonmark\\node::insertBefore' => + array ( + 0 => 'CommonMark\\Node', + 'sibling' => 'CommonMark\\Node', + ), + 'commonmark\\node::prependChild' => + array ( + 0 => 'CommonMark\\Node', + 'child' => 'CommonMark\\Node', + ), + 'commonmark\\node::replace' => + array ( + 0 => 'CommonMark\\Node', + 'target' => 'CommonMark\\Node', + ), + 'commonmark\\node::unlink' => + array ( + 0 => 'void', + ), + 'commonmark\\parse' => + array ( + 0 => 'CommonMark\\Node', + 'content' => 'string', + 'options=' => 'int', + ), + 'commonmark\\parser::finish' => + array ( + 0 => 'CommonMark\\Node', + ), + 'commonmark\\parser::parse' => + array ( + 0 => 'void', + 'buffer' => 'string', + ), + 'commonmark\\render' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\html' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + ), + 'commonmark\\render\\latex' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\man' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + 'width=' => 'int', + ), + 'commonmark\\render\\xml' => + array ( + 0 => 'string', + 'node' => 'CommonMark\\Node', + 'options=' => 'int', + ), + 'compact' => + array ( + 0 => 'array', + 'var_name' => 'array|string', + '...var_names=' => 'array|string', + ), + 'componere\\abstract\\definition::addInterface' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'interface' => 'string', + ), + 'componere\\abstract\\definition::addMethod' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'name' => 'string', + 'method' => 'Componere\\Method', + ), + 'componere\\abstract\\definition::addTrait' => + array ( + 0 => 'Componere\\Abstract\\Definition', + 'trait' => 'string', + ), + 'componere\\abstract\\definition::getReflector' => + array ( + 0 => 'ReflectionClass', + ), + 'componere\\cast' => + array ( + 0 => 'object', + 'arg1' => 'string', + 'object' => 'object', + ), + 'componere\\cast_by_ref' => + array ( + 0 => 'object', + 'arg1' => 'string', + 'object' => 'object', + ), + 'componere\\definition::addConstant' => + array ( + 0 => 'Componere\\Definition', + 'name' => 'string', + 'value' => 'Componere\\Value', + ), + 'componere\\definition::addProperty' => + array ( + 0 => 'Componere\\Definition', + 'name' => 'string', + 'value' => 'Componere\\Value', + ), + 'componere\\definition::getClosure' => + array ( + 0 => 'Closure', + 'name' => 'string', + ), + 'componere\\definition::getClosures' => + array ( + 0 => 'array', + ), + 'componere\\definition::isRegistered' => + array ( + 0 => 'bool', + ), + 'componere\\definition::register' => + array ( + 0 => 'void', + ), + 'componere\\method::getReflector' => + array ( + 0 => 'ReflectionMethod', + ), + 'componere\\method::setPrivate' => + array ( + 0 => 'Method', + ), + 'componere\\method::setProtected' => + array ( + 0 => 'Method', + ), + 'componere\\method::setStatic' => + array ( + 0 => 'Method', + ), + 'componere\\patch::apply' => + array ( + 0 => 'void', + ), + 'componere\\patch::derive' => + array ( + 0 => 'Componere\\Patch', + 'instance' => 'object', + ), + 'componere\\patch::getClosure' => + array ( + 0 => 'Closure', + 'name' => 'string', + ), + 'componere\\patch::getClosures' => + array ( + 0 => 'array', + ), + 'componere\\patch::isApplied' => + array ( + 0 => 'bool', + ), + 'componere\\patch::revert' => + array ( + 0 => 'void', + ), + 'componere\\value::hasDefault' => + array ( + 0 => 'bool', + ), + 'componere\\value::isPrivate' => + array ( + 0 => 'bool', + ), + 'componere\\value::isProtected' => + array ( + 0 => 'bool', + ), + 'componere\\value::isStatic' => + array ( + 0 => 'bool', + ), + 'componere\\value::setPrivate' => + array ( + 0 => 'Value', + ), + 'componere\\value::setProtected' => + array ( + 0 => 'Value', + ), + 'componere\\value::setStatic' => + array ( + 0 => 'Value', + ), + 'confirm_pdo_ibm_compiled' => + array ( + 0 => 'mixed', + ), + 'connection_aborted' => + array ( + 0 => 'int', + ), + 'connection_status' => + array ( + 0 => 'int', + ), + 'connection_timeout' => + array ( + 0 => 'int', + ), + 'constant' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'convert_cyr_string' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'convert_uudecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'convert_uuencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'copy' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + 'context=' => 'resource', + ), + 'cos' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'cosh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'count' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|SimpleXMLElement|array', + 'mode=' => 'int', + ), + 'count_chars' => + array ( + 0 => 'array|false', + 'input' => 'string', + 'mode=' => '0|1|2', + ), + 'count_chars\'1' => + array ( + 0 => 'false|string', + 'input' => 'string', + 'mode=' => '3|4', + ), + 'crack_check' => + array ( + 0 => 'bool', + 'dictionary' => 'mixed', + 'password' => 'string', + ), + 'crack_closedict' => + array ( + 0 => 'bool', + 'dictionary=' => 'resource', + ), + 'crack_getlastmessage' => + array ( + 0 => 'string', + ), + 'crack_opendict' => + array ( + 0 => 'false|resource', + 'dictionary' => 'string', + ), + 'crash' => + array ( + 0 => 'mixed', + ), + 'crc32' => + array ( + 0 => 'int', + 'string' => 'string', + ), + 'create_function' => + array ( + 0 => 'string', + 'args' => 'string', + 'code' => 'string', + ), + 'crypt' => + array ( + 0 => 'string', + 'string' => 'string', + 'salt=' => 'string', + ), + 'ctype_alnum' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_alpha' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_cntrl' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_digit' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_graph' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_lower' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_print' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_punct' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_space' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_upper' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'ctype_xdigit' => + array ( + 0 => 'bool', + 'text' => 'int|string', + ), + 'cubrid_affected_rows' => + array ( + 0 => 'int', + 'req_identifier=' => 'mixed', + ), + 'cubrid_bind' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'bind_param' => 'int', + 'bind_value' => 'mixed', + 'bind_value_type=' => 'string', + ), + 'cubrid_client_encoding' => + array ( + 0 => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_close' => + array ( + 0 => 'bool', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_close_prepare' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_close_request' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_col_get' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + ), + 'cubrid_col_size' => + array ( + 0 => 'int', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + ), + 'cubrid_column_names' => + array ( + 0 => 'array', + 'req_identifier' => 'resource', + ), + 'cubrid_column_types' => + array ( + 0 => 'array', + 'req_identifier' => 'resource', + ), + 'cubrid_commit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_connect' => + array ( + 0 => 'resource', + 'host' => 'string', + 'port' => 'int', + 'dbname' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_connect_with_url' => + array ( + 0 => 'resource', + 'conn_url' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_current_oid' => + array ( + 0 => 'string', + 'req_identifier' => 'resource', + ), + 'cubrid_data_seek' => + array ( + 0 => 'bool', + 'req_identifier' => 'mixed', + 'row_number' => 'int', + ), + 'cubrid_db_name' => + array ( + 0 => 'string', + 'result' => 'array', + 'index' => 'int', + ), + 'cubrid_db_parameter' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_disconnect' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_errno' => + array ( + 0 => 'int', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_error' => + array ( + 0 => 'string', + 'connection=' => 'mixed', + ), + 'cubrid_error_code' => + array ( + 0 => 'int', + ), + 'cubrid_error_code_facility' => + array ( + 0 => 'int', + ), + 'cubrid_error_msg' => + array ( + 0 => 'string', + ), + 'cubrid_execute' => + array ( + 0 => 'bool', + 'conn_identifier' => 'mixed', + 'sql' => 'string', + 'option=' => 'int', + 'request_identifier=' => 'mixed', + ), + 'cubrid_fetch' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'type=' => 'int', + ), + 'cubrid_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'type=' => 'int', + ), + 'cubrid_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'cubrid_fetch_lengths' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'class_name=' => 'string', + 'params=' => 'array', + ), + 'cubrid_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'cubrid_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'cubrid_field_table' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'cubrid_free_result' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + ), + 'cubrid_get' => + array ( + 0 => 'mixed', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr=' => 'mixed', + ), + 'cubrid_get_autocommit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_charset' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_class_name' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_get_client_info' => + array ( + 0 => 'string', + ), + 'cubrid_get_db_parameter' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_get_query_timeout' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_get_server_info' => + array ( + 0 => 'string', + 'conn_identifier' => 'resource', + ), + 'cubrid_insert_id' => + array ( + 0 => 'string', + 'conn_identifier=' => 'resource', + ), + 'cubrid_is_instance' => + array ( + 0 => 'int', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_list_dbs' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + ), + 'cubrid_load_from_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + 'file_name' => 'string', + ), + 'cubrid_lob2_bind' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'bind_index' => 'int', + 'bind_value' => 'mixed', + 'bind_value_type=' => 'string', + ), + 'cubrid_lob2_close' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_export' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'file_name' => 'string', + ), + 'cubrid_lob2_import' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'file_name' => 'string', + ), + 'cubrid_lob2_new' => + array ( + 0 => 'resource', + 'conn_identifier=' => 'resource', + 'type=' => 'string', + ), + 'cubrid_lob2_read' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + 'length' => 'int', + ), + 'cubrid_lob2_seek' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'offset' => 'int', + 'origin=' => 'int', + ), + 'cubrid_lob2_seek64' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'offset' => 'string', + 'origin=' => 'int', + ), + 'cubrid_lob2_size' => + array ( + 0 => 'int', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_size64' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_tell' => + array ( + 0 => 'int', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_tell64' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob2_write' => + array ( + 0 => 'bool', + 'lob_identifier' => 'resource', + 'buf' => 'string', + ), + 'cubrid_lob_close' => + array ( + 0 => 'bool', + 'lob_identifier_array' => 'array', + ), + 'cubrid_lob_export' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'lob_identifier' => 'resource', + 'path_name' => 'string', + ), + 'cubrid_lob_get' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'sql' => 'string', + ), + 'cubrid_lob_send' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'lob_identifier' => 'resource', + ), + 'cubrid_lob_size' => + array ( + 0 => 'string', + 'lob_identifier' => 'resource', + ), + 'cubrid_lock_read' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_lock_write' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + ), + 'cubrid_move_cursor' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + 'offset' => 'int', + 'origin=' => 'int', + ), + 'cubrid_new_glo' => + array ( + 0 => 'string', + 'conn_identifier' => 'mixed', + 'class_name' => 'string', + 'file_name' => 'string', + ), + 'cubrid_next_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'cubrid_num_cols' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'cubrid_num_rows' => + array ( + 0 => 'int', + 'req_identifier' => 'resource', + ), + 'cubrid_pconnect' => + array ( + 0 => 'resource', + 'host' => 'string', + 'port' => 'int', + 'dbname' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_pconnect_with_url' => + array ( + 0 => 'resource', + 'conn_url' => 'string', + 'userid=' => 'string', + 'passwd=' => 'string', + ), + 'cubrid_ping' => + array ( + 0 => 'bool', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_prepare' => + array ( + 0 => 'resource', + 'conn_identifier' => 'resource', + 'prepare_stmt' => 'string', + 'option=' => 'int', + ), + 'cubrid_put' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr=' => 'string', + 'value=' => 'mixed', + ), + 'cubrid_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_real_escape_string' => + array ( + 0 => 'string', + 'unescaped_string' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_result' => + array ( + 0 => 'string', + 'result' => 'resource', + 'row' => 'int', + 'field=' => 'mixed', + ), + 'cubrid_rollback' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + ), + 'cubrid_save_to_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + 'file_name' => 'string', + ), + 'cubrid_schema' => + array ( + 0 => 'array', + 'conn_identifier' => 'resource', + 'schema_type' => 'int', + 'class_name=' => 'string', + 'attr_name=' => 'string', + ), + 'cubrid_send_glo' => + array ( + 0 => 'int', + 'conn_identifier' => 'mixed', + 'oid' => 'string', + ), + 'cubrid_seq_add' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'seq_element' => 'string', + ), + 'cubrid_seq_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + ), + 'cubrid_seq_insert' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + 'seq_element' => 'string', + ), + 'cubrid_seq_put' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'index' => 'int', + 'seq_element' => 'string', + ), + 'cubrid_set_add' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'set_element' => 'string', + ), + 'cubrid_set_autocommit' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'mode' => 'bool', + ), + 'cubrid_set_db_parameter' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'param_type' => 'int', + 'param_value' => 'int', + ), + 'cubrid_set_drop' => + array ( + 0 => 'bool', + 'conn_identifier' => 'resource', + 'oid' => 'string', + 'attr_name' => 'string', + 'set_element' => 'string', + ), + 'cubrid_set_query_timeout' => + array ( + 0 => 'bool', + 'req_identifier' => 'resource', + 'timeout' => 'int', + ), + 'cubrid_unbuffered_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'conn_identifier=' => 'mixed', + ), + 'cubrid_version' => + array ( + 0 => 'string', + ), + 'curl_close' => + array ( + 0 => 'void', + 'ch' => 'resource', + ), + 'curl_copy_handle' => + array ( + 0 => 'false|resource', + 'ch' => 'resource', + ), + 'curl_errno' => + array ( + 0 => 'int', + 'ch' => 'resource', + ), + 'curl_error' => + array ( + 0 => 'string', + 'ch' => 'resource', + ), + 'curl_escape' => + array ( + 0 => 'false|string', + 'ch' => 'resource', + 'string' => 'string', + ), + 'curl_exec' => + array ( + 0 => 'bool|string', + 'ch' => 'resource', + ), + 'curl_file_create' => + array ( + 0 => 'CURLFile', + 'filename' => 'string', + 'mimetype=' => 'string', + 'postfilename=' => 'string', + ), + 'curl_getinfo' => + array ( + 0 => 'mixed', + 'ch' => 'resource', + 'option=' => 'int', + ), + 'curl_init' => + array ( + 0 => 'false|resource', + 'url=' => 'string', + ), + 'curl_multi_add_handle' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'ch' => 'resource', + ), + 'curl_multi_close' => + array ( + 0 => 'void', + 'mh' => 'resource', + ), + 'curl_multi_exec' => + array ( + 0 => 'int', + 'mh' => 'resource', + '&w_still_running' => 'int', + ), + 'curl_multi_getcontent' => + array ( + 0 => 'string', + 'ch' => 'resource', + ), + 'curl_multi_info_read' => + array ( + 0 => 'array|false', + 'mh' => 'resource', + '&w_msgs_in_queue=' => 'int', + ), + 'curl_multi_init' => + array ( + 0 => 'resource', + ), + 'curl_multi_remove_handle' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'ch' => 'resource', + ), + 'curl_multi_select' => + array ( + 0 => 'int', + 'mh' => 'resource', + 'timeout=' => 'float', + ), + 'curl_multi_setopt' => + array ( + 0 => 'bool', + 'mh' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'curl_multi_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'curl_pause' => + array ( + 0 => 'int', + 'ch' => 'resource', + 'bitmask' => 'int', + ), + 'curl_reset' => + array ( + 0 => 'void', + 'ch' => 'resource', + ), + 'curl_setopt' => + array ( + 0 => 'bool', + 'ch' => 'resource', + 'option' => 'int', + 'value' => 'callable|mixed', + ), + 'curl_setopt_array' => + array ( + 0 => 'bool', + 'ch' => 'resource', + 'options' => 'array', + ), + 'curl_share_close' => + array ( + 0 => 'void', + 'sh' => 'resource', + ), + 'curl_share_init' => + array ( + 0 => 'resource', + ), + 'curl_share_setopt' => + array ( + 0 => 'bool', + 'sh' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'curl_strerror' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'curl_unescape' => + array ( + 0 => 'false|string', + 'ch' => 'resource', + 'string' => 'string', + ), + 'curl_version' => + array ( + 0 => 'array', + 'version=' => 'int', + ), + 'current' => + array ( + 0 => 'false|mixed', + 'array' => 'array|object', + ), + 'cyrus_authenticate' => + array ( + 0 => 'void', + 'connection' => 'resource', + 'mechlist=' => 'string', + 'service=' => 'string', + 'user=' => 'string', + 'minssf=' => 'int', + 'maxssf=' => 'int', + 'authname=' => 'string', + 'password=' => 'string', + ), + 'cyrus_bind' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'callbacks' => 'array', + ), + 'cyrus_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'cyrus_connect' => + array ( + 0 => 'resource', + 'host=' => 'string', + 'port=' => 'string', + 'flags=' => 'int', + ), + 'cyrus_query' => + array ( + 0 => 'array', + 'connection' => 'resource', + 'query' => 'string', + ), + 'cyrus_unbind' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'trigger_name' => 'string', + ), + 'date' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'date_add' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'date_create' => + array ( + 0 => 'DateTime|false', + 'datetime=' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_from_format' => + array ( + 0 => 'DateTime|false', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_immutable' => + array ( + 0 => 'DateTimeImmutable|false', + 'datetime=' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_create_immutable_from_format' => + array ( + 0 => 'DateTimeImmutable|false', + 'format' => 'string', + 'datetime' => 'string', + 'timezone=' => 'DateTimeZone|null', + ), + 'date_date_set' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'year' => 'int', + 'month' => 'int', + 'day' => 'int', + ), + 'date_default_timezone_get' => + array ( + 0 => 'non-empty-string', + ), + 'date_default_timezone_set' => + array ( + 0 => 'bool', + 'timezoneId' => 'non-empty-string', + ), + 'date_diff' => + array ( + 0 => 'DateInterval|false', + 'baseObject' => 'DateTimeInterface', + 'targetObject' => 'DateTimeInterface', + 'absolute=' => 'bool', + ), + 'date_format' => + array ( + 0 => 'false|string', + 'object' => 'DateTimeInterface', + 'format' => 'string', + ), + 'date_get_last_errors' => + array ( + 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', + ), + 'date_interval_create_from_date_string' => + array ( + 0 => 'DateInterval', + 'datetime' => 'string', + ), + 'date_interval_format' => + array ( + 0 => 'string', + 'object' => 'DateInterval', + 'format' => 'string', + ), + 'date_isodate_set' => + array ( + 0 => 'DateTime', + 'object' => 'DateTime', + 'year' => 'int', + 'week' => 'int', + 'dayOfWeek=' => 'int', + ), + 'date_modify' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'modifier' => 'string', + ), + 'date_offset_get' => + array ( + 0 => 'false|int', + 'object' => 'DateTimeInterface', + ), + 'date_parse' => + array ( + 0 => 'array|false', + 'datetime' => 'string', + ), + 'date_parse_from_format' => + array ( + 0 => 'array', + 'format' => 'string', + 'datetime' => 'string', + ), + 'date_sub' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'interval' => 'DateInterval', + ), + 'date_sun_info' => + array ( + 0 => 'array|false', + 'timestamp' => 'int', + 'latitude' => 'float', + 'longitude' => 'float', + ), + 'date_sunrise' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float', + 'longitude=' => 'float', + 'zenith=' => 'float', + 'utcOffset=' => 'float', + ), + 'date_sunset' => + array ( + 0 => 'false|float|int|string', + 'timestamp' => 'int', + 'returnFormat=' => 'int', + 'latitude=' => 'float', + 'longitude=' => 'float', + 'zenith=' => 'float', + 'utcOffset=' => 'float', + ), + 'date_time_set' => + array ( + 0 => 'DateTime|false', + 'object' => 'mixed', + 'hour' => 'mixed', + 'minute' => 'mixed', + 'second=' => 'mixed', + 'microsecond=' => 'mixed', + ), + 'date_timestamp_get' => + array ( + 0 => 'int', + 'object' => 'DateTimeInterface', + ), + 'date_timestamp_set' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'timestamp' => 'int', + ), + 'date_timezone_get' => + array ( + 0 => 'DateTimeZone|false', + 'object' => 'DateTimeInterface', + ), + 'date_timezone_set' => + array ( + 0 => 'DateTime|false', + 'object' => 'DateTime', + 'timezone' => 'DateTimeZone', + ), + 'datefmt_create' => + array ( + 0 => 'IntlDateFormatter|null', + 'locale' => 'null|string', + 'dateType' => 'int', + 'timeType' => 'int', + 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', + 'calendar=' => 'IntlCalendar|int|null', + 'pattern=' => 'string', + ), + 'datefmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + 'datetime' => 'DateTime|IntlCalendar|array|int', + ), + 'datefmt_format_object' => + array ( + 0 => 'false|string', + 'datetime' => 'object', + 'format=' => 'mixed', + 'locale=' => 'null|string', + ), + 'datefmt_get_calendar' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_calendar_object' => + array ( + 0 => 'IntlCalendar|false|null', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_datetype' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_locale' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + 'type=' => 'int', + ), + 'datefmt_get_pattern' => + array ( + 0 => 'string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timetype' => + array ( + 0 => 'int', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timezone' => + array ( + 0 => 'IntlTimeZone|false', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_get_timezone_id' => + array ( + 0 => 'false|string', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_is_lenient' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + ), + 'datefmt_localtime' => + array ( + 0 => 'array|false', + 'formatter' => 'IntlDateFormatter', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'datefmt_parse' => + array ( + 0 => 'false|float|int', + 'formatter' => 'IntlDateFormatter', + 'string' => 'string', + '&rw_offset=' => 'int', + ), + 'datefmt_set_calendar' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'calendar' => 'IntlCalendar|int|null', + ), + 'datefmt_set_lenient' => + array ( + 0 => 'void', + 'formatter' => 'IntlDateFormatter', + 'lenient' => 'bool', + ), + 'datefmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'IntlDateFormatter', + 'pattern' => 'string', + ), + 'datefmt_set_timezone' => + array ( + 0 => 'false|null', + 'formatter' => 'IntlDateFormatter', + 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', + ), + 'db2_autocommit' => + array ( + 0 => '0|1|bool', + 'connection' => 'resource', + 'value=' => '0|1', + ), + 'db2_bind_param' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'parameter_number' => 'int', + 'variable_name' => 'string', + 'parameter_type=' => 'int', + 'data_type=' => 'int', + 'precision=' => 'int', + 'scale=' => 'int', + ), + 'db2_client_info' => + array ( + 0 => 'false|stdClass', + 'connection' => 'resource', + ), + 'db2_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_column_privileges' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'column_name=' => 'null|string', + ), + 'db2_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'column_name=' => 'null|string', + ), + 'db2_commit' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_conn_error' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'db2_conn_errormsg' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'db2_connect' => + array ( + 0 => 'false|resource', + 'database' => 'string', + 'username' => 'null|string', + 'password' => 'null|string', + 'options=' => 'array', + ), + 'db2_cursor_type' => + array ( + 0 => 'int', + 'stmt' => 'resource', + ), + 'db2_escape_string' => + array ( + 0 => 'string', + 'string_literal' => 'string', + ), + 'db2_exec' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement' => 'string', + 'options=' => 'array', + ), + 'db2_execute' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'parameters=' => 'array', + ), + 'db2_fetch_array' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_assoc' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_both' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_object' => + array ( + 0 => 'false|stdClass', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_fetch_row' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + 'row_number=' => 'int|null', + ), + 'db2_field_display_size' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_name' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_num' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_precision' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_scale' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_type' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_field_width' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_foreign_keys' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + ), + 'db2_free_result' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'db2_free_stmt' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'db2_get_option' => + array ( + 0 => 'false|string', + 'resource' => 'resource', + 'option' => 'string', + ), + 'db2_last_insert_id' => + array ( + 0 => 'null|string', + 'resource' => 'resource', + ), + 'db2_lob_read' => + array ( + 0 => 'false|string', + 'stmt' => 'resource', + 'colnum' => 'int', + 'length' => 'int', + ), + 'db2_next_result' => + array ( + 0 => 'false|resource', + 'stmt' => 'resource', + ), + 'db2_num_fields' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'db2_num_rows' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'db2_pclose' => + array ( + 0 => 'bool', + 'resource' => 'resource', + ), + 'db2_pconnect' => + array ( + 0 => 'false|resource', + 'database' => 'string', + 'username' => 'null|string', + 'password' => 'null|string', + 'options=' => 'array', + ), + 'db2_prepare' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement' => 'string', + 'options=' => 'array', + ), + 'db2_primary_keys' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + ), + 'db2_primarykeys' => + array ( + 0 => 'mixed', + ), + 'db2_procedure_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'procedure' => 'string', + 'parameter' => 'null|string', + ), + 'db2_procedurecolumns' => + array ( + 0 => 'mixed', + ), + 'db2_procedures' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'procedure' => 'string', + ), + 'db2_result' => + array ( + 0 => 'mixed', + 'stmt' => 'resource', + 'column' => 'int|string', + ), + 'db2_rollback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'db2_server_info' => + array ( + 0 => 'false|stdClass', + 'connection' => 'resource', + ), + 'db2_set_option' => + array ( + 0 => 'bool', + 'resource' => 'resource', + 'options' => 'array', + 'type' => 'int', + ), + 'db2_setoption' => + array ( + 0 => 'mixed', + ), + 'db2_special_columns' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'string', + 'table_name' => 'string', + 'scope' => 'int', + ), + 'db2_specialcolumns' => + array ( + 0 => 'mixed', + ), + 'db2_statistics' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier' => 'null|string', + 'schema' => 'null|string', + 'table_name' => 'string', + 'unique' => 'bool', + ), + 'db2_stmt_error' => + array ( + 0 => 'string', + 'stmt=' => 'resource', + ), + 'db2_stmt_errormsg' => + array ( + 0 => 'string', + 'stmt=' => 'resource', + ), + 'db2_table_privileges' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + ), + 'db2_tableprivileges' => + array ( + 0 => 'mixed', + ), + 'db2_tables' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'qualifier=' => 'null|string', + 'schema=' => 'null|string', + 'table_name=' => 'null|string', + 'table_type=' => 'null|string', + ), + 'dba_close' => + array ( + 0 => 'void', + 'dba' => 'resource', + ), + 'dba_delete' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'dba' => 'resource', + ), + 'dba_exists' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'dba' => 'resource', + ), + 'dba_fetch' => + array ( + 0 => 'false|string', + 'key' => 'array|string', + 'skip' => 'int', + 'dba' => 'resource', + ), + 'dba_fetch\'1' => + array ( + 0 => 'false|string', + 'key' => 'array|string', + 'skip' => 'resource', + ), + 'dba_firstkey' => + array ( + 0 => 'string', + 'dba' => 'resource', + ), + 'dba_handlers' => + array ( + 0 => 'array', + 'full_info=' => 'bool', + ), + 'dba_insert' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'value' => 'string', + 'dba' => 'resource', + ), + 'dba_key_split' => + array ( + 0 => 'array|false', + 'key' => 'false|null|string', + ), + 'dba_list' => + array ( + 0 => 'array', + ), + 'dba_nextkey' => + array ( + 0 => 'string', + 'dba' => 'resource', + ), + 'dba_open' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'string', + '...handler_params=' => 'string', + ), + 'dba_optimize' => + array ( + 0 => 'bool', + 'dba' => 'resource', + ), + 'dba_popen' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'string', + 'handler=' => 'string', + '...handler_params=' => 'string', + ), + 'dba_replace' => + array ( + 0 => 'bool', + 'key' => 'array|string', + 'value' => 'string', + 'dba' => 'resource', + ), + 'dba_sync' => + array ( + 0 => 'bool', + 'dba' => 'resource', + ), + 'dbase_add_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record' => 'array', + ), + 'dbase_close' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + ), + 'dbase_create' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'fields' => 'array', + ), + 'dbase_delete_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_get_header_info' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + ), + 'dbase_get_record' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_get_record_with_names' => + array ( + 0 => 'array', + 'dbase_identifier' => 'resource', + 'record_number' => 'int', + ), + 'dbase_numfields' => + array ( + 0 => 'int', + 'dbase_identifier' => 'resource', + ), + 'dbase_numrecords' => + array ( + 0 => 'int', + 'dbase_identifier' => 'resource', + ), + 'dbase_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'int', + ), + 'dbase_pack' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + ), + 'dbase_replace_record' => + array ( + 0 => 'bool', + 'dbase_identifier' => 'resource', + 'record' => 'array', + 'record_number' => 'int', + ), + 'dbplus_add' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_aql' => + array ( + 0 => 'resource', + 'query' => 'string', + 'server=' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_chdir' => + array ( + 0 => 'string', + 'newdir=' => 'string', + ), + 'dbplus_close' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + ), + 'dbplus_curr' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_errcode' => + array ( + 0 => 'string', + 'errno=' => 'int', + ), + 'dbplus_errno' => + array ( + 0 => 'int', + ), + 'dbplus_find' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'constraints' => 'array', + 'tuple' => 'mixed', + ), + 'dbplus_first' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_flush' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_freealllocks' => + array ( + 0 => 'int', + ), + 'dbplus_freelock' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'string', + ), + 'dbplus_freerlocks' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_getlock' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'string', + ), + 'dbplus_getunique' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'uniqueid' => 'int', + ), + 'dbplus_info' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'key' => 'string', + 'result' => 'array', + ), + 'dbplus_last' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_lockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_next' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_open' => + array ( + 0 => 'resource', + 'name' => 'string', + ), + 'dbplus_prev' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_rchperm' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'mask' => 'int', + 'user' => 'string', + 'group' => 'string', + ), + 'dbplus_rcreate' => + array ( + 0 => 'resource', + 'name' => 'string', + 'domlist' => 'mixed', + 'overwrite=' => 'bool', + ), + 'dbplus_rcrtexact' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'relation' => 'resource', + 'overwrite=' => 'bool', + ), + 'dbplus_rcrtlike' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'relation' => 'resource', + 'overwrite=' => 'int', + ), + 'dbplus_resolve' => + array ( + 0 => 'array', + 'relation_name' => 'string', + ), + 'dbplus_restorepos' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + ), + 'dbplus_rkeys' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + 'domlist' => 'mixed', + ), + 'dbplus_ropen' => + array ( + 0 => 'resource', + 'name' => 'string', + ), + 'dbplus_rquery' => + array ( + 0 => 'resource', + 'query' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_rrename' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'name' => 'string', + ), + 'dbplus_rsecindex' => + array ( + 0 => 'mixed', + 'relation' => 'resource', + 'domlist' => 'mixed', + 'type' => 'int', + ), + 'dbplus_runlink' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_rzap' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_savepos' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_setindex' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'idx_name' => 'string', + ), + 'dbplus_setindexbynumber' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'idx_number' => 'int', + ), + 'dbplus_sql' => + array ( + 0 => 'resource', + 'query' => 'string', + 'server=' => 'string', + 'dbpath=' => 'string', + ), + 'dbplus_tcl' => + array ( + 0 => 'string', + 'sid' => 'int', + 'script' => 'string', + ), + 'dbplus_tremove' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'tuple' => 'array', + 'current=' => 'array', + ), + 'dbplus_undo' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_undoprepare' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_unlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_unselect' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_update' => + array ( + 0 => 'int', + 'relation' => 'resource', + 'old' => 'array', + 'new' => 'array', + ), + 'dbplus_xlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbplus_xunlockrel' => + array ( + 0 => 'int', + 'relation' => 'resource', + ), + 'dbx_close' => + array ( + 0 => 'int', + 'link_identifier' => 'object', + ), + 'dbx_compare' => + array ( + 0 => 'int', + 'row_a' => 'array', + 'row_b' => 'array', + 'column_key' => 'string', + 'flags=' => 'int', + ), + 'dbx_connect' => + array ( + 0 => 'object', + 'module' => 'mixed', + 'host' => 'string', + 'database' => 'string', + 'username' => 'string', + 'password' => 'string', + 'persistent=' => 'int', + ), + 'dbx_error' => + array ( + 0 => 'string', + 'link_identifier' => 'object', + ), + 'dbx_escape_string' => + array ( + 0 => 'string', + 'link_identifier' => 'object', + 'text' => 'string', + ), + 'dbx_fetch_row' => + array ( + 0 => 'mixed', + 'result_identifier' => 'object', + ), + 'dbx_query' => + array ( + 0 => 'mixed', + 'link_identifier' => 'object', + 'sql_statement' => 'string', + 'flags=' => 'int', + ), + 'dbx_sort' => + array ( + 0 => 'bool', + 'result' => 'object', + 'user_compare_function' => 'string', + ), + 'dcgettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'message' => 'string', + 'category' => 'int', + ), + 'dcngettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + 'category' => 'int', + ), + 'deaggregate' => + array ( + 0 => 'mixed', + 'object' => 'object', + 'class_name=' => 'string', + ), + 'debug_backtrace' => + array ( + 0 => 'list, class?: class-string, file?: string, function: string, line?: int, object?: object, type?: string}>', + 'options=' => 'int', + 'limit=' => 'int', + ), + 'debug_print_backtrace' => + array ( + 0 => 'void', + 'options=' => 'int', + 'limit=' => 'int', + ), + 'debug_zval_dump' => + array ( + 0 => 'void', + 'value' => 'mixed', + '...values=' => 'mixed', + ), + 'debugger_connect' => + array ( + 0 => 'mixed', + ), + 'debugger_connector_pid' => + array ( + 0 => 'mixed', + ), + 'debugger_get_server_start_time' => + array ( + 0 => 'mixed', + ), + 'debugger_print' => + array ( + 0 => 'mixed', + ), + 'debugger_start_debug' => + array ( + 0 => 'mixed', + ), + 'decbin' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'dechex' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'decoct' => + array ( + 0 => 'string', + 'num' => 'int', + ), + 'define' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'array|null|scalar', + 'case_insensitive=' => 'bool', + ), + 'define_syslog_variables' => + array ( + 0 => 'void', + ), + 'defined' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + ), + 'deflate_add' => + array ( + 0 => 'false|string', + 'context' => 'resource', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'deflate_init' => + array ( + 0 => 'false|resource', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'deg2rad' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'dgettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'message' => 'string', + ), + 'dio_close' => + array ( + 0 => 'void', + 'fd' => 'resource', + ), + 'dio_fcntl' => + array ( + 0 => 'mixed', + 'fd' => 'resource', + 'cmd' => 'int', + 'args=' => 'mixed', + ), + 'dio_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'flags' => 'int', + 'mode=' => 'int', + ), + 'dio_read' => + array ( + 0 => 'string', + 'fd' => 'resource', + 'length=' => 'int', + ), + 'dio_seek' => + array ( + 0 => 'int', + 'fd' => 'resource', + 'pos' => 'int', + 'whence=' => 'int', + ), + 'dio_stat' => + array ( + 0 => 'array|null', + 'fd' => 'resource', + ), + 'dio_tcsetattr' => + array ( + 0 => 'bool', + 'fd' => 'resource', + 'options' => 'array', + ), + 'dio_truncate' => + array ( + 0 => 'bool', + 'fd' => 'resource', + 'offset' => 'int', + ), + 'dio_write' => + array ( + 0 => 'int', + 'fd' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'dir' => + array ( + 0 => 'Directory|false', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'dirname' => + array ( + 0 => 'string', + 'path' => 'string', + 'levels=' => 'int<1, max>', + ), + 'disk_free_space' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'disk_total_space' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'diskfreespace' => + array ( + 0 => 'false|float', + 'directory' => 'string', + ), + 'display_disabled_function' => + array ( + 0 => 'mixed', + ), + 'dl' => + array ( + 0 => 'bool', + 'extension_filename' => 'string', + ), + 'dngettext' => + array ( + 0 => 'string', + 'domain' => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + ), + 'dns_check_record' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'type=' => 'string', + ), + 'dns_get_mx' => + array ( + 0 => 'bool', + 'hostname' => 'string', + '&w_hosts' => 'array', + '&w_weights=' => 'array', + ), + 'dns_get_record' => + array ( + 0 => 'false|list>', + 'hostname' => 'string', + 'type=' => 'int', + '&w_authoritative_name_servers=' => 'array', + '&w_additional_records=' => 'array', + 'raw=' => 'bool', + ), + 'dom_document_relaxNG_validate_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'dom_document_relaxNG_validate_xml' => + array ( + 0 => 'bool', + 'source' => 'string', + ), + 'dom_document_schema_validate' => + array ( + 0 => 'bool', + 'source' => 'string', + 'flags' => 'int', + ), + 'dom_document_schema_validate_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + ), + 'dom_document_xinclude' => + array ( + 0 => 'int', + 'options' => 'int', + ), + 'dom_import_simplexml' => + array ( + 0 => 'DOMElement|null', + 'node' => 'SimpleXMLElement', + ), + 'dom_xpath_evaluate' => + array ( + 0 => 'mixed', + 'expr' => 'string', + 'context' => 'DOMNode', + 'registernodens' => 'bool', + ), + 'dom_xpath_query' => + array ( + 0 => 'DOMNodeList', + 'expr' => 'string', + 'context' => 'DOMNode', + 'registernodens' => 'bool', + ), + 'dom_xpath_register_ns' => + array ( + 0 => 'bool', + 'prefix' => 'string', + 'uri' => 'string', + ), + 'dom_xpath_register_php_functions' => + array ( + 0 => 'mixed', + ), + 'domxml_new_doc' => + array ( + 0 => 'DomDocument', + 'version' => 'string', + ), + 'domxml_open_file' => + array ( + 0 => 'DomDocument', + 'filename' => 'string', + 'mode=' => 'int', + 'error=' => 'array', + ), + 'domxml_open_mem' => + array ( + 0 => 'DomDocument', + 'string' => 'string', + 'mode=' => 'int', + 'error=' => 'array', + ), + 'domxml_version' => + array ( + 0 => 'string', + ), + 'domxml_xmltree' => + array ( + 0 => 'DomDocument', + 'string' => 'string', + ), + 'domxml_xslt_stylesheet' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_buf' => 'string', + ), + 'domxml_xslt_stylesheet_doc' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_doc' => 'DOMDocument', + ), + 'domxml_xslt_stylesheet_file' => + array ( + 0 => 'DomXsltStylesheet', + 'xsl_file' => 'string', + ), + 'domxml_xslt_version' => + array ( + 0 => 'int', + ), + 'dotnet_load' => + array ( + 0 => 'int', + 'assembly_name' => 'string', + 'datatype_name=' => 'string', + 'codepage=' => 'int', + ), + 'doubleval' => + array ( + 0 => 'float', + 'value' => 'mixed', + ), + 'each' => + array ( + 0 => 'array{0: int|string, 1: mixed, key: int|string, value: mixed}', + '&r_arr' => 'array', + ), + 'easter_date' => + array ( + 0 => 'int', + 'year=' => 'int', + 'mode=' => 'int', + ), + 'easter_days' => + array ( + 0 => 'int', + 'year=' => 'int', + 'mode=' => 'int', + ), + 'echo' => + array ( + 0 => 'void', + 'arg1' => 'string', + '...args=' => 'string', + ), + 'eio_busy' => + array ( + 0 => 'resource', + 'delay' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_cancel' => + array ( + 0 => 'void', + 'req' => 'resource', + ), + 'eio_chmod' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_chown' => + array ( + 0 => 'resource', + 'path' => 'string', + 'uid' => 'int', + 'gid=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_close' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_custom' => + array ( + 0 => 'resource', + 'execute' => 'callable', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_dup2' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'fd2' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_event_loop' => + array ( + 0 => 'bool', + ), + 'eio_fallocate' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'mode' => 'int', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fchmod' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fchown' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'uid' => 'int', + 'gid=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fdatasync' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fstat' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fstatvfs' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_fsync' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_ftruncate' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_futime' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'atime' => 'float', + 'mtime' => 'float', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_get_event_stream' => + array ( + 0 => 'mixed', + ), + 'eio_get_last_error' => + array ( + 0 => 'string', + 'req' => 'resource', + ), + 'eio_grp' => + array ( + 0 => 'resource', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_grp_add' => + array ( + 0 => 'void', + 'grp' => 'resource', + 'req' => 'resource', + ), + 'eio_grp_cancel' => + array ( + 0 => 'void', + 'grp' => 'resource', + ), + 'eio_grp_limit' => + array ( + 0 => 'void', + 'grp' => 'resource', + 'limit' => 'int', + ), + 'eio_init' => + array ( + 0 => 'void', + ), + 'eio_link' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_lstat' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_mkdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_mknod' => + array ( + 0 => 'resource', + 'path' => 'string', + 'mode' => 'int', + 'dev' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_nop' => + array ( + 0 => 'resource', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_npending' => + array ( + 0 => 'int', + ), + 'eio_nready' => + array ( + 0 => 'int', + ), + 'eio_nreqs' => + array ( + 0 => 'int', + ), + 'eio_nthreads' => + array ( + 0 => 'int', + ), + 'eio_open' => + array ( + 0 => 'resource', + 'path' => 'string', + 'flags' => 'int', + 'mode' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_poll' => + array ( + 0 => 'int', + ), + 'eio_read' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'length' => 'int', + 'offset' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_readahead' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_readdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'flags' => 'int', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_readlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_realpath' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'string', + ), + 'eio_rename' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_rmdir' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_seek' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'whence' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sendfile' => + array ( + 0 => 'resource', + 'out_fd' => 'mixed', + 'in_fd' => 'mixed', + 'offset' => 'int', + 'length' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'string', + ), + 'eio_set_max_idle' => + array ( + 0 => 'void', + 'nthreads' => 'int', + ), + 'eio_set_max_parallel' => + array ( + 0 => 'void', + 'nthreads' => 'int', + ), + 'eio_set_max_poll_reqs' => + array ( + 0 => 'void', + 'nreqs' => 'int', + ), + 'eio_set_max_poll_time' => + array ( + 0 => 'void', + 'nseconds' => 'float', + ), + 'eio_set_min_parallel' => + array ( + 0 => 'void', + 'nthreads' => 'string', + ), + 'eio_stat' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_statvfs' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri' => 'int', + 'callback' => 'callable', + 'data=' => 'mixed', + ), + 'eio_symlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'new_path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sync' => + array ( + 0 => 'resource', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_sync_file_range' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'offset' => 'int', + 'nbytes' => 'int', + 'flags' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_syncfs' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_truncate' => + array ( + 0 => 'resource', + 'path' => 'string', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_unlink' => + array ( + 0 => 'resource', + 'path' => 'string', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_utime' => + array ( + 0 => 'resource', + 'path' => 'string', + 'atime' => 'float', + 'mtime' => 'float', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'eio_write' => + array ( + 0 => 'resource', + 'fd' => 'mixed', + 'string' => 'string', + 'length=' => 'int', + 'offset=' => 'int', + 'pri=' => 'int', + 'callback=' => 'callable', + 'data=' => 'mixed', + ), + 'empty' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'enchant_broker_describe' => + array ( + 0 => 'array|false', + 'broker' => 'resource', + ), + 'enchant_broker_dict_exists' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'tag' => 'string', + ), + 'enchant_broker_free' => + array ( + 0 => 'bool', + 'broker' => 'resource', + ), + 'enchant_broker_free_dict' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + ), + 'enchant_broker_get_dict_path' => + array ( + 0 => 'string', + 'broker' => 'resource', + 'type' => 'int', + ), + 'enchant_broker_get_error' => + array ( + 0 => 'false|string', + 'broker' => 'resource', + ), + 'enchant_broker_init' => + array ( + 0 => 'false|resource', + ), + 'enchant_broker_list_dicts' => + array ( + 0 => 'array|false', + 'broker' => 'resource', + ), + 'enchant_broker_request_dict' => + array ( + 0 => 'false|resource', + 'broker' => 'resource', + 'tag' => 'string', + ), + 'enchant_broker_request_pwl_dict' => + array ( + 0 => 'false|resource', + 'broker' => 'resource', + 'filename' => 'string', + ), + 'enchant_broker_set_dict_path' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'type' => 'int', + 'path' => 'string', + ), + 'enchant_broker_set_ordering' => + array ( + 0 => 'bool', + 'broker' => 'resource', + 'tag' => 'string', + 'ordering' => 'string', + ), + 'enchant_dict_add_to_personal' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'enchant_dict_add_to_session' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'enchant_dict_check' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'enchant_dict_describe' => + array ( + 0 => 'array', + 'dictionary' => 'resource', + ), + 'enchant_dict_get_error' => + array ( + 0 => 'string', + 'dictionary' => 'resource', + ), + 'enchant_dict_is_in_session' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'enchant_dict_quick_check' => + array ( + 0 => 'bool', + 'dictionary' => 'resource', + 'word' => 'string', + '&w_suggestions=' => 'array', + ), + 'enchant_dict_store_replacement' => + array ( + 0 => 'void', + 'dictionary' => 'resource', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'enchant_dict_suggest' => + array ( + 0 => 'array', + 'dictionary' => 'resource', + 'word' => 'string', + ), + 'end' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array|object', + ), + 'error_clear_last' => + array ( + 0 => 'void', + ), + 'error_get_last' => + array ( + 0 => 'array{file: string, line: int, message: string, type: int}|null', + ), + 'error_log' => + array ( + 0 => 'bool', + 'message' => 'string', + 'message_type=' => 'int', + 'destination=' => 'string', + 'additional_headers=' => 'string', + ), + 'error_reporting' => + array ( + 0 => 'int', + 'error_level=' => 'int', + ), + 'escapeshellarg' => + array ( + 0 => 'string', + 'arg' => 'string', + ), + 'escapeshellcmd' => + array ( + 0 => 'string', + 'command' => 'string', + ), + 'eval' => + array ( + 0 => 'mixed', + 'code_str' => 'string', + ), + 'event_add' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_base_free' => + array ( + 0 => 'void', + 'event_base' => 'resource', + ), + 'event_base_loop' => + array ( + 0 => 'int', + 'event_base' => 'resource', + 'flags=' => 'int', + ), + 'event_base_loopbreak' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + ), + 'event_base_loopexit' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + 'timeout=' => 'int', + ), + 'event_base_new' => + array ( + 0 => 'false|resource', + ), + 'event_base_priority_init' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + 'npriorities' => 'int', + ), + 'event_base_reinit' => + array ( + 0 => 'bool', + 'event_base' => 'resource', + ), + 'event_base_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'event_base' => 'resource', + ), + 'event_buffer_base_set' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'event_base' => 'resource', + ), + 'event_buffer_disable' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'events' => 'int', + ), + 'event_buffer_enable' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'events' => 'int', + ), + 'event_buffer_fd_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'fd' => 'resource', + ), + 'event_buffer_free' => + array ( + 0 => 'void', + 'bevent' => 'resource', + ), + 'event_buffer_new' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'readcb' => 'callable|null', + 'writecb' => 'callable|null', + 'errorcb' => 'callable', + 'arg=' => 'mixed', + ), + 'event_buffer_priority_set' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'priority' => 'int', + ), + 'event_buffer_read' => + array ( + 0 => 'string', + 'bevent' => 'resource', + 'data_size' => 'int', + ), + 'event_buffer_set_callback' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'readcb' => 'mixed', + 'writecb' => 'mixed', + 'errorcb' => 'mixed', + 'arg=' => 'mixed', + ), + 'event_buffer_timeout_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'read_timeout' => 'int', + 'write_timeout' => 'int', + ), + 'event_buffer_watermark_set' => + array ( + 0 => 'void', + 'bevent' => 'resource', + 'events' => 'int', + 'lowmark' => 'int', + 'highmark' => 'int', + ), + 'event_buffer_write' => + array ( + 0 => 'bool', + 'bevent' => 'resource', + 'data' => 'string', + 'data_size=' => 'int', + ), + 'event_del' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'event_free' => + array ( + 0 => 'void', + 'event' => 'resource', + ), + 'event_new' => + array ( + 0 => 'false|resource', + ), + 'event_priority_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'priority' => 'int', + ), + 'event_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'fd' => 'int|resource', + 'events' => 'int', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'event_timer_add' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_timer_del' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'event_timer_new' => + array ( + 0 => 'false|resource', + ), + 'event_timer_pending' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'timeout=' => 'int', + ), + 'event_timer_set' => + array ( + 0 => 'bool', + 'event' => 'resource', + 'callback' => 'callable', + 'arg=' => 'mixed', + ), + 'exec' => + array ( + 0 => 'false|string', + 'command' => 'string', + '&w_output=' => 'array', + '&w_result_code=' => 'int', + ), + 'exif_imagetype' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'exif_read_data' => + array ( + 0 => 'array|false', + 'file' => 'resource|string', + 'required_sections=' => 'string', + 'as_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + 'exif_tagname' => + array ( + 0 => 'false|string', + 'index' => 'int', + ), + 'exif_thumbnail' => + array ( + 0 => 'false|string', + 'file' => 'string', + '&w_width=' => 'int', + '&w_height=' => 'int', + '&w_image_type=' => 'int', + ), + 'exit' => + array ( + 0 => 'mixed', + 'status' => 'int|string', + ), + 'exp' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'expect_expectl' => + array ( + 0 => 'int', + 'expect' => 'resource', + 'cases' => 'array', + 'match=' => 'array', + ), + 'expect_popen' => + array ( + 0 => 'false|resource', + 'command' => 'string', + ), + 'explode' => + array ( + 0 => 'false|list', + 'separator' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + 'expm1' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'extension_loaded' => + array ( + 0 => 'bool', + 'extension' => 'string', + ), + 'extract' => + array ( + 0 => 'int', + '&rw_array' => 'array', + 'flags=' => 'int', + 'prefix=' => 'string', + ), + 'ezmlm_hash' => + array ( + 0 => 'int', + 'addr' => 'string', + ), + 'fam_cancel_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fam_close' => + array ( + 0 => 'void', + 'fam' => 'resource', + ), + 'fam_monitor_collection' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'dirname' => 'string', + 'depth' => 'int', + 'mask' => 'string', + ), + 'fam_monitor_directory' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'dirname' => 'string', + ), + 'fam_monitor_file' => + array ( + 0 => 'resource', + 'fam' => 'resource', + 'filename' => 'string', + ), + 'fam_next_event' => + array ( + 0 => 'array', + 'fam' => 'resource', + ), + 'fam_open' => + array ( + 0 => 'false|resource', + 'appname=' => 'string', + ), + 'fam_pending' => + array ( + 0 => 'int', + 'fam' => 'resource', + ), + 'fam_resume_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fam_suspend_monitor' => + array ( + 0 => 'bool', + 'fam' => 'resource', + 'fam_monitor' => 'resource', + ), + 'fann_cascadetrain_on_data' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'data' => 'resource', + 'max_neurons' => 'int', + 'neurons_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_cascadetrain_on_file' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'filename' => 'string', + 'max_neurons' => 'int', + 'neurons_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_clear_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + ), + 'fann_copy' => + array ( + 0 => 'false|resource', + 'ann' => 'resource', + ), + 'fann_create_from_file' => + array ( + 0 => 'resource', + 'configuration_file' => 'string', + ), + 'fann_create_shortcut' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_shortcut_array' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_sparse' => + array ( + 0 => 'false|resource', + 'connection_rate' => 'float', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_sparse_array' => + array ( + 0 => 'false|resource', + 'connection_rate' => 'float', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_standard' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'num_neurons1' => 'int', + 'num_neurons2' => 'int', + '...args=' => 'int', + ), + 'fann_create_standard_array' => + array ( + 0 => 'false|resource', + 'num_layers' => 'int', + 'layers' => 'array', + ), + 'fann_create_train' => + array ( + 0 => 'resource', + 'num_data' => 'int', + 'num_input' => 'int', + 'num_output' => 'int', + ), + 'fann_create_train_from_callback' => + array ( + 0 => 'resource', + 'num_data' => 'int', + 'num_input' => 'int', + 'num_output' => 'int', + 'user_function' => 'callable', + ), + 'fann_descale_input' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input_vector' => 'array', + ), + 'fann_descale_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'output_vector' => 'array', + ), + 'fann_descale_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_destroy' => + array ( + 0 => 'bool', + 'ann' => 'resource', + ), + 'fann_destroy_train' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + ), + 'fann_duplicate_train_data' => + array ( + 0 => 'resource', + 'data' => 'resource', + ), + 'fann_get_MSE' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_activation_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_get_activation_steepness' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_get_bias_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_bit_fail' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_bit_fail_limit' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_functions' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_functions_count' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_steepnesses' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + ), + 'fann_get_cascade_activation_steepnesses_count' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_change_fraction' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_limit' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_candidate_stagnation_epochs' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_max_cand_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_max_out_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_min_cand_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_min_out_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_num_candidate_groups' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_num_candidates' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_output_change_fraction' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_cascade_output_stagnation_epochs' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_cascade_weight_multiplier' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_connection_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_connection_rate' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_errno' => + array ( + 0 => 'false|int', + 'errdat' => 'resource', + ), + 'fann_get_errstr' => + array ( + 0 => 'false|string', + 'errdat' => 'resource', + ), + 'fann_get_layer_array' => + array ( + 0 => 'array', + 'ann' => 'resource', + ), + 'fann_get_learning_momentum' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_learning_rate' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_network_type' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_input' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_layers' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_num_output' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_quickprop_decay' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_quickprop_mu' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_decrease_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_max' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_min' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_delta_zero' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_rprop_increase_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_step_error_shift' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_step_error_threshold_factor' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_temperature' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_sarprop_weight_decay_shift' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + ), + 'fann_get_total_connections' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_total_neurons' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_train_error_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_train_stop_function' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_get_training_algorithm' => + array ( + 0 => 'false|int', + 'ann' => 'resource', + ), + 'fann_init_weights' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_length_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_merge_train_data' => + array ( + 0 => 'false|resource', + 'data1' => 'resource', + 'data2' => 'resource', + ), + 'fann_num_input_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_num_output_train_data' => + array ( + 0 => 'false|int', + 'data' => 'resource', + ), + 'fann_print_error' => + array ( + 0 => 'void', + 'errdat' => 'string', + ), + 'fann_randomize_weights' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'min_weight' => 'float', + 'max_weight' => 'float', + ), + 'fann_read_train_from_file' => + array ( + 0 => 'resource', + 'filename' => 'string', + ), + 'fann_reset_MSE' => + array ( + 0 => 'bool', + 'ann' => 'string', + ), + 'fann_reset_errno' => + array ( + 0 => 'void', + 'errdat' => 'resource', + ), + 'fann_reset_errstr' => + array ( + 0 => 'void', + 'errdat' => 'resource', + ), + 'fann_run' => + array ( + 0 => 'array|false', + 'ann' => 'resource', + 'input' => 'array', + ), + 'fann_save' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'configuration_file' => 'string', + ), + 'fann_save_train' => + array ( + 0 => 'bool', + 'data' => 'resource', + 'file_name' => 'string', + ), + 'fann_scale_input' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input_vector' => 'array', + ), + 'fann_scale_input_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_scale_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'output_vector' => 'array', + ), + 'fann_scale_output_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_scale_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + ), + 'fann_scale_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + 'new_min' => 'float', + 'new_max' => 'float', + ), + 'fann_set_activation_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_set_activation_function_hidden' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + ), + 'fann_set_activation_function_layer' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + 'layer' => 'int', + ), + 'fann_set_activation_function_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_function' => 'int', + ), + 'fann_set_activation_steepness' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + 'layer' => 'int', + 'neuron' => 'int', + ), + 'fann_set_activation_steepness_hidden' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + ), + 'fann_set_activation_steepness_layer' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + 'layer' => 'int', + ), + 'fann_set_activation_steepness_output' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'activation_steepness' => 'float', + ), + 'fann_set_bit_fail_limit' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'bit_fail_limit' => 'float', + ), + 'fann_set_callback' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'callback' => 'callable', + ), + 'fann_set_cascade_activation_functions' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_activation_functions' => 'array', + ), + 'fann_set_cascade_activation_steepnesses' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_activation_steepnesses_count' => 'array', + ), + 'fann_set_cascade_candidate_change_fraction' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_change_fraction' => 'float', + ), + 'fann_set_cascade_candidate_limit' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_limit' => 'float', + ), + 'fann_set_cascade_candidate_stagnation_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_candidate_stagnation_epochs' => 'int', + ), + 'fann_set_cascade_max_cand_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_max_cand_epochs' => 'int', + ), + 'fann_set_cascade_max_out_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_max_out_epochs' => 'int', + ), + 'fann_set_cascade_min_cand_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_min_cand_epochs' => 'int', + ), + 'fann_set_cascade_min_out_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_min_out_epochs' => 'int', + ), + 'fann_set_cascade_num_candidate_groups' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_num_candidate_groups' => 'int', + ), + 'fann_set_cascade_output_change_fraction' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_output_change_fraction' => 'float', + ), + 'fann_set_cascade_output_stagnation_epochs' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_output_stagnation_epochs' => 'int', + ), + 'fann_set_cascade_weight_multiplier' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'cascade_weight_multiplier' => 'float', + ), + 'fann_set_error_log' => + array ( + 0 => 'void', + 'errdat' => 'resource', + 'log_file' => 'string', + ), + 'fann_set_input_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_input_min' => 'float', + 'new_input_max' => 'float', + ), + 'fann_set_learning_momentum' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'learning_momentum' => 'float', + ), + 'fann_set_learning_rate' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'learning_rate' => 'float', + ), + 'fann_set_output_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_output_min' => 'float', + 'new_output_max' => 'float', + ), + 'fann_set_quickprop_decay' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'quickprop_decay' => 'float', + ), + 'fann_set_quickprop_mu' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'quickprop_mu' => 'float', + ), + 'fann_set_rprop_decrease_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_decrease_factor' => 'float', + ), + 'fann_set_rprop_delta_max' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_max' => 'float', + ), + 'fann_set_rprop_delta_min' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_min' => 'float', + ), + 'fann_set_rprop_delta_zero' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_delta_zero' => 'float', + ), + 'fann_set_rprop_increase_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'rprop_increase_factor' => 'float', + ), + 'fann_set_sarprop_step_error_shift' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_step_error_shift' => 'float', + ), + 'fann_set_sarprop_step_error_threshold_factor' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_step_error_threshold_factor' => 'float', + ), + 'fann_set_sarprop_temperature' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_temperature' => 'float', + ), + 'fann_set_sarprop_weight_decay_shift' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'sarprop_weight_decay_shift' => 'float', + ), + 'fann_set_scaling_params' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'train_data' => 'resource', + 'new_input_min' => 'float', + 'new_input_max' => 'float', + 'new_output_min' => 'float', + 'new_output_max' => 'float', + ), + 'fann_set_train_error_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'error_function' => 'int', + ), + 'fann_set_train_stop_function' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'stop_function' => 'int', + ), + 'fann_set_training_algorithm' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'training_algorithm' => 'int', + ), + 'fann_set_weight' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'from_neuron' => 'int', + 'to_neuron' => 'int', + 'weight' => 'float', + ), + 'fann_set_weight_array' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'connections' => 'array', + ), + 'fann_shuffle_train_data' => + array ( + 0 => 'bool', + 'train_data' => 'resource', + ), + 'fann_subset_train_data' => + array ( + 0 => 'resource', + 'data' => 'resource', + 'pos' => 'int', + 'length' => 'int', + ), + 'fann_test' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input' => 'array', + 'desired_output' => 'array', + ), + 'fann_test_data' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'data' => 'resource', + ), + 'fann_train' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'input' => 'array', + 'desired_output' => 'array', + ), + 'fann_train_epoch' => + array ( + 0 => 'false|float', + 'ann' => 'resource', + 'data' => 'resource', + ), + 'fann_train_on_data' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'data' => 'resource', + 'max_epochs' => 'int', + 'epochs_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fann_train_on_file' => + array ( + 0 => 'bool', + 'ann' => 'resource', + 'filename' => 'string', + 'max_epochs' => 'int', + 'epochs_between_reports' => 'int', + 'desired_error' => 'float', + ), + 'fastcgi_finish_request' => + array ( + 0 => 'bool', + ), + 'fbsql_affected_rows' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_autocommit' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'onoff=' => 'bool', + ), + 'fbsql_blob_size' => + array ( + 0 => 'int', + 'blob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_change_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'password' => 'string', + 'database=' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_clob_size' => + array ( + 0 => 'int', + 'clob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_commit' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_connect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + ), + 'fbsql_create_blob' => + array ( + 0 => 'string', + 'blob_data' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_create_clob' => + array ( + 0 => 'string', + 'clob_data' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + 'database_options=' => 'string', + ), + 'fbsql_data_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row_number' => 'int', + ), + 'fbsql_database' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'database=' => 'string', + ), + 'fbsql_database_password' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'database_password=' => 'string', + ), + 'fbsql_db_query' => + array ( + 0 => 'resource', + 'database' => 'string', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_db_status' => + array ( + 0 => 'int', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_errno' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_error' => + array ( + 0 => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'fbsql_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_fetch_lengths' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + ), + 'fbsql_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'fbsql_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_index=' => 'int', + ), + 'fbsql_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_table' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'fbsql_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'fbsql_get_autostart_info' => + array ( + 0 => 'array', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_hostname' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'host_name=' => 'string', + ), + 'fbsql_insert_id' => + array ( + 0 => 'int', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_dbs' => + array ( + 0 => 'resource', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_fields' => + array ( + 0 => 'resource', + 'database_name' => 'string', + 'table_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_list_tables' => + array ( + 0 => 'resource', + 'database' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_next_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'fbsql_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_password' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'password=' => 'string', + ), + 'fbsql_pconnect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + ), + 'fbsql_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + 'batch_size=' => 'int', + ), + 'fbsql_read_blob' => + array ( + 0 => 'string', + 'blob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_read_clob' => + array ( + 0 => 'string', + 'clob_handle' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_result' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'row=' => 'int', + 'field=' => 'mixed', + ), + 'fbsql_rollback' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_rows_fetched' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'fbsql_select_db' => + array ( + 0 => 'bool', + 'database_name=' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_set_characterset' => + array ( + 0 => 'void', + 'link_identifier' => 'resource', + 'characterset' => 'int', + 'in_out_both=' => 'int', + ), + 'fbsql_set_lob_mode' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'lob_mode' => 'int', + ), + 'fbsql_set_password' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'user' => 'string', + 'password' => 'string', + 'old_password' => 'string', + ), + 'fbsql_set_transaction' => + array ( + 0 => 'void', + 'link_identifier' => 'resource', + 'locking' => 'int', + 'isolation' => 'int', + ), + 'fbsql_start_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + 'database_options=' => 'string', + ), + 'fbsql_stop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'fbsql_table_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'fbsql_username' => + array ( + 0 => 'string', + 'link_identifier' => 'resource', + 'username=' => 'string', + ), + 'fbsql_warnings' => + array ( + 0 => 'bool', + 'onoff=' => 'bool', + ), + 'fclose' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fdf_add_doc_javascript' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'script_name' => 'string', + 'script_code' => 'string', + ), + 'fdf_add_template' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'newpage' => 'int', + 'filename' => 'string', + 'template' => 'string', + 'rename' => 'int', + ), + 'fdf_close' => + array ( + 0 => 'void', + 'fdf_document' => 'resource', + ), + 'fdf_create' => + array ( + 0 => 'resource', + ), + 'fdf_enum_values' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'function' => 'callable', + 'userdata=' => 'mixed', + ), + 'fdf_errno' => + array ( + 0 => 'int', + ), + 'fdf_error' => + array ( + 0 => 'string', + 'error_code=' => 'int', + ), + 'fdf_get_ap' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'field' => 'string', + 'face' => 'int', + 'filename' => 'string', + ), + 'fdf_get_attachment' => + array ( + 0 => 'array', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'savepath' => 'string', + ), + 'fdf_get_encoding' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_file' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_flags' => + array ( + 0 => 'int', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'whichflags' => 'int', + ), + 'fdf_get_opt' => + array ( + 0 => 'mixed', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'element=' => 'int', + ), + 'fdf_get_status' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_get_value' => + array ( + 0 => 'mixed', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'which=' => 'int', + ), + 'fdf_get_version' => + array ( + 0 => 'string', + 'fdf_document=' => 'resource', + ), + 'fdf_header' => + array ( + 0 => 'void', + ), + 'fdf_next_field_name' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + 'fieldname=' => 'string', + ), + 'fdf_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'fdf_open_string' => + array ( + 0 => 'resource', + 'fdf_data' => 'string', + ), + 'fdf_remove_item' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'item' => 'int', + ), + 'fdf_save' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'filename=' => 'string', + ), + 'fdf_save_string' => + array ( + 0 => 'string', + 'fdf_document' => 'resource', + ), + 'fdf_set_ap' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'field_name' => 'string', + 'face' => 'int', + 'filename' => 'string', + 'page_number' => 'int', + ), + 'fdf_set_encoding' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'encoding' => 'string', + ), + 'fdf_set_file' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'url' => 'string', + 'target_frame=' => 'string', + ), + 'fdf_set_flags' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'whichflags' => 'int', + 'newflags' => 'int', + ), + 'fdf_set_javascript_action' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'trigger' => 'int', + 'script' => 'string', + ), + 'fdf_set_on_import_javascript' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'script' => 'string', + 'before_data_import' => 'bool', + ), + 'fdf_set_opt' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'element' => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'fdf_set_status' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'status' => 'string', + ), + 'fdf_set_submit_form_action' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'trigger' => 'int', + 'script' => 'string', + 'flags' => 'int', + ), + 'fdf_set_target_frame' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'frame_name' => 'string', + ), + 'fdf_set_value' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'fieldname' => 'string', + 'value' => 'mixed', + 'isname=' => 'int', + ), + 'fdf_set_version' => + array ( + 0 => 'bool', + 'fdf_document' => 'resource', + 'version' => 'string', + ), + 'feof' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'fflush' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'ffmpeg_animated_gif::__construct' => + array ( + 0 => 'void', + 'output_file_path' => 'string', + 'width' => 'int', + 'height' => 'int', + 'frame_rate' => 'int', + 'loop_count=' => 'int', + ), + 'ffmpeg_animated_gif::addFrame' => + array ( + 0 => 'mixed', + 'frame_to_add' => 'ffmpeg_frame', + ), + 'ffmpeg_frame::__construct' => + array ( + 0 => 'void', + 'gd_image' => 'resource', + ), + 'ffmpeg_frame::crop' => + array ( + 0 => 'mixed', + 'crop_top' => 'int', + 'crop_bottom=' => 'int', + 'crop_left=' => 'int', + 'crop_right=' => 'int', + ), + 'ffmpeg_frame::getHeight' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getPTS' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getPresentationTimestamp' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::getWidth' => + array ( + 0 => 'int', + ), + 'ffmpeg_frame::resize' => + array ( + 0 => 'mixed', + 'width' => 'int', + 'height' => 'int', + 'crop_top=' => 'int', + 'crop_bottom=' => 'int', + 'crop_left=' => 'int', + 'crop_right=' => 'int', + ), + 'ffmpeg_frame::toGDImage' => + array ( + 0 => 'resource', + ), + 'ffmpeg_movie::__construct' => + array ( + 0 => 'void', + 'path_to_media' => 'string', + 'persistent' => 'bool', + ), + 'ffmpeg_movie::getArtist' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getAudioBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAudioChannels' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAudioCodec' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getAudioSampleRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getAuthor' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getComment' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getCopyright' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getDuration' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFilename' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getFrame' => + array ( + 0 => 'false|ffmpeg_frame', + 'framenumber' => 'int', + ), + 'ffmpeg_movie::getFrameCount' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameHeight' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameNumber' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getFrameWidth' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getGenre' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getNextKeyFrame' => + array ( + 0 => 'false|ffmpeg_frame', + ), + 'ffmpeg_movie::getPixelFormat' => + array ( + 0 => 'mixed', + ), + 'ffmpeg_movie::getTitle' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getTrackNumber' => + array ( + 0 => 'int|string', + ), + 'ffmpeg_movie::getVideoBitRate' => + array ( + 0 => 'int', + ), + 'ffmpeg_movie::getVideoCodec' => + array ( + 0 => 'string', + ), + 'ffmpeg_movie::getYear' => + array ( + 0 => 'int|string', + ), + 'ffmpeg_movie::hasAudio' => + array ( + 0 => 'bool', + ), + 'ffmpeg_movie::hasVideo' => + array ( + 0 => 'bool', + ), + 'fgetc' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + ), + 'fgetcsv' => + array ( + 0 => 'array{0?: null|string, ..., string>}|false', + 'stream' => 'resource', + 'length=' => 'int', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'fgets' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + ), + 'fgetss' => + array ( + 0 => 'false|string', + 'fp' => 'resource', + 'length=' => 'int', + 'allowable_tags=' => 'string', + ), + 'file' => + array ( + 0 => 'false|list', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'file_exists' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'file_get_contents' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'file_put_contents' => + array ( + 0 => 'false|int<0, max>', + 'filename' => 'string', + 'data' => 'array|resource|string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'fileatime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filectime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filegroup' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileinode' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filemtime' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileowner' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'fileperms' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filepro' => + array ( + 0 => 'bool', + 'directory' => 'string', + ), + 'filepro_fieldcount' => + array ( + 0 => 'int', + ), + 'filepro_fieldname' => + array ( + 0 => 'string', + 'field_number' => 'int', + ), + 'filepro_fieldtype' => + array ( + 0 => 'string', + 'field_number' => 'int', + ), + 'filepro_fieldwidth' => + array ( + 0 => 'int', + 'field_number' => 'int', + ), + 'filepro_retrieve' => + array ( + 0 => 'string', + 'row_number' => 'int', + 'field_number' => 'int', + ), + 'filepro_rowcount' => + array ( + 0 => 'int', + ), + 'filesize' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'filetype' => + array ( + 0 => 'false|string', + 'filename' => 'string', + ), + 'filter_has_var' => + array ( + 0 => 'bool', + 'input_type' => '0|1|2|4|5', + 'var_name' => 'string', + ), + 'filter_id' => + array ( + 0 => 'false|int', + 'name' => 'string', + ), + 'filter_input' => + array ( + 0 => 'false|mixed|null', + 'type' => '0|1|2|4|5', + 'var_name' => 'string', + 'filter=' => 'int', + 'options=' => 'array|int', + ), + 'filter_input_array' => + array ( + 0 => 'array|false|null', + 'type' => '0|1|2|4|5', + 'options=' => 'array|int', + 'add_empty=' => 'bool', + ), + 'filter_list' => + array ( + 0 => 'non-empty-list', + ), + 'filter_var' => + array ( + 0 => 'false|mixed', + 'value' => 'mixed', + 'filter=' => 'int', + 'options=' => 'array|int', + ), + 'filter_var_array' => + array ( + 0 => 'array|false|null', + 'array' => 'array', + 'options=' => 'array|int', + 'add_empty=' => 'bool', + ), + 'finfo::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'magic_database=' => 'string', + ), + 'finfo::buffer' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + 'finfo::file' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'null|resource', + ), + 'finfo::set_flags' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'finfo_buffer' => + array ( + 0 => 'false|string', + 'finfo' => 'resource', + 'string' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'finfo_close' => + array ( + 0 => 'bool', + 'finfo' => 'resource', + ), + 'finfo_file' => + array ( + 0 => 'false|string', + 'finfo' => 'resource', + 'filename' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'finfo_open' => + array ( + 0 => 'false|resource', + 'flags=' => 'int', + 'magic_database=' => 'string', + ), + 'finfo_set_flags' => + array ( + 0 => 'bool', + 'finfo' => 'resource', + 'flags' => 'int', + ), + 'floatval' => + array ( + 0 => 'float', + 'value' => 'mixed', + ), + 'flock' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'operation' => 'int', + '&w_would_block=' => 'int', + ), + 'floor' => + array ( + 0 => 'float', + 'num' => 'float|int', + ), + 'flush' => + array ( + 0 => 'void', + ), + 'fmod' => + array ( + 0 => 'float', + 'num1' => 'float', + 'num2' => 'float', + ), + 'fnmatch' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'fopen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'null|resource', + ), + 'forward_static_call' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'forward_static_call_array' => + array ( + 0 => 'false|mixed', + 'callback' => 'callable', + 'args' => 'list', + ), + 'fpassthru' => + array ( + 0 => 'int', + 'stream' => 'resource', + ), + 'fprintf' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'fputcsv' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'fields' => 'array', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'fputs' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'fread' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + ), + 'frenchtojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'fribidi_log2vis' => + array ( + 0 => 'string', + 'string' => 'string', + 'direction' => 'string', + 'charset' => 'int', + ), + 'fscanf' => + array ( + 0 => 'list', + 'stream' => 'resource', + 'format' => 'string', + ), + 'fscanf\'1' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'format' => 'string', + '&...w_vars=' => 'float|int|string', + ), + 'fseek' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'fsockopen' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + ), + 'fstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'stream' => 'resource', + ), + 'ftell' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + ), + 'ftok' => + array ( + 0 => 'int', + 'filename' => 'string', + 'project_id' => 'string', + ), + 'ftp_alloc' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'size' => 'int', + '&w_response=' => 'string', + ), + 'ftp_cdup' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'ftp_chdir' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'ftp_chmod' => + array ( + 0 => 'false|int', + 'ftp' => 'resource', + 'permissions' => 'int', + 'filename' => 'string', + ), + 'ftp_close' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'ftp_connect' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'ftp_delete' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'ftp_exec' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'ftp_fget' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_fput' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_get' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_get_option' => + array ( + 0 => 'false|int', + 'ftp' => 'resource', + 'option' => 'int', + ), + 'ftp_login' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'username' => 'string', + 'password' => 'string', + ), + 'ftp_mdtm' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'ftp_mkdir' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'ftp_mlsd' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'ftp_nb_continue' => + array ( + 0 => 'int', + 'ftp' => 'resource', + ), + 'ftp_nb_fget' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'stream' => 'resource', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_fput' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'stream' => 'resource', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_get' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'local_filename' => 'string', + 'remote_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nb_put' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_nlist' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'ftp_pasv' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'enable' => 'bool', + ), + 'ftp_put' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'remote_filename' => 'string', + 'local_filename' => 'string', + 'mode=' => 'int', + 'offset=' => 'int', + ), + 'ftp_pwd' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + ), + 'ftp_quit' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + ), + 'ftp_raw' => + array ( + 0 => 'array|null', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'ftp_rawlist' => + array ( + 0 => 'array|false', + 'ftp' => 'resource', + 'directory' => 'string', + 'recursive=' => 'bool', + ), + 'ftp_rename' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'ftp_rmdir' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'directory' => 'string', + ), + 'ftp_set_option' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'ftp_site' => + array ( + 0 => 'bool', + 'ftp' => 'resource', + 'command' => 'string', + ), + 'ftp_size' => + array ( + 0 => 'int', + 'ftp' => 'resource', + 'filename' => 'string', + ), + 'ftp_ssl_connect' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'ftp_systype' => + array ( + 0 => 'false|string', + 'ftp' => 'resource', + ), + 'ftruncate' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'size' => 'int', + ), + 'func_get_arg' => + array ( + 0 => 'false|mixed', + 'position' => 'int', + ), + 'func_get_args' => + array ( + 0 => 'list', + ), + 'func_num_args' => + array ( + 0 => 'int', + ), + 'function_exists' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'fwrite' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'gc_collect_cycles' => + array ( + 0 => 'int', + ), + 'gc_disable' => + array ( + 0 => 'void', + ), + 'gc_enable' => + array ( + 0 => 'void', + ), + 'gc_enabled' => + array ( + 0 => 'bool', + ), + 'gc_mem_caches' => + array ( + 0 => 'int', + ), + 'gd_info' => + array ( + 0 => 'array', + ), + 'gearman_bugreport' => + array ( + 0 => 'mixed', + ), + 'gearman_client_add_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_add_server' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'host' => 'mixed', + 'port' => 'mixed', + ), + 'gearman_client_add_servers' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'servers' => 'mixed', + ), + 'gearman_client_add_task' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_high' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_high_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_low' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_low_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'context' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_add_task_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'job_handle' => 'mixed', + 'context' => 'mixed', + ), + 'gearman_client_clear_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_clone' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_context' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_create' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_do' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_high' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_high_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_job_handle' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_do_low' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_low_background' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'mixed', + 'workload' => 'mixed', + 'unique' => 'mixed', + ), + 'gearman_client_do_normal' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'function_name' => 'string', + 'workload' => 'string', + 'unique' => 'string', + ), + 'gearman_client_do_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_echo' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'workload' => 'mixed', + ), + 'gearman_client_errno' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_error' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_job_status' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'job_handle' => 'mixed', + ), + 'gearman_client_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_remove_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_return_code' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_run_tasks' => + array ( + 0 => 'mixed', + 'data' => 'mixed', + ), + 'gearman_client_set_complete_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_context' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'context' => 'mixed', + ), + 'gearman_client_set_created_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_data_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_exception_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_fail_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_options' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_client_set_status_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_timeout' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_client_set_warning_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_set_workload_fn' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + 'callback' => 'mixed', + ), + 'gearman_client_timeout' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_client_wait' => + array ( + 0 => 'mixed', + 'client_object' => 'mixed', + ), + 'gearman_job_function_name' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_handle' => + array ( + 0 => 'string', + ), + 'gearman_job_return_code' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_send_complete' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'result' => 'mixed', + ), + 'gearman_job_send_data' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'data' => 'mixed', + ), + 'gearman_job_send_exception' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'exception' => 'mixed', + ), + 'gearman_job_send_fail' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_send_status' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'numerator' => 'mixed', + 'denominator' => 'mixed', + ), + 'gearman_job_send_warning' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + 'warning' => 'mixed', + ), + 'gearman_job_status' => + array ( + 0 => 'array', + 'job_handle' => 'string', + ), + 'gearman_job_unique' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_workload' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_job_workload_size' => + array ( + 0 => 'mixed', + 'job_object' => 'mixed', + ), + 'gearman_task_data' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_data_size' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_denominator' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_function_name' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_is_known' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_is_running' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_job_handle' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_numerator' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_recv_data' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + 'data_len' => 'mixed', + ), + 'gearman_task_return_code' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_task_send_workload' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + 'data' => 'mixed', + ), + 'gearman_task_unique' => + array ( + 0 => 'mixed', + 'task_object' => 'mixed', + ), + 'gearman_verbose_name' => + array ( + 0 => 'mixed', + 'verbose' => 'mixed', + ), + 'gearman_version' => + array ( + 0 => 'mixed', + ), + 'gearman_worker_add_function' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + 'function' => 'mixed', + 'data' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_add_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_add_server' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'host' => 'mixed', + 'port' => 'mixed', + ), + 'gearman_worker_add_servers' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'servers' => 'mixed', + ), + 'gearman_worker_clone' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_create' => + array ( + 0 => 'mixed', + ), + 'gearman_worker_echo' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'workload' => 'mixed', + ), + 'gearman_worker_errno' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_error' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_grab_job' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_register' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_remove_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_return_code' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_set_options' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'option' => 'mixed', + ), + 'gearman_worker_set_timeout' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'timeout' => 'mixed', + ), + 'gearman_worker_timeout' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_unregister' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + 'function_name' => 'mixed', + ), + 'gearman_worker_unregister_all' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_wait' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'gearman_worker_work' => + array ( + 0 => 'mixed', + 'worker_object' => 'mixed', + ), + 'geoip_asnum_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_continent_code_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_code3_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_code_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_country_name_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_database_info' => + array ( + 0 => 'string', + 'database=' => 'int', + ), + 'geoip_db_avail' => + array ( + 0 => 'bool', + 'database' => 'int', + ), + 'geoip_db_filename' => + array ( + 0 => 'string', + 'database' => 'int', + ), + 'geoip_db_get_all_info' => + array ( + 0 => 'array', + ), + 'geoip_domain_by_name' => + array ( + 0 => 'string', + 'hostname' => 'string', + ), + 'geoip_id_by_name' => + array ( + 0 => 'int', + 'hostname' => 'string', + ), + 'geoip_isp_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_netspeedcell_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_org_by_name' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + ), + 'geoip_record_by_name' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + ), + 'geoip_region_by_name' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + ), + 'geoip_region_name_by_code' => + array ( + 0 => 'false|string', + 'country_code' => 'string', + 'region_code' => 'string', + ), + 'geoip_setup_custom_directory' => + array ( + 0 => 'void', + 'path' => 'string', + ), + 'geoip_time_zone_by_country_and_region' => + array ( + 0 => 'false|string', + 'country_code' => 'string', + 'region_code=' => 'string', + ), + 'get_browser' => + array ( + 0 => 'array|false|object', + 'user_agent=' => 'null|string', + 'return_array=' => 'bool', + ), + 'get_call_stack' => + array ( + 0 => 'mixed', + ), + 'get_called_class' => + array ( + 0 => 'class-string', + ), + 'get_cfg_var' => + array ( + 0 => 'false|string', + 'option' => 'string', + ), + 'get_class' => + array ( + 0 => 'class-string', + 'object=' => 'object', + ), + 'get_class_methods' => + array ( + 0 => 'list|null', + 'object_or_class' => 'mixed', + ), + 'get_class_vars' => + array ( + 0 => 'array', + 'class' => 'string', + ), + 'get_current_user' => + array ( + 0 => 'string', + ), + 'get_declared_classes' => + array ( + 0 => 'list', + ), + 'get_declared_interfaces' => + array ( + 0 => 'list', + ), + 'get_declared_traits' => + array ( + 0 => 'list', + ), + 'get_defined_constants' => + array ( + 0 => 'array|null|resource|scalar>', + 'categorize=' => 'bool', + ), + 'get_defined_functions' => + array ( + 0 => 'array{internal: list, user: list}', + 'exclude_disabled=' => 'bool', + ), + 'get_defined_vars' => + array ( + 0 => 'array', + ), + 'get_extension_funcs' => + array ( + 0 => 'false|list', + 'extension' => 'string', + ), + 'get_headers' => + array ( + 0 => 'array|false', + 'url' => 'string', + 'associative=' => 'int', + ), + 'get_html_translation_table' => + array ( + 0 => 'array', + 'table=' => 'int', + 'flags=' => 'int', + 'encoding=' => 'string', + ), + 'get_include_path' => + array ( + 0 => 'string', + ), + 'get_included_files' => + array ( + 0 => 'list', + ), + 'get_loaded_extensions' => + array ( + 0 => 'list', + 'zend_extensions=' => 'bool', + ), + 'get_magic_quotes_gpc' => + array ( + 0 => 'false|int', + ), + 'get_magic_quotes_runtime' => + array ( + 0 => 'false|int', + ), + 'get_meta_tags' => + array ( + 0 => 'array', + 'filename' => 'string', + 'use_include_path=' => 'bool', + ), + 'get_object_vars' => + array ( + 0 => 'array', + 'object' => 'object', + ), + 'get_parent_class' => + array ( + 0 => 'class-string|false', + 'object_or_class=' => 'mixed', + ), + 'get_required_files' => + array ( + 0 => 'list', + ), + 'get_resource_type' => + array ( + 0 => 'string', + 'resource' => 'resource', + ), + 'get_resources' => + array ( + 0 => 'array', + 'type=' => 'string', + ), + 'getallheaders' => + array ( + 0 => 'array|false', + ), + 'getcwd' => + array ( + 0 => 'false|non-falsy-string', + ), + 'getdate' => + array ( + 0 => 'array{0: int, hours: int<0, 23>, mday: int<1, 31>, minutes: int<0, 59>, mon: int<1, 12>, month: \'April\'|\'August\'|\'December\'|\'February\'|\'January\'|\'July\'|\'June\'|\'March\'|\'May\'|\'November\'|\'October\'|\'September\', seconds: int<0, 59>, wday: int<0, 6>, weekday: \'Friday\'|\'Monday\'|\'Saturday\'|\'Sunday\'|\'Thursday\'|\'Tuesday\'|\'Wednesday\', yday: int<0, 365>, year: int}', + 'timestamp=' => 'int', + ), + 'getenv' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'local_only=' => 'bool', + ), + 'gethostbyaddr' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'gethostbyname' => + array ( + 0 => 'string', + 'hostname' => 'string', + ), + 'gethostbynamel' => + array ( + 0 => 'false|list', + 'hostname' => 'string', + ), + 'gethostname' => + array ( + 0 => 'false|string', + ), + 'getimagesize' => + array ( + 0 => 'array{0: int, 1: int, 2: int, 3: string, bits?: int, channels?: 3|4, mime: string}|false', + 'filename' => 'string', + '&w_image_info=' => 'array', + ), + 'getimagesizefromstring' => + array ( + 0 => 'array{0: int, 1: int, 2: int, 3: string, bits?: int, channels?: 3|4, mime: string}|false', + 'string' => 'string', + '&w_image_info=' => 'array', + ), + 'getlastmod' => + array ( + 0 => 'false|int', + ), + 'getmxrr' => + array ( + 0 => 'bool', + 'hostname' => 'string', + '&w_hosts' => 'array', + '&w_weights=' => 'array', + ), + 'getmygid' => + array ( + 0 => 'false|int', + ), + 'getmyinode' => + array ( + 0 => 'false|int', + ), + 'getmypid' => + array ( + 0 => 'false|int', + ), + 'getmyuid' => + array ( + 0 => 'false|int', + ), + 'getopt' => + array ( + 0 => 'array|string>|false', + 'short_options' => 'string', + 'long_options=' => 'array', + ), + 'getprotobyname' => + array ( + 0 => 'false|int', + 'protocol' => 'string', + ), + 'getprotobynumber' => + array ( + 0 => 'string', + 'protocol' => 'int', + ), + 'getrandmax' => + array ( + 0 => 'int<1, max>', + ), + 'getrusage' => + array ( + 0 => 'array', + 'mode=' => 'int', + ), + 'getservbyname' => + array ( + 0 => 'false|int', + 'service' => 'string', + 'protocol' => 'string', + ), + 'getservbyport' => + array ( + 0 => 'false|string', + 'port' => 'int', + 'protocol' => 'string', + ), + 'gettext' => + array ( + 0 => 'string', + 'message' => 'string', + ), + 'gettimeofday' => + array ( + 0 => 'array', + ), + 'gettimeofday\'1' => + array ( + 0 => 'float', + 'as_float=' => 'true', + ), + 'gettype' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'glob' => + array ( + 0 => 'false|list{0?: string, ...}', + 'pattern' => 'string', + 'flags=' => 'int<0, max>', + ), + 'gmdate' => + array ( + 0 => 'string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'gmmktime' => + array ( + 0 => 'false|int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + 'month=' => 'int', + 'day=' => 'int', + 'year=' => 'int', + ), + 'gmp_abs' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_add' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_and' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_clrbit' => + array ( + 0 => 'void', + 'num' => 'GMP', + 'index' => 'int', + ), + 'gmp_cmp' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_com' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_div' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_q' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_qr' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_div_r' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + 'rounding_mode=' => 'int', + ), + 'gmp_divexact' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_export' => + array ( + 0 => 'false|string', + 'num' => 'GMP|int|string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'gmp_fact' => + array ( + 0 => 'GMP', + 'num' => 'int', + ), + 'gmp_gcd' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_gcdext' => + array ( + 0 => 'array', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_hamdist' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_import' => + array ( + 0 => 'GMP|false', + 'data' => 'string', + 'word_size=' => 'int', + 'flags=' => 'int', + ), + 'gmp_init' => + array ( + 0 => 'GMP', + 'num' => 'int|string', + 'base=' => 'int', + ), + 'gmp_intval' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_invert' => + array ( + 0 => 'GMP|false', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_jacobi' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_legendre' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_mod' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_mul' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_neg' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_nextprime' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_or' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_perfect_square' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + ), + 'gmp_popcount' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_pow' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'exponent' => 'int', + ), + 'gmp_powm' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'exponent' => 'GMP|int|string', + 'modulus' => 'GMP|int|string', + ), + 'gmp_prob_prime' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + 'repetitions=' => 'int', + ), + 'gmp_random' => + array ( + 0 => 'GMP', + 'limiter=' => 'int', + ), + 'gmp_random_bits' => + array ( + 0 => 'GMP', + 'bits' => 'int', + ), + 'gmp_random_range' => + array ( + 0 => 'GMP', + 'min' => 'GMP|int|string', + 'max' => 'GMP|int|string', + ), + 'gmp_random_seed' => + array ( + 0 => 'void', + 'seed' => 'GMP|int|string', + ), + 'gmp_root' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + 'nth' => 'int', + ), + 'gmp_rootrem' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num' => 'GMP|int|string', + 'nth' => 'int', + ), + 'gmp_scan0' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'start' => 'int', + ), + 'gmp_scan1' => + array ( + 0 => 'int', + 'num1' => 'GMP|int|string', + 'start' => 'int', + ), + 'gmp_setbit' => + array ( + 0 => 'void', + 'num' => 'GMP', + 'index' => 'int', + 'value=' => 'bool', + ), + 'gmp_sign' => + array ( + 0 => 'int', + 'num' => 'GMP|int|string', + ), + 'gmp_sqrt' => + array ( + 0 => 'GMP', + 'num' => 'GMP|int|string', + ), + 'gmp_sqrtrem' => + array ( + 0 => 'array{0: GMP, 1: GMP}', + 'num' => 'GMP|int|string', + ), + 'gmp_strval' => + array ( + 0 => 'numeric-string', + 'num' => 'GMP|int|string', + 'base=' => 'int', + ), + 'gmp_sub' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmp_testbit' => + array ( + 0 => 'bool', + 'num' => 'GMP|int|string', + 'index' => 'int', + ), + 'gmp_xor' => + array ( + 0 => 'GMP', + 'num1' => 'GMP|int|string', + 'num2' => 'GMP|int|string', + ), + 'gmstrftime' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'gnupg::adddecryptkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + 'passphrase' => 'string', + ), + 'gnupg::addencryptkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + ), + 'gnupg::addsignkey' => + array ( + 0 => 'bool', + 'fingerprint' => 'string', + 'passphrase=' => 'string', + ), + 'gnupg::cleardecryptkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::clearencryptkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::clearsignkeys' => + array ( + 0 => 'bool', + ), + 'gnupg::decrypt' => + array ( + 0 => 'false|string', + 'text' => 'string', + ), + 'gnupg::decryptverify' => + array ( + 0 => 'array|false', + 'text' => 'string', + '&plaintext' => 'string', + ), + 'gnupg::encrypt' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::encryptsign' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::export' => + array ( + 0 => 'false|string', + 'fingerprint' => 'string', + ), + 'gnupg::geterror' => + array ( + 0 => 'false|string', + ), + 'gnupg::getprotocol' => + array ( + 0 => 'int', + ), + 'gnupg::import' => + array ( + 0 => 'array|false', + 'keydata' => 'string', + ), + 'gnupg::keyinfo' => + array ( + 0 => 'array', + 'pattern' => 'string', + ), + 'gnupg::setarmor' => + array ( + 0 => 'bool', + 'armor' => 'int', + ), + 'gnupg::seterrormode' => + array ( + 0 => 'void', + 'errormode' => 'int', + ), + 'gnupg::setsignmode' => + array ( + 0 => 'bool', + 'signmode' => 'int', + ), + 'gnupg::sign' => + array ( + 0 => 'false|string', + 'plaintext' => 'string', + ), + 'gnupg::verify' => + array ( + 0 => 'array|false', + 'signed_text' => 'string', + 'signature' => 'string', + '&plaintext=' => 'string', + ), + 'gnupg_adddecryptkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + 'passphrase' => 'string', + ), + 'gnupg_addencryptkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + ), + 'gnupg_addsignkey' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'fingerprint' => 'string', + 'passphrase=' => 'string', + ), + 'gnupg_cleardecryptkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_clearencryptkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_clearsignkeys' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + ), + 'gnupg_decrypt' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'text' => 'string', + ), + 'gnupg_decryptverify' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'text' => 'string', + 'plaintext' => 'string', + ), + 'gnupg_encrypt' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_encryptsign' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_export' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'fingerprint' => 'string', + ), + 'gnupg_geterror' => + array ( + 0 => 'string', + 'identifier' => 'resource', + ), + 'gnupg_getprotocol' => + array ( + 0 => 'int', + 'identifier' => 'resource', + ), + 'gnupg_import' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'keydata' => 'string', + ), + 'gnupg_init' => + array ( + 0 => 'resource', + ), + 'gnupg_keyinfo' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'pattern' => 'string', + ), + 'gnupg_setarmor' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'armor' => 'int', + ), + 'gnupg_seterrormode' => + array ( + 0 => 'void', + 'identifier' => 'resource', + 'errormode' => 'int', + ), + 'gnupg_setsignmode' => + array ( + 0 => 'bool', + 'identifier' => 'resource', + 'signmode' => 'int', + ), + 'gnupg_sign' => + array ( + 0 => 'string', + 'identifier' => 'resource', + 'plaintext' => 'string', + ), + 'gnupg_verify' => + array ( + 0 => 'array', + 'identifier' => 'resource', + 'signed_text' => 'string', + 'signature' => 'string', + 'plaintext=' => 'string', + ), + 'gopher_parsedir' => + array ( + 0 => 'array', + 'dirent' => 'string', + ), + 'grapheme_extract' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'size' => 'int', + 'type=' => 'int', + 'offset=' => 'int', + '&w_next=' => 'int', + ), + 'grapheme_stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'beforeNeedle=' => 'bool', + ), + 'grapheme_strlen' => + array ( + 0 => 'false|int<0, max>|null', + 'string' => 'string', + ), + 'grapheme_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + ), + 'grapheme_strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'beforeNeedle=' => 'bool', + ), + 'grapheme_substr' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int|null', + ), + 'gregoriantojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'gridObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'gupnp_context_get_host_ip' => + array ( + 0 => 'string', + 'context' => 'resource', + ), + 'gupnp_context_get_port' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'gupnp_context_get_subscription_timeout' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'gupnp_context_host_path' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'local_path' => 'string', + 'server_path' => 'string', + ), + 'gupnp_context_new' => + array ( + 0 => 'resource', + 'host_ip=' => 'string', + 'port=' => 'int', + ), + 'gupnp_context_set_subscription_timeout' => + array ( + 0 => 'void', + 'context' => 'resource', + 'timeout' => 'int', + ), + 'gupnp_context_timeout_add' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'timeout' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_context_unhost_path' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'server_path' => 'string', + ), + 'gupnp_control_point_browse_start' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + ), + 'gupnp_control_point_browse_stop' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + ), + 'gupnp_control_point_callback_set' => + array ( + 0 => 'bool', + 'cpoint' => 'resource', + 'signal' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_control_point_new' => + array ( + 0 => 'resource', + 'context' => 'resource', + 'target' => 'string', + ), + 'gupnp_device_action_callback_set' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + 'signal' => 'int', + 'action_name' => 'string', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_device_info_get' => + array ( + 0 => 'array', + 'root_device' => 'resource', + ), + 'gupnp_device_info_get_service' => + array ( + 0 => 'resource', + 'root_device' => 'resource', + 'type' => 'string', + ), + 'gupnp_root_device_get_available' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_root_device_get_relative_location' => + array ( + 0 => 'string', + 'root_device' => 'resource', + ), + 'gupnp_root_device_new' => + array ( + 0 => 'resource', + 'context' => 'resource', + 'location' => 'string', + 'description_dir' => 'string', + ), + 'gupnp_root_device_set_available' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + 'available' => 'bool', + ), + 'gupnp_root_device_start' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_root_device_stop' => + array ( + 0 => 'bool', + 'root_device' => 'resource', + ), + 'gupnp_service_action_get' => + array ( + 0 => 'mixed', + 'action' => 'resource', + 'name' => 'string', + 'type' => 'int', + ), + 'gupnp_service_action_return' => + array ( + 0 => 'bool', + 'action' => 'resource', + ), + 'gupnp_service_action_return_error' => + array ( + 0 => 'bool', + 'action' => 'resource', + 'error_code' => 'int', + 'error_description=' => 'string', + ), + 'gupnp_service_action_set' => + array ( + 0 => 'bool', + 'action' => 'resource', + 'name' => 'string', + 'type' => 'int', + 'value' => 'mixed', + ), + 'gupnp_service_freeze_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + ), + 'gupnp_service_info_get' => + array ( + 0 => 'array', + 'proxy' => 'resource', + ), + 'gupnp_service_info_get_introspection' => + array ( + 0 => 'mixed', + 'proxy' => 'resource', + 'callback=' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_introspection_get_state_variable' => + array ( + 0 => 'array', + 'introspection' => 'resource', + 'variable_name' => 'string', + ), + 'gupnp_service_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + 'name' => 'string', + 'type' => 'int', + 'value' => 'mixed', + ), + 'gupnp_service_proxy_action_get' => + array ( + 0 => 'mixed', + 'proxy' => 'resource', + 'action' => 'string', + 'name' => 'string', + 'type' => 'int', + ), + 'gupnp_service_proxy_action_set' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'action' => 'string', + 'name' => 'string', + 'value' => 'mixed', + 'type' => 'int', + ), + 'gupnp_service_proxy_add_notify' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'value' => 'string', + 'type' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_proxy_callback_set' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'signal' => 'int', + 'callback' => 'mixed', + 'arg=' => 'mixed', + ), + 'gupnp_service_proxy_get_subscribed' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + ), + 'gupnp_service_proxy_remove_notify' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'value' => 'string', + ), + 'gupnp_service_proxy_send_action' => + array ( + 0 => 'array', + 'proxy' => 'resource', + 'action' => 'string', + 'in_params' => 'array', + 'out_params' => 'array', + ), + 'gupnp_service_proxy_set_subscribed' => + array ( + 0 => 'bool', + 'proxy' => 'resource', + 'subscribed' => 'bool', + ), + 'gupnp_service_thaw_notify' => + array ( + 0 => 'bool', + 'service' => 'resource', + ), + 'gzclose' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzcompress' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzdecode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzdeflate' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzencode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'level=' => 'int', + 'encoding=' => 'int', + ), + 'gzeof' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzfile' => + array ( + 0 => 'false|list', + 'filename' => 'string', + 'use_include_path=' => 'int', + ), + 'gzgetc' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + ), + 'gzgets' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + ), + 'gzgetss' => + array ( + 0 => 'false|string', + 'zp' => 'resource', + 'length' => 'int', + 'allowable_tags=' => 'string', + ), + 'gzinflate' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzopen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode' => 'string', + 'use_include_path=' => 'int', + ), + 'gzpassthru' => + array ( + 0 => 'int', + 'stream' => 'resource', + ), + 'gzputs' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'gzread' => + array ( + 0 => '0|string', + 'stream' => 'resource', + 'length' => 'int', + ), + 'gzrewind' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'gzseek' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'gztell' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + ), + 'gzuncompress' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'gzwrite' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'hash' => + array ( + 0 => 'false|string', + 'algo' => 'string', + 'data' => 'string', + 'binary=' => 'bool', + ), + 'hashTableObj::clear' => + array ( + 0 => 'void', + ), + 'hashTableObj::get' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'hashTableObj::nextkey' => + array ( + 0 => 'string', + 'previousKey' => 'string', + ), + 'hashTableObj::remove' => + array ( + 0 => 'int', + 'key' => 'string', + ), + 'hashTableObj::set' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'hash_algos' => + array ( + 0 => 'list', + ), + 'hash_copy' => + array ( + 0 => 'resource', + 'context' => 'resource', + ), + 'hash_equals' => + array ( + 0 => 'bool', + 'known_string' => 'string', + 'user_string' => 'string', + ), + 'hash_file' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'hash_final' => + array ( + 0 => 'non-empty-string', + 'context' => 'resource', + 'raw_output=' => 'bool', + ), + 'hash_hmac' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'hash_hmac_file' => + array ( + 0 => 'false|non-empty-string', + 'algo' => 'string', + 'data' => 'string', + 'key' => 'string', + 'binary=' => 'bool', + ), + 'hash_init' => + array ( + 0 => 'resource', + 'algo' => 'string', + 'options=' => 'int', + 'key=' => 'string', + ), + 'hash_pbkdf2' => + array ( + 0 => 'non-empty-string', + 'algo' => 'string', + 'password' => 'string', + 'salt' => 'string', + 'iterations' => 'int', + 'length=' => 'int', + 'binary=' => 'bool', + ), + 'hash_update' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'data' => 'string', + ), + 'hash_update_file' => + array ( + 0 => 'bool', + 'hcontext' => 'resource', + 'filename' => 'string', + 'scontext=' => 'resource', + ), + 'hash_update_stream' => + array ( + 0 => 'int', + 'context' => 'resource', + 'handle' => 'resource', + 'length=' => 'int', + ), + 'header' => + array ( + 0 => 'void', + 'header' => 'string', + 'replace=' => 'bool', + 'response_code=' => 'int', + ), + 'header_register_callback' => + array ( + 0 => 'bool', + 'callback' => 'callable():void', + ), + 'header_remove' => + array ( + 0 => 'void', + 'name=' => 'string', + ), + 'headers_list' => + array ( + 0 => 'list', + ), + 'headers_sent' => + array ( + 0 => 'bool', + '&w_filename=' => 'string', + '&w_line=' => 'int', + ), + 'hebrev' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_chars_per_line=' => 'int', + ), + 'hebrevc' => + array ( + 0 => 'string', + 'string' => 'string', + 'max_chars_per_line=' => 'int', + ), + 'hex2bin' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'hexdec' => + array ( + 0 => 'float|int', + 'hex_string' => 'string', + ), + 'highlight_file' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + 'return=' => 'bool', + ), + 'highlight_string' => + array ( + 0 => 'bool|string', + 'string' => 'string', + 'return=' => 'bool', + ), + 'html_entity_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'string', + ), + 'htmlentities' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'string', + 'double_encode=' => 'bool', + ), + 'htmlspecialchars' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + 'encoding=' => 'null|string', + 'double_encode=' => 'bool', + ), + 'htmlspecialchars_decode' => + array ( + 0 => 'string', + 'string' => 'string', + 'flags=' => 'int', + ), + 'http\\Client::__construct' => + array ( + 0 => 'void', + 'driver=' => 'string', + 'persistent_handle_id=' => 'string', + ), + 'http\\Client::addCookies' => + array ( + 0 => 'http\\Client', + 'cookies=' => 'array|null', + ), + 'http\\Client::addSslOptions' => + array ( + 0 => 'http\\Client', + 'ssl_options=' => 'array|null', + ), + 'http\\Client::attach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'http\\Client::configure' => + array ( + 0 => 'http\\Client', + 'settings' => 'array', + ), + 'http\\Client::count' => + array ( + 0 => 'int', + ), + 'http\\Client::dequeue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::detach' => + array ( + 0 => 'void', + 'observer' => 'SplObserver', + ), + 'http\\Client::enableEvents' => + array ( + 0 => 'http\\Client', + 'enable=' => 'mixed', + ), + 'http\\Client::enablePipelining' => + array ( + 0 => 'http\\Client', + 'enable=' => 'mixed', + ), + 'http\\Client::enqueue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + 'callable=' => 'mixed', + ), + 'http\\Client::getAvailableConfiguration' => + array ( + 0 => 'array', + ), + 'http\\Client::getAvailableDrivers' => + array ( + 0 => 'array', + ), + 'http\\Client::getAvailableOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getCookies' => + array ( + 0 => 'array', + ), + 'http\\Client::getHistory' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client::getObservers' => + array ( + 0 => 'SplObjectStorage', + ), + 'http\\Client::getOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getProgressInfo' => + array ( + 0 => 'null|object', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::getResponse' => + array ( + 0 => 'http\\Client\\Response|null', + 'request=' => 'http\\Client\\Request|null', + ), + 'http\\Client::getSslOptions' => + array ( + 0 => 'array', + ), + 'http\\Client::getTransferInfo' => + array ( + 0 => 'object', + 'request' => 'http\\Client\\Request', + ), + 'http\\Client::notify' => + array ( + 0 => 'void', + 'request=' => 'http\\Client\\Request|null', + ), + 'http\\Client::once' => + array ( + 0 => 'bool', + ), + 'http\\Client::requeue' => + array ( + 0 => 'http\\Client', + 'request' => 'http\\Client\\Request', + 'callable=' => 'mixed', + ), + 'http\\Client::reset' => + array ( + 0 => 'http\\Client', + ), + 'http\\Client::send' => + array ( + 0 => 'http\\Client', + ), + 'http\\Client::setCookies' => + array ( + 0 => 'http\\Client', + 'cookies=' => 'array|null', + ), + 'http\\Client::setDebug' => + array ( + 0 => 'http\\Client', + 'callback' => 'callable', + ), + 'http\\Client::setOptions' => + array ( + 0 => 'http\\Client', + 'options=' => 'array|null', + ), + 'http\\Client::setSslOptions' => + array ( + 0 => 'http\\Client', + 'ssl_option=' => 'array|null', + ), + 'http\\Client::wait' => + array ( + 0 => 'bool', + 'timeout=' => 'mixed', + ), + 'http\\Client\\Curl\\User::init' => + array ( + 0 => 'mixed', + 'run' => 'callable', + ), + 'http\\Client\\Curl\\User::once' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Curl\\User::send' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Curl\\User::socket' => + array ( + 0 => 'mixed', + 'socket' => 'resource', + 'action' => 'int', + ), + 'http\\Client\\Curl\\User::timer' => + array ( + 0 => 'mixed', + 'timeout_ms' => 'int', + ), + 'http\\Client\\Curl\\User::wait' => + array ( + 0 => 'mixed', + 'timeout_ms=' => 'mixed', + ), + 'http\\Client\\Request::__construct' => + array ( + 0 => 'void', + 'method=' => 'mixed', + 'url=' => 'mixed', + 'headers=' => 'array|null', + 'body=' => 'http\\Message\\Body|null', + ), + 'http\\Client\\Request::__toString' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Request::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Client\\Request::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Client\\Request::addQuery' => + array ( + 0 => 'http\\Client\\Request', + 'query_data' => 'mixed', + ), + 'http\\Client\\Request::addSslOptions' => + array ( + 0 => 'http\\Client\\Request', + 'ssl_options=' => 'array|null', + ), + 'http\\Client\\Request::count' => + array ( + 0 => 'int', + ), + 'http\\Client\\Request::current' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Request::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Client\\Request::getContentType' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Client\\Request::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getOptions' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::getQuery' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Request::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Client\\Request::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Request::getSslOptions' => + array ( + 0 => 'array', + ), + 'http\\Client\\Request::getType' => + array ( + 0 => 'int', + ), + 'http\\Client\\Request::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Client\\Request::key' => + array ( + 0 => 'int|string', + ), + 'http\\Client\\Request::next' => + array ( + 0 => 'void', + ), + 'http\\Client\\Request::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Client\\Request::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::rewind' => + array ( + 0 => 'void', + ), + 'http\\Client\\Request::serialize' => + array ( + 0 => 'string', + ), + 'http\\Client\\Request::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Request::setContentType' => + array ( + 0 => 'http\\Client\\Request', + 'content_type' => 'string', + ), + 'http\\Client\\Request::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Client\\Request::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Client\\Request::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Client\\Request::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Client\\Request::setOptions' => + array ( + 0 => 'http\\Client\\Request', + 'options=' => 'array|null', + ), + 'http\\Client\\Request::setQuery' => + array ( + 0 => 'http\\Client\\Request', + 'query_data=' => 'mixed', + ), + 'http\\Client\\Request::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Client\\Request::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Client\\Request::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Client\\Request::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Client\\Request::setSslOptions' => + array ( + 0 => 'http\\Client\\Request', + 'ssl_options=' => 'array|null', + ), + 'http\\Client\\Request::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Client\\Request::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Request::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Client\\Request::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Client\\Request::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Client\\Request::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Client\\Request::valid' => + array ( + 0 => 'bool', + ), + 'http\\Client\\Response::__construct' => + array ( + 0 => 'Iterator', + ), + 'http\\Client\\Response::__toString' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Response::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Client\\Response::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Client\\Response::count' => + array ( + 0 => 'int', + ), + 'http\\Client\\Response::current' => + array ( + 0 => 'mixed', + ), + 'http\\Client\\Response::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Client\\Response::getCookies' => + array ( + 0 => 'array', + 'flags=' => 'mixed', + 'allowed_extras=' => 'mixed', + ), + 'http\\Client\\Response::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Client\\Response::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Client\\Response::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Client\\Response::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Client\\Response::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Client\\Response::getTransferInfo' => + array ( + 0 => 'mixed|object', + 'element=' => 'mixed', + ), + 'http\\Client\\Response::getType' => + array ( + 0 => 'int', + ), + 'http\\Client\\Response::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Client\\Response::key' => + array ( + 0 => 'int|string', + ), + 'http\\Client\\Response::next' => + array ( + 0 => 'void', + ), + 'http\\Client\\Response::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Client\\Response::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::rewind' => + array ( + 0 => 'void', + ), + 'http\\Client\\Response::serialize' => + array ( + 0 => 'string', + ), + 'http\\Client\\Response::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Client\\Response::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Client\\Response::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Client\\Response::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Client\\Response::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Client\\Response::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Client\\Response::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Client\\Response::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Client\\Response::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Client\\Response::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Client\\Response::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Client\\Response::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Client\\Response::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Client\\Response::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Client\\Response::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Client\\Response::valid' => + array ( + 0 => 'bool', + ), + 'http\\Cookie::__construct' => + array ( + 0 => 'void', + 'cookie_string=' => 'mixed', + 'parser_flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'http\\Cookie::__toString' => + array ( + 0 => 'string', + ), + 'http\\Cookie::addCookie' => + array ( + 0 => 'http\\Cookie', + 'cookie_name' => 'string', + 'cookie_value' => 'string', + ), + 'http\\Cookie::addCookies' => + array ( + 0 => 'http\\Cookie', + 'cookies' => 'array', + ), + 'http\\Cookie::addExtra' => + array ( + 0 => 'http\\Cookie', + 'extra_name' => 'string', + 'extra_value' => 'string', + ), + 'http\\Cookie::addExtras' => + array ( + 0 => 'http\\Cookie', + 'extras' => 'array', + ), + 'http\\Cookie::getCookie' => + array ( + 0 => 'null|string', + 'name' => 'string', + ), + 'http\\Cookie::getCookies' => + array ( + 0 => 'array', + ), + 'http\\Cookie::getDomain' => + array ( + 0 => 'string', + ), + 'http\\Cookie::getExpires' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getExtra' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'http\\Cookie::getExtras' => + array ( + 0 => 'array', + ), + 'http\\Cookie::getFlags' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getMaxAge' => + array ( + 0 => 'int', + ), + 'http\\Cookie::getPath' => + array ( + 0 => 'string', + ), + 'http\\Cookie::setCookie' => + array ( + 0 => 'http\\Cookie', + 'cookie_name' => 'string', + 'cookie_value=' => 'mixed', + ), + 'http\\Cookie::setCookies' => + array ( + 0 => 'http\\Cookie', + 'cookies=' => 'mixed', + ), + 'http\\Cookie::setDomain' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setExpires' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setExtra' => + array ( + 0 => 'http\\Cookie', + 'extra_name' => 'string', + 'extra_value=' => 'mixed', + ), + 'http\\Cookie::setExtras' => + array ( + 0 => 'http\\Cookie', + 'extras=' => 'mixed', + ), + 'http\\Cookie::setFlags' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setMaxAge' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::setPath' => + array ( + 0 => 'http\\Cookie', + 'value=' => 'mixed', + ), + 'http\\Cookie::toArray' => + array ( + 0 => 'array', + ), + 'http\\Cookie::toString' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Debrotli::decode' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Debrotli::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Debrotli::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Dechunk::decode' => + array ( + 0 => 'false|string', + 'data' => 'string', + '&decoded_len=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Dechunk::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Dechunk::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Dechunk::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Deflate::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Deflate::encode' => + array ( + 0 => 'string', + 'data' => 'string', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Deflate::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Deflate::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::__construct' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Enbrotli::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Enbrotli::encode' => + array ( + 0 => 'string', + 'data' => 'string', + 'flags=' => 'int', + ), + 'http\\Encoding\\Stream\\Enbrotli::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Enbrotli::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::__construct' => + array ( + 0 => 'void', + 'flags=' => 'mixed', + ), + 'http\\Encoding\\Stream\\Inflate::decode' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::done' => + array ( + 0 => 'bool', + ), + 'http\\Encoding\\Stream\\Inflate::finish' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::flush' => + array ( + 0 => 'string', + ), + 'http\\Encoding\\Stream\\Inflate::update' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'http\\Env::getRequestBody' => + array ( + 0 => 'http\\Message\\Body', + 'body_class_name=' => 'mixed', + ), + 'http\\Env::getRequestHeader' => + array ( + 0 => 'array|null|string', + 'header_name=' => 'mixed', + ), + 'http\\Env::getResponseCode' => + array ( + 0 => 'int', + ), + 'http\\Env::getResponseHeader' => + array ( + 0 => 'array|null|string', + 'header_name=' => 'mixed', + ), + 'http\\Env::getResponseStatusForAllCodes' => + array ( + 0 => 'array', + ), + 'http\\Env::getResponseStatusForCode' => + array ( + 0 => 'string', + 'code' => 'int', + ), + 'http\\Env::negotiate' => + array ( + 0 => 'null|string', + 'params' => 'string', + 'supported' => 'array', + 'primary_type_separator=' => 'mixed', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateCharset' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateContentType' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateEncoding' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::negotiateLanguage' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result_array=' => 'mixed', + ), + 'http\\Env::setResponseCode' => + array ( + 0 => 'bool', + 'code' => 'int', + ), + 'http\\Env::setResponseHeader' => + array ( + 0 => 'bool', + 'header_name' => 'string', + 'header_value=' => 'mixed', + 'response_code=' => 'mixed', + 'replace_header=' => 'mixed', + ), + 'http\\Env\\Request::__construct' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::__toString' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Request::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Env\\Request::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Env\\Request::count' => + array ( + 0 => 'int', + ), + 'http\\Env\\Request::current' => + array ( + 0 => 'mixed', + ), + 'http\\Env\\Request::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Env\\Request::getCookie' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getFiles' => + array ( + 0 => 'array', + ), + 'http\\Env\\Request::getForm' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Env\\Request::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Env\\Request::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Env\\Request::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::getQuery' => + array ( + 0 => 'mixed', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\Env\\Request::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Env\\Request::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Request::getType' => + array ( + 0 => 'int', + ), + 'http\\Env\\Request::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Env\\Request::key' => + array ( + 0 => 'int|string', + ), + 'http\\Env\\Request::next' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Env\\Request::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::rewind' => + array ( + 0 => 'void', + ), + 'http\\Env\\Request::serialize' => + array ( + 0 => 'string', + ), + 'http\\Env\\Request::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Request::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Env\\Request::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Env\\Request::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Env\\Request::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Env\\Request::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Env\\Request::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Env\\Request::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Env\\Request::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Env\\Request::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Env\\Request::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Request::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Env\\Request::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Env\\Request::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Env\\Request::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Env\\Request::valid' => + array ( + 0 => 'bool', + ), + 'http\\Env\\Response::__construct' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::__invoke' => + array ( + 0 => 'bool', + 'data' => 'string', + 'ob_flags=' => 'int', + ), + 'http\\Env\\Response::__toString' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Response::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Env\\Response::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Env\\Response::count' => + array ( + 0 => 'int', + ), + 'http\\Env\\Response::current' => + array ( + 0 => 'mixed', + ), + 'http\\Env\\Response::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Env\\Response::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Env\\Response::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Env\\Response::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Env\\Response::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Env\\Response::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Env\\Response::getType' => + array ( + 0 => 'int', + ), + 'http\\Env\\Response::isCachedByETag' => + array ( + 0 => 'int', + 'header_name=' => 'string', + ), + 'http\\Env\\Response::isCachedByLastModified' => + array ( + 0 => 'int', + 'header_name=' => 'string', + ), + 'http\\Env\\Response::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Env\\Response::key' => + array ( + 0 => 'int|string', + ), + 'http\\Env\\Response::next' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Env\\Response::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::rewind' => + array ( + 0 => 'void', + ), + 'http\\Env\\Response::send' => + array ( + 0 => 'bool', + 'stream=' => 'resource', + ), + 'http\\Env\\Response::serialize' => + array ( + 0 => 'string', + ), + 'http\\Env\\Response::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Env\\Response::setCacheControl' => + array ( + 0 => 'http\\Env\\Response', + 'cache_control' => 'string', + ), + 'http\\Env\\Response::setContentDisposition' => + array ( + 0 => 'http\\Env\\Response', + 'disposition_params' => 'array', + ), + 'http\\Env\\Response::setContentEncoding' => + array ( + 0 => 'http\\Env\\Response', + 'content_encoding' => 'int', + ), + 'http\\Env\\Response::setContentType' => + array ( + 0 => 'http\\Env\\Response', + 'content_type' => 'string', + ), + 'http\\Env\\Response::setCookie' => + array ( + 0 => 'http\\Env\\Response', + 'cookie' => 'mixed', + ), + 'http\\Env\\Response::setEnvRequest' => + array ( + 0 => 'http\\Env\\Response', + 'env_request' => 'http\\Message', + ), + 'http\\Env\\Response::setEtag' => + array ( + 0 => 'http\\Env\\Response', + 'etag' => 'string', + ), + 'http\\Env\\Response::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Env\\Response::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Env\\Response::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Env\\Response::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Env\\Response::setLastModified' => + array ( + 0 => 'http\\Env\\Response', + 'last_modified' => 'int', + ), + 'http\\Env\\Response::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Env\\Response::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Env\\Response::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Env\\Response::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Env\\Response::setThrottleRate' => + array ( + 0 => 'http\\Env\\Response', + 'chunk_size' => 'int', + 'delay=' => 'float|int', + ), + 'http\\Env\\Response::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Env\\Response::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Env\\Response::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Env\\Response::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Env\\Response::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Env\\Response::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Env\\Response::valid' => + array ( + 0 => 'bool', + ), + 'http\\Header::__construct' => + array ( + 0 => 'void', + 'name=' => 'mixed', + 'value=' => 'mixed', + ), + 'http\\Header::__toString' => + array ( + 0 => 'string', + ), + 'http\\Header::getParams' => + array ( + 0 => 'http\\Params', + 'param_sep=' => 'mixed', + 'arg_sep=' => 'mixed', + 'val_sep=' => 'mixed', + 'flags=' => 'mixed', + ), + 'http\\Header::match' => + array ( + 0 => 'bool', + 'value' => 'string', + 'flags=' => 'mixed', + ), + 'http\\Header::negotiate' => + array ( + 0 => 'null|string', + 'supported' => 'array', + '&result=' => 'mixed', + ), + 'http\\Header::parse' => + array ( + 0 => 'array|false', + 'string' => 'string', + 'header_class=' => 'mixed', + ), + 'http\\Header::serialize' => + array ( + 0 => 'string', + ), + 'http\\Header::toString' => + array ( + 0 => 'string', + ), + 'http\\Header::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Header\\Parser::getState' => + array ( + 0 => 'int', + ), + 'http\\Header\\Parser::parse' => + array ( + 0 => 'int', + 'data' => 'string', + 'flags' => 'int', + '&headers' => 'array', + ), + 'http\\Header\\Parser::stream' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'flags' => 'int', + '&headers' => 'array', + ), + 'http\\Message::__construct' => + array ( + 0 => 'void', + 'message=' => 'mixed', + 'greedy=' => 'bool', + ), + 'http\\Message::__toString' => + array ( + 0 => 'string', + ), + 'http\\Message::addBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Message::addHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value' => 'mixed', + ), + 'http\\Message::addHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + 'append=' => 'mixed', + ), + 'http\\Message::count' => + array ( + 0 => 'int', + ), + 'http\\Message::current' => + array ( + 0 => 'mixed', + ), + 'http\\Message::detach' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::getBody' => + array ( + 0 => 'http\\Message\\Body', + ), + 'http\\Message::getHeader' => + array ( + 0 => 'http\\Header|mixed', + 'header' => 'string', + 'into_class=' => 'mixed', + ), + 'http\\Message::getHeaders' => + array ( + 0 => 'array', + ), + 'http\\Message::getHttpVersion' => + array ( + 0 => 'string', + ), + 'http\\Message::getInfo' => + array ( + 0 => 'null|string', + ), + 'http\\Message::getParentMessage' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::getRequestMethod' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getRequestUrl' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getResponseCode' => + array ( + 0 => 'false|int', + ), + 'http\\Message::getResponseStatus' => + array ( + 0 => 'false|string', + ), + 'http\\Message::getType' => + array ( + 0 => 'int', + ), + 'http\\Message::isMultipart' => + array ( + 0 => 'bool', + '&boundary=' => 'mixed', + ), + 'http\\Message::key' => + array ( + 0 => 'int|string', + ), + 'http\\Message::next' => + array ( + 0 => 'void', + ), + 'http\\Message::prepend' => + array ( + 0 => 'http\\Message', + 'message' => 'http\\Message', + 'top=' => 'mixed', + ), + 'http\\Message::reverse' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::rewind' => + array ( + 0 => 'void', + ), + 'http\\Message::serialize' => + array ( + 0 => 'string', + ), + 'http\\Message::setBody' => + array ( + 0 => 'http\\Message', + 'body' => 'http\\Message\\Body', + ), + 'http\\Message::setHeader' => + array ( + 0 => 'http\\Message', + 'header' => 'string', + 'value=' => 'mixed', + ), + 'http\\Message::setHeaders' => + array ( + 0 => 'http\\Message', + 'headers' => 'array', + ), + 'http\\Message::setHttpVersion' => + array ( + 0 => 'http\\Message', + 'http_version' => 'string', + ), + 'http\\Message::setInfo' => + array ( + 0 => 'http\\Message', + 'http_info' => 'string', + ), + 'http\\Message::setRequestMethod' => + array ( + 0 => 'http\\Message', + 'request_method' => 'string', + ), + 'http\\Message::setRequestUrl' => + array ( + 0 => 'http\\Message', + 'url' => 'string', + ), + 'http\\Message::setResponseCode' => + array ( + 0 => 'http\\Message', + 'response_code' => 'int', + 'strict=' => 'mixed', + ), + 'http\\Message::setResponseStatus' => + array ( + 0 => 'http\\Message', + 'response_status' => 'string', + ), + 'http\\Message::setType' => + array ( + 0 => 'http\\Message', + 'type' => 'int', + ), + 'http\\Message::splitMultipartBody' => + array ( + 0 => 'http\\Message', + ), + 'http\\Message::toCallback' => + array ( + 0 => 'http\\Message', + 'callback' => 'callable', + ), + 'http\\Message::toStream' => + array ( + 0 => 'http\\Message', + 'stream' => 'resource', + ), + 'http\\Message::toString' => + array ( + 0 => 'string', + 'include_parent=' => 'mixed', + ), + 'http\\Message::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Message::valid' => + array ( + 0 => 'bool', + ), + 'http\\Message\\Body::__construct' => + array ( + 0 => 'void', + 'stream=' => 'resource', + ), + 'http\\Message\\Body::__toString' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::addForm' => + array ( + 0 => 'http\\Message\\Body', + 'fields=' => 'array|null', + 'files=' => 'array|null', + ), + 'http\\Message\\Body::addPart' => + array ( + 0 => 'http\\Message\\Body', + 'message' => 'http\\Message', + ), + 'http\\Message\\Body::append' => + array ( + 0 => 'http\\Message\\Body', + 'string' => 'string', + ), + 'http\\Message\\Body::etag' => + array ( + 0 => 'false|string', + ), + 'http\\Message\\Body::getBoundary' => + array ( + 0 => 'null|string', + ), + 'http\\Message\\Body::getResource' => + array ( + 0 => 'resource', + ), + 'http\\Message\\Body::serialize' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::stat' => + array ( + 0 => 'int|object', + 'field=' => 'mixed', + ), + 'http\\Message\\Body::toCallback' => + array ( + 0 => 'http\\Message\\Body', + 'callback' => 'callable', + 'offset=' => 'mixed', + 'maxlen=' => 'mixed', + ), + 'http\\Message\\Body::toStream' => + array ( + 0 => 'http\\Message\\Body', + 'stream' => 'resource', + 'offset=' => 'mixed', + 'maxlen=' => 'mixed', + ), + 'http\\Message\\Body::toString' => + array ( + 0 => 'string', + ), + 'http\\Message\\Body::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\Message\\Parser::getState' => + array ( + 0 => 'int', + ), + 'http\\Message\\Parser::parse' => + array ( + 0 => 'int', + 'data' => 'string', + 'flags' => 'int', + '&message' => 'http\\Message', + ), + 'http\\Message\\Parser::stream' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'flags' => 'int', + '&message' => 'http\\Message', + ), + 'http\\Params::__construct' => + array ( + 0 => 'void', + 'params=' => 'mixed', + 'param_sep=' => 'mixed', + 'arg_sep=' => 'mixed', + 'val_sep=' => 'mixed', + 'flags=' => 'mixed', + ), + 'http\\Params::__toString' => + array ( + 0 => 'string', + ), + 'http\\Params::offsetExists' => + array ( + 0 => 'bool', + 'name' => 'int|string', + ), + 'http\\Params::offsetGet' => + array ( + 0 => 'mixed', + 'name' => 'int|string', + ), + 'http\\Params::offsetSet' => + array ( + 0 => 'void', + 'name' => 'int|null|string', + 'value' => 'mixed', + ), + 'http\\Params::offsetUnset' => + array ( + 0 => 'void', + 'name' => 'int|string', + ), + 'http\\Params::toArray' => + array ( + 0 => 'array', + ), + 'http\\Params::toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::__construct' => + array ( + 0 => 'void', + 'querystring' => 'string', + ), + 'http\\QueryString::__toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::get' => + array ( + 0 => 'http\\QueryString|mixed|string', + 'name=' => 'string', + 'type=' => 'mixed', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getArray' => + array ( + 0 => 'array|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getBool' => + array ( + 0 => 'bool|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getFloat' => + array ( + 0 => 'float|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getGlobalInstance' => + array ( + 0 => 'http\\QueryString', + ), + 'http\\QueryString::getInt' => + array ( + 0 => 'int|mixed', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getIterator' => + array ( + 0 => 'IteratorAggregate', + ), + 'http\\QueryString::getObject' => + array ( + 0 => 'mixed|object', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::getString' => + array ( + 0 => 'mixed|string', + 'name' => 'string', + 'defval=' => 'mixed', + 'delete=' => 'bool', + ), + 'http\\QueryString::mod' => + array ( + 0 => 'http\\QueryString', + 'params=' => 'mixed', + ), + 'http\\QueryString::offsetExists' => + array ( + 0 => 'bool', + 'offset' => 'int|string', + ), + 'http\\QueryString::offsetGet' => + array ( + 0 => 'mixed|null', + 'offset' => 'int|string', + ), + 'http\\QueryString::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int|null|string', + 'value' => 'mixed', + ), + 'http\\QueryString::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int|string', + ), + 'http\\QueryString::serialize' => + array ( + 0 => 'string', + ), + 'http\\QueryString::set' => + array ( + 0 => 'http\\QueryString', + 'params' => 'mixed', + ), + 'http\\QueryString::toArray' => + array ( + 0 => 'array', + ), + 'http\\QueryString::toString' => + array ( + 0 => 'string', + ), + 'http\\QueryString::unserialize' => + array ( + 0 => 'void', + 'serialized' => 'string', + ), + 'http\\QueryString::xlate' => + array ( + 0 => 'http\\QueryString', + ), + 'http\\Url::__construct' => + array ( + 0 => 'void', + 'old_url=' => 'mixed', + 'new_url=' => 'mixed', + 'flags=' => 'int', + ), + 'http\\Url::__toString' => + array ( + 0 => 'string', + ), + 'http\\Url::mod' => + array ( + 0 => 'http\\Url', + 'parts' => 'mixed', + 'flags=' => 'float|int|mixed', + ), + 'http\\Url::toArray' => + array ( + 0 => 'array', + ), + 'http\\Url::toString' => + array ( + 0 => 'string', + ), + 'http_build_cookie' => + array ( + 0 => 'string', + 'cookie' => 'array', + ), + 'http_build_query' => + array ( + 0 => 'string', + 'data' => 'array|object', + 'numeric_prefix=' => 'string', + 'arg_separator=' => 'null|string', + 'encoding_type=' => 'int', + ), + 'http_build_str' => + array ( + 0 => 'string', + 'query' => 'array', + 'prefix=' => 'null|string', + 'arg_separator=' => 'string', + ), + 'http_build_url' => + array ( + 0 => 'string', + 'url=' => 'array|string', + 'parts=' => 'array|string', + 'flags=' => 'int', + 'new_url=' => 'array', + ), + 'http_cache_etag' => + array ( + 0 => 'bool', + 'etag=' => 'string', + ), + 'http_cache_last_modified' => + array ( + 0 => 'bool', + 'timestamp_or_expires=' => 'int', + ), + 'http_chunked_decode' => + array ( + 0 => 'false|string', + 'encoded' => 'string', + ), + 'http_date' => + array ( + 0 => 'string', + 'timestamp=' => 'int', + ), + 'http_deflate' => + array ( + 0 => 'null|string', + 'data' => 'string', + 'flags=' => 'int', + ), + 'http_get' => + array ( + 0 => 'string', + 'url' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_get_request_body' => + array ( + 0 => 'null|string', + ), + 'http_get_request_body_stream' => + array ( + 0 => 'null|resource', + ), + 'http_get_request_headers' => + array ( + 0 => 'array', + ), + 'http_head' => + array ( + 0 => 'string', + 'url' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_inflate' => + array ( + 0 => 'null|string', + 'data' => 'string', + ), + 'http_match_etag' => + array ( + 0 => 'bool', + 'etag' => 'string', + 'for_range=' => 'bool', + ), + 'http_match_modified' => + array ( + 0 => 'bool', + 'timestamp=' => 'int', + 'for_range=' => 'bool', + ), + 'http_match_request_header' => + array ( + 0 => 'bool', + 'header' => 'string', + 'value' => 'string', + 'match_case=' => 'bool', + ), + 'http_negotiate_charset' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_negotiate_content_type' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_negotiate_language' => + array ( + 0 => 'string', + 'supported' => 'array', + 'result=' => 'array', + ), + 'http_parse_cookie' => + array ( + 0 => 'false|stdClass', + 'cookie' => 'string', + 'flags=' => 'int', + 'allowed_extras=' => 'array', + ), + 'http_parse_headers' => + array ( + 0 => 'array|false', + 'header' => 'string', + ), + 'http_parse_message' => + array ( + 0 => 'object', + 'message' => 'string', + ), + 'http_parse_params' => + array ( + 0 => 'stdClass', + 'param' => 'string', + 'flags=' => 'int', + ), + 'http_persistent_handles_clean' => + array ( + 0 => 'string', + 'ident=' => 'string', + ), + 'http_persistent_handles_count' => + array ( + 0 => 'false|stdClass', + ), + 'http_persistent_handles_ident' => + array ( + 0 => 'false|string', + 'ident=' => 'string', + ), + 'http_post_data' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_post_fields' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'array', + 'files=' => 'array', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_data' => + array ( + 0 => 'string', + 'url' => 'string', + 'data' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_file' => + array ( + 0 => 'string', + 'url' => 'string', + 'file' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_put_stream' => + array ( + 0 => 'string', + 'url' => 'string', + 'stream' => 'resource', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_redirect' => + array ( + 0 => 'false|int', + 'url=' => 'string', + 'params=' => 'array', + 'session=' => 'bool', + 'status=' => 'int', + ), + 'http_request' => + array ( + 0 => 'string', + 'method' => 'int', + 'url' => 'string', + 'body=' => 'string', + 'options=' => 'array', + 'info=' => 'array', + ), + 'http_request_body_encode' => + array ( + 0 => 'false|string', + 'fields' => 'array', + 'files' => 'array', + ), + 'http_request_method_exists' => + array ( + 0 => 'bool', + 'method' => 'mixed', + ), + 'http_request_method_name' => + array ( + 0 => 'false|string', + 'method' => 'int', + ), + 'http_request_method_register' => + array ( + 0 => 'false|int', + 'method' => 'string', + ), + 'http_request_method_unregister' => + array ( + 0 => 'bool', + 'method' => 'mixed', + ), + 'http_response_code' => + array ( + 0 => 'bool|int', + 'response_code=' => 'int', + ), + 'http_send_content_disposition' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'inline=' => 'bool', + ), + 'http_send_content_type' => + array ( + 0 => 'bool', + 'content_type=' => 'string', + ), + 'http_send_data' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'http_send_file' => + array ( + 0 => 'bool', + 'file' => 'string', + ), + 'http_send_last_modified' => + array ( + 0 => 'bool', + 'timestamp=' => 'int', + ), + 'http_send_status' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'http_send_stream' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'http_support' => + array ( + 0 => 'int', + 'feature=' => 'int', + ), + 'http_throttle' => + array ( + 0 => 'void', + 'sec' => 'float', + 'bytes=' => 'int', + ), + 'hw_Array2Objrec' => + array ( + 0 => 'string', + 'object_array' => 'array', + ), + 'hw_Children' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_ChildrenObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_Close' => + array ( + 0 => 'bool', + 'connection' => 'int', + ), + 'hw_Connect' => + array ( + 0 => 'int', + 'host' => 'string', + 'port' => 'int', + 'username=' => 'string', + 'password=' => 'string', + ), + 'hw_Deleteobject' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'object_to_delete' => 'int', + ), + 'hw_DocByAnchor' => + array ( + 0 => 'int', + 'connection' => 'int', + 'anchorid' => 'int', + ), + 'hw_DocByAnchorObj' => + array ( + 0 => 'string', + 'connection' => 'int', + 'anchorid' => 'int', + ), + 'hw_Document_Attributes' => + array ( + 0 => 'string', + 'hw_document' => 'int', + ), + 'hw_Document_BodyTag' => + array ( + 0 => 'string', + 'hw_document' => 'int', + 'prefix=' => 'string', + ), + 'hw_Document_Content' => + array ( + 0 => 'string', + 'hw_document' => 'int', + ), + 'hw_Document_SetContent' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + 'content' => 'string', + ), + 'hw_Document_Size' => + array ( + 0 => 'int', + 'hw_document' => 'int', + ), + 'hw_EditText' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'hw_document' => 'int', + ), + 'hw_Error' => + array ( + 0 => 'int', + 'connection' => 'int', + ), + 'hw_ErrorMsg' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_Free_Document' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + ), + 'hw_GetAnchors' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetAnchorsObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetAndLock' => + array ( + 0 => 'string', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildDocColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetChildDocCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetObject' => + array ( + 0 => 'mixed', + 'connection' => 'int', + 'objectid' => 'mixed', + 'query=' => 'string', + ), + 'hw_GetObjectByQuery' => + array ( + 0 => 'array', + 'connection' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryColl' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryCollObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetObjectByQueryObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'query' => 'string', + 'max_hits' => 'int', + ), + 'hw_GetParents' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetParentsObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetRemote' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetSrcByDestObj' => + array ( + 0 => 'array', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_GetText' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'prefix=' => 'mixed', + ), + 'hw_Identify' => + array ( + 0 => 'string', + 'link' => 'int', + 'username' => 'string', + 'password' => 'string', + ), + 'hw_InCollections' => + array ( + 0 => 'array', + 'connection' => 'int', + 'object_id_array' => 'array', + 'collection_id_array' => 'array', + 'return_collections' => 'int', + ), + 'hw_Info' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_InsColl' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'object_array' => 'array', + ), + 'hw_InsDoc' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'parentid' => 'int', + 'object_record' => 'string', + 'text=' => 'string', + ), + 'hw_InsertDocument' => + array ( + 0 => 'int', + 'connection' => 'int', + 'parent_id' => 'int', + 'hw_document' => 'int', + ), + 'hw_InsertObject' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_rec' => 'string', + 'parameter' => 'string', + ), + 'hw_Modifyobject' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'object_to_change' => 'int', + 'remove' => 'array', + 'add' => 'array', + 'mode=' => 'int', + ), + 'hw_New_Document' => + array ( + 0 => 'int', + 'object_record' => 'string', + 'document_data' => 'string', + 'document_size' => 'int', + ), + 'hw_Output_Document' => + array ( + 0 => 'bool', + 'hw_document' => 'int', + ), + 'hw_PipeDocument' => + array ( + 0 => 'int', + 'connection' => 'int', + 'objectid' => 'int', + 'url_prefixes=' => 'array', + ), + 'hw_Root' => + array ( + 0 => 'int', + ), + 'hw_Unlock' => + array ( + 0 => 'bool', + 'connection' => 'int', + 'objectid' => 'int', + ), + 'hw_Who' => + array ( + 0 => 'array', + 'connection' => 'int', + ), + 'hw_api::checkin' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::checkout' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::children' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::content' => + array ( + 0 => 'HW_API_Content', + 'parameter' => 'array', + ), + 'hw_api::copy' => + array ( + 0 => 'hw_api_content', + 'parameter' => 'array', + ), + 'hw_api::dbstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::dcstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::dstanchors' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::dstofsrcanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::find' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::ftstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::hwstat' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::identify' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::info' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::insert' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertcollection' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::insertdocument' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::link' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::lock' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::move' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::object' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::objectbyanchor' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::parents' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::remove' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::replace' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::setcommittedversion' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::srcanchors' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::srcsofdst' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api::unlock' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api::user' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api::userlist' => + array ( + 0 => 'array', + 'parameter' => 'array', + ), + 'hw_api_attribute' => + array ( + 0 => 'HW_API_Attribute', + 'name=' => 'string', + 'value=' => 'string', + ), + 'hw_api_attribute::key' => + array ( + 0 => 'string', + ), + 'hw_api_attribute::langdepvalue' => + array ( + 0 => 'string', + 'language' => 'string', + ), + 'hw_api_attribute::value' => + array ( + 0 => 'string', + ), + 'hw_api_attribute::values' => + array ( + 0 => 'array', + ), + 'hw_api_content' => + array ( + 0 => 'HW_API_Content', + 'content' => 'string', + 'mimetype' => 'string', + ), + 'hw_api_content::mimetype' => + array ( + 0 => 'string', + ), + 'hw_api_content::read' => + array ( + 0 => 'string', + 'buffer' => 'string', + 'length' => 'int', + ), + 'hw_api_error::count' => + array ( + 0 => 'int', + ), + 'hw_api_error::reason' => + array ( + 0 => 'HW_API_Reason', + ), + 'hw_api_object' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hw_api_object::assign' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api_object::attreditable' => + array ( + 0 => 'bool', + 'parameter' => 'array', + ), + 'hw_api_object::count' => + array ( + 0 => 'int', + 'parameter' => 'array', + ), + 'hw_api_object::insert' => + array ( + 0 => 'bool', + 'attribute' => 'hw_api_attribute', + ), + 'hw_api_object::remove' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'hw_api_object::title' => + array ( + 0 => 'string', + 'parameter' => 'array', + ), + 'hw_api_object::value' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'hw_api_reason::description' => + array ( + 0 => 'string', + ), + 'hw_api_reason::type' => + array ( + 0 => 'HW_API_Reason', + ), + 'hw_changeobject' => + array ( + 0 => 'bool', + 'link' => 'int', + 'objid' => 'int', + 'attributes' => 'array', + ), + 'hw_connection_info' => + array ( + 0 => 'mixed', + 'link' => 'int', + ), + 'hw_cp' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_id_array' => 'array', + 'destination_id' => 'int', + ), + 'hw_dummy' => + array ( + 0 => 'string', + 'link' => 'int', + 'id' => 'int', + 'msgid' => 'int', + ), + 'hw_getrellink' => + array ( + 0 => 'string', + 'link' => 'int', + 'rootid' => 'int', + 'sourceid' => 'int', + 'destid' => 'int', + ), + 'hw_getremotechildren' => + array ( + 0 => 'mixed', + 'connection' => 'int', + 'object_record' => 'string', + ), + 'hw_getusername' => + array ( + 0 => 'string', + 'connection' => 'int', + ), + 'hw_insertanchors' => + array ( + 0 => 'bool', + 'hwdoc' => 'int', + 'anchorecs' => 'array', + 'dest' => 'array', + 'urlprefixes=' => 'array', + ), + 'hw_mapid' => + array ( + 0 => 'int', + 'connection' => 'int', + 'server_id' => 'int', + 'object_id' => 'int', + ), + 'hw_mv' => + array ( + 0 => 'int', + 'connection' => 'int', + 'object_id_array' => 'array', + 'source_id' => 'int', + 'destination_id' => 'int', + ), + 'hw_objrec2array' => + array ( + 0 => 'array', + 'object_record' => 'string', + 'format=' => 'array', + ), + 'hw_pConnect' => + array ( + 0 => 'int', + 'host' => 'string', + 'port' => 'int', + 'username=' => 'string', + 'password=' => 'string', + ), + 'hw_setlinkroot' => + array ( + 0 => 'int', + 'link' => 'int', + 'rootid' => 'int', + ), + 'hw_stat' => + array ( + 0 => 'string', + 'link' => 'int', + ), + 'hwapi_attribute_new' => + array ( + 0 => 'HW_API_Attribute', + 'name=' => 'string', + 'value=' => 'string', + ), + 'hwapi_content_new' => + array ( + 0 => 'HW_API_Content', + 'content' => 'string', + 'mimetype' => 'string', + ), + 'hwapi_hgcsp' => + array ( + 0 => 'HW_API', + 'hostname' => 'string', + 'port=' => 'int', + ), + 'hwapi_object_new' => + array ( + 0 => 'hw_api_object', + 'parameter' => 'array', + ), + 'hypot' => + array ( + 0 => 'float', + 'x' => 'float', + 'y' => 'float', + ), + 'ibase_add_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_affected_rows' => + array ( + 0 => 'int', + 'link_identifier=' => 'resource', + ), + 'ibase_backup' => + array ( + 0 => 'mixed', + 'service_handle' => 'resource', + 'source_db' => 'string', + 'dest_file' => 'string', + 'options=' => 'int', + 'verbose=' => 'bool', + ), + 'ibase_blob_add' => + array ( + 0 => 'void', + 'blob_handle' => 'resource', + 'data' => 'string', + ), + 'ibase_blob_cancel' => + array ( + 0 => 'bool', + 'blob_handle' => 'resource', + ), + 'ibase_blob_close' => + array ( + 0 => 'bool|string', + 'blob_handle' => 'resource', + ), + 'ibase_blob_create' => + array ( + 0 => 'resource', + 'link_identifier=' => 'resource', + ), + 'ibase_blob_echo' => + array ( + 0 => 'bool', + 'link_identifier' => 'mixed', + 'blob_id' => 'string', + ), + 'ibase_blob_echo\'1' => + array ( + 0 => 'bool', + 'blob_id' => 'string', + ), + 'ibase_blob_get' => + array ( + 0 => 'false|string', + 'blob_handle' => 'resource', + 'length' => 'int', + ), + 'ibase_blob_import' => + array ( + 0 => 'false|string', + 'link_identifier' => 'resource', + 'file_handle' => 'resource', + ), + 'ibase_blob_info' => + array ( + 0 => 'array', + 'link_identifier' => 'resource', + 'blob_id' => 'string', + ), + 'ibase_blob_info\'1' => + array ( + 0 => 'array', + 'blob_id' => 'string', + ), + 'ibase_blob_open' => + array ( + 0 => 'false|resource', + 'link_identifier' => 'mixed', + 'blob_id' => 'string', + ), + 'ibase_blob_open\'1' => + array ( + 0 => 'resource', + 'blob_id' => 'string', + ), + 'ibase_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_commit' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_commit_ret' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_connect' => + array ( + 0 => 'false|resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'charset=' => 'string', + 'buffers=' => 'int', + 'dialect=' => 'int', + 'role=' => 'string', + ), + 'ibase_db_info' => + array ( + 0 => 'string', + 'service_handle' => 'resource', + 'db' => 'string', + 'action' => 'int', + 'argument=' => 'int', + ), + 'ibase_delete_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password=' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_drop_db' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_errcode' => + array ( + 0 => 'false|int', + ), + 'ibase_errmsg' => + array ( + 0 => 'false|string', + ), + 'ibase_execute' => + array ( + 0 => 'false|resource', + 'query' => 'resource', + 'bind_arg=' => 'mixed', + '...args=' => 'mixed', + ), + 'ibase_fetch_assoc' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_fetch_object' => + array ( + 0 => 'false|object', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_fetch_row' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'fetch_flags=' => 'int', + ), + 'ibase_field_info' => + array ( + 0 => 'array', + 'query_result' => 'resource', + 'field_number' => 'int', + ), + 'ibase_free_event_handler' => + array ( + 0 => 'bool', + 'event' => 'resource', + ), + 'ibase_free_query' => + array ( + 0 => 'bool', + 'query' => 'resource', + ), + 'ibase_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'ibase_gen_id' => + array ( + 0 => 'int|string', + 'generator' => 'string', + 'increment=' => 'int', + 'link_identifier=' => 'resource', + ), + 'ibase_maintain_db' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'db' => 'string', + 'action' => 'int', + 'argument=' => 'int', + ), + 'ibase_modify_user' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + 'user_name' => 'string', + 'password' => 'string', + 'first_name=' => 'string', + 'middle_name=' => 'string', + 'last_name=' => 'string', + ), + 'ibase_name_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'name' => 'string', + ), + 'ibase_num_fields' => + array ( + 0 => 'int', + 'query_result' => 'resource', + ), + 'ibase_num_params' => + array ( + 0 => 'int', + 'query' => 'resource', + ), + 'ibase_num_rows' => + array ( + 0 => 'int', + 'result_identifier' => 'mixed', + ), + 'ibase_param_info' => + array ( + 0 => 'array', + 'query' => 'resource', + 'field_number' => 'int', + ), + 'ibase_pconnect' => + array ( + 0 => 'false|resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'charset=' => 'string', + 'buffers=' => 'int', + 'dialect=' => 'int', + 'role=' => 'string', + ), + 'ibase_prepare' => + array ( + 0 => 'false|resource', + 'link_identifier' => 'mixed', + 'query' => 'string', + 'trans_identifier' => 'mixed', + ), + 'ibase_query' => + array ( + 0 => 'false|resource', + 'link_identifier=' => 'resource', + 'string=' => 'string', + 'bind_arg=' => 'int', + '...args=' => 'mixed', + ), + 'ibase_restore' => + array ( + 0 => 'mixed', + 'service_handle' => 'resource', + 'source_file' => 'string', + 'dest_db' => 'string', + 'options=' => 'int', + 'verbose=' => 'bool', + ), + 'ibase_rollback' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_rollback_ret' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ibase_server_info' => + array ( + 0 => 'string', + 'service_handle' => 'resource', + 'action' => 'int', + ), + 'ibase_service_attach' => + array ( + 0 => 'resource', + 'host' => 'string', + 'dba_username' => 'string', + 'dba_password' => 'string', + ), + 'ibase_service_detach' => + array ( + 0 => 'bool', + 'service_handle' => 'resource', + ), + 'ibase_set_event_handler' => + array ( + 0 => 'resource', + 'link_identifier' => 'mixed', + 'callback' => 'callable', + 'event=' => 'string', + '...args=' => 'mixed', + ), + 'ibase_set_event_handler\'1' => + array ( + 0 => 'resource', + 'callback' => 'callable', + 'event' => 'string', + '...args' => 'mixed', + ), + 'ibase_timefmt' => + array ( + 0 => 'bool', + 'format' => 'string', + 'columntype=' => 'int', + ), + 'ibase_trans' => + array ( + 0 => 'false|resource', + 'trans_args=' => 'int', + 'link_identifier=' => 'mixed', + '...args=' => 'mixed', + ), + 'ibase_wait_event' => + array ( + 0 => 'string', + 'link_identifier' => 'mixed', + 'event=' => 'string', + '...args=' => 'mixed', + ), + 'ibase_wait_event\'1' => + array ( + 0 => 'string', + 'event' => 'string', + '...args' => 'mixed', + ), + 'iconv' => + array ( + 0 => 'false|string', + 'from_encoding' => 'string', + 'to_encoding' => 'string', + 'string' => 'string', + ), + 'iconv_get_encoding' => + array ( + 0 => 'array|false|string', + 'type=' => 'string', + ), + 'iconv_mime_decode' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'mode=' => 'int', + 'encoding=' => 'string', + ), + 'iconv_mime_decode_headers' => + array ( + 0 => 'array|false', + 'headers' => 'string', + 'mode=' => 'int', + 'encoding=' => 'string', + ), + 'iconv_mime_encode' => + array ( + 0 => 'false|string', + 'field_name' => 'string', + 'field_value' => 'string', + 'options=' => 'array', + ), + 'iconv_set_encoding' => + array ( + 0 => 'bool', + 'type' => 'string', + 'encoding' => 'string', + ), + 'iconv_strlen' => + array ( + 0 => 'false|int<0, max>', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'iconv_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'iconv_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'string', + ), + 'iconv_substr' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'encoding=' => 'string', + ), + 'id3_get_frame_long_name' => + array ( + 0 => 'string', + 'frameid' => 'string', + ), + 'id3_get_frame_short_name' => + array ( + 0 => 'string', + 'frameid' => 'string', + ), + 'id3_get_genre_id' => + array ( + 0 => 'int', + 'genre' => 'string', + ), + 'id3_get_genre_list' => + array ( + 0 => 'array', + ), + 'id3_get_genre_name' => + array ( + 0 => 'string', + 'genre_id' => 'int', + ), + 'id3_get_tag' => + array ( + 0 => 'array', + 'filename' => 'string', + 'version=' => 'int', + ), + 'id3_get_version' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'id3_remove_tag' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'version=' => 'int', + ), + 'id3_set_tag' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'tag' => 'array', + 'version=' => 'int', + ), + 'idate' => + array ( + 0 => 'int', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'idn_strerror' => + array ( + 0 => 'string', + 'errorcode' => 'int', + ), + 'idn_to_ascii' => + array ( + 0 => 'false|string', + 'domain' => 'string', + 'flags=' => 'int', + 'variant=' => 'int', + '&w_idna_info=' => 'array', + ), + 'idn_to_utf8' => + array ( + 0 => 'false|string', + 'domain' => 'string', + 'flags=' => 'int', + 'variant=' => 'int', + '&w_idna_info=' => 'array', + ), + 'ifx_affected_rows' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_blobinfile_mode' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_byteasvarchar' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'resource', + ), + 'ifx_connect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'userid=' => 'string', + 'password=' => 'string', + ), + 'ifx_copy_blob' => + array ( + 0 => 'int', + 'bid' => 'int', + ), + 'ifx_create_blob' => + array ( + 0 => 'int', + 'type' => 'int', + 'mode' => 'int', + 'param' => 'string', + ), + 'ifx_create_char' => + array ( + 0 => 'int', + 'param' => 'string', + ), + 'ifx_do' => + array ( + 0 => 'bool', + 'result_id' => 'resource', + ), + 'ifx_error' => + array ( + 0 => 'string', + 'link_identifier=' => 'resource', + ), + 'ifx_errormsg' => + array ( + 0 => 'string', + 'errorcode=' => 'int', + ), + 'ifx_fetch_row' => + array ( + 0 => 'array', + 'result_id' => 'resource', + 'position=' => 'mixed', + ), + 'ifx_fieldproperties' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_fieldtypes' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_free_blob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifx_free_char' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifx_free_result' => + array ( + 0 => 'bool', + 'result_id' => 'resource', + ), + 'ifx_get_blob' => + array ( + 0 => 'string', + 'bid' => 'int', + ), + 'ifx_get_char' => + array ( + 0 => 'string', + 'bid' => 'int', + ), + 'ifx_getsqlca' => + array ( + 0 => 'array', + 'result_id' => 'resource', + ), + 'ifx_htmltbl_result' => + array ( + 0 => 'int', + 'result_id' => 'resource', + 'html_table_options=' => 'string', + ), + 'ifx_nullformat' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_num_fields' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_num_rows' => + array ( + 0 => 'int', + 'result_id' => 'resource', + ), + 'ifx_pconnect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'userid=' => 'string', + 'password=' => 'string', + ), + 'ifx_prepare' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier' => 'resource', + 'cursor_def=' => 'int', + 'blobidarray=' => 'mixed', + ), + 'ifx_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier' => 'resource', + 'cursor_type=' => 'int', + 'blobidarray=' => 'mixed', + ), + 'ifx_textasvarchar' => + array ( + 0 => 'bool', + 'mode' => 'int', + ), + 'ifx_update_blob' => + array ( + 0 => 'bool', + 'bid' => 'int', + 'content' => 'string', + ), + 'ifx_update_char' => + array ( + 0 => 'bool', + 'bid' => 'int', + 'content' => 'string', + ), + 'ifxus_close_slob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifxus_create_slob' => + array ( + 0 => 'int', + 'mode' => 'int', + ), + 'ifxus_free_slob' => + array ( + 0 => 'bool', + 'bid' => 'int', + ), + 'ifxus_open_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'mode' => 'int', + ), + 'ifxus_read_slob' => + array ( + 0 => 'string', + 'bid' => 'int', + 'nbytes' => 'int', + ), + 'ifxus_seek_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'mode' => 'int', + 'offset' => 'int', + ), + 'ifxus_tell_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + ), + 'ifxus_write_slob' => + array ( + 0 => 'int', + 'bid' => 'int', + 'content' => 'string', + ), + 'igbinary_serialize' => + array ( + 0 => 'false|string', + 'value' => 'mixed', + ), + 'igbinary_unserialize' => + array ( + 0 => 'mixed', + 'str' => 'string', + ), + 'ignore_user_abort' => + array ( + 0 => 'int', + 'enable=' => 'bool', + ), + 'iis_add_server' => + array ( + 0 => 'int', + 'path' => 'string', + 'comment' => 'string', + 'server_ip' => 'string', + 'port' => 'int', + 'host_name' => 'string', + 'rights' => 'int', + 'start_server' => 'int', + ), + 'iis_get_dir_security' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + ), + 'iis_get_script_map' => + array ( + 0 => 'string', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'script_extension' => 'string', + ), + 'iis_get_server_by_comment' => + array ( + 0 => 'int', + 'comment' => 'string', + ), + 'iis_get_server_by_path' => + array ( + 0 => 'int', + 'path' => 'string', + ), + 'iis_get_server_rights' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + ), + 'iis_get_service_state' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'iis_remove_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_set_app_settings' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'application_scope' => 'string', + ), + 'iis_set_dir_security' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'directory_flags' => 'int', + ), + 'iis_set_script_map' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'script_extension' => 'string', + 'engine_path' => 'string', + 'allow_scripting' => 'int', + ), + 'iis_set_server_rights' => + array ( + 0 => 'int', + 'server_instance' => 'int', + 'virtual_path' => 'string', + 'directory_flags' => 'int', + ), + 'iis_start_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_start_service' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'iis_stop_server' => + array ( + 0 => 'int', + 'server_instance' => 'int', + ), + 'iis_stop_service' => + array ( + 0 => 'int', + 'service_id' => 'string', + ), + 'image2wbmp' => + array ( + 0 => 'bool', + 'im' => 'resource', + 'filename=' => 'null|string', + 'threshold=' => 'int', + ), + 'imageObj::pasteImage' => + array ( + 0 => 'void', + 'srcImg' => 'imageObj', + 'transparentColorHex' => 'int', + 'dstX' => 'int', + 'dstY' => 'int', + 'angle' => 'int', + ), + 'imageObj::saveImage' => + array ( + 0 => 'int', + 'filename' => 'string', + 'oMap' => 'mapObj', + ), + 'imageObj::saveWebImage' => + array ( + 0 => 'string', + ), + 'image_type_to_extension' => + array ( + 0 => 'string', + 'image_type' => 'int', + 'include_dot=' => 'bool', + ), + 'image_type_to_mime_type' => + array ( + 0 => 'string', + 'image_type' => 'int', + ), + 'imageaffine' => + array ( + 0 => 'false|resource', + 'src' => 'resource', + 'affine' => 'array', + 'clip=' => 'array', + ), + 'imageaffinematrixconcat' => + array ( + 0 => 'array{0: float, 1: float, 2: float, 3: float, 4: float, 5: float}|false', + 'matrix1' => 'array', + 'matrix2' => 'array', + ), + 'imageaffinematrixget' => + array ( + 0 => 'array{0: float, 1: float, 2: float, 3: float, 4: float, 5: float}|false', + 'type' => 'int', + 'options' => 'array|float', + ), + 'imagealphablending' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'imageantialias' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'imagearc' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + ), + 'imagechar' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'imagecharup' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'char' => 'string', + 'color' => 'int', + ), + 'imagecolorallocate' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorallocatealpha' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorat' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + ), + 'imagecolorclosest' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorclosestalpha' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorclosesthwb' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolordeallocate' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'color' => 'int', + ), + 'imagecolorexact' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorexactalpha' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolormatch' => + array ( + 0 => 'bool', + 'image1' => 'resource', + 'image2' => 'resource', + ), + 'imagecolorresolve' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'imagecolorresolvealpha' => + array ( + 0 => 'int', + 'image' => 'resource', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha' => 'int', + ), + 'imagecolorset' => + array ( + 0 => 'false|null', + 'image' => 'resource', + 'color' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'alpha=' => 'int', + ), + 'imagecolorsforindex' => + array ( + 0 => 'array', + 'image' => 'resource', + 'color' => 'int', + ), + 'imagecolorstotal' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'imagecolortransparent' => + array ( + 0 => 'int', + 'image' => 'resource', + 'color=' => 'int', + ), + 'imageconvolution' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'matrix' => 'array', + 'divisor' => 'float', + 'offset' => 'float', + ), + 'imagecopy' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecopymerge' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'imagecopymergegray' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + 'pct' => 'int', + ), + 'imagecopyresampled' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecopyresized' => + array ( + 0 => 'bool', + 'dst_image' => 'resource', + 'src_image' => 'resource', + 'dst_x' => 'int', + 'dst_y' => 'int', + 'src_x' => 'int', + 'src_y' => 'int', + 'dst_width' => 'int', + 'dst_height' => 'int', + 'src_width' => 'int', + 'src_height' => 'int', + ), + 'imagecreate' => + array ( + 0 => 'false|resource', + 'x_size' => 'int', + 'y_size' => 'int', + ), + 'imagecreatefromgd' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromgd2' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromgd2part' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'srcx' => 'int', + 'srcy' => 'int', + 'width' => 'int', + 'height' => 'int', + ), + 'imagecreatefromgif' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromjpeg' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefrompng' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromstring' => + array ( + 0 => 'false|resource', + 'image' => 'string', + ), + 'imagecreatefromwbmp' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromwebp' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromxbm' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatefromxpm' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'imagecreatetruecolor' => + array ( + 0 => 'false|resource', + 'x_size' => 'int', + 'y_size' => 'int', + ), + 'imagecrop' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'rect' => 'array', + ), + 'imagecropauto' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'mode=' => 'int', + 'threshold=' => 'float', + 'color=' => 'int', + ), + 'imagedashedline' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imagedestroy' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'imageellipse' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'imagefill' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'imagefilledarc' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'start_angle' => 'int', + 'end_angle' => 'int', + 'color' => 'int', + 'style' => 'int', + ), + 'imagefilledellipse' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'center_x' => 'int', + 'center_y' => 'int', + 'width' => 'int', + 'height' => 'int', + 'color' => 'int', + ), + 'imagefilledpolygon' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'imagefilledrectangle' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imagefilltoborder' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'border_color' => 'int', + 'color' => 'int', + ), + 'imagefilter' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'filter' => 'int', + '...args=' => 'array|bool|float|int', + ), + 'imageflip' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'mode' => 'int', + ), + 'imagefontheight' => + array ( + 0 => 'int', + 'font' => 'int', + ), + 'imagefontwidth' => + array ( + 0 => 'int', + 'font' => 'int', + ), + 'imageftbbox' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + 'options=' => 'array', + ), + 'imagefttext' => + array ( + 0 => 'array|false', + 'image' => 'resource', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + 'options=' => 'array', + ), + 'imagegammacorrect' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'input_gamma' => 'float', + 'output_gamma' => 'float', + ), + 'imagegd' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + ), + 'imagegd2' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'chunk_size=' => 'int', + 'mode=' => 'int', + ), + 'imagegetclip' => + array ( + 0 => 'array|false', + 'im' => 'resource', + ), + 'imagegif' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + ), + 'imagegrabscreen' => + array ( + 0 => 'false|resource', + ), + 'imagegrabwindow' => + array ( + 0 => 'false|resource', + 'window_handle' => 'int', + 'client_area=' => 'int', + ), + 'imageinterlace' => + array ( + 0 => 'false|int', + 'image' => 'resource', + 'enable=' => 'int', + ), + 'imageistruecolor' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'imagejpeg' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'imagelayereffect' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'effect' => 'int', + ), + 'imageline' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imageloadfont' => + array ( + 0 => 'false|int', + 'filename' => 'string', + ), + 'imagepalettecopy' => + array ( + 0 => 'void', + 'dst' => 'resource', + 'src' => 'resource', + ), + 'imagepalettetotruecolor' => + array ( + 0 => 'bool', + 'image' => 'resource', + ), + 'imagepng' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + 'filters=' => 'int', + ), + 'imagepolygon' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'points' => 'array', + 'num_points_or_color' => 'int', + 'color' => 'int', + ), + 'imagerectangle' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x1' => 'int', + 'y1' => 'int', + 'x2' => 'int', + 'y2' => 'int', + 'color' => 'int', + ), + 'imagerotate' => + array ( + 0 => 'false|resource', + 'src_im' => 'resource', + 'angle' => 'float', + 'bgdcolor' => 'int', + 'ignoretransparent=' => 'int', + ), + 'imagesavealpha' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'enable' => 'bool', + ), + 'imagescale' => + array ( + 0 => 'false|resource', + 'im' => 'resource', + 'new_width' => 'int', + 'new_height=' => 'int', + 'method=' => 'int', + ), + 'imagesetbrush' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'brush' => 'resource', + ), + 'imagesetinterpolation' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'method=' => 'int', + ), + 'imagesetpixel' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + ), + 'imagesetstyle' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'style' => 'non-empty-array', + ), + 'imagesetthickness' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'thickness' => 'int', + ), + 'imagesettile' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'tile' => 'resource', + ), + 'imagestring' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'imagestringup' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'font' => 'int', + 'x' => 'int', + 'y' => 'int', + 'string' => 'string', + 'color' => 'int', + ), + 'imagesx' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'imagesy' => + array ( + 0 => 'int', + 'image' => 'resource', + ), + 'imagetruecolortopalette' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'dither' => 'bool', + 'num_colors' => 'int', + ), + 'imagettfbbox' => + array ( + 0 => 'array|false', + 'size' => 'float', + 'angle' => 'float', + 'font_filename' => 'string', + 'string' => 'string', + ), + 'imagettftext' => + array ( + 0 => 'array|false', + 'image' => 'resource', + 'size' => 'float', + 'angle' => 'float', + 'x' => 'int', + 'y' => 'int', + 'color' => 'int', + 'font_filename' => 'string', + 'text' => 'string', + ), + 'imagetypes' => + array ( + 0 => 'int', + ), + 'imagewbmp' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'foreground_color=' => 'int', + ), + 'imagewebp' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'file=' => 'null|resource|string', + 'quality=' => 'int', + ), + 'imagexbm' => + array ( + 0 => 'bool', + 'image' => 'resource', + 'filename' => 'null|string', + 'foreground_color=' => 'int', + ), + 'imap_8bit' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_alerts' => + array ( + 0 => 'array|false', + ), + 'imap_append' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'folder' => 'string', + 'message' => 'string', + 'options=' => 'string', + 'internal_date=' => 'string', + ), + 'imap_base64' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_binary' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_body' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_bodystruct' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + ), + 'imap_check' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + ), + 'imap_clearflag_full' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'imap_close' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'flags=' => 'int', + ), + 'imap_create' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_createmailbox' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_delete' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'imap_deletemailbox' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_errors' => + array ( + 0 => 'array|false', + ), + 'imap_expunge' => + array ( + 0 => 'bool', + 'imap' => 'resource', + ), + 'imap_fetch_overview' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'sequence' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchbody' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchheader' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_fetchmime' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'section' => 'string', + 'flags=' => 'int', + ), + 'imap_fetchstructure' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_fetchtext' => + array ( + 0 => 'false|string', + 'imap' => 'resource', + 'message_num' => 'int', + 'flags=' => 'int', + ), + 'imap_gc' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'flags' => 'int', + ), + 'imap_get_quota' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'quota_root' => 'string', + ), + 'imap_get_quotaroot' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_getacl' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_getmailboxes' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_getsubscribed' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_header' => + array ( + 0 => 'false|stdClass', + 'stream_id' => 'resource', + 'msg_no' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + 'default_host=' => 'string', + ), + 'imap_headerinfo' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'message_num' => 'int', + 'from_length=' => 'int', + 'subject_length=' => 'int', + 'default_host=' => 'null|string', + ), + 'imap_headers' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + ), + 'imap_last_error' => + array ( + 0 => 'false|string', + ), + 'imap_list' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_listmailbox' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_listscan' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_listsubscribed' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_lsub' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + ), + 'imap_mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'string', + 'cc=' => 'string', + 'bcc=' => 'string', + 'return_path=' => 'string', + ), + 'imap_mail_compose' => + array ( + 0 => 'false|string', + 'envelope' => 'array', + 'bodies' => 'array', + ), + 'imap_mail_copy' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'imap_mail_move' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'mailbox' => 'string', + 'flags=' => 'int', + ), + 'imap_mailboxmsginfo' => + array ( + 0 => 'stdClass', + 'imap' => 'resource', + ), + 'imap_mime_header_decode' => + array ( + 0 => 'array|false', + 'string' => 'string', + ), + 'imap_msgno' => + array ( + 0 => 'int', + 'imap' => 'resource', + 'message_uid' => 'int', + ), + 'imap_mutf7_to_utf8' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_num_msg' => + array ( + 0 => 'false|int', + 'imap' => 'resource', + ), + 'imap_num_recent' => + array ( + 0 => 'int', + 'imap' => 'resource', + ), + 'imap_open' => + array ( + 0 => 'false|resource', + 'mailbox' => 'string', + 'user' => 'string', + 'password' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + 'options=' => 'array', + ), + 'imap_ping' => + array ( + 0 => 'bool', + 'imap' => 'resource', + ), + 'imap_qprint' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_rename' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'imap_renamemailbox' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'imap_reopen' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + 'flags=' => 'int', + 'retries=' => 'int', + ), + 'imap_rfc822_parse_adrlist' => + array ( + 0 => 'array', + 'string' => 'string', + 'default_hostname' => 'string', + ), + 'imap_rfc822_parse_headers' => + array ( + 0 => 'stdClass', + 'headers' => 'string', + 'default_hostname=' => 'string', + ), + 'imap_rfc822_write_address' => + array ( + 0 => 'false|string', + 'mailbox' => 'string', + 'hostname' => 'string', + 'personal' => 'string', + ), + 'imap_savebody' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'file' => 'resource|string', + 'message_num' => 'int', + 'section=' => 'string', + 'flags=' => 'int', + ), + 'imap_scan' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_scanmailbox' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'reference' => 'string', + 'pattern' => 'string', + 'content' => 'string', + ), + 'imap_search' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'string', + 'flags=' => 'int', + 'charset=' => 'string', + ), + 'imap_set_quota' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'quota_root' => 'string', + 'mailbox_size' => 'int', + ), + 'imap_setacl' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + 'user_id' => 'string', + 'rights' => 'string', + ), + 'imap_setflag_full' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'sequence' => 'string', + 'flag' => 'string', + 'options=' => 'int', + ), + 'imap_sort' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'criteria' => 'int', + 'reverse' => 'int', + 'flags=' => 'int', + 'search_criteria=' => 'string', + 'charset=' => 'string', + ), + 'imap_status' => + array ( + 0 => 'false|stdClass', + 'imap' => 'resource', + 'mailbox' => 'string', + 'flags' => 'int', + ), + 'imap_subscribe' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_thread' => + array ( + 0 => 'array|false', + 'imap' => 'resource', + 'flags=' => 'int', + ), + 'imap_timeout' => + array ( + 0 => 'bool|int', + 'timeout_type' => 'int', + 'timeout=' => 'int', + ), + 'imap_uid' => + array ( + 0 => 'false|int', + 'imap' => 'resource', + 'message_num' => 'int', + ), + 'imap_undelete' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'message_nums' => 'string', + 'flags=' => 'int', + ), + 'imap_unsubscribe' => + array ( + 0 => 'bool', + 'imap' => 'resource', + 'mailbox' => 'string', + ), + 'imap_utf7_decode' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'imap_utf7_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'imap_utf8' => + array ( + 0 => 'string', + 'mime_encoded_text' => 'string', + ), + 'imap_utf8_to_mutf7' => + array ( + 0 => 'false|string', + 'string' => 'string', + ), + 'implode' => + array ( + 0 => 'string', + 'separator' => 'string', + 'array' => 'array', + ), + 'implode\'1' => + array ( + 0 => 'string', + 'separator' => 'array', + ), + 'import_request_variables' => + array ( + 0 => 'bool', + 'types' => 'string', + 'prefix=' => 'string', + ), + 'in_array' => + array ( + 0 => 'bool', + 'needle' => 'mixed', + 'haystack' => 'array', + 'strict=' => 'bool', + ), + 'inclued_get_data' => + array ( + 0 => 'array', + ), + 'inet_ntop' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'inet_pton' => + array ( + 0 => 'false|string', + 'ip' => 'string', + ), + 'inflate_add' => + array ( + 0 => 'false|string', + 'context' => 'resource', + 'data' => 'string', + 'flush_mode=' => 'int', + ), + 'inflate_get_read_len' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'inflate_get_status' => + array ( + 0 => 'int', + 'context' => 'resource', + ), + 'inflate_init' => + array ( + 0 => 'false|resource', + 'encoding' => 'int', + 'options=' => 'array', + ), + 'ingres_autocommit' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_autocommit_state' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_charset' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'ingres_close' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_commit' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_connect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'ingres_cursor' => + array ( + 0 => 'string', + 'result' => 'resource', + ), + 'ingres_errno' => + array ( + 0 => 'int', + 'link=' => 'resource', + ), + 'ingres_error' => + array ( + 0 => 'string', + 'link=' => 'resource', + ), + 'ingres_errsqlstate' => + array ( + 0 => 'string', + 'link=' => 'resource', + ), + 'ingres_escape_string' => + array ( + 0 => 'string', + 'link' => 'resource', + 'source_string' => 'string', + ), + 'ingres_execute' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ingres_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'ingres_fetch_assoc' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'ingres_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'ingres_fetch_proc_return' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'ingres_field_length' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_nullable' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_precision' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_scale' => + array ( + 0 => 'int', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'index' => 'int', + ), + 'ingres_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'ingres_next_error' => + array ( + 0 => 'bool', + 'link=' => 'resource', + ), + 'ingres_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'ingres_pconnect' => + array ( + 0 => 'resource', + 'database=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'ingres_prepare' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + ), + 'ingres_query' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ingres_result_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'position' => 'int', + ), + 'ingres_rollback' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'ingres_set_environment' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'options' => 'array', + ), + 'ingres_unbuffered_query' => + array ( + 0 => 'mixed', + 'link' => 'resource', + 'query' => 'string', + 'params=' => 'array', + 'types=' => 'string', + ), + 'ini_alter' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'string', + ), + 'ini_get' => + array ( + 0 => 'false|string', + 'option' => 'string', + ), + 'ini_get_all' => + array ( + 0 => 'array|false', + 'extension=' => 'null|string', + 'details=' => 'bool', + ), + 'ini_restore' => + array ( + 0 => 'void', + 'option' => 'string', + ), + 'ini_set' => + array ( + 0 => 'false|string', + 'option' => 'string', + 'value' => 'string', + ), + 'inotify_add_watch' => + array ( + 0 => 'false|int', + 'inotify_instance' => 'resource', + 'pathname' => 'string', + 'mask' => 'int', + ), + 'inotify_init' => + array ( + 0 => 'false|resource', + ), + 'inotify_queue_len' => + array ( + 0 => 'int', + 'inotify_instance' => 'resource', + ), + 'inotify_read' => + array ( + 0 => 'array|false', + 'inotify_instance' => 'resource', + ), + 'inotify_rm_watch' => + array ( + 0 => 'bool', + 'inotify_instance' => 'resource', + 'watch_descriptor' => 'int', + ), + 'intdiv' => + array ( + 0 => 'int', + 'num1' => 'int', + 'num2' => 'int', + ), + 'interface_exists' => + array ( + 0 => 'bool', + 'interface' => 'string', + 'autoload=' => 'bool', + ), + 'intl_error_name' => + array ( + 0 => 'string', + 'errorCode' => 'int', + ), + 'intl_get_error_code' => + array ( + 0 => 'int', + ), + 'intl_get_error_message' => + array ( + 0 => 'string', + ), + 'intl_is_failure' => + array ( + 0 => 'bool', + 'errorCode' => 'int', + ), + 'intlcal_add' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + 'value' => 'int', + ), + 'intlcal_after' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_before' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_clear' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field=' => 'int|null', + ), + 'intlcal_create_instance' => + array ( + 0 => 'IntlCalendar|null', + 'timezone=' => 'mixed', + 'locale=' => 'null|string', + ), + 'intlcal_equals' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_field_difference' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'timestamp' => 'float', + 'field' => 'int', + ), + 'intlcal_from_date_time' => + array ( + 0 => 'IntlCalendar|null', + 'datetime' => 'DateTime|string', + 'locale=' => 'null|string', + ), + 'intlcal_get' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_actual_maximum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_actual_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_available_locales' => + array ( + 0 => 'array', + ), + 'intlcal_get_day_of_week_type' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_get_first_day_of_week' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_greatest_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_keyword_values_for_locale' => + array ( + 0 => 'IntlIterator|false', + 'keyword' => 'string', + 'locale' => 'string', + 'onlyCommon' => 'bool', + ), + 'intlcal_get_least_maximum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_locale' => + array ( + 0 => 'string', + 'calendar' => 'IntlCalendar', + 'type' => 'int', + ), + 'intlcal_get_maximum' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_minimal_days_in_first_week' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_minimum' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_get_now' => + array ( + 0 => 'float', + ), + 'intlcal_get_repeated_wall_time_option' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_skipped_wall_time_option' => + array ( + 0 => 'int', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_time' => + array ( + 0 => 'float', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_time_zone' => + array ( + 0 => 'IntlTimeZone', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_type' => + array ( + 0 => 'string', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_get_weekend_transition' => + array ( + 0 => 'false|int', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_in_daylight_time' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_is_equivalent_to' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'other' => 'IntlCalendar', + ), + 'intlcal_is_lenient' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + ), + 'intlcal_is_set' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + ), + 'intlcal_is_weekend' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timestamp=' => 'float|null', + ), + 'intlcal_roll' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'field' => 'int', + 'value' => 'mixed', + ), + 'intlcal_set' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'year' => 'int', + 'month' => 'int', + ), + 'intlcal_set\'1' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'year' => 'int', + 'month' => 'int', + 'dayOfMonth=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'intlcal_set_first_day_of_week' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'dayOfWeek' => 'int', + ), + 'intlcal_set_lenient' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'lenient' => 'bool', + ), + 'intlcal_set_repeated_wall_time_option' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'option' => 'int', + ), + 'intlcal_set_skipped_wall_time_option' => + array ( + 0 => 'true', + 'calendar' => 'IntlCalendar', + 'option' => 'int', + ), + 'intlcal_set_time' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timestamp' => 'float', + ), + 'intlcal_set_time_zone' => + array ( + 0 => 'bool', + 'calendar' => 'IntlCalendar', + 'timezone' => 'mixed', + ), + 'intlcal_to_date_time' => + array ( + 0 => 'DateTime|false', + 'calendar' => 'IntlCalendar', + ), + 'intlgregcal_create_instance' => + array ( + 0 => 'IntlGregorianCalendar|null', + 'timezoneOrYear=' => 'DateTimeZone|IntlTimeZone|null|string', + 'localeOrMonth=' => 'int|null|string', + 'day=' => 'int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + ), + 'intlgregcal_get_gregorian_change' => + array ( + 0 => 'float', + 'calendar' => 'IntlGregorianCalendar', + ), + 'intlgregcal_is_leap_year' => + array ( + 0 => 'bool', + 'calendar' => 'IntlGregorianCalendar', + 'year' => 'int', + ), + 'intlgregcal_set_gregorian_change' => + array ( + 0 => 'bool', + 'calendar' => 'IntlGregorianCalendar', + 'timestamp' => 'float', + ), + 'intltz_count_equivalent_ids' => + array ( + 0 => 'int', + 'timezoneId' => 'string', + ), + 'intltz_create_enumeration' => + array ( + 0 => 'IntlIterator|false', + 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', + ), + 'intltz_create_time_zone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezoneId' => 'string', + ), + 'intltz_from_date_time_zone' => + array ( + 0 => 'IntlTimeZone|null', + 'timezone' => 'DateTimeZone', + ), + 'intltz_getGMT' => + array ( + 0 => 'IntlTimeZone', + ), + 'intltz_get_canonical_id' => + array ( + 0 => 'false|string', + 'timezoneId' => 'string', + '&isSystemId=' => 'bool', + ), + 'intltz_get_display_name' => + array ( + 0 => 'false|string', + 'timezone' => 'IntlTimeZone', + 'dst=' => 'bool', + 'style=' => 'int', + 'locale=' => 'null|string', + ), + 'intltz_get_dst_savings' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_equivalent_id' => + array ( + 0 => 'string', + 'timezoneId' => 'string', + 'offset' => 'int', + ), + 'intltz_get_error_code' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_error_message' => + array ( + 0 => 'string', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_id' => + array ( + 0 => 'string', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_offset' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + 'timestamp' => 'float', + 'local' => 'bool', + '&rawOffset' => 'int', + '&dstOffset' => 'int', + ), + 'intltz_get_raw_offset' => + array ( + 0 => 'int', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_get_tz_data_version' => + array ( + 0 => 'string', + 'object' => 'IntlTimeZone', + ), + 'intltz_has_same_rules' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + 'other' => 'IntlTimeZone', + ), + 'intltz_to_date_time_zone' => + array ( + 0 => 'DateTimeZone', + 'timezone' => 'IntlTimeZone', + ), + 'intltz_use_daylight_time' => + array ( + 0 => 'bool', + 'timezone' => 'IntlTimeZone', + ), + 'intlz_create_default' => + array ( + 0 => 'IntlTimeZone', + ), + 'intval' => + array ( + 0 => 'int', + 'value' => 'mixed', + 'base=' => 'int', + ), + 'ip2long' => + array ( + 0 => 'false|int', + 'ip' => 'string', + ), + 'iptcembed' => + array ( + 0 => 'bool|string', + 'iptc_data' => 'string', + 'filename' => 'string', + 'spool=' => 'int', + ), + 'iptcparse' => + array ( + 0 => 'array|false', + 'iptc_block' => 'string', + ), + 'is_a' => + array ( + 0 => 'bool', + 'object_or_class' => 'mixed', + 'class' => 'string', + 'allow_string=' => 'bool', + ), + 'is_array' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_bool' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_callable' => + array ( + 0 => 'bool', + 'value' => 'callable|mixed', + 'syntax_only=' => 'bool', + '&w_callable_name=' => 'string', + ), + 'is_dir' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_double' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_executable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_finite' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_float' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_infinite' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_int' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_integer' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_link' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_long' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_nan' => + array ( + 0 => 'bool', + 'num' => 'float', + ), + 'is_null' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_numeric' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_object' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_readable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_real' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_resource' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_scalar' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_soap_fault' => + array ( + 0 => 'bool', + 'object' => 'mixed', + ), + 'is_string' => + array ( + 0 => 'bool', + 'value' => 'mixed', + ), + 'is_subclass_of' => + array ( + 0 => 'bool', + 'object_or_class' => 'object|string', + 'class' => 'class-string', + 'allow_string=' => 'bool', + ), + 'is_tainted' => + array ( + 0 => 'bool', + 'string' => 'string', + ), + 'is_uploaded_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_writable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'is_writeable' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'isset' => + array ( + 0 => 'bool', + 'value' => 'mixed', + '...rest=' => 'mixed', + ), + 'iterator_apply' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable', + 'callback' => 'callable(mixed):bool', + 'args=' => 'array|null', + ), + 'iterator_count' => + array ( + 0 => 'int<0, max>', + 'iterator' => 'Traversable', + ), + 'iterator_to_array' => + array ( + 0 => 'array', + 'iterator' => 'Traversable', + 'preserve_keys=' => 'bool', + ), + 'java_last_exception_clear' => + array ( + 0 => 'void', + ), + 'java_last_exception_get' => + array ( + 0 => 'object', + ), + 'java_reload' => + array ( + 0 => 'array', + 'new_jarpath' => 'string', + ), + 'java_require' => + array ( + 0 => 'array', + 'new_classpath' => 'string', + ), + 'java_set_encoding' => + array ( + 0 => 'array', + 'encoding' => 'string', + ), + 'java_set_ignore_case' => + array ( + 0 => 'void', + 'ignore' => 'bool', + ), + 'java_throw_exceptions' => + array ( + 0 => 'void', + 'throw' => 'bool', + ), + 'jddayofweek' => + array ( + 0 => 'int|string', + 'julian_day' => 'int', + 'mode=' => 'int', + ), + 'jdmonthname' => + array ( + 0 => 'string', + 'julian_day' => 'int', + 'mode' => 'int', + ), + 'jdtofrench' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtogregorian' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtojewish' => + array ( + 0 => 'string', + 'julian_day' => 'int', + 'hebrew=' => 'bool', + 'flags=' => 'int', + ), + 'jdtojulian' => + array ( + 0 => 'string', + 'julian_day' => 'int', + ), + 'jdtounix' => + array ( + 0 => 'false|int', + 'julian_day' => 'int', + ), + 'jewishtojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'jobqueue_license_info' => + array ( + 0 => 'array', + ), + 'join' => + array ( + 0 => 'string', + 'separator' => 'string', + 'array' => 'array', + ), + 'join\'1' => + array ( + 0 => 'string', + 'separator' => 'array', + ), + 'jpeg2wbmp' => + array ( + 0 => 'bool', + 'jpegname' => 'string', + 'wbmpname' => 'string', + 'dest_height' => 'int', + 'dest_width' => 'int', + 'threshold' => 'int', + ), + 'json_decode' => + array ( + 0 => 'mixed', + 'json' => 'string', + 'associative=' => 'bool', + 'depth=' => 'int', + 'flags=' => 'int', + ), + 'json_encode' => + array ( + 0 => 'false|non-empty-string', + 'value' => 'mixed', + 'flags=' => 'int', + 'depth=' => 'int', + ), + 'json_last_error' => + array ( + 0 => 'int', + ), + 'json_last_error_msg' => + array ( + 0 => 'string', + ), + 'judy_type' => + array ( + 0 => 'int', + 'array' => 'judy', + ), + 'judy_version' => + array ( + 0 => 'string', + ), + 'juliantojd' => + array ( + 0 => 'int', + 'month' => 'int', + 'day' => 'int', + 'year' => 'int', + ), + 'kadm5_chpass_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'password' => 'string', + ), + 'kadm5_create_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'password=' => 'string', + 'options=' => 'array', + ), + 'kadm5_delete_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + ), + 'kadm5_destroy' => + array ( + 0 => 'bool', + 'handle' => 'resource', + ), + 'kadm5_flush' => + array ( + 0 => 'bool', + 'handle' => 'resource', + ), + 'kadm5_get_policies' => + array ( + 0 => 'array', + 'handle' => 'resource', + ), + 'kadm5_get_principal' => + array ( + 0 => 'array', + 'handle' => 'resource', + 'principal' => 'string', + ), + 'kadm5_get_principals' => + array ( + 0 => 'array', + 'handle' => 'resource', + ), + 'kadm5_init_with_password' => + array ( + 0 => 'resource', + 'admin_server' => 'string', + 'realm' => 'string', + 'principal' => 'string', + 'password' => 'string', + ), + 'kadm5_modify_principal' => + array ( + 0 => 'bool', + 'handle' => 'resource', + 'principal' => 'string', + 'options' => 'array', + ), + 'key' => + array ( + 0 => 'int|null|string', + 'array' => 'array|object', + ), + 'key_exists' => + array ( + 0 => 'bool', + 'key' => 'int|string', + 'array' => 'array', + ), + 'krsort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'ksort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'labelObj::__construct' => + array ( + 0 => 'void', + ), + 'labelObj::convertToString' => + array ( + 0 => 'string', + ), + 'labelObj::deleteStyle' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::free' => + array ( + 0 => 'void', + ), + 'labelObj::getBinding' => + array ( + 0 => 'string', + 'labelbinding' => 'mixed', + ), + 'labelObj::getExpressionString' => + array ( + 0 => 'string', + ), + 'labelObj::getStyle' => + array ( + 0 => 'styleObj', + 'index' => 'int', + ), + 'labelObj::getTextString' => + array ( + 0 => 'string', + ), + 'labelObj::moveStyleDown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::moveStyleUp' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'labelObj::removeBinding' => + array ( + 0 => 'int', + 'labelbinding' => 'mixed', + ), + 'labelObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'labelObj::setBinding' => + array ( + 0 => 'int', + 'labelbinding' => 'mixed', + 'value' => 'string', + ), + 'labelObj::setExpression' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'labelObj::setText' => + array ( + 0 => 'int', + 'text' => 'string', + ), + 'labelObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'labelcacheObj::freeCache' => + array ( + 0 => 'bool', + ), + 'layerObj::addFeature' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'layerObj::applySLD' => + array ( + 0 => 'int', + 'sldxml' => 'string', + 'namedlayer' => 'string', + ), + 'layerObj::applySLDURL' => + array ( + 0 => 'int', + 'sldurl' => 'string', + 'namedlayer' => 'string', + ), + 'layerObj::clearProcessing' => + array ( + 0 => 'void', + ), + 'layerObj::close' => + array ( + 0 => 'void', + ), + 'layerObj::convertToString' => + array ( + 0 => 'string', + ), + 'layerObj::draw' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'layerObj::drawQuery' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'layerObj::free' => + array ( + 0 => 'void', + ), + 'layerObj::generateSLD' => + array ( + 0 => 'string', + ), + 'layerObj::getClass' => + array ( + 0 => 'classObj', + 'classIndex' => 'int', + ), + 'layerObj::getClassIndex' => + array ( + 0 => 'int', + 'shape' => 'mixed', + 'classgroup' => 'mixed', + 'numclasses' => 'mixed', + ), + 'layerObj::getExtent' => + array ( + 0 => 'rectObj', + ), + 'layerObj::getFilterString' => + array ( + 0 => 'null|string', + ), + 'layerObj::getGridIntersectionCoordinates' => + array ( + 0 => 'array', + ), + 'layerObj::getItems' => + array ( + 0 => 'array', + ), + 'layerObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'layerObj::getNumResults' => + array ( + 0 => 'int', + ), + 'layerObj::getProcessing' => + array ( + 0 => 'array', + ), + 'layerObj::getProjection' => + array ( + 0 => 'string', + ), + 'layerObj::getResult' => + array ( + 0 => 'resultObj', + 'index' => 'int', + ), + 'layerObj::getResultsBounds' => + array ( + 0 => 'rectObj', + ), + 'layerObj::getShape' => + array ( + 0 => 'shapeObj', + 'result' => 'resultObj', + ), + 'layerObj::getWMSFeatureInfoURL' => + array ( + 0 => 'string', + 'clickX' => 'int', + 'clickY' => 'int', + 'featureCount' => 'int', + 'infoFormat' => 'string', + ), + 'layerObj::isVisible' => + array ( + 0 => 'bool', + ), + 'layerObj::moveclassdown' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'layerObj::moveclassup' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'layerObj::ms_newLayerObj' => + array ( + 0 => 'layerObj', + 'map' => 'mapObj', + 'layer' => 'layerObj', + ), + 'layerObj::nextShape' => + array ( + 0 => 'shapeObj', + ), + 'layerObj::open' => + array ( + 0 => 'int', + ), + 'layerObj::queryByAttributes' => + array ( + 0 => 'int', + 'qitem' => 'string', + 'qstring' => 'string', + 'mode' => 'int', + ), + 'layerObj::queryByFeatures' => + array ( + 0 => 'int', + 'slayer' => 'int', + ), + 'layerObj::queryByPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + 'mode' => 'int', + 'buffer' => 'float', + ), + 'layerObj::queryByRect' => + array ( + 0 => 'int', + 'rect' => 'rectObj', + ), + 'layerObj::queryByShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'layerObj::removeClass' => + array ( + 0 => 'classObj|null', + 'index' => 'int', + ), + 'layerObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'layerObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'layerObj::setConnectionType' => + array ( + 0 => 'int', + 'connectiontype' => 'int', + 'plugin_library' => 'string', + ), + 'layerObj::setFilter' => + array ( + 0 => 'int', + 'expression' => 'string', + ), + 'layerObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'layerObj::setProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + ), + 'layerObj::setWKTProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + ), + 'layerObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'lcfirst' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'lcg_value' => + array ( + 0 => 'float', + ), + 'lchgrp' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'group' => 'int|string', + ), + 'lchown' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'user' => 'int|string', + ), + 'ldap_8859_to_t61' => + array ( + 0 => 'string', + 'value' => 'string', + ), + 'ldap_add' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'ldap_add_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'ldap_bind' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + ), + 'ldap_bind_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn=' => 'null|string', + 'password=' => 'null|string', + 'controls=' => 'array', + ), + 'ldap_close' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'ldap_compare' => + array ( + 0 => 'bool|int', + 'ldap' => 'resource', + 'dn' => 'string', + 'attribute' => 'string', + 'value' => 'string', + ), + 'ldap_connect' => + array ( + 0 => 'false|resource', + 'uri=' => 'null|string', + 'port=' => 'int', + 'wallet=' => 'string', + 'password=' => 'string', + 'auth_mode=' => 'int', + ), + 'ldap_control_paged_result' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'pagesize' => 'int', + 'iscritical=' => 'bool', + 'cookie=' => 'string', + ), + 'ldap_control_paged_result_response' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'result_identifier' => 'resource', + '&w_cookie' => 'string', + '&w_estimated' => 'int', + ), + 'ldap_count_entries' => + array ( + 0 => 'int', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'ldap_delete' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + ), + 'ldap_delete_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'controls=' => 'array', + ), + 'ldap_dn2ufn' => + array ( + 0 => 'false|string', + 'dn' => 'string', + ), + 'ldap_err2str' => + array ( + 0 => 'string', + 'errno' => 'int', + ), + 'ldap_errno' => + array ( + 0 => 'int', + 'ldap' => 'resource', + ), + 'ldap_error' => + array ( + 0 => 'string', + 'ldap' => 'resource', + ), + 'ldap_escape' => + array ( + 0 => 'string', + 'value' => 'string', + 'ignore=' => 'string', + 'flags=' => 'int', + ), + 'ldap_explode_dn' => + array ( + 0 => 'array|false', + 'dn' => 'string', + 'with_attrib' => 'int', + ), + 'ldap_first_attribute' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_first_entry' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'ldap_first_reference' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'ldap_free_result' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'ldap_get_attributes' => + array ( + 0 => 'array', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_get_dn' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_get_entries' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'result' => 'resource', + ), + 'ldap_get_option' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'option' => 'int', + '&w_value=' => 'array|int|string', + ), + 'ldap_get_values' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'entry' => 'resource', + 'attribute' => 'string', + ), + 'ldap_get_values_len' => + array ( + 0 => 'array|false', + 'ldap' => 'resource', + 'entry' => 'resource', + 'attribute' => 'string', + ), + 'ldap_list' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'ldap_mod_add' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'ldap_mod_add_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'ldap_mod_del' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'ldap_mod_del_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'ldap_mod_replace' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'ldap_mod_replace_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + 'controls=' => 'array', + ), + 'ldap_modify' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'entry' => 'array', + ), + 'ldap_modify_batch' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'modifications_info' => 'array', + ), + 'ldap_next_attribute' => + array ( + 0 => 'false|string', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_next_entry' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_next_reference' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'entry' => 'resource', + ), + 'ldap_parse_reference' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'entry' => 'resource', + '&w_referrals' => 'array', + ), + 'ldap_parse_result' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'result' => 'resource', + '&w_error_code' => 'int', + '&w_matched_dn=' => 'string', + '&w_error_message=' => 'string', + '&w_referrals=' => 'array', + '&w_controls=' => 'array', + ), + 'ldap_read' => + array ( + 0 => 'false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'ldap_rename' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + ), + 'ldap_rename_ext' => + array ( + 0 => 'false|resource', + 'ldap' => 'resource', + 'dn' => 'string', + 'new_rdn' => 'string', + 'new_parent' => 'string', + 'delete_old_rdn' => 'bool', + 'controls=' => 'array', + ), + 'ldap_sasl_bind' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'dn=' => 'string', + 'password=' => 'string', + 'mech=' => 'string', + 'realm=' => 'string', + 'authc_id=' => 'string', + 'authz_id=' => 'string', + 'props=' => 'string', + ), + 'ldap_search' => + array ( + 0 => 'array|false|resource', + 'ldap' => 'array|resource', + 'base' => 'array|string', + 'filter' => 'array|string', + 'attributes=' => 'array', + 'attributes_only=' => 'int', + 'sizelimit=' => 'int', + 'timelimit=' => 'int', + 'deref=' => 'int', + ), + 'ldap_set_option' => + array ( + 0 => 'bool', + 'ldap' => 'null|resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'ldap_set_rebind_proc' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + 'callback' => 'callable', + ), + 'ldap_sort' => + array ( + 0 => 'bool', + 'link_identifier' => 'resource', + 'result_identifier' => 'resource', + 'sortfilter' => 'string', + ), + 'ldap_start_tls' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'ldap_t61_to_8859' => + array ( + 0 => 'string', + 'value' => 'string', + ), + 'ldap_unbind' => + array ( + 0 => 'bool', + 'ldap' => 'resource', + ), + 'leak' => + array ( + 0 => 'mixed', + 'num_bytes' => 'int', + ), + 'leak_variable' => + array ( + 0 => 'mixed', + 'variable' => 'mixed', + 'leak_data' => 'bool', + ), + 'legendObj::convertToString' => + array ( + 0 => 'string', + ), + 'legendObj::free' => + array ( + 0 => 'void', + ), + 'legendObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'legendObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'levenshtein' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'levenshtein\'1' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'insertion_cost' => 'int', + 'repetition_cost' => 'int', + 'deletion_cost' => 'int', + ), + 'libxml_clear_errors' => + array ( + 0 => 'void', + ), + 'libxml_disable_entity_loader' => + array ( + 0 => 'bool', + 'disable=' => 'bool', + ), + 'libxml_get_errors' => + array ( + 0 => 'list', + ), + 'libxml_get_last_error' => + array ( + 0 => 'LibXMLError|false', + ), + 'libxml_set_external_entity_loader' => + array ( + 0 => 'bool', + 'resolver_function' => 'callable(string, string, array{directory: null|string, extSubSystem: null|string, extSubURI: null|string, intSubName: null|string}):(null|resource|string)|null', + ), + 'libxml_set_streams_context' => + array ( + 0 => 'void', + 'context' => 'resource', + ), + 'libxml_use_internal_errors' => + array ( + 0 => 'bool', + 'use_errors=' => 'bool', + ), + 'lineObj::__construct' => + array ( + 0 => 'void', + ), + 'lineObj::add' => + array ( + 0 => 'int', + 'point' => 'pointObj', + ), + 'lineObj::addXY' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'm' => 'float', + ), + 'lineObj::addXYZ' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + 'm' => 'float', + ), + 'lineObj::ms_newLineObj' => + array ( + 0 => 'lineObj', + ), + 'lineObj::point' => + array ( + 0 => 'pointObj', + 'i' => 'int', + ), + 'lineObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'link' => + array ( + 0 => 'bool', + 'target' => 'string', + 'link' => 'string', + ), + 'linkinfo' => + array ( + 0 => 'false|int', + 'path' => 'string', + ), + 'litespeed_request_headers' => + array ( + 0 => 'array', + ), + 'litespeed_response_headers' => + array ( + 0 => 'array', + ), + 'locale_accept_from_http' => + array ( + 0 => 'false|string', + 'header' => 'string', + ), + 'locale_canonicalize' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_compose' => + array ( + 0 => 'false|string', + 'subtags' => 'array', + ), + 'locale_filter_matches' => + array ( + 0 => 'bool|null', + 'languageTag' => 'string', + 'locale' => 'string', + 'canonicalize=' => 'bool', + ), + 'locale_get_all_variants' => + array ( + 0 => 'array|null', + 'locale' => 'string', + ), + 'locale_get_default' => + array ( + 0 => 'string', + ), + 'locale_get_display_language' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'locale_get_display_name' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'locale_get_display_region' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'locale_get_display_script' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'locale_get_display_variant' => + array ( + 0 => 'string', + 'locale' => 'string', + 'displayLocale=' => 'string', + ), + 'locale_get_keywords' => + array ( + 0 => 'array|false|null', + 'locale' => 'string', + ), + 'locale_get_primary_language' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_get_region' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_get_script' => + array ( + 0 => 'null|string', + 'locale' => 'string', + ), + 'locale_lookup' => + array ( + 0 => 'null|string', + 'languageTag' => 'array', + 'locale' => 'string', + 'canonicalize=' => 'bool', + 'defaultLocale=' => 'string', + ), + 'locale_parse' => + array ( + 0 => 'array|null', + 'locale' => 'string', + ), + 'locale_set_default' => + array ( + 0 => 'bool', + 'locale' => 'string', + ), + 'localeconv' => + array ( + 0 => 'array', + ), + 'localtime' => + array ( + 0 => 'array', + 'timestamp=' => 'int', + 'associative=' => 'bool', + ), + 'log' => + array ( + 0 => 'float', + 'num' => 'float', + 'base=' => 'float', + ), + 'log10' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'log1p' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'long2ip' => + array ( + 0 => 'string', + 'ip' => 'int', + ), + 'lstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'filename' => 'string', + ), + 'ltrim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'lzf_compress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'lzf_decompress' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'lzf_optimized_for' => + array ( + 0 => 'int', + ), + 'magic_quotes_runtime' => + array ( + 0 => 'bool', + 'new_setting' => 'bool', + ), + 'mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'string', + ), + 'mailparse_determine_best_xfer_encoding' => + array ( + 0 => 'string', + 'fp' => 'resource', + ), + 'mailparse_msg_create' => + array ( + 0 => 'resource', + ), + 'mailparse_msg_extract_part' => + array ( + 0 => 'void', + 'mimemail' => 'resource', + 'msgbody' => 'string', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_extract_part_file' => + array ( + 0 => 'string', + 'mimemail' => 'resource', + 'filename' => 'mixed', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_extract_whole_part_file' => + array ( + 0 => 'string', + 'mimemail' => 'resource', + 'filename' => 'string', + 'callbackfunc=' => 'callable', + ), + 'mailparse_msg_free' => + array ( + 0 => 'bool', + 'mimemail' => 'resource', + ), + 'mailparse_msg_get_part' => + array ( + 0 => 'resource', + 'mimemail' => 'resource', + 'mimesection' => 'string', + ), + 'mailparse_msg_get_part_data' => + array ( + 0 => 'array', + 'mimemail' => 'resource', + ), + 'mailparse_msg_get_structure' => + array ( + 0 => 'array', + 'mimemail' => 'resource', + ), + 'mailparse_msg_parse' => + array ( + 0 => 'bool', + 'mimemail' => 'resource', + 'data' => 'string', + ), + 'mailparse_msg_parse_file' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'mailparse_rfc822_parse_addresses' => + array ( + 0 => 'array', + 'addresses' => 'string', + ), + 'mailparse_stream_encode' => + array ( + 0 => 'bool', + 'sourcefp' => 'resource', + 'destfp' => 'resource', + 'encoding' => 'string', + ), + 'mailparse_uudecode_all' => + array ( + 0 => 'array', + 'fp' => 'resource', + ), + 'mapObj::__construct' => + array ( + 0 => 'void', + 'map_file_name' => 'string', + 'new_map_path' => 'string', + ), + 'mapObj::appendOutputFormat' => + array ( + 0 => 'int', + 'outputFormat' => 'outputformatObj', + ), + 'mapObj::applySLD' => + array ( + 0 => 'int', + 'sldxml' => 'string', + ), + 'mapObj::applySLDURL' => + array ( + 0 => 'int', + 'sldurl' => 'string', + ), + 'mapObj::applyconfigoptions' => + array ( + 0 => 'int', + ), + 'mapObj::convertToString' => + array ( + 0 => 'string', + ), + 'mapObj::draw' => + array ( + 0 => 'imageObj|null', + ), + 'mapObj::drawLabelCache' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::drawLegend' => + array ( + 0 => 'imageObj', + ), + 'mapObj::drawQuery' => + array ( + 0 => 'imageObj|null', + ), + 'mapObj::drawReferenceMap' => + array ( + 0 => 'imageObj', + ), + 'mapObj::drawScaleBar' => + array ( + 0 => 'imageObj', + ), + 'mapObj::embedLegend' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::embedScalebar' => + array ( + 0 => 'int', + 'image' => 'imageObj', + ), + 'mapObj::free' => + array ( + 0 => 'void', + ), + 'mapObj::generateSLD' => + array ( + 0 => 'string', + ), + 'mapObj::getAllGroupNames' => + array ( + 0 => 'array', + ), + 'mapObj::getAllLayerNames' => + array ( + 0 => 'array', + ), + 'mapObj::getColorbyIndex' => + array ( + 0 => 'colorObj', + 'iCloIndex' => 'int', + ), + 'mapObj::getConfigOption' => + array ( + 0 => 'string', + 'key' => 'string', + ), + 'mapObj::getLabel' => + array ( + 0 => 'labelcacheMemberObj', + 'index' => 'int', + ), + 'mapObj::getLayer' => + array ( + 0 => 'layerObj', + 'index' => 'int', + ), + 'mapObj::getLayerByName' => + array ( + 0 => 'layerObj', + 'layer_name' => 'string', + ), + 'mapObj::getLayersDrawingOrder' => + array ( + 0 => 'array', + ), + 'mapObj::getLayersIndexByGroup' => + array ( + 0 => 'array', + 'groupname' => 'string', + ), + 'mapObj::getMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::getNumSymbols' => + array ( + 0 => 'int', + ), + 'mapObj::getOutputFormat' => + array ( + 0 => 'null|outputformatObj', + 'index' => 'int', + ), + 'mapObj::getProjection' => + array ( + 0 => 'string', + ), + 'mapObj::getSymbolByName' => + array ( + 0 => 'int', + 'symbol_name' => 'string', + ), + 'mapObj::getSymbolObjectById' => + array ( + 0 => 'symbolObj', + 'symbolid' => 'int', + ), + 'mapObj::loadMapContext' => + array ( + 0 => 'int', + 'filename' => 'string', + 'unique_layer_name' => 'bool', + ), + 'mapObj::loadOWSParameters' => + array ( + 0 => 'int', + 'request' => 'OwsrequestObj', + 'version' => 'string', + ), + 'mapObj::moveLayerDown' => + array ( + 0 => 'int', + 'layerindex' => 'int', + ), + 'mapObj::moveLayerUp' => + array ( + 0 => 'int', + 'layerindex' => 'int', + ), + 'mapObj::ms_newMapObjFromString' => + array ( + 0 => 'mapObj', + 'map_file_string' => 'string', + 'new_map_path' => 'string', + ), + 'mapObj::offsetExtent' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + ), + 'mapObj::owsDispatch' => + array ( + 0 => 'int', + 'request' => 'OwsrequestObj', + ), + 'mapObj::prepareImage' => + array ( + 0 => 'imageObj', + ), + 'mapObj::prepareQuery' => + array ( + 0 => 'void', + ), + 'mapObj::processLegendTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + ), + 'mapObj::processQueryTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + 'generateimages' => 'bool', + ), + 'mapObj::processTemplate' => + array ( + 0 => 'string', + 'params' => 'array', + 'generateimages' => 'bool', + ), + 'mapObj::queryByFeatures' => + array ( + 0 => 'int', + 'slayer' => 'int', + ), + 'mapObj::queryByIndex' => + array ( + 0 => 'int', + 'layerindex' => 'mixed', + 'tileindex' => 'mixed', + 'shapeindex' => 'mixed', + 'addtoquery' => 'mixed', + ), + 'mapObj::queryByPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + 'mode' => 'int', + 'buffer' => 'float', + ), + 'mapObj::queryByRect' => + array ( + 0 => 'int', + 'rect' => 'rectObj', + ), + 'mapObj::queryByShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'mapObj::removeLayer' => + array ( + 0 => 'layerObj', + 'nIndex' => 'int', + ), + 'mapObj::removeMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::removeOutputFormat' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'mapObj::save' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'mapObj::saveMapContext' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'mapObj::saveQuery' => + array ( + 0 => 'int', + 'filename' => 'string', + 'results' => 'int', + ), + 'mapObj::scaleExtent' => + array ( + 0 => 'int', + 'zoomfactor' => 'float', + 'minscaledenom' => 'float', + 'maxscaledenom' => 'float', + ), + 'mapObj::selectOutputFormat' => + array ( + 0 => 'int', + 'type' => 'string', + ), + 'mapObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'mapObj::setCenter' => + array ( + 0 => 'int', + 'center' => 'pointObj', + ), + 'mapObj::setConfigOption' => + array ( + 0 => 'int', + 'key' => 'string', + 'value' => 'string', + ), + 'mapObj::setExtent' => + array ( + 0 => 'void', + 'minx' => 'float', + 'miny' => 'float', + 'maxx' => 'float', + 'maxy' => 'float', + ), + 'mapObj::setFontSet' => + array ( + 0 => 'int', + 'fileName' => 'string', + ), + 'mapObj::setMetaData' => + array ( + 0 => 'int', + 'name' => 'string', + 'value' => 'string', + ), + 'mapObj::setProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + 'bSetUnitsAndExtents' => 'bool', + ), + 'mapObj::setRotation' => + array ( + 0 => 'int', + 'rotation_angle' => 'float', + ), + 'mapObj::setSize' => + array ( + 0 => 'int', + 'width' => 'int', + 'height' => 'int', + ), + 'mapObj::setSymbolSet' => + array ( + 0 => 'int', + 'fileName' => 'string', + ), + 'mapObj::setWKTProjection' => + array ( + 0 => 'int', + 'proj_params' => 'string', + 'bSetUnitsAndExtents' => 'bool', + ), + 'mapObj::zoomPoint' => + array ( + 0 => 'int', + 'nZoomFactor' => 'int', + 'oPixelPos' => 'pointObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + ), + 'mapObj::zoomRectangle' => + array ( + 0 => 'int', + 'oPixelExt' => 'rectObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + ), + 'mapObj::zoomScale' => + array ( + 0 => 'int', + 'nScaleDenom' => 'float', + 'oPixelPos' => 'pointObj', + 'nImageWidth' => 'int', + 'nImageHeight' => 'int', + 'oGeorefExt' => 'rectObj', + 'oMaxGeorefExt' => 'rectObj', + ), + 'max' => + array ( + 0 => 'mixed', + 'value' => 'non-empty-array', + ), + 'max\'1' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'values' => 'mixed', + '...args=' => 'mixed', + ), + 'mb_check_encoding' => + array ( + 0 => 'bool', + 'value=' => 'string', + 'encoding=' => 'string', + ), + 'mb_convert_case' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode' => 'int', + 'encoding=' => 'string', + ), + 'mb_convert_encoding' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'to_encoding' => 'string', + 'from_encoding=' => 'mixed', + ), + 'mb_convert_kana' => + array ( + 0 => 'string', + 'string' => 'string', + 'mode=' => 'string', + 'encoding=' => 'string', + ), + 'mb_convert_variables' => + array ( + 0 => 'false|string', + 'to_encoding' => 'string', + 'from_encoding' => 'array|string', + '&rw_var' => 'array|object|string', + '&...rw_vars=' => 'array|object|string', + ), + 'mb_decode_mimeheader' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mb_decode_numericentity' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'string', + ), + 'mb_detect_encoding' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'encodings=' => 'mixed', + 'strict=' => 'bool', + ), + 'mb_detect_order' => + array ( + 0 => 'bool|list', + 'encoding=' => 'mixed', + ), + 'mb_encode_mimeheader' => + array ( + 0 => 'string', + 'string' => 'string', + 'charset=' => 'string', + 'transfer_encoding=' => 'string', + 'newline=' => 'string', + 'indent=' => 'int', + ), + 'mb_encode_numericentity' => + array ( + 0 => 'string', + 'string' => 'string', + 'map' => 'array', + 'encoding=' => 'string', + 'hex=' => 'bool', + ), + 'mb_encoding_aliases' => + array ( + 0 => 'false|list', + 'encoding' => 'string', + ), + 'mb_ereg' => + array ( + 0 => 'false|int', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array|null', + ), + 'mb_ereg_match' => + array ( + 0 => 'bool', + 'pattern' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_replace' => + array ( + 0 => 'false|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_replace_callback' => + array ( + 0 => 'false|null|string', + 'pattern' => 'string', + 'callback' => 'callable', + 'string' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_search' => + array ( + 0 => 'bool', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_search_getpos' => + array ( + 0 => 'int', + ), + 'mb_ereg_search_getregs' => + array ( + 0 => 'array|false', + ), + 'mb_ereg_search_init' => + array ( + 0 => 'bool', + 'string' => 'string', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_search_pos' => + array ( + 0 => 'array|false', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_search_regs' => + array ( + 0 => 'array|false', + 'pattern=' => 'string', + 'options=' => 'string', + ), + 'mb_ereg_search_setpos' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'mb_eregi' => + array ( + 0 => 'false|int', + 'pattern' => 'string', + 'string' => 'string', + '&w_matches=' => 'array', + ), + 'mb_eregi_replace' => + array ( + 0 => 'false|string', + 'pattern' => 'string', + 'replacement' => 'string', + 'string' => 'string', + 'options=' => 'string', + ), + 'mb_get_info' => + array ( + 0 => 'array|false|int|string', + 'type=' => 'string', + ), + 'mb_http_input' => + array ( + 0 => 'false|string', + 'type=' => 'string', + ), + 'mb_http_output' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'mb_internal_encoding' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'mb_language' => + array ( + 0 => 'bool|string', + 'language=' => 'string', + ), + 'mb_list_encodings' => + array ( + 0 => 'list', + ), + 'mb_output_handler' => + array ( + 0 => 'string', + 'string' => 'string', + 'status' => 'int', + ), + 'mb_parse_str' => + array ( + 0 => 'bool', + 'string' => 'string', + '&w_result=' => 'array', + ), + 'mb_preferred_mime_name' => + array ( + 0 => 'false|string', + 'encoding' => 'string', + ), + 'mb_regex_encoding' => + array ( + 0 => 'bool|string', + 'encoding=' => 'string', + ), + 'mb_regex_set_options' => + array ( + 0 => 'string', + 'options=' => 'string', + ), + 'mb_send_mail' => + array ( + 0 => 'bool', + 'to' => 'string', + 'subject' => 'string', + 'message' => 'string', + 'additional_headers=' => 'array|string', + 'additional_params=' => 'string', + ), + 'mb_split' => + array ( + 0 => 'false|list', + 'pattern' => 'string', + 'string' => 'string', + 'limit=' => 'int', + ), + 'mb_strcut' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'string', + ), + 'mb_strimwidth' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'width' => 'int', + 'trim_marker=' => 'string', + 'encoding=' => 'string', + ), + 'mb_stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'mb_stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'mb_strlen' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'mb_strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'mb_strrchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'mb_strrichr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'mb_strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'mb_strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'encoding=' => 'string', + ), + 'mb_strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'string', + 'before_needle=' => 'bool', + 'encoding=' => 'string', + ), + 'mb_strtolower' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'mb_strtoupper' => + array ( + 0 => 'string', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'mb_strwidth' => + array ( + 0 => 'int', + 'string' => 'string', + 'encoding=' => 'string', + ), + 'mb_substitute_character' => + array ( + 0 => 'bool|int|string', + 'substitute_character=' => 'mixed', + ), + 'mb_substr' => + array ( + 0 => 'string', + 'string' => 'string', + 'start' => 'int', + 'length=' => 'int|null', + 'encoding=' => 'string', + ), + 'mb_substr_count' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'encoding=' => 'string', + ), + 'mcrypt_cbc' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_cfb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_create_iv' => + array ( + 0 => 'false|string', + 'size' => 'int', + 'source=' => 'int', + ), + 'mcrypt_decrypt' => + array ( + 0 => 'string', + 'cipher' => 'string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'string', + 'iv=' => 'string', + ), + 'mcrypt_ecb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'mcrypt_enc_get_algorithms_name' => + array ( + 0 => 'string', + 'td' => 'resource', + ), + 'mcrypt_enc_get_block_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_iv_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_key_size' => + array ( + 0 => 'int', + 'td' => 'resource', + ), + 'mcrypt_enc_get_modes_name' => + array ( + 0 => 'string', + 'td' => 'resource', + ), + 'mcrypt_enc_get_supported_key_sizes' => + array ( + 0 => 'array', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_algorithm' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_algorithm_mode' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_is_block_mode' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_enc_self_test' => + array ( + 0 => 'false|int', + 'td' => 'resource', + ), + 'mcrypt_encrypt' => + array ( + 0 => 'string', + 'cipher' => 'string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'string', + 'iv=' => 'string', + ), + 'mcrypt_generic' => + array ( + 0 => 'string', + 'td' => 'resource', + 'data' => 'string', + ), + 'mcrypt_generic_deinit' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_generic_end' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_generic_init' => + array ( + 0 => 'false|int', + 'td' => 'resource', + 'key' => 'string', + 'iv' => 'string', + ), + 'mcrypt_get_block_size' => + array ( + 0 => 'int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_get_cipher_name' => + array ( + 0 => 'false|string', + 'cipher' => 'int|string', + ), + 'mcrypt_get_iv_size' => + array ( + 0 => 'false|int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_get_key_size' => + array ( + 0 => 'int', + 'cipher' => 'int|string', + 'module' => 'string', + ), + 'mcrypt_list_algorithms' => + array ( + 0 => 'array', + 'lib_dir=' => 'string', + ), + 'mcrypt_list_modes' => + array ( + 0 => 'array', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_close' => + array ( + 0 => 'bool', + 'td' => 'resource', + ), + 'mcrypt_module_get_algo_block_size' => + array ( + 0 => 'int', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_get_algo_key_size' => + array ( + 0 => 'int', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_get_supported_key_sizes' => + array ( + 0 => 'array', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_algorithm' => + array ( + 0 => 'bool', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_algorithm_mode' => + array ( + 0 => 'bool', + 'mode' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_is_block_mode' => + array ( + 0 => 'bool', + 'mode' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_module_open' => + array ( + 0 => 'false|resource', + 'cipher' => 'string', + 'cipher_directory' => 'string', + 'mode' => 'string', + 'mode_directory' => 'string', + ), + 'mcrypt_module_self_test' => + array ( + 0 => 'bool', + 'algorithm' => 'string', + 'lib_dir=' => 'string', + ), + 'mcrypt_ofb' => + array ( + 0 => 'string', + 'cipher' => 'int|string', + 'key' => 'string', + 'data' => 'string', + 'mode' => 'int', + 'iv=' => 'string', + ), + 'md5' => + array ( + 0 => 'non-falsy-string', + 'string' => 'string', + 'binary=' => 'bool', + ), + 'md5_file' => + array ( + 0 => 'false|non-falsy-string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'mdecrypt_generic' => + array ( + 0 => 'string', + 'td' => 'resource', + 'data' => 'string', + ), + 'memcache_add' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_add_server' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + 'persistent=' => 'bool', + 'weight=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + 'timeoutms=' => 'int', + ), + 'memcache_append' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_cas' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_close' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + ), + 'memcache_connect' => + array ( + 0 => 'Memcache|false', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'memcache_debug' => + array ( + 0 => 'bool', + 'on_off' => 'bool', + ), + 'memcache_decrement' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'value=' => 'int', + ), + 'memcache_delete' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'timeout=' => 'int', + ), + 'memcache_flush' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + ), + 'memcache_get' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'flags=' => 'int', + ), + 'memcache_get\'1' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'key' => 'array', + 'flags=' => 'array', + ), + 'memcache_get_extended_stats' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'memcache_get_server_status' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + ), + 'memcache_get_stats' => + array ( + 0 => 'array', + 'memcache_obj' => 'Memcache', + 'type=' => 'string', + 'slabid=' => 'int', + 'limit=' => 'int', + ), + 'memcache_get_version' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + ), + 'memcache_increment' => + array ( + 0 => 'int', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'value=' => 'int', + ), + 'memcache_pconnect' => + array ( + 0 => 'Memcache|false', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + ), + 'memcache_prepend' => + array ( + 0 => 'string', + 'memcache_obj' => 'Memcache', + ), + 'memcache_replace' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_set' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'key' => 'string', + 'var' => 'mixed', + 'flag=' => 'int', + 'expire=' => 'int', + ), + 'memcache_set_compress_threshold' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'threshold' => 'int', + 'min_savings=' => 'float', + ), + 'memcache_set_failure_callback' => + array ( + 0 => 'mixed', + 'memcache_obj' => 'Memcache', + ), + 'memcache_set_server_params' => + array ( + 0 => 'bool', + 'memcache_obj' => 'Memcache', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'retry_interval=' => 'int', + 'status=' => 'bool', + 'failure_callback=' => 'callable', + ), + 'memory_get_peak_usage' => + array ( + 0 => 'int', + 'real_usage=' => 'bool', + ), + 'memory_get_usage' => + array ( + 0 => 'int', + 'real_usage=' => 'bool', + ), + 'metaphone' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'max_phonemes=' => 'int', + ), + 'method_exists' => + array ( + 0 => 'bool', + 'object_or_class' => 'class-string|object', + 'method' => 'string', + ), + 'mhash' => + array ( + 0 => 'string', + 'algo' => 'int', + 'data' => 'string', + 'key=' => 'string', + ), + 'mhash_count' => + array ( + 0 => 'int', + ), + 'mhash_get_block_size' => + array ( + 0 => 'false|int', + 'algo' => 'int', + ), + 'mhash_get_hash_name' => + array ( + 0 => 'false|string', + 'algo' => 'int', + ), + 'mhash_keygen_s2k' => + array ( + 0 => 'false|string', + 'algo' => 'int', + 'password' => 'string', + 'salt' => 'string', + 'length' => 'int', + ), + 'microtime' => + array ( + 0 => 'string', + 'as_float=' => 'false', + ), + 'microtime\'1' => + array ( + 0 => 'float', + 'as_float=' => 'true', + ), + 'mime_content_type' => + array ( + 0 => 'false|string', + 'filename' => 'resource|string', + ), + 'min' => + array ( + 0 => 'mixed', + 'value' => 'non-empty-array', + ), + 'min\'1' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'values' => 'mixed', + '...args=' => 'mixed', + ), + 'ming_keypress' => + array ( + 0 => 'int', + 'char' => 'string', + ), + 'ming_setcubicthreshold' => + array ( + 0 => 'void', + 'threshold' => 'int', + ), + 'ming_setscale' => + array ( + 0 => 'void', + 'scale' => 'float', + ), + 'ming_setswfcompression' => + array ( + 0 => 'void', + 'level' => 'int', + ), + 'ming_useconstants' => + array ( + 0 => 'void', + 'use' => 'int', + ), + 'ming_useswfversion' => + array ( + 0 => 'void', + 'version' => 'int', + ), + 'mkdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'permissions=' => 'int', + 'recursive=' => 'bool', + 'context=' => 'resource', + ), + 'mktime' => + array ( + 0 => 'false|int', + 'hour=' => 'int', + 'minute=' => 'int', + 'second=' => 'int', + 'month=' => 'int', + 'day=' => 'int', + 'year=' => 'int', + ), + 'money_format' => + array ( + 0 => 'string', + 'format' => 'string', + 'value' => 'float', + ), + 'monitor_custom_event' => + array ( + 0 => 'void', + 'class' => 'string', + 'text' => 'string', + 'severe=' => 'int', + 'user_data=' => 'mixed', + ), + 'monitor_httperror_event' => + array ( + 0 => 'void', + 'error_code' => 'int', + 'url' => 'string', + 'severe=' => 'int', + ), + 'monitor_license_info' => + array ( + 0 => 'array', + ), + 'monitor_pass_error' => + array ( + 0 => 'void', + 'errno' => 'int', + 'errstr' => 'string', + 'errfile' => 'string', + 'errline' => 'int', + ), + 'monitor_set_aggregation_hint' => + array ( + 0 => 'void', + 'hint' => 'string', + ), + 'move_uploaded_file' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + ), + 'mqseries_back' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_begin' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'beginoptions' => 'array', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_close' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'options' => 'int', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_cmit' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_conn' => + array ( + 0 => 'void', + 'qmanagername' => 'string', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_connx' => + array ( + 0 => 'void', + 'qmanagername' => 'string', + 'connoptions' => 'array', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_disc' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_get' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'md' => 'array', + 'gmo' => 'array', + 'bufferlength' => 'int', + 'msg' => 'string', + 'data_length' => 'int', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_inq' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'selectorcount' => 'int', + 'selectors' => 'array', + 'intattrcount' => 'int', + 'intattr' => 'resource', + 'charattrlength' => 'int', + 'charattr' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_open' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'objdesc' => 'array', + 'option' => 'int', + 'hobj' => 'resource', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_put' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'md' => 'array', + 'pmo' => 'array', + 'message' => 'string', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_put1' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'objdesc' => 'resource', + 'msgdesc' => 'resource', + 'pmo' => 'resource', + 'buffer' => 'string', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_set' => + array ( + 0 => 'void', + 'hconn' => 'resource', + 'hobj' => 'resource', + 'selectorcount' => 'int', + 'selectors' => 'array', + 'intattrcount' => 'int', + 'intattrs' => 'array', + 'charattrlength' => 'int', + 'charattrs' => 'array', + 'compcode' => 'resource', + 'reason' => 'resource', + ), + 'mqseries_strerror' => + array ( + 0 => 'string', + 'reason' => 'int', + ), + 'ms_GetErrorObj' => + array ( + 0 => 'errorObj', + ), + 'ms_GetVersion' => + array ( + 0 => 'string', + ), + 'ms_GetVersionInt' => + array ( + 0 => 'int', + ), + 'ms_ResetErrorList' => + array ( + 0 => 'void', + ), + 'ms_TokenizeMap' => + array ( + 0 => 'array', + 'map_file_name' => 'string', + ), + 'ms_iogetStdoutBufferBytes' => + array ( + 0 => 'int', + ), + 'ms_iogetstdoutbufferstring' => + array ( + 0 => 'void', + ), + 'ms_ioinstallstdinfrombuffer' => + array ( + 0 => 'void', + ), + 'ms_ioinstallstdouttobuffer' => + array ( + 0 => 'void', + ), + 'ms_ioresethandlers' => + array ( + 0 => 'void', + ), + 'ms_iostripstdoutbuffercontentheaders' => + array ( + 0 => 'void', + ), + 'ms_iostripstdoutbuffercontenttype' => + array ( + 0 => 'string', + ), + 'msession_connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'string', + ), + 'msession_count' => + array ( + 0 => 'int', + ), + 'msession_create' => + array ( + 0 => 'bool', + 'session' => 'string', + 'classname=' => 'string', + 'data=' => 'string', + ), + 'msession_destroy' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'msession_disconnect' => + array ( + 0 => 'void', + ), + 'msession_find' => + array ( + 0 => 'array', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_get' => + array ( + 0 => 'string', + 'session' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_get_array' => + array ( + 0 => 'array', + 'session' => 'string', + ), + 'msession_get_data' => + array ( + 0 => 'string', + 'session' => 'string', + ), + 'msession_inc' => + array ( + 0 => 'string', + 'session' => 'string', + 'name' => 'string', + ), + 'msession_list' => + array ( + 0 => 'array', + ), + 'msession_listvar' => + array ( + 0 => 'array', + 'name' => 'string', + ), + 'msession_lock' => + array ( + 0 => 'int', + 'name' => 'string', + ), + 'msession_plugin' => + array ( + 0 => 'string', + 'session' => 'string', + 'value' => 'string', + 'param=' => 'string', + ), + 'msession_randstr' => + array ( + 0 => 'string', + 'param' => 'int', + ), + 'msession_set' => + array ( + 0 => 'bool', + 'session' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'msession_set_array' => + array ( + 0 => 'void', + 'session' => 'string', + 'tuples' => 'array', + ), + 'msession_set_data' => + array ( + 0 => 'bool', + 'session' => 'string', + 'value' => 'string', + ), + 'msession_timeout' => + array ( + 0 => 'int', + 'session' => 'string', + 'param=' => 'int', + ), + 'msession_uniq' => + array ( + 0 => 'string', + 'param' => 'int', + 'classname=' => 'string', + 'data=' => 'string', + ), + 'msession_unlock' => + array ( + 0 => 'int', + 'session' => 'string', + 'key' => 'int', + ), + 'msg_get_queue' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'permissions=' => 'int', + ), + 'msg_queue_exists' => + array ( + 0 => 'bool', + 'key' => 'int', + ), + 'msg_receive' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'desired_message_type' => 'int', + '&w_received_message_type' => 'int', + 'max_message_size' => 'int', + '&w_message' => 'mixed', + 'unserialize=' => 'bool', + 'flags=' => 'int', + '&w_error_code=' => 'int', + ), + 'msg_remove_queue' => + array ( + 0 => 'bool', + 'queue' => 'resource', + ), + 'msg_send' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'message_type' => 'int', + 'message' => 'mixed', + 'serialize=' => 'bool', + 'blocking=' => 'bool', + '&w_error_code=' => 'int', + ), + 'msg_set_queue' => + array ( + 0 => 'bool', + 'queue' => 'resource', + 'data' => 'array', + ), + 'msg_stat_queue' => + array ( + 0 => 'array', + 'queue' => 'resource', + ), + 'msgfmt_create' => + array ( + 0 => 'MessageFormatter|null', + 'locale' => 'string', + 'pattern' => 'string', + ), + 'msgfmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'MessageFormatter', + 'values' => 'array', + ), + 'msgfmt_format_message' => + array ( + 0 => 'false|string', + 'locale' => 'string', + 'pattern' => 'string', + 'values' => 'array', + ), + 'msgfmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_locale' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_get_pattern' => + array ( + 0 => 'string', + 'formatter' => 'MessageFormatter', + ), + 'msgfmt_parse' => + array ( + 0 => 'array|false', + 'formatter' => 'MessageFormatter', + 'string' => 'string', + ), + 'msgfmt_parse_message' => + array ( + 0 => 'array|false', + 'locale' => 'string', + 'pattern' => 'string', + 'message' => 'string', + ), + 'msgfmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'MessageFormatter', + 'pattern' => 'string', + ), + 'msql_affected_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'msql_close' => + array ( + 0 => 'bool', + 'link_identifier=' => 'null|resource', + ), + 'msql_connect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + ), + 'msql_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_data_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row_number' => 'int', + ), + 'msql_db_query' => + array ( + 0 => 'resource', + 'database' => 'string', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_error' => + array ( + 0 => 'string', + ), + 'msql_fetch_array' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + ), + 'msql_fetch_field' => + array ( + 0 => 'object', + 'result' => 'resource', + 'field_offset=' => 'int', + ), + 'msql_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + ), + 'msql_fetch_row' => + array ( + 0 => 'array', + 'result' => 'resource', + ), + 'msql_field_flags' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_len' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_table' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_offset' => 'int', + ), + 'msql_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'msql_list_dbs' => + array ( + 0 => 'resource', + 'link_identifier=' => 'null|resource', + ), + 'msql_list_fields' => + array ( + 0 => 'resource', + 'database' => 'string', + 'tablename' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_list_tables' => + array ( + 0 => 'resource', + 'database' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'msql_num_rows' => + array ( + 0 => 'int', + 'query_identifier' => 'resource', + ), + 'msql_pconnect' => + array ( + 0 => 'resource', + 'hostname=' => 'string', + ), + 'msql_query' => + array ( + 0 => 'resource', + 'query' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'msql_result' => + array ( + 0 => 'string', + 'result' => 'resource', + 'row' => 'int', + 'field=' => 'mixed', + ), + 'msql_select_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'link_identifier=' => 'null|resource', + ), + 'mt_getrandmax' => + array ( + 0 => 'int<1, max>', + ), + 'mt_rand' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'mt_rand\'1' => + array ( + 0 => 'int', + ), + 'mt_srand' => + array ( + 0 => 'void', + 'seed=' => 'int', + 'mode=' => 'int', + ), + 'mysql_xdevapi\\baseresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\baseresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\collection::add' => + array ( + 0 => 'mysql_xdevapi\\CollectionAdd', + 'document' => 'mixed', + ), + 'mysql_xdevapi\\collection::addOrReplaceOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + 'doc' => 'string', + ), + 'mysql_xdevapi\\collection::count' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\collection::createIndex' => + array ( + 0 => 'void', + 'index_name' => 'string', + 'index_desc_json' => 'string', + ), + 'mysql_xdevapi\\collection::dropIndex' => + array ( + 0 => 'bool', + 'index_name' => 'string', + ), + 'mysql_xdevapi\\collection::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\collection::find' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'search_condition=' => 'string', + ), + 'mysql_xdevapi\\collection::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\collection::getOne' => + array ( + 0 => 'Document', + 'id' => 'string', + ), + 'mysql_xdevapi\\collection::getSchema' => + array ( + 0 => 'mysql_xdevapi\\schema', + ), + 'mysql_xdevapi\\collection::getSession' => + array ( + 0 => 'Session', + ), + 'mysql_xdevapi\\collection::modify' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'search_condition' => 'string', + ), + 'mysql_xdevapi\\collection::remove' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'search_condition' => 'string', + ), + 'mysql_xdevapi\\collection::removeOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + ), + 'mysql_xdevapi\\collection::replaceOne' => + array ( + 0 => 'mysql_xdevapi\\Result', + 'id' => 'string', + 'doc' => 'string', + ), + 'mysql_xdevapi\\collectionadd::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionfind::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionfind::execute' => + array ( + 0 => 'mysql_xdevapi\\DocResult', + ), + 'mysql_xdevapi\\collectionfind::fields' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'projection' => 'string', + ), + 'mysql_xdevapi\\collectionfind::groupBy' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionfind::having' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionfind::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionfind::lockExclusive' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\collectionfind::lockShared' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\collectionfind::offset' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'position' => 'int', + ), + 'mysql_xdevapi\\collectionfind::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionFind', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::arrayAppend' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::arrayInsert' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionmodify::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionmodify::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionmodify::patch' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'document' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::replace' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::set' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'collection_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::skip' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'position' => 'int', + ), + 'mysql_xdevapi\\collectionmodify::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\collectionmodify::unset' => + array ( + 0 => 'mysql_xdevapi\\CollectionModify', + 'fields' => 'array', + ), + 'mysql_xdevapi\\collectionremove::bind' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\collectionremove::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\collectionremove::limit' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'rows' => 'int', + ), + 'mysql_xdevapi\\collectionremove::sort' => + array ( + 0 => 'mysql_xdevapi\\CollectionRemove', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\columnresult::getCharacterSetName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getCollationName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getColumnLabel' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getColumnName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getFractionalDigits' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::getLength' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::getSchemaName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getTableLabel' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getTableName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\columnresult::getType' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::isNumberSigned' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\columnresult::isPadded' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\crudoperationbindable::bind' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationBindable', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\crudoperationlimitable::limit' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationLimitable', + 'rows' => 'int', + ), + 'mysql_xdevapi\\crudoperationskippable::skip' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationSkippable', + 'skip' => 'int', + ), + 'mysql_xdevapi\\crudoperationsortable::sort' => + array ( + 0 => 'mysql_xdevapi\\CrudOperationSortable', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\databaseobject::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\databaseobject::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\databaseobject::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\docresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\docresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\docresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\docresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\executable::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\getsession' => + array ( + 0 => 'mysql_xdevapi\\Session', + 'uri' => 'string', + ), + 'mysql_xdevapi\\result::getAutoIncrementValue' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\result::getGeneratedIds' => + array ( + 0 => 'ArrayOfInt', + ), + 'mysql_xdevapi\\result::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\result::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\rowresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\rowresult::getColumnCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\rowresult::getColumnNames' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getColumns' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\rowresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\schema::createCollection' => + array ( + 0 => 'mysql_xdevapi\\Collection', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::dropCollection' => + array ( + 0 => 'bool', + 'collection_name' => 'string', + ), + 'mysql_xdevapi\\schema::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\schema::getCollection' => + array ( + 0 => 'mysql_xdevapi\\Collection', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getCollectionAsTable' => + array ( + 0 => 'mysql_xdevapi\\Table', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getCollections' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\schema::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\schema::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\schema::getTable' => + array ( + 0 => 'mysql_xdevapi\\Table', + 'name' => 'string', + ), + 'mysql_xdevapi\\schema::getTables' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\schemaobject::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + ), + 'mysql_xdevapi\\session::close' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\session::commit' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\session::createSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::dropSchema' => + array ( + 0 => 'bool', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::executeSql' => + array ( + 0 => 'object', + 'statement' => 'string', + ), + 'mysql_xdevapi\\session::generateUUID' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\session::getClientId' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\session::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + 'schema_name' => 'string', + ), + 'mysql_xdevapi\\session::getSchemas' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\session::getServerVersion' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\session::killClient' => + array ( + 0 => 'object', + 'client_id' => 'int', + ), + 'mysql_xdevapi\\session::listClients' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\session::quoteName' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::releaseSavepoint' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::rollback' => + array ( + 0 => 'void', + ), + 'mysql_xdevapi\\session::rollbackTo' => + array ( + 0 => 'void', + 'name' => 'string', + ), + 'mysql_xdevapi\\session::setSavepoint' => + array ( + 0 => 'string', + 'name=' => 'string', + ), + 'mysql_xdevapi\\session::sql' => + array ( + 0 => 'mysql_xdevapi\\SqlStatement', + 'query' => 'string', + ), + 'mysql_xdevapi\\session::startTransaction' => + array ( + 0 => 'void', + ), + 'mysql_xdevapi\\sqlstatement::bind' => + array ( + 0 => 'mysql_xdevapi\\SqlStatement', + 'param' => 'string', + ), + 'mysql_xdevapi\\sqlstatement::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::getNextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::getResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\sqlstatement::hasMoreResults' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\sqlstatementresult::fetchAll' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::fetchOne' => + array ( + 0 => 'object', + ), + 'mysql_xdevapi\\sqlstatementresult::getAffectedItemsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumnCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumnNames' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getColumns' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getGeneratedIds' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getLastInsertId' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\sqlstatementresult::getWarnings' => + array ( + 0 => 'array', + ), + 'mysql_xdevapi\\sqlstatementresult::getWarningsCount' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\sqlstatementresult::hasData' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\sqlstatementresult::nextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::getNextResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::getResult' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\statement::hasMoreResults' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::count' => + array ( + 0 => 'int', + ), + 'mysql_xdevapi\\table::delete' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + ), + 'mysql_xdevapi\\table::existsInDatabase' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::getName' => + array ( + 0 => 'string', + ), + 'mysql_xdevapi\\table::getSchema' => + array ( + 0 => 'mysql_xdevapi\\Schema', + ), + 'mysql_xdevapi\\table::getSession' => + array ( + 0 => 'mysql_xdevapi\\Session', + ), + 'mysql_xdevapi\\table::insert' => + array ( + 0 => 'mysql_xdevapi\\TableInsert', + 'columns' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\table::isView' => + array ( + 0 => 'bool', + ), + 'mysql_xdevapi\\table::select' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'columns' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\table::update' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + ), + 'mysql_xdevapi\\tabledelete::bind' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tabledelete::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\tabledelete::limit' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tabledelete::offset' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'position' => 'int', + ), + 'mysql_xdevapi\\tabledelete::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'orderby_expr' => 'string', + ), + 'mysql_xdevapi\\tabledelete::where' => + array ( + 0 => 'mysql_xdevapi\\TableDelete', + 'where_expr' => 'string', + ), + 'mysql_xdevapi\\tableinsert::execute' => + array ( + 0 => 'mysql_xdevapi\\Result', + ), + 'mysql_xdevapi\\tableinsert::values' => + array ( + 0 => 'mysql_xdevapi\\TableInsert', + 'row_values' => 'array', + ), + 'mysql_xdevapi\\tableselect::bind' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tableselect::execute' => + array ( + 0 => 'mysql_xdevapi\\RowResult', + ), + 'mysql_xdevapi\\tableselect::groupBy' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'mixed', + ), + 'mysql_xdevapi\\tableselect::having' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'string', + ), + 'mysql_xdevapi\\tableselect::limit' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tableselect::lockExclusive' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\tableselect::lockShared' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'lock_waiting_option=' => 'int', + ), + 'mysql_xdevapi\\tableselect::offset' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'position' => 'int', + ), + 'mysql_xdevapi\\tableselect::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'sort_expr' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\tableselect::where' => + array ( + 0 => 'mysql_xdevapi\\TableSelect', + 'where_expr' => 'string', + ), + 'mysql_xdevapi\\tableupdate::bind' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'placeholder_values' => 'array', + ), + 'mysql_xdevapi\\tableupdate::execute' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + ), + 'mysql_xdevapi\\tableupdate::limit' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'rows' => 'int', + ), + 'mysql_xdevapi\\tableupdate::orderby' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'orderby_expr' => 'mixed', + '...args=' => 'mixed', + ), + 'mysql_xdevapi\\tableupdate::set' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'table_field' => 'string', + 'expression_or_literal' => 'string', + ), + 'mysql_xdevapi\\tableupdate::where' => + array ( + 0 => 'mysql_xdevapi\\TableUpdate', + 'where_expr' => 'string', + ), + 'mysqli::__construct' => + array ( + 0 => 'void', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'mysqli::autocommit' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'mysqli::begin_transaction' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli::change_user' => + array ( + 0 => 'bool', + 'username' => 'string', + 'password' => 'string', + 'database' => 'null|string', + ), + 'mysqli::character_set_name' => + array ( + 0 => 'string', + ), + 'mysqli::close' => + array ( + 0 => 'true', + ), + 'mysqli::commit' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli::connect' => + array ( + 0 => 'false|null', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'mysqli::debug' => + array ( + 0 => 'true', + 'options' => 'string', + ), + 'mysqli::dump_debug_info' => + array ( + 0 => 'bool', + ), + 'mysqli::escape_string' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mysqli::get_charset' => + array ( + 0 => 'object', + ), + 'mysqli::get_client_info' => + array ( + 0 => 'string', + ), + 'mysqli::get_connection_stats' => + array ( + 0 => 'array', + ), + 'mysqli::get_warnings' => + array ( + 0 => 'mysqli_warning', + ), + 'mysqli::init' => + array ( + 0 => 'false|null', + ), + 'mysqli::kill' => + array ( + 0 => 'bool', + 'process_id' => 'int', + ), + 'mysqli::more_results' => + array ( + 0 => 'bool', + ), + 'mysqli::multi_query' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli::next_result' => + array ( + 0 => 'bool', + ), + 'mysqli::options' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli::ping' => + array ( + 0 => 'bool', + ), + 'mysqli::poll' => + array ( + 0 => 'false|int', + '&w_read' => 'array|null', + '&w_error' => 'array|null', + '&w_reject' => 'array', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'mysqli::prepare' => + array ( + 0 => 'false|mysqli_stmt', + 'query' => 'string', + ), + 'mysqli::query' => + array ( + 0 => 'bool|mysqli_result', + 'query' => 'string', + 'result_mode=' => 'int', + ), + 'mysqli::real_connect' => + array ( + 0 => 'bool', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + 'flags=' => 'int', + ), + 'mysqli::real_escape_string' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'mysqli::real_query' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli::reap_async_query' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli::refresh' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'mysqli::release_savepoint' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'mysqli::rollback' => + array ( + 0 => 'bool', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli::savepoint' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'mysqli::select_db' => + array ( + 0 => 'bool', + 'database' => 'string', + ), + 'mysqli::set_charset' => + array ( + 0 => 'bool', + 'charset' => 'string', + ), + 'mysqli::set_opt' => + array ( + 0 => 'bool', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli::ssl_set' => + array ( + 0 => 'true', + 'key' => 'null|string', + 'certificate' => 'null|string', + 'ca_certificate' => 'null|string', + 'ca_path' => 'null|string', + 'cipher_algos' => 'null|string', + ), + 'mysqli::stat' => + array ( + 0 => 'false|string', + ), + 'mysqli::stmt_init' => + array ( + 0 => 'mysqli_stmt', + ), + 'mysqli::store_result' => + array ( + 0 => 'false|mysqli_result', + 'mode=' => 'int', + ), + 'mysqli::thread_safe' => + array ( + 0 => 'bool', + ), + 'mysqli::use_result' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_affected_rows' => + array ( + 0 => 'int<-1, max>|numeric-string', + 'mysql' => 'mysqli', + ), + 'mysqli_autocommit' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'enable' => 'bool', + ), + 'mysqli_begin_transaction' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli_change_user' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'username' => 'string', + 'password' => 'string', + 'database' => 'null|string', + ), + 'mysqli_character_set_name' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_close' => + array ( + 0 => 'true', + 'mysql' => 'mysqli', + ), + 'mysqli_commit' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli_connect' => + array ( + 0 => 'false|mysqli', + 'hostname=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'database=' => 'string', + 'port=' => 'int', + 'socket=' => 'string', + ), + 'mysqli_connect_errno' => + array ( + 0 => 'int', + ), + 'mysqli_connect_error' => + array ( + 0 => 'null|string', + ), + 'mysqli_data_seek' => + array ( + 0 => 'bool', + 'result' => 'mysqli_result', + 'offset' => 'int', + ), + 'mysqli_debug' => + array ( + 0 => 'true', + 'options' => 'string', + ), + 'mysqli_disable_reads_from_master' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_disable_rpl_parse' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_dump_debug_info' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_embedded_server_end' => + array ( + 0 => 'void', + ), + 'mysqli_embedded_server_start' => + array ( + 0 => 'bool', + 'start' => 'int', + 'arguments' => 'array', + 'groups' => 'array', + ), + 'mysqli_enable_reads_from_master' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_enable_rpl_parse' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_errno' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_error' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_error_list' => + array ( + 0 => 'array', + 'mysql' => 'mysqli', + ), + 'mysqli_escape_string' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + 'string' => 'string', + ), + 'mysqli_execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_fetch_all' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '3', + ), + 'mysqli_fetch_all\'1' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '1', + ), + 'mysqli_fetch_all\'2' => + array ( + 0 => 'list>', + 'result' => 'mysqli_result', + 'mode=' => '2', + ), + 'mysqli_fetch_array' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + 'mode=' => '3', + ), + 'mysqli_fetch_array\'1' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + 'mode=' => '1', + ), + 'mysqli_fetch_array\'2' => + array ( + 0 => 'false|list|null', + 'result' => 'mysqli_result', + 'mode=' => '2', + ), + 'mysqli_fetch_assoc' => + array ( + 0 => 'array|false|null', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_field' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_field_direct' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'mysqli_fetch_fields' => + array ( + 0 => 'list', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_lengths' => + array ( + 0 => 'array|false', + 'result' => 'mysqli_result', + ), + 'mysqli_fetch_object' => + array ( + 0 => 'false|null|object', + 'result' => 'mysqli_result', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'mysqli_fetch_row' => + array ( + 0 => 'false|list|null', + 'result' => 'mysqli_result', + ), + 'mysqli_field_count' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_field_seek' => + array ( + 0 => 'bool', + 'result' => 'mysqli_result', + 'index' => 'int', + ), + 'mysqli_field_tell' => + array ( + 0 => 'int', + 'result' => 'mysqli_result', + ), + 'mysqli_free_result' => + array ( + 0 => 'void', + 'result' => 'mysqli_result', + ), + 'mysqli_get_cache_stats' => + array ( + 0 => 'array|false', + ), + 'mysqli_get_charset' => + array ( + 0 => 'null|object', + 'mysql' => 'mysqli', + ), + 'mysqli_get_client_info' => + array ( + 0 => 'string', + 'mysql=' => 'mysqli|null', + ), + 'mysqli_get_client_stats' => + array ( + 0 => 'array', + ), + 'mysqli_get_client_version' => + array ( + 0 => 'int', + ), + 'mysqli_get_connection_stats' => + array ( + 0 => 'array', + 'mysql' => 'mysqli', + ), + 'mysqli_get_host_info' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_get_links_stats' => + array ( + 0 => 'array', + ), + 'mysqli_get_proto_info' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_get_server_info' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_get_server_version' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_get_warnings' => + array ( + 0 => 'mysqli_warning', + 'mysql' => 'mysqli', + ), + 'mysqli_info' => + array ( + 0 => 'null|string', + 'mysql' => 'mysqli', + ), + 'mysqli_init' => + array ( + 0 => 'false|mysqli', + ), + 'mysqli_insert_id' => + array ( + 0 => 'int|string', + 'mysql' => 'mysqli', + ), + 'mysqli_kill' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'process_id' => 'int', + ), + 'mysqli_link_construct' => + array ( + 0 => 'object', + ), + 'mysqli_master_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_more_results' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_multi_query' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_next_result' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_num_fields' => + array ( + 0 => 'int', + 'result' => 'mysqli_result', + ), + 'mysqli_num_rows' => + array ( + 0 => 'int<0, max>|numeric-string', + 'result' => 'mysqli_result', + ), + 'mysqli_options' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli_ping' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + ), + 'mysqli_poll' => + array ( + 0 => 'false|int', + '&w_read' => 'array|null', + '&w_error' => 'array|null', + '&w_reject' => 'array', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'mysqli_prepare' => + array ( + 0 => 'false|mysqli_stmt', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_query' => + array ( + 0 => 'bool|mysqli_result', + 'mysql' => 'mysqli', + 'query' => 'string', + 'result_mode=' => 'int', + ), + 'mysqli_real_connect' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'hostname=' => 'null|string', + 'username=' => 'null|string', + 'password=' => 'null|string', + 'database=' => 'null|string', + 'port=' => 'int|null', + 'socket=' => 'null|string', + 'flags=' => 'int', + ), + 'mysqli_real_escape_string' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + 'string' => 'string', + ), + 'mysqli_real_query' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_reap_async_query' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + ), + 'mysqli_refresh' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags' => 'int', + ), + 'mysqli_release_savepoint' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'name' => 'string', + ), + 'mysqli_report' => + array ( + 0 => 'bool', + 'flags' => 'int', + ), + 'mysqli_result::__construct' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'result_mode=' => 'int', + ), + 'mysqli_result::close' => + array ( + 0 => 'void', + ), + 'mysqli_result::data_seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + ), + 'mysqli_result::fetch_all' => + array ( + 0 => 'list>', + 'mode=' => '3', + ), + 'mysqli_result::fetch_all\'1' => + array ( + 0 => 'list>', + 'mode=' => '1', + ), + 'mysqli_result::fetch_all\'2' => + array ( + 0 => 'list>', + 'mode=' => '2', + ), + 'mysqli_result::fetch_array' => + array ( + 0 => 'array|false|null', + 'mode=' => '3', + ), + 'mysqli_result::fetch_array\'1' => + array ( + 0 => 'array|false|null', + 'mode=' => '1', + ), + 'mysqli_result::fetch_array\'2' => + array ( + 0 => 'false|list|null', + 'mode=' => '2', + ), + 'mysqli_result::fetch_assoc' => + array ( + 0 => 'array|false|null', + ), + 'mysqli_result::fetch_field' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + ), + 'mysqli_result::fetch_field_direct' => + array ( + 0 => 'false|object{name:string, orgname:string, table:string, orgtable:string, max_length:int, length:int, charsetnr:int, flags:int, type:int, decimals:int, db:string, def:\'\', catalog:\'def\'}', + 'index' => 'int', + ), + 'mysqli_result::fetch_fields' => + array ( + 0 => 'list', + ), + 'mysqli_result::fetch_object' => + array ( + 0 => 'false|null|object', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'mysqli_result::fetch_row' => + array ( + 0 => 'false|list|null', + ), + 'mysqli_result::field_seek' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'mysqli_result::free' => + array ( + 0 => 'void', + ), + 'mysqli_result::free_result' => + array ( + 0 => 'void', + ), + 'mysqli_rollback' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'flags=' => 'int', + 'name=' => 'string', + ), + 'mysqli_rpl_parse_enabled' => + array ( + 0 => 'int', + 'link' => 'mysqli', + ), + 'mysqli_rpl_probe' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + ), + 'mysqli_rpl_query_type' => + array ( + 0 => 'int', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_savepoint' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'name' => 'string', + ), + 'mysqli_savepoint_libmysql' => + array ( + 0 => 'bool', + ), + 'mysqli_select_db' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'database' => 'string', + ), + 'mysqli_send_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_set_charset' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'charset' => 'string', + ), + 'mysqli_set_local_infile_default' => + array ( + 0 => 'void', + 'link' => 'mysqli', + ), + 'mysqli_set_local_infile_handler' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'read_func' => 'callable', + ), + 'mysqli_set_opt' => + array ( + 0 => 'bool', + 'mysql' => 'mysqli', + 'option' => 'int', + 'value' => 'int|string', + ), + 'mysqli_slave_query' => + array ( + 0 => 'bool', + 'link' => 'mysqli', + 'query' => 'string', + ), + 'mysqli_sqlstate' => + array ( + 0 => 'string', + 'mysql' => 'mysqli', + ), + 'mysqli_ssl_set' => + array ( + 0 => 'true', + 'mysql' => 'mysqli', + 'key' => 'null|string', + 'certificate' => 'null|string', + 'ca_certificate' => 'null|string', + 'ca_path' => 'null|string', + 'cipher_algos' => 'null|string', + ), + 'mysqli_stat' => + array ( + 0 => 'false|string', + 'mysql' => 'mysqli', + ), + 'mysqli_stmt::__construct' => + array ( + 0 => 'void', + 'mysql' => 'mysqli', + 'query=' => 'string', + ), + 'mysqli_stmt::attr_get' => + array ( + 0 => 'int', + 'attribute' => 'int', + ), + 'mysqli_stmt::attr_set' => + array ( + 0 => 'bool', + 'attribute' => 'int', + 'value' => 'int', + ), + 'mysqli_stmt::bind_param' => + array ( + 0 => 'bool', + 'types' => 'string', + '&var' => 'mixed', + '&...vars=' => 'mixed', + ), + 'mysqli_stmt::bind_result' => + array ( + 0 => 'bool', + '&w_var1' => 'mixed', + '&...w_vars=' => 'mixed', + ), + 'mysqli_stmt::close' => + array ( + 0 => 'true', + ), + 'mysqli_stmt::data_seek' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'mysqli_stmt::execute' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::fetch' => + array ( + 0 => 'bool|null', + ), + 'mysqli_stmt::free_result' => + array ( + 0 => 'void', + ), + 'mysqli_stmt::get_result' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_stmt::get_warnings' => + array ( + 0 => 'object', + ), + 'mysqli_stmt::more_results' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::next_result' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::num_rows' => + array ( + 0 => 'int<0, max>|numeric-string', + ), + 'mysqli_stmt::prepare' => + array ( + 0 => 'bool', + 'query' => 'string', + ), + 'mysqli_stmt::reset' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt::result_metadata' => + array ( + 0 => 'false|mysqli_result', + ), + 'mysqli_stmt::send_long_data' => + array ( + 0 => 'bool', + 'param_num' => 'int', + 'data' => 'string', + ), + 'mysqli_stmt::store_result' => + array ( + 0 => 'bool', + ), + 'mysqli_stmt_affected_rows' => + array ( + 0 => 'int<-1, max>|numeric-string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_attr_get' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + 'attribute' => 'int', + ), + 'mysqli_stmt_attr_set' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'attribute' => 'int', + 'value' => 'int', + ), + 'mysqli_stmt_bind_param' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'types' => 'string', + '&var' => 'mixed', + '&...vars=' => 'mixed', + ), + 'mysqli_stmt_bind_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + '&w_var1' => 'mixed', + '&...w_vars=' => 'mixed', + ), + 'mysqli_stmt_close' => + array ( + 0 => 'true', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_data_seek' => + array ( + 0 => 'void', + 'statement' => 'mysqli_stmt', + 'offset' => 'int', + ), + 'mysqli_stmt_errno' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_error' => + array ( + 0 => 'string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_error_list' => + array ( + 0 => 'array', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_execute' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_fetch' => + array ( + 0 => 'bool|null', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_field_count' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_free_result' => + array ( + 0 => 'void', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_get_result' => + array ( + 0 => 'false|mysqli_result', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_get_warnings' => + array ( + 0 => 'object', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_init' => + array ( + 0 => 'mysqli_stmt', + 'mysql' => 'mysqli', + ), + 'mysqli_stmt_insert_id' => + array ( + 0 => 'mixed', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_more_results' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_next_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_num_rows' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_param_count' => + array ( + 0 => 'int', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_prepare' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'query' => 'string', + ), + 'mysqli_stmt_reset' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_result_metadata' => + array ( + 0 => 'false|mysqli_result', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_send_long_data' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + 'param_num' => 'int', + 'data' => 'string', + ), + 'mysqli_stmt_sqlstate' => + array ( + 0 => 'string', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_stmt_store_result' => + array ( + 0 => 'bool', + 'statement' => 'mysqli_stmt', + ), + 'mysqli_store_result' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + 'mode=' => 'int', + ), + 'mysqli_thread_id' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqli_thread_safe' => + array ( + 0 => 'bool', + ), + 'mysqli_use_result' => + array ( + 0 => 'false|mysqli_result', + 'mysql' => 'mysqli', + ), + 'mysqli_warning::__construct' => + array ( + 0 => 'void', + ), + 'mysqli_warning::next' => + array ( + 0 => 'bool', + ), + 'mysqli_warning_count' => + array ( + 0 => 'int', + 'mysql' => 'mysqli', + ), + 'mysqlnd_memcache_get_config' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_memcache_set' => + array ( + 0 => 'bool', + 'mysql_connection' => 'mixed', + 'memcache_connection=' => 'Memcached', + 'pattern=' => 'string', + 'callback=' => 'callable', + ), + 'mysqlnd_ms_dump_servers' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_fabric_select_global' => + array ( + 0 => 'array', + 'connection' => 'mixed', + 'table_name' => 'mixed', + ), + 'mysqlnd_ms_fabric_select_shard' => + array ( + 0 => 'array', + 'connection' => 'mixed', + 'table_name' => 'mixed', + 'shard_key' => 'mixed', + ), + 'mysqlnd_ms_get_last_gtid' => + array ( + 0 => 'string', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_get_last_used_connection' => + array ( + 0 => 'array', + 'connection' => 'mixed', + ), + 'mysqlnd_ms_get_stats' => + array ( + 0 => 'array', + ), + 'mysqlnd_ms_match_wild' => + array ( + 0 => 'bool', + 'table_name' => 'string', + 'wildcard' => 'string', + ), + 'mysqlnd_ms_query_is_select' => + array ( + 0 => 'int', + 'query' => 'string', + ), + 'mysqlnd_ms_set_qos' => + array ( + 0 => 'bool', + 'connection' => 'mixed', + 'service_level' => 'int', + 'service_level_option=' => 'int', + 'option_value=' => 'mixed', + ), + 'mysqlnd_ms_set_user_pick_server' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'mysqlnd_ms_xa_begin' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + 'timeout=' => 'int', + ), + 'mysqlnd_ms_xa_commit' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + ), + 'mysqlnd_ms_xa_gc' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid=' => 'string', + 'ignore_max_retries=' => 'bool', + ), + 'mysqlnd_ms_xa_rollback' => + array ( + 0 => 'int', + 'connection' => 'mixed', + 'gtrid' => 'string', + ), + 'mysqlnd_qc_change_handler' => + array ( + 0 => 'bool', + 'handler' => 'mixed', + ), + 'mysqlnd_qc_clear_cache' => + array ( + 0 => 'bool', + ), + 'mysqlnd_qc_get_available_handlers' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_cache_info' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_core_stats' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_handler' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_normalized_query_trace_log' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_get_query_trace_log' => + array ( + 0 => 'array', + ), + 'mysqlnd_qc_set_cache_condition' => + array ( + 0 => 'bool', + 'condition_type' => 'int', + 'condition' => 'mixed', + 'condition_option' => 'mixed', + ), + 'mysqlnd_qc_set_is_select' => + array ( + 0 => 'mixed', + 'callback' => 'string', + ), + 'mysqlnd_qc_set_storage_handler' => + array ( + 0 => 'bool', + 'handler' => 'string', + ), + 'mysqlnd_qc_set_user_handlers' => + array ( + 0 => 'bool', + 'get_hash' => 'string', + 'find_query_in_cache' => 'string', + 'return_to_cache' => 'string', + 'add_query_to_cache_if_not_exists' => 'string', + 'query_is_select' => 'string', + 'update_query_run_time_stats' => 'string', + 'get_stats' => 'string', + 'clear_cache' => 'string', + ), + 'mysqlnd_uh_convert_to_mysqlnd' => + array ( + 0 => 'resource', + '&rw_mysql_connection' => 'mysqli', + ), + 'mysqlnd_uh_set_connection_proxy' => + array ( + 0 => 'bool', + '&rw_connection_proxy' => 'MysqlndUhConnection', + '&rw_mysqli_connection=' => 'mysqli', + ), + 'mysqlnd_uh_set_statement_proxy' => + array ( + 0 => 'bool', + '&rw_statement_proxy' => 'MysqlndUhStatement', + ), + 'natcasesort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'natsort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + ), + 'newrelic_add_custom_parameter' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'scalar', + ), + 'newrelic_add_custom_tracer' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'newrelic_background_job' => + array ( + 0 => 'void', + 'flag=' => 'bool', + ), + 'newrelic_capture_params' => + array ( + 0 => 'void', + 'enable=' => 'bool', + ), + 'newrelic_custom_metric' => + array ( + 0 => 'bool', + 'metric_name' => 'string', + 'value' => 'float', + ), + 'newrelic_disable_autorum' => + array ( + 0 => 'true', + ), + 'newrelic_end_of_transaction' => + array ( + 0 => 'void', + ), + 'newrelic_end_transaction' => + array ( + 0 => 'bool', + 'ignore=' => 'bool', + ), + 'newrelic_get_browser_timing_footer' => + array ( + 0 => 'string', + 'include_tags=' => 'bool', + ), + 'newrelic_get_browser_timing_header' => + array ( + 0 => 'string', + 'include_tags=' => 'bool', + ), + 'newrelic_ignore_apdex' => + array ( + 0 => 'void', + ), + 'newrelic_ignore_transaction' => + array ( + 0 => 'void', + ), + 'newrelic_name_transaction' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'newrelic_notice_error' => + array ( + 0 => 'void', + 'message' => 'string', + 'exception=' => 'Exception|Throwable', + ), + 'newrelic_notice_error\'1' => + array ( + 0 => 'void', + 'unused_1' => 'string', + 'message' => 'string', + 'unused_2' => 'string', + 'unused_3' => 'int', + 'unused_4=' => 'mixed', + ), + 'newrelic_record_custom_event' => + array ( + 0 => 'void', + 'name' => 'string', + 'attributes' => 'array', + ), + 'newrelic_record_datastore_segment' => + array ( + 0 => 'mixed', + 'func' => 'callable', + 'parameters' => 'array', + ), + 'newrelic_set_appname' => + array ( + 0 => 'bool', + 'name' => 'string', + 'license=' => 'string', + 'xmit=' => 'bool', + ), + 'newrelic_set_user_attributes' => + array ( + 0 => 'bool', + 'user' => 'string', + 'account' => 'string', + 'product' => 'string', + ), + 'newrelic_start_transaction' => + array ( + 0 => 'bool', + 'appname' => 'string', + 'license=' => 'string', + ), + 'next' => + array ( + 0 => 'mixed', + '&r_array' => 'array|object', + ), + 'ngettext' => + array ( + 0 => 'string', + 'singular' => 'string', + 'plural' => 'string', + 'count' => 'int', + ), + 'nl2br' => + array ( + 0 => 'string', + 'string' => 'string', + 'use_xhtml=' => 'bool', + ), + 'nl_langinfo' => + array ( + 0 => 'false|string', + 'item' => 'int', + ), + 'normalizer_is_normalized' => + array ( + 0 => 'bool', + 'string' => 'string', + 'form=' => 'int', + ), + 'normalizer_normalize' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'form=' => 'int', + ), + 'notes_body' => + array ( + 0 => 'array', + 'server' => 'string', + 'mailbox' => 'string', + 'msg_number' => 'int', + ), + 'notes_copy_db' => + array ( + 0 => 'bool', + 'from_database_name' => 'string', + 'to_database_name' => 'string', + ), + 'notes_create_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + ), + 'notes_create_note' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'form_name' => 'string', + ), + 'notes_drop_db' => + array ( + 0 => 'bool', + 'database_name' => 'string', + ), + 'notes_find_note' => + array ( + 0 => 'int', + 'database_name' => 'string', + 'name' => 'string', + 'type=' => 'string', + ), + 'notes_header_info' => + array ( + 0 => 'object', + 'server' => 'string', + 'mailbox' => 'string', + 'msg_number' => 'int', + ), + 'notes_list_msgs' => + array ( + 0 => 'bool', + 'db' => 'string', + ), + 'notes_mark_read' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'user_name' => 'string', + 'note_id' => 'string', + ), + 'notes_mark_unread' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'user_name' => 'string', + 'note_id' => 'string', + ), + 'notes_nav_create' => + array ( + 0 => 'bool', + 'database_name' => 'string', + 'name' => 'string', + ), + 'notes_search' => + array ( + 0 => 'array', + 'database_name' => 'string', + 'keywords' => 'string', + ), + 'notes_unread' => + array ( + 0 => 'array', + 'database_name' => 'string', + 'user_name' => 'string', + ), + 'notes_version' => + array ( + 0 => 'float', + 'database_name' => 'string', + ), + 'nsapi_request_headers' => + array ( + 0 => 'array', + ), + 'nsapi_response_headers' => + array ( + 0 => 'array', + ), + 'nsapi_virtual' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'nthmac' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'number_format' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals=' => 'int', + ), + 'number_format\'1' => + array ( + 0 => 'string', + 'num' => 'float', + 'decimals' => 'int', + 'decimal_separator' => 'null|string', + 'thousands_separator' => 'null|string', + ), + 'numfmt_create' => + array ( + 0 => 'NumberFormatter|null', + 'locale' => 'string', + 'style' => 'int', + 'pattern=' => 'string', + ), + 'numfmt_format' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'num' => 'float|int', + 'type=' => 'int', + ), + 'numfmt_format_currency' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'amount' => 'float', + 'currency' => 'string', + ), + 'numfmt_get_attribute' => + array ( + 0 => 'false|float|int', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + ), + 'numfmt_get_error_code' => + array ( + 0 => 'int', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_error_message' => + array ( + 0 => 'string', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_locale' => + array ( + 0 => 'string', + 'formatter' => 'NumberFormatter', + 'type=' => 'int', + ), + 'numfmt_get_pattern' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + ), + 'numfmt_get_symbol' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'symbol' => 'int', + ), + 'numfmt_get_text_attribute' => + array ( + 0 => 'false|string', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + ), + 'numfmt_parse' => + array ( + 0 => 'false|float|int', + 'formatter' => 'NumberFormatter', + 'string' => 'string', + 'type=' => 'int', + '&rw_offset=' => 'int', + ), + 'numfmt_parse_currency' => + array ( + 0 => 'false|float', + 'formatter' => 'NumberFormatter', + 'string' => 'string', + '&w_currency' => 'string', + '&rw_offset=' => 'int', + ), + 'numfmt_set_attribute' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + 'value' => 'float|int', + ), + 'numfmt_set_pattern' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'pattern' => 'string', + ), + 'numfmt_set_symbol' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'symbol' => 'int', + 'value' => 'string', + ), + 'numfmt_set_text_attribute' => + array ( + 0 => 'bool', + 'formatter' => 'NumberFormatter', + 'attribute' => 'int', + 'value' => 'string', + ), + 'oauth_get_sbs' => + array ( + 0 => 'string', + 'http_method' => 'string', + 'uri' => 'string', + 'parameters' => 'array', + ), + 'oauth_urlencode' => + array ( + 0 => 'string', + 'uri' => 'string', + ), + 'ob_clean' => + array ( + 0 => 'bool', + ), + 'ob_deflatehandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_end_clean' => + array ( + 0 => 'bool', + ), + 'ob_end_flush' => + array ( + 0 => 'bool', + ), + 'ob_etaghandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_flush' => + array ( + 0 => 'bool', + ), + 'ob_get_clean' => + array ( + 0 => 'false|string', + ), + 'ob_get_contents' => + array ( + 0 => 'false|string', + ), + 'ob_get_flush' => + array ( + 0 => 'false|string', + ), + 'ob_get_length' => + array ( + 0 => 'false|int', + ), + 'ob_get_level' => + array ( + 0 => 'int', + ), + 'ob_get_status' => + array ( + 0 => 'array', + 'full_status=' => 'bool', + ), + 'ob_gzhandler' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'flags' => 'int', + ), + 'ob_iconv_handler' => + array ( + 0 => 'string', + 'contents' => 'string', + 'status' => 'int', + ), + 'ob_implicit_flush' => + array ( + 0 => 'void', + 'enable=' => 'int', + ), + 'ob_inflatehandler' => + array ( + 0 => 'string', + 'data' => 'string', + 'mode' => 'int', + ), + 'ob_list_handlers' => + array ( + 0 => 'list', + ), + 'ob_start' => + array ( + 0 => 'bool', + 'callback=' => 'array|callable|null|string', + 'chunk_size=' => 'int', + 'flags=' => 'int', + ), + 'ob_tidyhandler' => + array ( + 0 => 'string', + 'input' => 'string', + 'mode=' => 'int', + ), + 'oci_bind_array_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'param' => 'string', + '&rw_var' => 'array', + 'max_array_length' => 'int', + 'max_item_length=' => 'int', + 'type=' => 'int', + ), + 'oci_bind_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'param' => 'string', + '&rw_var' => 'mixed', + 'max_length=' => 'int', + 'type=' => 'int', + ), + 'oci_cancel' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_client_version' => + array ( + 0 => 'string', + ), + 'oci_close' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'oci_collection_append' => + array ( + 0 => 'bool', + 'collection' => 'string', + ), + 'oci_collection_assign' => + array ( + 0 => 'bool', + 'to' => 'object', + ), + 'oci_collection_element_assign' => + array ( + 0 => 'bool', + 'collection' => 'int', + 'index' => 'string', + ), + 'oci_collection_element_get' => + array ( + 0 => 'string', + 'collection' => 'int', + ), + 'oci_collection_max' => + array ( + 0 => 'int', + ), + 'oci_collection_size' => + array ( + 0 => 'int', + ), + 'oci_collection_trim' => + array ( + 0 => 'bool', + 'collection' => 'int', + ), + 'oci_commit' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'oci_connect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_define_by_name' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'column' => 'string', + '&w_var' => 'mixed', + 'type=' => 'int', + ), + 'oci_error' => + array ( + 0 => 'array|false', + 'connection_or_statement=' => 'resource', + ), + 'oci_execute' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'mode=' => 'int', + ), + 'oci_fetch' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_fetch_all' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + '&w_output' => 'array', + 'offset=' => 'int', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'oci_fetch_array' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + 'mode=' => 'int', + ), + 'oci_fetch_assoc' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + ), + 'oci_fetch_object' => + array ( + 0 => 'false|object', + 'statement' => 'resource', + ), + 'oci_fetch_row' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + ), + 'oci_field_is_null' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_name' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_precision' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_scale' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_size' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_type' => + array ( + 0 => 'false|mixed', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_field_type_raw' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_free_collection' => + array ( + 0 => 'bool', + ), + 'oci_free_cursor' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_free_descriptor' => + array ( + 0 => 'bool', + ), + 'oci_free_statement' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'oci_get_implicit' => + array ( + 0 => 'bool', + 'stmt' => 'mixed', + ), + 'oci_get_implicit_resultset' => + array ( + 0 => 'false|resource', + 'statement' => 'resource', + ), + 'oci_internal_debug' => + array ( + 0 => 'void', + 'onoff' => 'bool', + ), + 'oci_lob_append' => + array ( + 0 => 'bool', + 'to' => 'object', + ), + 'oci_lob_close' => + array ( + 0 => 'bool', + ), + 'oci_lob_copy' => + array ( + 0 => 'bool', + 'to' => 'OCILob', + 'from' => 'OCILob', + 'length=' => 'int', + ), + 'oci_lob_eof' => + array ( + 0 => 'bool', + ), + 'oci_lob_erase' => + array ( + 0 => 'int', + 'lob' => 'int', + 'offset' => 'int', + ), + 'oci_lob_export' => + array ( + 0 => 'bool', + 'lob' => 'string', + 'filename' => 'int', + 'offset' => 'int', + ), + 'oci_lob_flush' => + array ( + 0 => 'bool', + 'lob' => 'int', + ), + 'oci_lob_import' => + array ( + 0 => 'bool', + 'lob' => 'string', + ), + 'oci_lob_is_equal' => + array ( + 0 => 'bool', + 'lob1' => 'OCILob', + 'lob2' => 'OCILob', + ), + 'oci_lob_load' => + array ( + 0 => 'string', + ), + 'oci_lob_read' => + array ( + 0 => 'string', + 'lob' => 'int', + ), + 'oci_lob_rewind' => + array ( + 0 => 'bool', + ), + 'oci_lob_save' => + array ( + 0 => 'bool', + 'lob' => 'string', + 'data' => 'int', + ), + 'oci_lob_seek' => + array ( + 0 => 'bool', + 'lob' => 'int', + 'offset' => 'int', + ), + 'oci_lob_size' => + array ( + 0 => 'int', + ), + 'oci_lob_tell' => + array ( + 0 => 'int', + ), + 'oci_lob_truncate' => + array ( + 0 => 'bool', + 'lob' => 'int', + ), + 'oci_lob_write' => + array ( + 0 => 'int', + 'lob' => 'string', + 'data' => 'int', + ), + 'oci_lob_write_temporary' => + array ( + 0 => 'bool', + 'value' => 'string', + 'lob_type' => 'int', + ), + 'oci_new_collection' => + array ( + 0 => 'OCICollection|false', + 'connection' => 'resource', + 'type_name' => 'string', + 'schema=' => 'string', + ), + 'oci_new_connect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_new_cursor' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'oci_new_descriptor' => + array ( + 0 => 'OCILob|false', + 'connection' => 'resource', + 'type=' => 'int', + ), + 'oci_num_fields' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + ), + 'oci_num_rows' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + ), + 'oci_parse' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'sql' => 'string', + ), + 'oci_password_change' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'username' => 'string', + 'old_password' => 'string', + 'new_password' => 'string', + ), + 'oci_pconnect' => + array ( + 0 => 'false|resource', + 'username' => 'string', + 'password' => 'string', + 'connection_string=' => 'string', + 'encoding=' => 'string', + 'session_mode=' => 'int', + ), + 'oci_result' => + array ( + 0 => 'false|mixed', + 'statement' => 'resource', + 'column' => 'mixed', + ), + 'oci_rollback' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'oci_server_version' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + ), + 'oci_set_action' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'action' => 'string', + ), + 'oci_set_call_timeout' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'timeout' => 'int', + ), + 'oci_set_client_identifier' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'client_id' => 'string', + ), + 'oci_set_client_info' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'client_info' => 'string', + ), + 'oci_set_db_operation' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'action' => 'string', + ), + 'oci_set_edition' => + array ( + 0 => 'bool', + 'edition' => 'string', + ), + 'oci_set_module_name' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'name' => 'string', + ), + 'oci_set_prefetch' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'rows' => 'int', + ), + 'oci_statement_type' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + ), + 'ocifetchinto' => + array ( + 0 => 'bool|int', + 'statement' => 'resource', + '&w_result' => 'array', + 'mode=' => 'int', + ), + 'ocigetbufferinglob' => + array ( + 0 => 'bool', + ), + 'ocisetbufferinglob' => + array ( + 0 => 'bool', + 'lob' => 'bool', + ), + 'octdec' => + array ( + 0 => 'float|int', + 'octal_string' => 'string', + ), + 'odbc_autocommit' => + array ( + 0 => 'bool|int', + 'odbc' => 'resource', + 'enable=' => 'bool', + ), + 'odbc_binmode' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'mode' => 'int', + ), + 'odbc_close' => + array ( + 0 => 'void', + 'odbc' => 'resource', + ), + 'odbc_close_all' => + array ( + 0 => 'void', + ), + 'odbc_columnprivileges' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'column' => 'string', + ), + 'odbc_columns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'table=' => 'null|string', + 'column=' => 'null|string', + ), + 'odbc_commit' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + ), + 'odbc_connect' => + array ( + 0 => 'false|resource', + 'dsn' => 'string', + 'user' => 'string', + 'password' => 'string', + 'cursor_option=' => 'int', + ), + 'odbc_cursor' => + array ( + 0 => 'string', + 'statement' => 'resource', + ), + 'odbc_data_source' => + array ( + 0 => 'array|false', + 'odbc' => 'resource', + 'fetch_type' => 'int', + ), + 'odbc_do' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + 'flags=' => 'int', + ), + 'odbc_error' => + array ( + 0 => 'string', + 'odbc=' => 'resource', + ), + 'odbc_errormsg' => + array ( + 0 => 'string', + 'odbc=' => 'resource', + ), + 'odbc_exec' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'query' => 'string', + 'flags=' => 'int', + ), + 'odbc_execute' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'params=' => 'array', + ), + 'odbc_fetch_array' => + array ( + 0 => 'array|false', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'odbc_fetch_into' => + array ( + 0 => 'int', + 'statement' => 'resource', + '&w_array' => 'array', + 'row=' => 'int', + ), + 'odbc_fetch_object' => + array ( + 0 => 'false|stdClass', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'odbc_fetch_row' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'row=' => 'int', + ), + 'odbc_field_len' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_name' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_num' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'string', + ), + 'odbc_field_precision' => + array ( + 0 => 'int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_scale' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_field_type' => + array ( + 0 => 'false|string', + 'statement' => 'resource', + 'field' => 'int', + ), + 'odbc_foreignkeys' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'pk_catalog' => 'null|string', + 'pk_schema' => 'string', + 'pk_table' => 'string', + 'fk_catalog' => 'string', + 'fk_schema' => 'string', + 'fk_table' => 'string', + ), + 'odbc_free_result' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'odbc_gettypeinfo' => + array ( + 0 => 'resource', + 'odbc' => 'resource', + 'data_type=' => 'int', + ), + 'odbc_longreadlen' => + array ( + 0 => 'bool', + 'statement' => 'resource', + 'length' => 'int', + ), + 'odbc_next_result' => + array ( + 0 => 'bool', + 'statement' => 'resource', + ), + 'odbc_num_fields' => + array ( + 0 => 'int', + 'statement' => 'resource', + ), + 'odbc_num_rows' => + array ( + 0 => 'int', + 'statement' => 'resource', + ), + 'odbc_pconnect' => + array ( + 0 => 'false|resource', + 'dsn' => 'string', + 'user' => 'string', + 'password' => 'string', + 'cursor_option=' => 'int', + ), + 'odbc_prepare' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'query' => 'string', + ), + 'odbc_primarykeys' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + ), + 'odbc_procedurecolumns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'procedure=' => 'null|string', + 'column=' => 'null|string', + ), + 'odbc_procedures' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'null|string', + 'procedure=' => 'null|string', + ), + 'odbc_result' => + array ( + 0 => 'bool|null|string', + 'statement' => 'resource', + 'field' => 'int|string', + ), + 'odbc_result_all' => + array ( + 0 => 'false|int', + 'statement' => 'resource', + 'format=' => 'string', + ), + 'odbc_rollback' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + ), + 'odbc_setoption' => + array ( + 0 => 'bool', + 'odbc' => 'resource', + 'which' => 'int', + 'option' => 'int', + 'value' => 'int', + ), + 'odbc_specialcolumns' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'type' => 'int', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'scope' => 'int', + 'nullable' => 'int', + ), + 'odbc_statistics' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + 'unique' => 'int', + 'accuracy' => 'int', + ), + 'odbc_tableprivileges' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog' => 'null|string', + 'schema' => 'string', + 'table' => 'string', + ), + 'odbc_tables' => + array ( + 0 => 'false|resource', + 'odbc' => 'resource', + 'catalog=' => 'null|string', + 'schema=' => 'string', + 'table=' => 'string', + 'types=' => 'string', + ), + 'opcache_compile_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'opcache_get_configuration' => + array ( + 0 => 'array', + ), + 'opcache_get_status' => + array ( + 0 => 'array|false', + 'include_scripts=' => 'bool', + ), + 'opcache_invalidate' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'force=' => 'bool', + ), + 'opcache_is_script_cached' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'opcache_reset' => + array ( + 0 => 'bool', + ), + 'openal_buffer_create' => + array ( + 0 => 'resource', + ), + 'openal_buffer_data' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + 'format' => 'int', + 'data' => 'string', + 'freq' => 'int', + ), + 'openal_buffer_destroy' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + ), + 'openal_buffer_get' => + array ( + 0 => 'int', + 'buffer' => 'resource', + 'property' => 'int', + ), + 'openal_buffer_loadwav' => + array ( + 0 => 'bool', + 'buffer' => 'resource', + 'wavfile' => 'string', + ), + 'openal_context_create' => + array ( + 0 => 'resource', + 'device' => 'resource', + ), + 'openal_context_current' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_destroy' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_process' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_context_suspend' => + array ( + 0 => 'bool', + 'context' => 'resource', + ), + 'openal_device_close' => + array ( + 0 => 'bool', + 'device' => 'resource', + ), + 'openal_device_open' => + array ( + 0 => 'false|resource', + 'device_desc=' => 'string', + ), + 'openal_listener_get' => + array ( + 0 => 'mixed', + 'property' => 'int', + ), + 'openal_listener_set' => + array ( + 0 => 'bool', + 'property' => 'int', + 'setting' => 'mixed', + ), + 'openal_source_create' => + array ( + 0 => 'resource', + ), + 'openal_source_destroy' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_get' => + array ( + 0 => 'mixed', + 'source' => 'resource', + 'property' => 'int', + ), + 'openal_source_pause' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_play' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_rewind' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_source_set' => + array ( + 0 => 'bool', + 'source' => 'resource', + 'property' => 'int', + 'setting' => 'mixed', + ), + 'openal_source_stop' => + array ( + 0 => 'bool', + 'source' => 'resource', + ), + 'openal_stream' => + array ( + 0 => 'resource', + 'source' => 'resource', + 'format' => 'int', + 'rate' => 'int', + ), + 'opendir' => + array ( + 0 => 'false|resource', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'openlog' => + array ( + 0 => 'true', + 'prefix' => 'string', + 'flags' => 'int', + 'facility' => 'int', + ), + 'openssl_cipher_iv_length' => + array ( + 0 => 'false|int', + 'cipher_algo' => 'string', + ), + 'openssl_csr_export' => + array ( + 0 => 'bool', + 'csr' => 'resource|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_csr_export_to_file' => + array ( + 0 => 'bool', + 'csr' => 'resource|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_csr_get_public_key' => + array ( + 0 => 'false|resource', + 'csr' => 'resource|string', + 'short_names=' => 'bool', + ), + 'openssl_csr_get_subject' => + array ( + 0 => 'array|false', + 'csr' => 'resource|string', + 'short_names=' => 'bool', + ), + 'openssl_csr_new' => + array ( + 0 => 'false|resource', + 'distinguished_names' => 'array', + '&w_private_key' => 'resource', + 'options=' => 'array', + 'extra_attributes=' => 'array', + ), + 'openssl_csr_sign' => + array ( + 0 => 'false|resource', + 'csr' => 'resource|string', + 'ca_certificate' => 'null|resource|string', + 'private_key' => 'array|resource|string', + 'days' => 'int', + 'options=' => 'array', + 'serial=' => 'int', + ), + 'openssl_decrypt' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + 'tag=' => 'string', + 'aad=' => 'string', + ), + 'openssl_dh_compute_key' => + array ( + 0 => 'false|string', + 'public_key' => 'string', + 'private_key' => 'resource', + ), + 'openssl_digest' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'digest_algo' => 'string', + 'binary=' => 'bool', + ), + 'openssl_encrypt' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'cipher_algo' => 'string', + 'passphrase' => 'string', + 'options=' => 'int', + 'iv=' => 'string', + '&w_tag=' => 'string', + 'aad=' => 'string', + 'tag_length=' => 'int', + ), + 'openssl_error_string' => + array ( + 0 => 'false|string', + ), + 'openssl_free_key' => + array ( + 0 => 'void', + 'key' => 'resource', + ), + 'openssl_get_cert_locations' => + array ( + 0 => 'array', + ), + 'openssl_get_cipher_methods' => + array ( + 0 => 'array', + 'aliases=' => 'bool', + ), + 'openssl_get_md_methods' => + array ( + 0 => 'array', + 'aliases=' => 'bool', + ), + 'openssl_get_privatekey' => + array ( + 0 => 'false|resource', + 'private_key' => 'string', + 'passphrase=' => 'string', + ), + 'openssl_get_publickey' => + array ( + 0 => 'false|resource', + 'public_key' => 'resource|string', + ), + 'openssl_open' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_output' => 'string', + 'encrypted_key' => 'string', + 'private_key' => 'array|resource|string', + 'cipher_algo=' => 'string', + 'iv=' => 'string', + ), + 'openssl_pbkdf2' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'salt' => 'string', + 'key_length' => 'int', + 'iterations' => 'int', + 'digest_algo=' => 'string', + ), + 'openssl_pkcs12_export' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + '&w_output' => 'string', + 'private_key' => 'array|resource|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'openssl_pkcs12_export_to_file' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'output_filename' => 'string', + 'private_key' => 'array|resource|string', + 'passphrase' => 'string', + 'options=' => 'array', + ), + 'openssl_pkcs12_read' => + array ( + 0 => 'bool', + 'pkcs12' => 'string', + '&w_certificates' => 'array', + 'passphrase' => 'string', + ), + 'openssl_pkcs7_decrypt' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'resource|string', + 'private_key=' => 'array|resource|string', + ), + 'openssl_pkcs7_encrypt' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'array|resource|string', + 'headers' => 'array', + 'flags=' => 'int', + 'cipher_algo=' => 'int', + ), + 'openssl_pkcs7_read' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_certificates' => 'array', + ), + 'openssl_pkcs7_sign' => + array ( + 0 => 'bool', + 'input_filename' => 'string', + 'output_filename' => 'string', + 'certificate' => 'resource|string', + 'private_key' => 'array|resource|string', + 'headers' => 'array', + 'flags=' => 'int', + 'untrusted_certificates_filename=' => 'string', + ), + 'openssl_pkcs7_verify' => + array ( + 0 => 'bool|int', + 'input_filename' => 'string', + 'flags' => 'int', + 'signers_certificates_filename=' => 'string', + 'ca_info=' => 'array', + 'untrusted_certificates_filename=' => 'string', + 'content=' => 'string', + 'output_filename=' => 'string', + ), + 'openssl_pkey_export' => + array ( + 0 => 'bool', + 'key' => 'resource', + '&w_output' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array', + ), + 'openssl_pkey_export_to_file' => + array ( + 0 => 'bool', + 'key' => 'array|resource|string', + 'output_filename' => 'string', + 'passphrase=' => 'null|string', + 'options=' => 'array', + ), + 'openssl_pkey_free' => + array ( + 0 => 'void', + 'key' => 'resource', + ), + 'openssl_pkey_get_details' => + array ( + 0 => 'array|false', + 'key' => 'resource', + ), + 'openssl_pkey_get_private' => + array ( + 0 => 'false|resource', + 'private_key' => 'string', + 'passphrase=' => 'string', + ), + 'openssl_pkey_get_public' => + array ( + 0 => 'false|resource', + 'public_key' => 'resource|string', + ), + 'openssl_pkey_new' => + array ( + 0 => 'false|resource', + 'options=' => 'array', + ), + 'openssl_private_decrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'private_key' => 'array|resource|string', + 'padding=' => 'int', + ), + 'openssl_private_encrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'private_key' => 'array|resource|string', + 'padding=' => 'int', + ), + 'openssl_public_decrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_decrypted_data' => 'string', + 'public_key' => 'resource|string', + 'padding=' => 'int', + ), + 'openssl_public_encrypt' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_encrypted_data' => 'string', + 'public_key' => 'resource|string', + 'padding=' => 'int', + ), + 'openssl_random_pseudo_bytes' => + array ( + 0 => 'false|string', + 'length' => 'int', + '&w_strong_result=' => 'bool', + ), + 'openssl_seal' => + array ( + 0 => 'false|int', + 'data' => 'string', + '&w_sealed_data' => 'string', + '&w_encrypted_keys' => 'array', + 'public_key' => 'array', + 'cipher_algo=' => 'string', + '&rw_iv=' => 'string', + ), + 'openssl_sign' => + array ( + 0 => 'bool', + 'data' => 'string', + '&w_signature' => 'string', + 'private_key' => 'resource|string', + 'algorithm=' => 'int|string', + ), + 'openssl_spki_export' => + array ( + 0 => 'false|string', + 'spki' => 'string', + ), + 'openssl_spki_export_challenge' => + array ( + 0 => 'false|string', + 'spki' => 'string', + ), + 'openssl_spki_new' => + array ( + 0 => 'null|string', + 'private_key' => 'resource', + 'challenge' => 'string', + 'digest_algo=' => 'int', + ), + 'openssl_spki_verify' => + array ( + 0 => 'bool', + 'spki' => 'string', + ), + 'openssl_verify' => + array ( + 0 => '-1|0|1', + 'data' => 'string', + 'signature' => 'string', + 'public_key' => 'resource|string', + 'algorithm=' => 'int|string', + ), + 'openssl_x509_check_private_key' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'private_key' => 'array|resource|string', + ), + 'openssl_x509_checkpurpose' => + array ( + 0 => 'bool|int', + 'certificate' => 'resource|string', + 'purpose' => 'int', + 'ca_info=' => 'array', + 'untrusted_certificates_file=' => 'string', + ), + 'openssl_x509_export' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + '&w_output' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_x509_export_to_file' => + array ( + 0 => 'bool', + 'certificate' => 'resource|string', + 'output_filename' => 'string', + 'no_text=' => 'bool', + ), + 'openssl_x509_fingerprint' => + array ( + 0 => 'false|string', + 'certificate' => 'resource|string', + 'digest_algo=' => 'string', + 'binary=' => 'bool', + ), + 'openssl_x509_free' => + array ( + 0 => 'void', + 'certificate' => 'resource', + ), + 'openssl_x509_parse' => + array ( + 0 => 'array|false', + 'certificate' => 'resource|string', + 'short_names=' => 'bool', + ), + 'openssl_x509_read' => + array ( + 0 => 'false|resource', + 'certificate' => 'resource|string', + ), + 'ord' => + array ( + 0 => 'int<0, 255>', + 'character' => 'string', + ), + 'output_add_rewrite_var' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'string', + ), + 'output_cache_disable' => + array ( + 0 => 'void', + ), + 'output_cache_disable_compression' => + array ( + 0 => 'void', + ), + 'output_cache_exists' => + array ( + 0 => 'bool', + 'key' => 'string', + 'lifetime' => 'int', + ), + 'output_cache_fetch' => + array ( + 0 => 'string', + 'key' => 'string', + 'function' => 'mixed', + 'lifetime' => 'int', + ), + 'output_cache_get' => + array ( + 0 => 'false|mixed', + 'key' => 'string', + 'lifetime' => 'int', + ), + 'output_cache_output' => + array ( + 0 => 'string', + 'key' => 'string', + 'function' => 'mixed', + 'lifetime' => 'int', + ), + 'output_cache_put' => + array ( + 0 => 'bool', + 'key' => 'string', + 'data' => 'mixed', + ), + 'output_cache_remove' => + array ( + 0 => 'bool', + 'filename' => 'mixed', + ), + 'output_cache_remove_key' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'output_cache_remove_url' => + array ( + 0 => 'bool', + 'url' => 'string', + ), + 'output_cache_stop' => + array ( + 0 => 'void', + ), + 'output_reset_rewrite_vars' => + array ( + 0 => 'bool', + ), + 'outputformatObj::getOption' => + array ( + 0 => 'string', + 'property_name' => 'string', + ), + 'outputformatObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'outputformatObj::setOption' => + array ( + 0 => 'void', + 'property_name' => 'string', + 'new_value' => 'string', + ), + 'outputformatObj::validate' => + array ( + 0 => 'int', + ), + 'overload' => + array ( + 0 => 'mixed', + 'class_name' => 'string', + ), + 'override_function' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'function_args' => 'string', + 'function_code' => 'string', + ), + 'pack' => + array ( + 0 => 'false|string', + 'format' => 'string', + '...values=' => 'mixed', + ), + 'parallel\\Future::done' => + array ( + 0 => 'bool', + ), + 'parallel\\Future::select' => + array ( + 0 => 'mixed', + '&resolving' => 'array', + '&w_resolved' => 'array', + '&w_errored' => 'array', + '&w_timedout=' => 'array', + 'timeout=' => 'int', + ), + 'parallel\\Future::value' => + array ( + 0 => 'mixed', + 'timeout=' => 'int', + ), + 'parallel\\Runtime::__construct' => + array ( + 0 => 'void', + 'arg' => 'array|string', + ), + 'parallel\\Runtime::__construct\'1' => + array ( + 0 => 'void', + 'bootstrap' => 'string', + 'configuration' => 'array', + ), + 'parallel\\Runtime::close' => + array ( + 0 => 'void', + ), + 'parallel\\Runtime::kill' => + array ( + 0 => 'void', + ), + 'parallel\\Runtime::run' => + array ( + 0 => 'null|parallel\\Future', + 'closure' => 'Closure', + 'args=' => 'array', + ), + 'parle\\rlexer::insertMacro' => + array ( + 0 => 'void', + 'name' => 'string', + 'regex' => 'string', + ), + 'parse_ini_file' => + array ( + 0 => 'array|false', + 'filename' => 'string', + 'process_sections=' => 'bool', + 'scanner_mode=' => 'int', + ), + 'parse_ini_string' => + array ( + 0 => 'array|false', + 'ini_string' => 'string', + 'process_sections=' => 'bool', + 'scanner_mode=' => 'int', + ), + 'parse_str' => + array ( + 0 => 'void', + 'string' => 'string', + '&w_result=' => 'array', + ), + 'parse_url' => + array ( + 0 => 'array|false|int|null|string', + 'url' => 'string', + 'component=' => 'int', + ), + 'parsekit_compile_file' => + array ( + 0 => 'array', + 'filename' => 'string', + 'errors=' => 'array', + 'options=' => 'int', + ), + 'parsekit_compile_string' => + array ( + 0 => 'array', + 'phpcode' => 'string', + 'errors=' => 'array', + 'options=' => 'int', + ), + 'parsekit_func_arginfo' => + array ( + 0 => 'array', + 'function' => 'mixed', + ), + 'passthru' => + array ( + 0 => 'void', + 'command' => 'string', + '&w_result_code=' => 'int', + ), + 'password_get_info' => + array ( + 0 => 'array', + 'hash' => 'string', + ), + 'password_hash' => + array ( + 0 => 'false|string', + 'password' => 'string', + 'algo' => 'int', + 'options=' => 'array', + ), + 'password_make_salt' => + array ( + 0 => 'bool', + 'password' => 'string', + 'hash' => 'string', + ), + 'password_needs_rehash' => + array ( + 0 => 'bool', + 'hash' => 'string', + 'algo' => 'int', + 'options=' => 'array', + ), + 'password_verify' => + array ( + 0 => 'bool', + 'password' => 'string', + 'hash' => 'string', + ), + 'pathinfo' => + array ( + 0 => 'array|string', + 'path' => 'string', + 'flags=' => 'int', + ), + 'pclose' => + array ( + 0 => 'int', + 'handle' => 'resource', + ), + 'pcnlt_sigwaitinfo' => + array ( + 0 => 'int', + 'set' => 'array', + '&w_siginfo' => 'array', + ), + 'pcntl_alarm' => + array ( + 0 => 'int', + 'seconds' => 'int', + ), + 'pcntl_errno' => + array ( + 0 => 'int', + ), + 'pcntl_exec' => + array ( + 0 => 'false|null', + 'path' => 'string', + 'args=' => 'array', + 'env_vars=' => 'array', + ), + 'pcntl_fork' => + array ( + 0 => 'int', + ), + 'pcntl_get_last_error' => + array ( + 0 => 'int', + ), + 'pcntl_getpriority' => + array ( + 0 => 'int', + 'process_id=' => 'int', + 'mode=' => 'int', + ), + 'pcntl_setpriority' => + array ( + 0 => 'bool', + 'priority' => 'int', + 'process_id=' => 'int', + 'mode=' => 'int', + ), + 'pcntl_signal' => + array ( + 0 => 'bool', + 'signal' => 'int', + 'handler' => 'callable():void|callable(int):void|callable(int, array):void|int', + 'restart_syscalls=' => 'bool', + ), + 'pcntl_signal_dispatch' => + array ( + 0 => 'bool', + ), + 'pcntl_sigprocmask' => + array ( + 0 => 'bool', + 'mode' => 'int', + 'signals' => 'array', + '&w_old_signals=' => 'array', + ), + 'pcntl_sigtimedwait' => + array ( + 0 => 'int', + 'signals' => 'array', + '&w_info=' => 'array', + 'seconds=' => 'int', + 'nanoseconds=' => 'int', + ), + 'pcntl_sigwaitinfo' => + array ( + 0 => 'int', + 'signals' => 'array', + '&w_info=' => 'array', + ), + 'pcntl_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'pcntl_wait' => + array ( + 0 => 'int', + '&w_status' => 'int', + 'flags=' => 'int', + '&w_resource_usage=' => 'array', + ), + 'pcntl_waitpid' => + array ( + 0 => 'int', + 'process_id' => 'int', + '&w_status' => 'int', + 'flags=' => 'int', + '&w_resource_usage=' => 'array', + ), + 'pcntl_wexitstatus' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'pcntl_wifcontinued' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifexited' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifsignaled' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wifstopped' => + array ( + 0 => 'bool', + 'status' => 'int', + ), + 'pcntl_wstopsig' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'pcntl_wtermsig' => + array ( + 0 => 'int', + 'status' => 'int', + ), + 'pdo_drivers' => + array ( + 0 => 'array', + ), + 'pfsockopen' => + array ( + 0 => 'false|resource', + 'hostname' => 'string', + 'port=' => 'int', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + ), + 'pg_affected_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'pg_cancel_query' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'pg_client_encoding' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_close' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'pg_connect' => + array ( + 0 => 'false|resource', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'pg_connect_poll' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'pg_connection_busy' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'pg_connection_reset' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'pg_connection_status' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'pg_consume_input' => + array ( + 0 => 'bool', + 'connection' => 'resource', + ), + 'pg_convert' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'pg_copy_from' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'table_name' => 'string', + 'rows' => 'array', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'pg_copy_to' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'separator=' => 'string', + 'null_as=' => 'string', + ), + 'pg_dbname' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_delete' => + array ( + 0 => 'bool|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'pg_end_copy' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'pg_escape_bytea' => + array ( + 0 => 'string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'pg_escape_bytea\'1' => + array ( + 0 => 'string', + 'connection' => 'string', + ), + 'pg_escape_identifier' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'pg_escape_identifier\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_escape_literal' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'pg_escape_literal\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_escape_string' => + array ( + 0 => 'string', + 'connection' => 'resource', + 'string' => 'string', + ), + 'pg_escape_string\'1' => + array ( + 0 => 'string', + 'connection' => 'string', + ), + 'pg_exec' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + ), + 'pg_exec\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + ), + 'pg_execute' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'pg_execute\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'statement_name' => 'array', + ), + 'pg_fetch_all' => + array ( + 0 => 'array>', + 'result' => 'resource', + ), + 'pg_fetch_all_columns' => + array ( + 0 => 'array', + 'result' => 'resource', + 'field=' => 'int', + ), + 'pg_fetch_array' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'pg_fetch_assoc' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + ), + 'pg_fetch_object' => + array ( + 0 => 'false|object', + 'result' => 'resource', + 'row=' => 'int|null', + 'class=' => 'string', + 'constructor_args=' => 'array', + ), + 'pg_fetch_result' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'pg_fetch_result\'1' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'row' => 'int|null', + 'field' => 'int|string', + ), + 'pg_fetch_row' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'row=' => 'int|null', + 'mode=' => 'int', + ), + 'pg_field_is_null' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'pg_field_is_null\'1' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int', + 'field' => 'int|string', + ), + 'pg_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field' => 'int', + ), + 'pg_field_num' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field' => 'string', + ), + 'pg_field_prtlen' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int|string', + ), + 'pg_field_prtlen\'1' => + array ( + 0 => 'false|int', + 'result' => 'resource', + 'row' => 'int', + 'field' => 'int|string', + ), + 'pg_field_size' => + array ( + 0 => 'int', + 'result' => 'resource', + 'field' => 'int', + ), + 'pg_field_table' => + array ( + 0 => 'false|int|string', + 'result' => 'resource', + 'field' => 'int', + 'oid_only=' => 'bool', + ), + 'pg_field_type' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field' => 'int', + ), + 'pg_field_type_oid' => + array ( + 0 => 'int|string', + 'result' => 'resource', + 'field' => 'int', + ), + 'pg_flush' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + ), + 'pg_free_result' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'pg_get_notify' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'mode=' => 'int', + ), + 'pg_get_pid' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'pg_get_result' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'pg_host' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_insert' => + array ( + 0 => 'false|resource|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'flags=' => 'int', + ), + 'pg_last_error' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_last_notice' => + array ( + 0 => 'array|bool|string', + 'connection' => 'resource', + 'mode=' => 'int', + ), + 'pg_last_oid' => + array ( + 0 => 'false|int|string', + 'result' => 'resource', + ), + 'pg_lo_close' => + array ( + 0 => 'bool', + 'lob' => 'resource', + ), + 'pg_lo_create' => + array ( + 0 => 'false|int|string', + 'connection=' => 'resource', + 'oid=' => 'int|string', + ), + 'pg_lo_export' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'oid' => 'int|string', + 'filename' => 'string', + ), + 'pg_lo_export\'1' => + array ( + 0 => 'bool', + 'connection' => 'int|string', + 'oid' => 'string', + ), + 'pg_lo_import' => + array ( + 0 => 'false|int|string', + 'connection' => 'resource', + 'filename' => 'string', + 'oid' => 'int|string', + ), + 'pg_lo_import\'1' => + array ( + 0 => 'false|int|string', + 'connection' => 'string', + 'filename' => 'int|string', + ), + 'pg_lo_open' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'oid' => 'int|string', + 'mode' => 'string', + ), + 'pg_lo_open\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'int|string', + 'oid' => 'string', + ), + 'pg_lo_read' => + array ( + 0 => 'false|string', + 'lob' => 'resource', + 'length=' => 'int', + ), + 'pg_lo_read_all' => + array ( + 0 => 'int', + 'lob' => 'resource', + ), + 'pg_lo_seek' => + array ( + 0 => 'bool', + 'lob' => 'resource', + 'offset' => 'int', + 'whence=' => 'int', + ), + 'pg_lo_tell' => + array ( + 0 => 'int', + 'lob' => 'resource', + ), + 'pg_lo_truncate' => + array ( + 0 => 'bool', + 'lob' => 'resource', + 'size' => 'int', + ), + 'pg_lo_unlink' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'oid' => 'int|string', + ), + 'pg_lo_unlink\'1' => + array ( + 0 => 'bool', + 'connection' => 'int|string', + ), + 'pg_lo_write' => + array ( + 0 => 'false|int', + 'lob' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'pg_meta_data' => + array ( + 0 => 'array|false', + 'connection' => 'resource', + 'table_name' => 'string', + 'extended=' => 'bool', + ), + 'pg_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'pg_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'pg_options' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_parameter_status' => + array ( + 0 => 'false|string', + 'connection' => 'resource', + 'name' => 'string', + ), + 'pg_parameter_status\'1' => + array ( + 0 => 'false|string', + 'connection' => 'string', + ), + 'pg_pconnect' => + array ( + 0 => 'false|resource', + 'connection_string' => 'string', + 'flags=' => 'int', + ), + 'pg_ping' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'pg_port' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_prepare' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'pg_prepare\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'statement_name' => 'string', + ), + 'pg_put_line' => + array ( + 0 => 'bool', + 'connection' => 'resource', + 'data' => 'string', + ), + 'pg_put_line\'1' => + array ( + 0 => 'bool', + 'connection' => 'string', + ), + 'pg_query' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + ), + 'pg_query\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + ), + 'pg_query_params' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + 'query' => 'string', + 'params' => 'array', + ), + 'pg_query_params\'1' => + array ( + 0 => 'false|resource', + 'connection' => 'string', + 'query' => 'array', + ), + 'pg_result_error' => + array ( + 0 => 'false|string', + 'result' => 'resource', + ), + 'pg_result_error_field' => + array ( + 0 => 'false|null|string', + 'result' => 'resource', + 'field_code' => 'int', + ), + 'pg_result_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'row' => 'int', + ), + 'pg_result_status' => + array ( + 0 => 'int|string', + 'result' => 'resource', + 'mode=' => 'int', + ), + 'pg_select' => + array ( + 0 => 'array|false|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'pg_send_execute' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'statement_name' => 'string', + 'params' => 'array', + ), + 'pg_send_prepare' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'statement_name' => 'string', + 'query' => 'string', + ), + 'pg_send_query' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'query' => 'string', + ), + 'pg_send_query_params' => + array ( + 0 => 'bool|int', + 'connection' => 'resource', + 'query' => 'string', + 'params' => 'array', + ), + 'pg_set_client_encoding' => + array ( + 0 => 'int', + 'connection' => 'resource', + 'encoding' => 'string', + ), + 'pg_set_client_encoding\'1' => + array ( + 0 => 'int', + 'connection' => 'string', + ), + 'pg_set_error_verbosity' => + array ( + 0 => 'false|int', + 'connection' => 'resource', + 'verbosity' => 'int', + ), + 'pg_set_error_verbosity\'1' => + array ( + 0 => 'false|int', + 'connection' => 'int', + ), + 'pg_socket' => + array ( + 0 => 'false|resource', + 'connection' => 'resource', + ), + 'pg_trace' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mode=' => 'string', + 'connection=' => 'resource', + ), + 'pg_transaction_status' => + array ( + 0 => 'int', + 'connection' => 'resource', + ), + 'pg_tty' => + array ( + 0 => 'string', + 'connection=' => 'resource', + ), + 'pg_unescape_bytea' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'pg_untrace' => + array ( + 0 => 'bool', + 'connection=' => 'resource', + ), + 'pg_update' => + array ( + 0 => 'bool|string', + 'connection' => 'resource', + 'table_name' => 'string', + 'values' => 'array', + 'conditions' => 'array', + 'flags=' => 'int', + ), + 'pg_version' => + array ( + 0 => 'array', + 'connection=' => 'resource', + ), + 'phdfs::__construct' => + array ( + 0 => 'void', + 'ip' => 'string', + 'port' => 'string', + ), + 'phdfs::__destruct' => + array ( + 0 => 'void', + ), + 'phdfs::connect' => + array ( + 0 => 'bool', + ), + 'phdfs::copy' => + array ( + 0 => 'bool', + 'source_file' => 'string', + 'destination_file' => 'string', + ), + 'phdfs::create_directory' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::delete' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::disconnect' => + array ( + 0 => 'bool', + ), + 'phdfs::exists' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'phdfs::file_info' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'phdfs::list_directory' => + array ( + 0 => 'array', + 'path' => 'string', + ), + 'phdfs::read' => + array ( + 0 => 'string', + 'path' => 'string', + 'length=' => 'string', + ), + 'phdfs::rename' => + array ( + 0 => 'bool', + 'old_path' => 'string', + 'new_path' => 'string', + ), + 'phdfs::tell' => + array ( + 0 => 'int', + 'path' => 'string', + ), + 'phdfs::write' => + array ( + 0 => 'bool', + 'path' => 'string', + 'buffer' => 'string', + 'mode=' => 'string', + ), + 'php_check_syntax' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'error_message=' => 'string', + ), + 'php_ini_loaded_file' => + array ( + 0 => 'false|string', + ), + 'php_ini_scanned_files' => + array ( + 0 => 'false|string', + ), + 'php_logo_guid' => + array ( + 0 => 'string', + ), + 'php_sapi_name' => + array ( + 0 => 'string', + ), + 'php_strip_whitespace' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'php_uname' => + array ( + 0 => 'string', + 'mode=' => 'string', + ), + 'php_user_filter::filter' => + array ( + 0 => 'int', + 'in' => 'resource', + 'out' => 'resource', + '&rw_consumed' => 'int', + 'closing' => 'bool', + ), + 'php_user_filter::onClose' => + array ( + 0 => 'void', + ), + 'php_user_filter::onCreate' => + array ( + 0 => 'bool', + ), + 'phpcredits' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'phpdbg_break_file' => + array ( + 0 => 'void', + 'file' => 'string', + 'line' => 'int', + ), + 'phpdbg_break_function' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'phpdbg_break_method' => + array ( + 0 => 'void', + 'class' => 'string', + 'method' => 'string', + ), + 'phpdbg_break_next' => + array ( + 0 => 'void', + ), + 'phpdbg_clear' => + array ( + 0 => 'void', + ), + 'phpdbg_color' => + array ( + 0 => 'void', + 'element' => 'int', + 'color' => 'string', + ), + 'phpdbg_end_oplog' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'phpdbg_exec' => + array ( + 0 => 'mixed', + 'context=' => 'string', + ), + 'phpdbg_get_executable' => + array ( + 0 => 'array', + 'options=' => 'array', + ), + 'phpdbg_prompt' => + array ( + 0 => 'void', + 'string' => 'string', + ), + 'phpdbg_start_oplog' => + array ( + 0 => 'void', + ), + 'phpinfo' => + array ( + 0 => 'true', + 'flags=' => 'int', + ), + 'phpversion' => + array ( + 0 => 'false|string', + 'extension=' => 'string', + ), + 'pht\\AtomicInteger::__construct' => + array ( + 0 => 'void', + 'value=' => 'int', + ), + 'pht\\AtomicInteger::dec' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::get' => + array ( + 0 => 'int', + ), + 'pht\\AtomicInteger::inc' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::lock' => + array ( + 0 => 'void', + ), + 'pht\\AtomicInteger::set' => + array ( + 0 => 'void', + 'value' => 'int', + ), + 'pht\\AtomicInteger::unlock' => + array ( + 0 => 'void', + ), + 'pht\\HashTable::lock' => + array ( + 0 => 'void', + ), + 'pht\\HashTable::size' => + array ( + 0 => 'int', + ), + 'pht\\HashTable::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Queue::front' => + array ( + 0 => 'mixed', + ), + 'pht\\Queue::lock' => + array ( + 0 => 'void', + ), + 'pht\\Queue::pop' => + array ( + 0 => 'mixed', + ), + 'pht\\Queue::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Queue::size' => + array ( + 0 => 'int', + ), + 'pht\\Queue::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Runnable::run' => + array ( + 0 => 'void', + ), + 'pht\\Vector::__construct' => + array ( + 0 => 'void', + 'size=' => 'int', + 'value=' => 'mixed', + ), + 'pht\\Vector::deleteAt' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'pht\\Vector::insertAt' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'offset' => 'int', + ), + 'pht\\Vector::lock' => + array ( + 0 => 'void', + ), + 'pht\\Vector::pop' => + array ( + 0 => 'mixed', + ), + 'pht\\Vector::push' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Vector::resize' => + array ( + 0 => 'void', + 'size' => 'int', + 'value=' => 'mixed', + ), + 'pht\\Vector::shift' => + array ( + 0 => 'mixed', + ), + 'pht\\Vector::size' => + array ( + 0 => 'int', + ), + 'pht\\Vector::unlock' => + array ( + 0 => 'void', + ), + 'pht\\Vector::unshift' => + array ( + 0 => 'void', + 'value' => 'mixed', + ), + 'pht\\Vector::updateAt' => + array ( + 0 => 'void', + 'value' => 'mixed', + 'offset' => 'int', + ), + 'pht\\thread::addClassTask' => + array ( + 0 => 'void', + 'className' => 'string', + '...ctorArgs=' => 'mixed', + ), + 'pht\\thread::addFileTask' => + array ( + 0 => 'void', + 'fileName' => 'string', + '...globals=' => 'mixed', + ), + 'pht\\thread::addFunctionTask' => + array ( + 0 => 'void', + 'func' => 'callable', + '...funcArgs=' => 'mixed', + ), + 'pht\\thread::join' => + array ( + 0 => 'void', + ), + 'pht\\thread::start' => + array ( + 0 => 'void', + ), + 'pht\\thread::taskCount' => + array ( + 0 => 'int', + ), + 'pht\\threaded::lock' => + array ( + 0 => 'void', + ), + 'pht\\threaded::unlock' => + array ( + 0 => 'void', + ), + 'pi' => + array ( + 0 => 'float', + ), + 'png2wbmp' => + array ( + 0 => 'bool', + 'pngname' => 'string', + 'wbmpname' => 'string', + 'dest_height' => 'int', + 'dest_width' => 'int', + 'threshold' => 'int', + ), + 'pointObj::__construct' => + array ( + 0 => 'void', + ), + 'pointObj::distanceToLine' => + array ( + 0 => 'float', + 'p1' => 'pointObj', + 'p2' => 'pointObj', + ), + 'pointObj::distanceToPoint' => + array ( + 0 => 'float', + 'poPoint' => 'pointObj', + ), + 'pointObj::distanceToShape' => + array ( + 0 => 'float', + 'shape' => 'shapeObj', + ), + 'pointObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + 'class_index' => 'int', + 'text' => 'string', + ), + 'pointObj::ms_newPointObj' => + array ( + 0 => 'pointObj', + ), + 'pointObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'pointObj::setXY' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'm' => 'float', + ), + 'pointObj::setXYZ' => + array ( + 0 => 'int', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + 'm' => 'float', + ), + 'popen' => + array ( + 0 => 'false|resource', + 'command' => 'string', + 'mode' => 'string', + ), + 'pos' => + array ( + 0 => 'mixed', + 'array' => 'array', + ), + 'posix_access' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'posix_ctermid' => + array ( + 0 => 'false|string', + ), + 'posix_errno' => + array ( + 0 => 'int', + ), + 'posix_get_last_error' => + array ( + 0 => 'int', + ), + 'posix_getcwd' => + array ( + 0 => 'false|string', + ), + 'posix_getegid' => + array ( + 0 => 'int', + ), + 'posix_geteuid' => + array ( + 0 => 'int', + ), + 'posix_getgid' => + array ( + 0 => 'int', + ), + 'posix_getgrgid' => + array ( + 0 => 'array{gid: int, members: list, name: string, passwd: string}|false', + 'group_id' => 'int', + ), + 'posix_getgrnam' => + array ( + 0 => 'array{gid: int, members: list, name: string, passwd: string}|false', + 'name' => 'string', + ), + 'posix_getgroups' => + array ( + 0 => 'false|list', + ), + 'posix_getlogin' => + array ( + 0 => 'false|string', + ), + 'posix_getpgid' => + array ( + 0 => 'false|int', + 'process_id' => 'int', + ), + 'posix_getpgrp' => + array ( + 0 => 'int', + ), + 'posix_getpid' => + array ( + 0 => 'int', + ), + 'posix_getppid' => + array ( + 0 => 'int', + ), + 'posix_getpwnam' => + array ( + 0 => 'array{dir: string, gecos: string, gid: int, name: string, passwd: string, shell: string, uid: int}|false', + 'username' => 'string', + ), + 'posix_getpwuid' => + array ( + 0 => 'array{dir: string, gecos: string, gid: int, name: string, passwd: string, shell: string, uid: int}|false', + 'user_id' => 'int', + ), + 'posix_getrlimit' => + array ( + 0 => 'array{\'hard core\': string, \'hard cpu\': string, \'hard data\': string, \'hard filesize\': string, \'hard maxproc\': int, \'hard memlock\': int, \'hard openfiles\': int, \'hard rss\': string, \'hard stack\': string, \'hard totalmem\': string, \'soft core\': string, \'soft cpu\': string, \'soft data\': string, \'soft filesize\': string, \'soft maxproc\': int, \'soft memlock\': int, \'soft openfiles\': int, \'soft rss\': string, \'soft stack\': int, \'soft totalmem\': string}|false', + ), + 'posix_getsid' => + array ( + 0 => 'false|int', + 'process_id' => 'int', + ), + 'posix_getuid' => + array ( + 0 => 'int', + ), + 'posix_initgroups' => + array ( + 0 => 'bool', + 'username' => 'string', + 'group_id' => 'int', + ), + 'posix_isatty' => + array ( + 0 => 'bool', + 'file_descriptor' => 'int|resource', + ), + 'posix_kill' => + array ( + 0 => 'bool', + 'process_id' => 'int', + 'signal' => 'int', + ), + 'posix_mkfifo' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'permissions' => 'int', + ), + 'posix_mknod' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags' => 'int', + 'major=' => 'int', + 'minor=' => 'int', + ), + 'posix_setegid' => + array ( + 0 => 'bool', + 'group_id' => 'int', + ), + 'posix_seteuid' => + array ( + 0 => 'bool', + 'user_id' => 'int', + ), + 'posix_setgid' => + array ( + 0 => 'bool', + 'group_id' => 'int', + ), + 'posix_setpgid' => + array ( + 0 => 'bool', + 'process_id' => 'int', + 'process_group_id' => 'int', + ), + 'posix_setrlimit' => + array ( + 0 => 'bool', + 'resource' => 'int', + 'soft_limit' => 'int', + 'hard_limit' => 'int', + ), + 'posix_setsid' => + array ( + 0 => 'int', + ), + 'posix_setuid' => + array ( + 0 => 'bool', + 'user_id' => 'int', + ), + 'posix_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'posix_times' => + array ( + 0 => 'array{cstime: int, cutime: int, stime: int, ticks: int, utime: int}|false', + ), + 'posix_ttyname' => + array ( + 0 => 'false|string', + 'file_descriptor' => 'int|resource', + ), + 'posix_uname' => + array ( + 0 => 'array{domainname: string, machine: string, nodename: string, release: string, sysname: string, version: string}|false', + ), + 'pow' => + array ( + 0 => 'float|int', + 'num' => 'float|int', + 'exponent' => 'float|int', + ), + 'preg_filter' => + array ( + 0 => 'array|null|string', + 'pattern' => 'array|string', + 'replacement' => 'array|string', + 'subject' => 'array|string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_grep' => + array ( + 0 => 'array|false', + 'pattern' => 'string', + 'array' => 'array', + 'flags=' => 'int', + ), + 'preg_last_error' => + array ( + 0 => 'int', + ), + 'preg_match' => + array ( + 0 => '0|1|false', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => '0', + 'offset=' => 'int', + ), + 'preg_match\'1' => + array ( + 0 => '0|1|false', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => 'int', + 'offset=' => 'int', + ), + 'preg_match_all' => + array ( + 0 => 'false|int<0, max>', + 'pattern' => 'string', + 'subject' => 'string', + '&w_matches=' => 'array', + 'flags=' => 'int', + 'offset=' => 'int', + ), + 'preg_quote' => + array ( + 0 => 'string', + 'str' => 'string', + 'delimiter=' => 'string', + ), + 'preg_replace' => + array ( + 0 => 'array|null|string', + 'pattern' => 'array|string', + 'replacement' => 'array|string', + 'subject' => 'array|string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_replace_callback' => + array ( + 0 => 'null|string', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_replace_callback\'1' => + array ( + 0 => 'array|null', + 'pattern' => 'array|string', + 'callback' => 'callable(array):string', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_replace_callback_array' => + array ( + 0 => 'null|string', + 'pattern' => 'array):string>', + 'subject' => 'string', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_replace_callback_array\'1' => + array ( + 0 => 'array|null', + 'pattern' => 'array):string>', + 'subject' => 'array', + 'limit=' => 'int', + '&w_count=' => 'int', + ), + 'preg_split' => + array ( + 0 => 'false|list', + 'pattern' => 'string', + 'subject' => 'string', + 'limit' => 'int', + 'flags=' => 'null', + ), + 'preg_split\'1' => + array ( + 0 => 'false|list|string>', + 'pattern' => 'string', + 'subject' => 'string', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'prev' => + array ( + 0 => 'mixed', + '&r_array' => 'array|object', + ), + 'print' => + array ( + 0 => 'int', + 'arg' => 'string', + ), + 'print_r' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'print_r\'1' => + array ( + 0 => 'true', + 'value' => 'mixed', + 'return=' => 'bool', + ), + 'printf' => + array ( + 0 => 'int<0, max>', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'proc_close' => + array ( + 0 => 'int', + 'process' => 'resource', + ), + 'proc_get_status' => + array ( + 0 => 'array{command: string, exitcode: int, pid: int, running: bool, signaled: bool, stopped: bool, stopsig: int, termsig: int}|false', + 'process' => 'resource', + ), + 'proc_nice' => + array ( + 0 => 'bool', + 'priority' => 'int', + ), + 'proc_open' => + array ( + 0 => 'false|resource', + 'command' => 'string', + 'descriptor_spec' => 'array', + '&pipes' => 'array', + 'cwd=' => 'null|string', + 'env_vars=' => 'array|null', + 'options=' => 'array|null', + ), + 'proc_terminate' => + array ( + 0 => 'bool', + 'process' => 'resource', + 'signal=' => 'int', + ), + 'projectionObj::__construct' => + array ( + 0 => 'void', + 'projectionString' => 'string', + ), + 'projectionObj::getUnits' => + array ( + 0 => 'int', + ), + 'projectionObj::ms_newProjectionObj' => + array ( + 0 => 'projectionObj', + 'projectionString' => 'string', + ), + 'property_exists' => + array ( + 0 => 'bool', + 'object_or_class' => 'object|string', + 'property' => 'string', + ), + 'ps_add_bookmark' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'text' => 'string', + 'parent=' => 'int', + 'open=' => 'int', + ), + 'ps_add_launchlink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + ), + 'ps_add_locallink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'page' => 'int', + 'dest' => 'string', + ), + 'ps_add_note' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'contents' => 'string', + 'title' => 'string', + 'icon' => 'string', + 'open' => 'int', + ), + 'ps_add_pdflink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'filename' => 'string', + 'page' => 'int', + 'dest' => 'string', + ), + 'ps_add_weblink' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'llx' => 'float', + 'lly' => 'float', + 'urx' => 'float', + 'ury' => 'float', + 'url' => 'string', + ), + 'ps_arc' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'ps_arcn' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + 'alpha' => 'float', + 'beta' => 'float', + ), + 'ps_begin_page' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_begin_pattern' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + 'xstep' => 'float', + 'ystep' => 'float', + 'painttype' => 'int', + ), + 'ps_begin_template' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_circle' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'radius' => 'float', + ), + 'ps_clip' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_close' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_close_image' => + array ( + 0 => 'void', + 'psdoc' => 'resource', + 'imageid' => 'int', + ), + 'ps_closepath' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_closepath_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_continue_text' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_curveto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'ps_delete' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_page' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_pattern' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_end_template' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_fill' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_fill_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_findfont' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'fontname' => 'string', + 'encoding' => 'string', + 'embed=' => 'bool', + ), + 'ps_get_buffer' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + ), + 'ps_get_parameter' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + 'name' => 'string', + 'modifier=' => 'float', + ), + 'ps_get_value' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'name' => 'string', + 'modifier=' => 'float', + ), + 'ps_hyphenate' => + array ( + 0 => 'array', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_include_file' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'file' => 'string', + ), + 'ps_lineto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_makespotcolor' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'name' => 'string', + 'reserved=' => 'int', + ), + 'ps_moveto' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_new' => + array ( + 0 => 'resource', + ), + 'ps_open_file' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'filename=' => 'string', + ), + 'ps_open_image' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'source' => 'string', + 'data' => 'string', + 'length' => 'int', + 'width' => 'int', + 'height' => 'int', + 'components' => 'int', + 'bpc' => 'int', + 'params' => 'string', + ), + 'ps_open_image_file' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'filename' => 'string', + 'stringparam=' => 'string', + 'intparam=' => 'int', + ), + 'ps_open_memory_image' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'gd' => 'int', + ), + 'ps_place_image' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'imageid' => 'int', + 'x' => 'float', + 'y' => 'float', + 'scale' => 'float', + ), + 'ps_rect' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + 'width' => 'float', + 'height' => 'float', + ), + 'ps_restore' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_rotate' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'rot' => 'float', + ), + 'ps_save' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_scale' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_set_border_color' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'red' => 'float', + 'green' => 'float', + 'blue' => 'float', + ), + 'ps_set_border_dash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'black' => 'float', + 'white' => 'float', + ), + 'ps_set_border_style' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'style' => 'string', + 'width' => 'float', + ), + 'ps_set_info' => + array ( + 0 => 'bool', + 'p' => 'resource', + 'key' => 'string', + 'value' => 'string', + ), + 'ps_set_parameter' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'ps_set_text_pos' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_set_value' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'name' => 'string', + 'value' => 'float', + ), + 'ps_setcolor' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'string', + 'colorspace' => 'string', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + ), + 'ps_setdash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'on' => 'float', + 'off' => 'float', + ), + 'ps_setflat' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'value' => 'float', + ), + 'ps_setfont' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'fontid' => 'int', + 'size' => 'float', + ), + 'ps_setgray' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'gray' => 'float', + ), + 'ps_setlinecap' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'int', + ), + 'ps_setlinejoin' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'type' => 'int', + ), + 'ps_setlinewidth' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'width' => 'float', + ), + 'ps_setmiterlimit' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'value' => 'float', + ), + 'ps_setoverprintmode' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'mode' => 'int', + ), + 'ps_setpolydash' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'arr' => 'float', + ), + 'ps_shading' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'type' => 'string', + 'x0' => 'float', + 'y0' => 'float', + 'x1' => 'float', + 'y1' => 'float', + 'c1' => 'float', + 'c2' => 'float', + 'c3' => 'float', + 'c4' => 'float', + 'optlist' => 'string', + ), + 'ps_shading_pattern' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'shadingid' => 'int', + 'optlist' => 'string', + ), + 'ps_shfill' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'shadingid' => 'int', + ), + 'ps_show' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + ), + 'ps_show2' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'length' => 'int', + ), + 'ps_show_boxed' => + array ( + 0 => 'int', + 'psdoc' => 'resource', + 'text' => 'string', + 'left' => 'float', + 'bottom' => 'float', + 'width' => 'float', + 'height' => 'float', + 'hmode' => 'string', + 'feature=' => 'string', + ), + 'ps_show_xy' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'x' => 'float', + 'y' => 'float', + ), + 'ps_show_xy2' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'text' => 'string', + 'length' => 'int', + 'xcoor' => 'float', + 'ycoor' => 'float', + ), + 'ps_string_geometry' => + array ( + 0 => 'array', + 'psdoc' => 'resource', + 'text' => 'string', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_stringwidth' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'text' => 'string', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_stroke' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + ), + 'ps_symbol' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'ord' => 'int', + ), + 'ps_symbol_name' => + array ( + 0 => 'string', + 'psdoc' => 'resource', + 'ord' => 'int', + 'fontid=' => 'int', + ), + 'ps_symbol_width' => + array ( + 0 => 'float', + 'psdoc' => 'resource', + 'ord' => 'int', + 'fontid=' => 'int', + 'size=' => 'float', + ), + 'ps_translate' => + array ( + 0 => 'bool', + 'psdoc' => 'resource', + 'x' => 'float', + 'y' => 'float', + ), + 'pspell_add_to_personal' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'pspell_add_to_session' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'pspell_check' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'pspell_clear_session' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + ), + 'pspell_config_create' => + array ( + 0 => 'int', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + ), + 'pspell_config_data_dir' => + array ( + 0 => 'bool', + 'config' => 'int', + 'directory' => 'string', + ), + 'pspell_config_dict_dir' => + array ( + 0 => 'bool', + 'config' => 'int', + 'directory' => 'string', + ), + 'pspell_config_ignore' => + array ( + 0 => 'bool', + 'config' => 'int', + 'min_length' => 'int', + ), + 'pspell_config_mode' => + array ( + 0 => 'bool', + 'config' => 'int', + 'mode' => 'int', + ), + 'pspell_config_personal' => + array ( + 0 => 'bool', + 'config' => 'int', + 'filename' => 'string', + ), + 'pspell_config_repl' => + array ( + 0 => 'bool', + 'config' => 'int', + 'filename' => 'string', + ), + 'pspell_config_runtogether' => + array ( + 0 => 'bool', + 'config' => 'int', + 'allow' => 'bool', + ), + 'pspell_config_save_repl' => + array ( + 0 => 'bool', + 'config' => 'int', + 'save' => 'bool', + ), + 'pspell_new' => + array ( + 0 => 'false|int', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'pspell_new_config' => + array ( + 0 => 'false|int', + 'config' => 'int', + ), + 'pspell_new_personal' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'language' => 'string', + 'spelling=' => 'string', + 'jargon=' => 'string', + 'encoding=' => 'string', + 'mode=' => 'int', + ), + 'pspell_save_wordlist' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + ), + 'pspell_store_replacement' => + array ( + 0 => 'bool', + 'dictionary' => 'int', + 'misspelled' => 'string', + 'correct' => 'string', + ), + 'pspell_suggest' => + array ( + 0 => 'array', + 'dictionary' => 'int', + 'word' => 'string', + ), + 'putenv' => + array ( + 0 => 'bool', + 'assignment' => 'string', + ), + 'px_close' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + ), + 'px_create_fp' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'file' => 'resource', + 'fielddesc' => 'array', + ), + 'px_date2string' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'value' => 'int', + 'format' => 'string', + ), + 'px_delete' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + ), + 'px_delete_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'num' => 'int', + ), + 'px_get_field' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'fieldno' => 'int', + ), + 'px_get_info' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + ), + 'px_get_parameter' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_get_record' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'num' => 'int', + 'mode=' => 'int', + ), + 'px_get_schema' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'mode=' => 'int', + ), + 'px_get_value' => + array ( + 0 => 'float', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_insert_record' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + 'data' => 'array', + ), + 'px_new' => + array ( + 0 => 'resource', + ), + 'px_numfields' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + ), + 'px_numrecords' => + array ( + 0 => 'int', + 'pxdoc' => 'resource', + ), + 'px_open_fp' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'file' => 'resource', + ), + 'px_put_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'record' => 'array', + 'recpos=' => 'int', + ), + 'px_retrieve_record' => + array ( + 0 => 'array', + 'pxdoc' => 'resource', + 'num' => 'int', + 'mode=' => 'int', + ), + 'px_set_blob_file' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'filename' => 'string', + ), + 'px_set_parameter' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'px_set_tablename' => + array ( + 0 => 'void', + 'pxdoc' => 'resource', + 'name' => 'string', + ), + 'px_set_targetencoding' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'encoding' => 'string', + ), + 'px_set_value' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'name' => 'string', + 'value' => 'float', + ), + 'px_timestamp2string' => + array ( + 0 => 'string', + 'pxdoc' => 'resource', + 'value' => 'float', + 'format' => 'string', + ), + 'px_update_record' => + array ( + 0 => 'bool', + 'pxdoc' => 'resource', + 'data' => 'array', + 'num' => 'int', + ), + 'qdom_error' => + array ( + 0 => 'string', + ), + 'qdom_tree' => + array ( + 0 => 'QDomDocument', + 'doc' => 'string', + ), + 'querymapObj::convertToString' => + array ( + 0 => 'string', + ), + 'querymapObj::free' => + array ( + 0 => 'void', + ), + 'querymapObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'querymapObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'quoted_printable_decode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'quoted_printable_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'quotemeta' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'rad2deg' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'radius_acct_open' => + array ( + 0 => 'false|resource', + ), + 'radius_add_server' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'hostname' => 'string', + 'port' => 'int', + 'secret' => 'string', + 'timeout' => 'int', + 'max_tries' => 'int', + ), + 'radius_auth_open' => + array ( + 0 => 'false|resource', + ), + 'radius_close' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + ), + 'radius_config' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'file' => 'string', + ), + 'radius_create_request' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + ), + 'radius_cvt_addr' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_cvt_int' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'radius_cvt_string' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_demangle' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'mangled' => 'string', + ), + 'radius_demangle_mppe_key' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'mangled' => 'string', + ), + 'radius_get_attr' => + array ( + 0 => 'mixed', + 'radius_handle' => 'resource', + ), + 'radius_get_tagged_attr_data' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'radius_get_tagged_attr_tag' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'radius_get_vendor_attr' => + array ( + 0 => 'array', + 'data' => 'string', + ), + 'radius_put_addr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'addr' => 'string', + ), + 'radius_put_attr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_int' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'int', + ), + 'radius_put_string' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_vendor_addr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'addr' => 'string', + ), + 'radius_put_vendor_attr' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_put_vendor_int' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'int', + ), + 'radius_put_vendor_string' => + array ( + 0 => 'bool', + 'radius_handle' => 'resource', + 'vendor' => 'int', + 'type' => 'int', + 'value' => 'string', + ), + 'radius_request_authenticator' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'radius_salt_encrypt_attr' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + 'data' => 'string', + ), + 'radius_send_request' => + array ( + 0 => 'false|int', + 'radius_handle' => 'resource', + ), + 'radius_server_secret' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'radius_strerror' => + array ( + 0 => 'string', + 'radius_handle' => 'resource', + ), + 'rand' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'rand\'1' => + array ( + 0 => 'int', + ), + 'random_bytes' => + array ( + 0 => 'non-empty-string', + 'length' => 'int<1, max>', + ), + 'random_int' => + array ( + 0 => 'int', + 'min' => 'int', + 'max' => 'int', + ), + 'range' => + array ( + 0 => 'non-empty-array', + 'start' => 'float|int|string', + 'end' => 'float|int|string', + 'step=' => 'float|int<1, max>', + ), + 'rar_allow_broken_set' => + array ( + 0 => 'bool', + 'rarfile' => 'RarArchive', + 'allow_broken' => 'bool', + ), + 'rar_broken_is' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_close' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_comment_get' => + array ( + 0 => 'string', + 'rarfile' => 'rararchive', + ), + 'rar_entry_get' => + array ( + 0 => 'RarEntry', + 'rarfile' => 'RarArchive', + 'entryname' => 'string', + ), + 'rar_list' => + array ( + 0 => 'RarArchive', + 'rarfile' => 'rararchive', + ), + 'rar_open' => + array ( + 0 => 'RarArchive', + 'filename' => 'string', + 'password=' => 'string', + 'volume_callback=' => 'callable', + ), + 'rar_solid_is' => + array ( + 0 => 'bool', + 'rarfile' => 'rararchive', + ), + 'rar_wrapper_cache_stats' => + array ( + 0 => 'string', + ), + 'rawurldecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'rawurlencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'read_exif_data' => + array ( + 0 => 'array', + 'filename' => 'string', + 'sections_needed=' => 'string', + 'sub_arrays=' => 'bool', + 'read_thumbnail=' => 'bool', + ), + 'readdir' => + array ( + 0 => 'false|string', + 'dir_handle=' => 'resource', + ), + 'readfile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'use_include_path=' => 'bool', + 'context=' => 'resource', + ), + 'readgzfile' => + array ( + 0 => 'false|int', + 'filename' => 'string', + 'use_include_path=' => 'int', + ), + 'readline' => + array ( + 0 => 'false|string', + 'prompt=' => 'null|string', + ), + 'readline_add_history' => + array ( + 0 => 'bool', + 'prompt' => 'string', + ), + 'readline_callback_handler_install' => + array ( + 0 => 'bool', + 'prompt' => 'string', + 'callback' => 'callable', + ), + 'readline_callback_handler_remove' => + array ( + 0 => 'bool', + ), + 'readline_callback_read_char' => + array ( + 0 => 'void', + ), + 'readline_clear_history' => + array ( + 0 => 'bool', + ), + 'readline_completion_function' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'readline_info' => + array ( + 0 => 'mixed', + 'var_name=' => 'string', + 'value=' => 'bool|int|string', + ), + 'readline_list_history' => + array ( + 0 => 'array', + ), + 'readline_on_new_line' => + array ( + 0 => 'void', + ), + 'readline_read_history' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'readline_redisplay' => + array ( + 0 => 'void', + ), + 'readline_write_history' => + array ( + 0 => 'bool', + 'filename=' => 'string', + ), + 'readlink' => + array ( + 0 => 'false|non-falsy-string', + 'path' => 'string', + ), + 'realpath' => + array ( + 0 => 'false|non-falsy-string', + 'path' => 'string', + ), + 'realpath_cache_get' => + array ( + 0 => 'array', + ), + 'realpath_cache_size' => + array ( + 0 => 'int', + ), + 'recode' => + array ( + 0 => 'string', + 'request' => 'string', + 'string' => 'string', + ), + 'recode_file' => + array ( + 0 => 'bool', + 'request' => 'string', + 'input' => 'resource', + 'output' => 'resource', + ), + 'recode_string' => + array ( + 0 => 'false|string', + 'request' => 'string', + 'string' => 'string', + ), + 'rectObj::__construct' => + array ( + 0 => 'void', + ), + 'rectObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + 'class_index' => 'int', + 'text' => 'string', + ), + 'rectObj::fit' => + array ( + 0 => 'float', + 'width' => 'int', + 'height' => 'int', + ), + 'rectObj::ms_newRectObj' => + array ( + 0 => 'rectObj', + ), + 'rectObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'rectObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'rectObj::setextent' => + array ( + 0 => 'void', + 'minx' => 'float', + 'miny' => 'float', + 'maxx' => 'float', + 'maxy' => 'float', + ), + 'register_event_handler' => + array ( + 0 => 'bool', + 'event_handler_func' => 'string', + 'handler_register_name' => 'string', + 'event_type_mask' => 'int', + ), + 'register_shutdown_function' => + array ( + 0 => 'void', + 'callback' => 'callable', + '...args=' => 'mixed', + ), + 'register_tick_function' => + array ( + 0 => 'bool', + 'callback' => 'callable():void', + '...args=' => 'mixed', + ), + 'rename' => + array ( + 0 => 'bool', + 'from' => 'string', + 'to' => 'string', + 'context=' => 'resource', + ), + 'rename_function' => + array ( + 0 => 'bool', + 'original_name' => 'string', + 'new_name' => 'string', + ), + 'reset' => + array ( + 0 => 'false|mixed', + '&r_array' => 'array|object', + ), + 'resourcebundle_count' => + array ( + 0 => 'int', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_create' => + array ( + 0 => 'ResourceBundle|null', + 'locale' => 'null|string', + 'bundle' => 'null|string', + 'fallback=' => 'bool', + ), + 'resourcebundle_get' => + array ( + 0 => 'mixed|null', + 'bundle' => 'ResourceBundle', + 'index' => 'int|string', + 'fallback=' => 'bool', + ), + 'resourcebundle_get_error_code' => + array ( + 0 => 'int', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_get_error_message' => + array ( + 0 => 'string', + 'bundle' => 'ResourceBundle', + ), + 'resourcebundle_locales' => + array ( + 0 => 'array', + 'bundle' => 'string', + ), + 'restore_error_handler' => + array ( + 0 => 'true', + ), + 'restore_exception_handler' => + array ( + 0 => 'true', + ), + 'restore_include_path' => + array ( + 0 => 'void', + ), + 'rewind' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'rewinddir' => + array ( + 0 => 'void', + 'dir_handle=' => 'resource', + ), + 'rmdir' => + array ( + 0 => 'bool', + 'directory' => 'string', + 'context=' => 'resource', + ), + 'round' => + array ( + 0 => 'float', + 'num' => 'float|int', + 'precision=' => 'int', + 'mode=' => 'int<0, max>', + ), + 'rpm_close' => + array ( + 0 => 'bool', + 'rpmr' => 'resource', + ), + 'rpm_get_tag' => + array ( + 0 => 'mixed', + 'rpmr' => 'resource', + 'tagnum' => 'int', + ), + 'rpm_is_valid' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'rpm_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + ), + 'rpm_version' => + array ( + 0 => 'string', + ), + 'rpmaddtag' => + array ( + 0 => 'bool', + 'tag' => 'int', + ), + 'rpmdbinfo' => + array ( + 0 => 'array', + 'nevr' => 'string', + 'full=' => 'bool', + ), + 'rpmdbsearch' => + array ( + 0 => 'array', + 'pattern' => 'string', + 'rpmtag=' => 'int', + 'rpmmire=' => 'int', + 'full=' => 'bool', + ), + 'rpminfo' => + array ( + 0 => 'array', + 'path' => 'string', + 'full=' => 'bool', + 'error=' => 'string', + ), + 'rpmvercmp' => + array ( + 0 => 'int', + 'evr1' => 'string', + 'evr2' => 'string', + ), + 'rrd_create' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_disconnect' => + array ( + 0 => 'void', + ), + 'rrd_error' => + array ( + 0 => 'string', + ), + 'rrd_fetch' => + array ( + 0 => 'array', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_first' => + array ( + 0 => 'false|int', + 'file' => 'string', + 'raaindex=' => 'int', + ), + 'rrd_graph' => + array ( + 0 => 'array|false', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_info' => + array ( + 0 => 'array|false', + 'filename' => 'string', + ), + 'rrd_last' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'rrd_lastupdate' => + array ( + 0 => 'array|false', + 'filename' => 'string', + ), + 'rrd_restore' => + array ( + 0 => 'bool', + 'xml_file' => 'string', + 'rrd_file' => 'string', + 'options=' => 'array', + ), + 'rrd_tune' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_update' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'options' => 'array', + ), + 'rrd_version' => + array ( + 0 => 'string', + ), + 'rrd_xport' => + array ( + 0 => 'array|false', + 'options' => 'array', + ), + 'rrdc_disconnect' => + array ( + 0 => 'void', + ), + 'rsort' => + array ( + 0 => 'bool', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'rtrim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'runkit7_constant_add' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'mixed', + 'new_visibility=' => 'int', + ), + 'runkit7_constant_redefine' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + 'value' => 'mixed', + 'new_visibility=' => 'int|null', + ), + 'runkit7_constant_remove' => + array ( + 0 => 'bool', + 'constant_name' => 'string', + ), + 'runkit7_function_add' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_doc_comment=' => 'null|string', + 'return_by_reference=' => 'bool|null', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_function_copy' => + array ( + 0 => 'bool', + 'source_name' => 'string', + 'target_name' => 'string', + ), + 'runkit7_function_redefine' => + array ( + 0 => 'bool', + 'function_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_doc_comment=' => 'null|string', + 'return_by_reference=' => 'bool|null', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_function_remove' => + array ( + 0 => 'bool', + 'function_name' => 'string', + ), + 'runkit7_function_rename' => + array ( + 0 => 'bool', + 'source_name' => 'string', + 'target_name' => 'string', + ), + 'runkit7_import' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int|null', + ), + 'runkit7_method_add' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_flags=' => 'int|null|string', + 'flags_or_doc_comment=' => 'int|null|string', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_method_copy' => + array ( + 0 => 'bool', + 'destination_class' => 'string', + 'destination_method' => 'string', + 'source_class' => 'string', + 'source_method=' => 'null|string', + ), + 'runkit7_method_redefine' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + 'argument_list_or_closure' => 'Closure|string', + 'code_or_flags=' => 'int|null|string', + 'flags_or_doc_comment=' => 'int|null|string', + 'doc_comment=' => 'null|string', + 'return_type=' => 'null|string', + 'is_strict=' => 'bool|null', + ), + 'runkit7_method_remove' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'method_name' => 'string', + ), + 'runkit7_method_rename' => + array ( + 0 => 'bool', + 'class_name' => 'string', + 'source_method_name' => 'string', + 'source_target_name' => 'string', + ), + 'runkit7_superglobals' => + array ( + 0 => 'array', + ), + 'runkit7_zval_inspect' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'runkit_class_adopt' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'parentname' => 'string', + ), + 'runkit_class_emancipate' => + array ( + 0 => 'bool', + 'classname' => 'string', + ), + 'runkit_constant_add' => + array ( + 0 => 'bool', + 'constname' => 'string', + 'value' => 'mixed', + ), + 'runkit_constant_redefine' => + array ( + 0 => 'bool', + 'constname' => 'string', + 'newvalue' => 'mixed', + ), + 'runkit_constant_remove' => + array ( + 0 => 'bool', + 'constname' => 'string', + ), + 'runkit_function_add' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'arglist' => 'string', + 'code' => 'string', + 'doccomment=' => 'null|string', + ), + 'runkit_function_add\'1' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'closure' => 'Closure', + 'doccomment=' => 'null|string', + ), + 'runkit_function_copy' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'targetname' => 'string', + ), + 'runkit_function_redefine' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'arglist' => 'string', + 'code' => 'string', + 'doccomment=' => 'null|string', + ), + 'runkit_function_redefine\'1' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'closure' => 'Closure', + 'doccomment=' => 'null|string', + ), + 'runkit_function_remove' => + array ( + 0 => 'bool', + 'funcname' => 'string', + ), + 'runkit_function_rename' => + array ( + 0 => 'bool', + 'funcname' => 'string', + 'newname' => 'string', + ), + 'runkit_import' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'runkit_lint' => + array ( + 0 => 'bool', + 'code' => 'string', + ), + 'runkit_lint_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'runkit_method_add' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_add\'1' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'closure' => 'Closure', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_copy' => + array ( + 0 => 'bool', + 'dclass' => 'string', + 'dmethod' => 'string', + 'sclass' => 'string', + 'smethod=' => 'string', + ), + 'runkit_method_redefine' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'args' => 'string', + 'code' => 'string', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_redefine\'1' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'closure' => 'Closure', + 'flags=' => 'int', + 'doccomment=' => 'null|string', + ), + 'runkit_method_remove' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + ), + 'runkit_method_rename' => + array ( + 0 => 'bool', + 'classname' => 'string', + 'methodname' => 'string', + 'newname' => 'string', + ), + 'runkit_return_value_used' => + array ( + 0 => 'bool', + ), + 'runkit_sandbox_output_handler' => + array ( + 0 => 'mixed', + 'sandbox' => 'object', + 'callback=' => 'mixed', + ), + 'runkit_superglobals' => + array ( + 0 => 'array', + ), + 'runkit_zval_inspect' => + array ( + 0 => 'array', + 'value' => 'mixed', + ), + 'scalebarObj::convertToString' => + array ( + 0 => 'string', + ), + 'scalebarObj::free' => + array ( + 0 => 'void', + ), + 'scalebarObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'scalebarObj::setImageColor' => + array ( + 0 => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + ), + 'scalebarObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'scandir' => + array ( + 0 => 'false|list', + 'directory' => 'string', + 'sorting_order=' => 'int', + 'context=' => 'resource', + ), + 'seaslog_get_author' => + array ( + 0 => 'string', + ), + 'seaslog_get_version' => + array ( + 0 => 'string', + ), + 'sem_acquire' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + 'non_blocking=' => 'bool', + ), + 'sem_get' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'max_acquire=' => 'int', + 'permissions=' => 'int', + 'auto_release=' => 'bool', + ), + 'sem_release' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + ), + 'sem_remove' => + array ( + 0 => 'bool', + 'semaphore' => 'resource', + ), + 'serialize' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'session_abort' => + array ( + 0 => 'bool', + ), + 'session_cache_expire' => + array ( + 0 => 'false|int', + 'value=' => 'int', + ), + 'session_cache_limiter' => + array ( + 0 => 'false|string', + 'value=' => 'string', + ), + 'session_commit' => + array ( + 0 => 'bool', + ), + 'session_decode' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'session_destroy' => + array ( + 0 => 'bool', + ), + 'session_encode' => + array ( + 0 => 'false|string', + ), + 'session_get_cookie_params' => + array ( + 0 => 'array{domain: null|string, httponly: bool|null, lifetime: int|null, path: null|string, secure: bool|null}', + ), + 'session_id' => + array ( + 0 => 'false|string', + 'id=' => 'string', + ), + 'session_is_registered' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'session_module_name' => + array ( + 0 => 'false|string', + 'module=' => 'string', + ), + 'session_name' => + array ( + 0 => 'false|string', + 'name=' => 'string', + ), + 'session_pgsql_add_error' => + array ( + 0 => 'bool', + 'error_level' => 'int', + 'error_message=' => 'string', + ), + 'session_pgsql_get_error' => + array ( + 0 => 'array', + 'with_error_message=' => 'bool', + ), + 'session_pgsql_get_field' => + array ( + 0 => 'string', + ), + 'session_pgsql_reset' => + array ( + 0 => 'bool', + ), + 'session_pgsql_set_field' => + array ( + 0 => 'bool', + 'value' => 'string', + ), + 'session_pgsql_status' => + array ( + 0 => 'array', + ), + 'session_regenerate_id' => + array ( + 0 => 'bool', + 'delete_old_session=' => 'bool', + ), + 'session_register' => + array ( + 0 => 'bool', + 'name' => 'mixed', + '...args=' => 'mixed', + ), + 'session_register_shutdown' => + array ( + 0 => 'void', + ), + 'session_reset' => + array ( + 0 => 'bool', + ), + 'session_save_path' => + array ( + 0 => 'false|string', + 'path=' => 'string', + ), + 'session_set_cookie_params' => + array ( + 0 => 'bool', + 'lifetime' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + ), + 'session_set_save_handler' => + array ( + 0 => 'bool', + 'open' => 'callable(string, string):bool', + 'close' => 'callable():bool', + 'read' => 'callable(string):string', + 'write' => 'callable(string, string):bool', + 'destroy' => 'callable(string):bool', + 'gc' => 'callable(string):bool', + 'create_sid=' => 'callable():string', + 'validate_sid=' => 'callable(string):bool', + 'update_timestamp=' => 'callable(string):bool', + ), + 'session_set_save_handler\'1' => + array ( + 0 => 'bool', + 'open' => 'SessionHandlerInterface', + 'close=' => 'bool', + ), + 'session_start' => + array ( + 0 => 'bool', + 'options=' => 'array', + ), + 'session_status' => + array ( + 0 => 'int', + ), + 'session_unregister' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'session_unset' => + array ( + 0 => 'bool', + ), + 'session_write_close' => + array ( + 0 => 'bool', + ), + 'setLeftFill' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'setLine' => + array ( + 0 => 'void', + 'width' => 'int', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'setRightFill' => + array ( + 0 => 'void', + 'red' => 'int', + 'green' => 'int', + 'blue' => 'int', + 'a=' => 'int', + ), + 'set_error_handler' => + array ( + 0 => 'callable(int, string, string=, int=, array=):bool|null', + 'callback' => 'callable(int, string, string=, int=, array=):bool|null', + 'error_levels=' => 'int', + ), + 'set_exception_handler' => + array ( + 0 => 'callable(Throwable):void|null', + 'callback' => 'callable(Throwable):void|null', + ), + 'set_file_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'set_include_path' => + array ( + 0 => 'false|string', + 'include_path' => 'string', + ), + 'set_magic_quotes_runtime' => + array ( + 0 => 'bool', + 'new_setting' => 'bool', + ), + 'set_time_limit' => + array ( + 0 => 'bool', + 'seconds' => 'int', + ), + 'setcookie' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + 'samesite=' => 'string', + 'url_encode=' => 'int', + ), + 'setlocale' => + array ( + 0 => 'false|string', + 'category' => 'int', + 'locales' => '0|null|string', + '...rest=' => 'string', + ), + 'setlocale\'1' => + array ( + 0 => 'false|string', + 'category' => 'int', + 'locales' => 'array|null', + ), + 'setproctitle' => + array ( + 0 => 'void', + 'title' => 'string', + ), + 'setrawcookie' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'int', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'bool', + 'httponly=' => 'bool', + ), + 'setthreadtitle' => + array ( + 0 => 'bool', + 'title' => 'string', + ), + 'settype' => + array ( + 0 => 'bool', + '&rw_var' => 'mixed', + 'type' => 'string', + ), + 'sha1' => + array ( + 0 => 'string', + 'string' => 'string', + 'binary=' => 'bool', + ), + 'sha1_file' => + array ( + 0 => 'false|string', + 'filename' => 'string', + 'binary=' => 'bool', + ), + 'sha256' => + array ( + 0 => 'string', + 'string' => 'string', + 'raw_output=' => 'bool', + ), + 'sha256_file' => + array ( + 0 => 'string', + 'filename' => 'string', + 'raw_output=' => 'bool', + ), + 'shapeObj::__construct' => + array ( + 0 => 'void', + 'type' => 'int', + ), + 'shapeObj::add' => + array ( + 0 => 'int', + 'line' => 'lineObj', + ), + 'shapeObj::boundary' => + array ( + 0 => 'shapeObj', + ), + 'shapeObj::contains' => + array ( + 0 => 'bool', + 'point' => 'pointObj', + ), + 'shapeObj::containsShape' => + array ( + 0 => 'int', + 'shape2' => 'shapeObj', + ), + 'shapeObj::convexhull' => + array ( + 0 => 'shapeObj', + ), + 'shapeObj::crosses' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::difference' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::disjoint' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::draw' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'layer' => 'layerObj', + 'img' => 'imageObj', + ), + 'shapeObj::equals' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::free' => + array ( + 0 => 'void', + ), + 'shapeObj::getArea' => + array ( + 0 => 'float', + ), + 'shapeObj::getCentroid' => + array ( + 0 => 'pointObj', + ), + 'shapeObj::getLabelPoint' => + array ( + 0 => 'pointObj', + ), + 'shapeObj::getLength' => + array ( + 0 => 'float', + ), + 'shapeObj::getPointUsingMeasure' => + array ( + 0 => 'pointObj', + 'm' => 'float', + ), + 'shapeObj::getValue' => + array ( + 0 => 'string', + 'layer' => 'layerObj', + 'filedname' => 'string', + ), + 'shapeObj::intersection' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::intersects' => + array ( + 0 => 'bool', + 'shape' => 'shapeObj', + ), + 'shapeObj::line' => + array ( + 0 => 'lineObj', + 'i' => 'int', + ), + 'shapeObj::ms_shapeObjFromWkt' => + array ( + 0 => 'shapeObj', + 'wkt' => 'string', + ), + 'shapeObj::overlaps' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::project' => + array ( + 0 => 'int', + 'in' => 'projectionObj', + 'out' => 'projectionObj', + ), + 'shapeObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'shapeObj::setBounds' => + array ( + 0 => 'int', + ), + 'shapeObj::simplify' => + array ( + 0 => 'null|shapeObj', + 'tolerance' => 'float', + ), + 'shapeObj::symdifference' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::toWkt' => + array ( + 0 => 'string', + ), + 'shapeObj::topologyPreservingSimplify' => + array ( + 0 => 'null|shapeObj', + 'tolerance' => 'float', + ), + 'shapeObj::touches' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapeObj::union' => + array ( + 0 => 'shapeObj', + 'shape' => 'shapeObj', + ), + 'shapeObj::within' => + array ( + 0 => 'int', + 'shape2' => 'shapeObj', + ), + 'shapefileObj::__construct' => + array ( + 0 => 'void', + 'filename' => 'string', + 'type' => 'int', + ), + 'shapefileObj::addPoint' => + array ( + 0 => 'int', + 'point' => 'pointObj', + ), + 'shapefileObj::addShape' => + array ( + 0 => 'int', + 'shape' => 'shapeObj', + ), + 'shapefileObj::free' => + array ( + 0 => 'void', + ), + 'shapefileObj::getExtent' => + array ( + 0 => 'rectObj', + 'i' => 'int', + ), + 'shapefileObj::getPoint' => + array ( + 0 => 'shapeObj', + 'i' => 'int', + ), + 'shapefileObj::getShape' => + array ( + 0 => 'shapeObj', + 'i' => 'int', + ), + 'shapefileObj::getTransformed' => + array ( + 0 => 'shapeObj', + 'map' => 'mapObj', + 'i' => 'int', + ), + 'shapefileObj::ms_newShapefileObj' => + array ( + 0 => 'shapefileObj', + 'filename' => 'string', + 'type' => 'int', + ), + 'shell_exec' => + array ( + 0 => 'false|null|string', + 'command' => 'string', + ), + 'shm_attach' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'size=' => 'int', + 'permissions=' => 'int', + ), + 'shm_detach' => + array ( + 0 => 'bool', + 'shm' => 'resource', + ), + 'shm_get_var' => + array ( + 0 => 'mixed', + 'shm' => 'resource', + 'key' => 'int', + ), + 'shm_has_var' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + ), + 'shm_put_var' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + 'value' => 'mixed', + ), + 'shm_remove' => + array ( + 0 => 'bool', + 'shm' => 'resource', + ), + 'shm_remove_var' => + array ( + 0 => 'bool', + 'shm' => 'resource', + 'key' => 'int', + ), + 'shmop_close' => + array ( + 0 => 'void', + 'shmop' => 'resource', + ), + 'shmop_delete' => + array ( + 0 => 'bool', + 'shmop' => 'resource', + ), + 'shmop_open' => + array ( + 0 => 'false|resource', + 'key' => 'int', + 'mode' => 'string', + 'permissions' => 'int', + 'size' => 'int', + ), + 'shmop_read' => + array ( + 0 => 'false|string', + 'shmop' => 'resource', + 'offset' => 'int', + 'size' => 'int', + ), + 'shmop_size' => + array ( + 0 => 'int', + 'shmop' => 'resource', + ), + 'shmop_write' => + array ( + 0 => 'false|int', + 'shmop' => 'resource', + 'data' => 'string', + 'offset' => 'int', + ), + 'show_source' => + array ( + 0 => 'bool|string', + 'filename' => 'string', + 'return=' => 'bool', + ), + 'shuffle' => + array ( + 0 => 'true', + '&rw_array' => 'array', + ), + 'signeurlpaiement' => + array ( + 0 => 'string', + 'clent' => 'string', + 'data' => 'string', + ), + 'similar_text' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + '&w_percent=' => 'float', + ), + 'simplexml_import_dom' => + array ( + 0 => 'SimpleXMLElement|null', + 'node' => 'DOMNode', + 'class_name=' => 'null|string', + ), + 'simplexml_load_file' => + array ( + 0 => 'SimpleXMLElement|false', + 'filename' => 'string', + 'class_name=' => 'null|string', + 'options=' => 'int', + 'namespace_or_prefix=' => 'string', + 'is_prefix=' => 'bool', + ), + 'simplexml_load_string' => + array ( + 0 => 'SimpleXMLElement|false', + 'data' => 'string', + 'class_name=' => 'null|string', + 'options=' => 'int', + 'namespace_or_prefix=' => 'string', + 'is_prefix=' => 'bool', + ), + 'sin' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'sinh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'sizeof' => + array ( + 0 => 'int<0, max>', + 'value' => 'Countable|SimpleXMLElement|array', + 'mode=' => 'int', + ), + 'sleep' => + array ( + 0 => 'false|int', + 'seconds' => 'int<0, max>', + ), + 'snmp2_get' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_getnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_real_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_set' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp2_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_get' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_getnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_real_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_set' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp3_walk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'security_name' => 'string', + 'security_level' => 'string', + 'auth_protocol' => 'string', + 'auth_passphrase' => 'string', + 'privacy_protocol' => 'string', + 'privacy_passphrase' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmp_get_quick_print' => + array ( + 0 => 'bool', + ), + 'snmp_get_valueretrieval' => + array ( + 0 => 'int', + ), + 'snmp_read_mib' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'snmp_set_enum_print' => + array ( + 0 => 'true', + 'enable' => 'bool', + ), + 'snmp_set_oid_numeric_print' => + array ( + 0 => 'true', + 'format' => 'int', + ), + 'snmp_set_oid_output_format' => + array ( + 0 => 'true', + 'format' => 'int', + ), + 'snmp_set_quick_print' => + array ( + 0 => 'bool', + 'enable' => 'bool', + ), + 'snmp_set_valueretrieval' => + array ( + 0 => 'true', + 'method' => 'int', + ), + 'snmpget' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpgetnext' => + array ( + 0 => 'false|string', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmprealwalk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpset' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'type' => 'array|string', + 'value' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpwalk' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'snmpwalkoid' => + array ( + 0 => 'array|false', + 'hostname' => 'string', + 'community' => 'string', + 'object_id' => 'array|string', + 'timeout=' => 'int', + 'retries=' => 'int', + ), + 'socket_accept' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + ), + 'socket_bind' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'address' => 'string', + 'port=' => 'int', + ), + 'socket_clear_error' => + array ( + 0 => 'void', + 'socket=' => 'resource', + ), + 'socket_close' => + array ( + 0 => 'void', + 'socket' => 'resource', + ), + 'socket_cmsg_space' => + array ( + 0 => 'int|null', + 'level' => 'int', + 'type' => 'int', + 'num=' => 'int', + ), + 'socket_connect' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'address' => 'string', + 'port=' => 'int', + ), + 'socket_create' => + array ( + 0 => 'false|resource', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + 'socket_create_listen' => + array ( + 0 => 'false|resource', + 'port' => 'int', + 'backlog=' => 'int', + ), + 'socket_create_pair' => + array ( + 0 => 'bool', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + '&w_pair' => 'array', + ), + 'socket_export_stream' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + ), + 'socket_get_option' => + array ( + 0 => 'array|false|int', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + ), + 'socket_get_status' => + array ( + 0 => 'array', + 'stream' => 'resource', + ), + 'socket_getopt' => + array ( + 0 => 'array|false|int', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + ), + 'socket_getpeername' => + array ( + 0 => 'bool', + 'socket' => 'resource', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_getsockname' => + array ( + 0 => 'bool', + 'socket' => 'resource', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_import_stream' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + ), + 'socket_last_error' => + array ( + 0 => 'int', + 'socket=' => 'resource', + ), + 'socket_listen' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'backlog=' => 'int', + ), + 'socket_read' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'length' => 'int', + 'mode=' => 'int', + ), + 'socket_recv' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'socket_recvfrom' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_data' => 'string', + 'length' => 'int', + 'flags' => 'int', + '&w_address' => 'string', + '&w_port=' => 'int', + ), + 'socket_recvmsg' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + '&w_message' => 'array', + 'flags=' => 'int', + ), + 'socket_select' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + 'socket_send' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + ), + 'socket_sendmsg' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'message' => 'array', + 'flags=' => 'int', + ), + 'socket_sendto' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length' => 'int', + 'flags' => 'int', + 'address' => 'string', + 'port=' => 'int', + ), + 'socket_set_block' => + array ( + 0 => 'bool', + 'socket' => 'resource', + ), + 'socket_set_blocking' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable' => 'bool', + ), + 'socket_set_nonblock' => + array ( + 0 => 'bool', + 'socket' => 'resource', + ), + 'socket_set_option' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'socket_set_timeout' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'socket_setopt' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'level' => 'int', + 'option' => 'int', + 'value' => 'array|int|string', + ), + 'socket_shutdown' => + array ( + 0 => 'bool', + 'socket' => 'resource', + 'mode=' => 'int', + ), + 'socket_strerror' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'socket_write' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'length=' => 'int', + ), + 'solid_fetch_prev' => + array ( + 0 => 'bool', + 'result_id' => 'mixed', + ), + 'solr_get_version' => + array ( + 0 => 'false|string', + ), + 'sort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'flags=' => 'int', + ), + 'soundex' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'spl_autoload' => + array ( + 0 => 'void', + 'class' => 'string', + 'file_extensions=' => 'string', + ), + 'spl_autoload_call' => + array ( + 0 => 'void', + 'class' => 'string', + ), + 'spl_autoload_extensions' => + array ( + 0 => 'string', + 'file_extensions=' => 'string', + ), + 'spl_autoload_functions' => + array ( + 0 => 'false|list', + ), + 'spl_autoload_register' => + array ( + 0 => 'bool', + 'callback=' => 'callable(string):void', + 'throw=' => 'bool', + 'prepend=' => 'bool', + ), + 'spl_autoload_unregister' => + array ( + 0 => 'bool', + 'callback' => 'callable(string):void', + ), + 'spl_classes' => + array ( + 0 => 'array', + ), + 'spl_object_hash' => + array ( + 0 => 'string', + 'object' => 'object', + ), + 'spl_object_id' => + array ( + 0 => 'int', + 'object' => 'object', + ), + 'sprintf' => + array ( + 0 => 'string', + 'format' => 'string', + '...values=' => 'float|int|string', + ), + 'sqlite_array_query' => + array ( + 0 => 'array|false', + 'dbhandle' => 'resource', + 'query' => 'string', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_busy_timeout' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'milliseconds' => 'int', + ), + 'sqlite_changes' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_close' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + ), + 'sqlite_column' => + array ( + 0 => 'mixed', + 'result' => 'resource', + 'index_or_name' => 'mixed', + 'decode_binary=' => 'bool', + ), + 'sqlite_create_aggregate' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'function_name' => 'string', + 'step_func' => 'callable', + 'finalize_func' => 'callable', + 'num_args=' => 'int', + ), + 'sqlite_create_function' => + array ( + 0 => 'void', + 'dbhandle' => 'resource', + 'function_name' => 'string', + 'callback' => 'callable', + 'num_args=' => 'int', + ), + 'sqlite_current' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_error_string' => + array ( + 0 => 'string', + 'error_code' => 'int', + ), + 'sqlite_escape_string' => + array ( + 0 => 'string', + 'item' => 'string', + ), + 'sqlite_exec' => + array ( + 0 => 'bool', + 'dbhandle' => 'resource', + 'query' => 'string', + 'error_msg=' => 'string', + ), + 'sqlite_factory' => + array ( + 0 => 'SQLiteDatabase', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_fetch_all' => + array ( + 0 => 'array', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_array' => + array ( + 0 => 'array|false', + 'result' => 'resource', + 'result_type=' => 'int', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_column_types' => + array ( + 0 => 'array|false', + 'table_name' => 'string', + 'dbhandle' => 'resource', + 'result_type=' => 'int', + ), + 'sqlite_fetch_object' => + array ( + 0 => 'object', + 'result' => 'resource', + 'class_name=' => 'string', + 'ctor_params=' => 'array', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_single' => + array ( + 0 => 'string', + 'result' => 'resource', + 'decode_binary=' => 'bool', + ), + 'sqlite_fetch_string' => + array ( + 0 => 'string', + 'result' => 'resource', + 'decode_binary' => 'bool', + ), + 'sqlite_field_name' => + array ( + 0 => 'string', + 'result' => 'resource', + 'field_index' => 'int', + ), + 'sqlite_has_more' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_has_prev' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_key' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_last_error' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_last_insert_rowid' => + array ( + 0 => 'int', + 'dbhandle' => 'resource', + ), + 'sqlite_libencoding' => + array ( + 0 => 'string', + ), + 'sqlite_libversion' => + array ( + 0 => 'string', + ), + 'sqlite_next' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_num_fields' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_num_rows' => + array ( + 0 => 'int', + 'result' => 'resource', + ), + 'sqlite_open' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_popen' => + array ( + 0 => 'false|resource', + 'filename' => 'string', + 'mode=' => 'int', + 'error_message=' => 'string', + ), + 'sqlite_prev' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_query' => + array ( + 0 => 'false|resource', + 'dbhandle' => 'resource', + 'query' => 'resource|string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'sqlite_rewind' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlite_seek' => + array ( + 0 => 'bool', + 'result' => 'resource', + 'rownum' => 'int', + ), + 'sqlite_single_query' => + array ( + 0 => 'array', + 'db' => 'resource', + 'query' => 'string', + 'first_row_only=' => 'bool', + 'decode_binary=' => 'bool', + ), + 'sqlite_udf_decode_binary' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'sqlite_udf_encode_binary' => + array ( + 0 => 'string', + 'data' => 'string', + ), + 'sqlite_unbuffered_query' => + array ( + 0 => 'SQLiteUnbuffered|false', + 'dbhandle' => 'resource', + 'query' => 'string', + 'result_type=' => 'int', + 'error_msg=' => 'string', + ), + 'sqlite_valid' => + array ( + 0 => 'bool', + 'result' => 'resource', + ), + 'sqlsrv_begin_transaction' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_cancel' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_client_info' => + array ( + 0 => 'array|false', + 'conn' => 'resource', + ), + 'sqlsrv_close' => + array ( + 0 => 'bool', + 'conn' => 'null|resource', + ), + 'sqlsrv_commit' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_configure' => + array ( + 0 => 'bool', + 'setting' => 'string', + 'value' => 'mixed', + ), + 'sqlsrv_connect' => + array ( + 0 => 'false|resource', + 'server_name' => 'string', + 'connection_info=' => 'array', + ), + 'sqlsrv_errors' => + array ( + 0 => 'array|null', + 'errors_and_or_warnings=' => 'int', + ), + 'sqlsrv_execute' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_fetch' => + array ( + 0 => 'bool|null', + 'stmt' => 'resource', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_fetch_array' => + array ( + 0 => 'array|false|null', + 'stmt' => 'resource', + 'fetchType=' => 'int', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_fetch_object' => + array ( + 0 => 'false|null|object', + 'stmt' => 'resource', + 'className=' => 'string', + 'ctorParams=' => 'array', + 'row=' => 'int', + 'offset=' => 'int', + ), + 'sqlsrv_field_metadata' => + array ( + 0 => 'array|false', + 'stmt' => 'resource', + ), + 'sqlsrv_free_stmt' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_get_config' => + array ( + 0 => 'mixed', + 'setting' => 'string', + ), + 'sqlsrv_get_field' => + array ( + 0 => 'mixed', + 'stmt' => 'resource', + 'fieldIndex' => 'int', + 'getAsType=' => 'int', + ), + 'sqlsrv_has_rows' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_next_result' => + array ( + 0 => 'bool|null', + 'stmt' => 'resource', + ), + 'sqlsrv_num_fields' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_num_rows' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_prepare' => + array ( + 0 => 'false|resource', + 'conn' => 'resource', + 'sql' => 'string', + 'params=' => 'array', + 'options=' => 'array', + ), + 'sqlsrv_query' => + array ( + 0 => 'false|resource', + 'conn' => 'resource', + 'sql' => 'string', + 'params=' => 'array', + 'options=' => 'array', + ), + 'sqlsrv_rollback' => + array ( + 0 => 'bool', + 'conn' => 'resource', + ), + 'sqlsrv_rows_affected' => + array ( + 0 => 'false|int', + 'stmt' => 'resource', + ), + 'sqlsrv_send_stream_data' => + array ( + 0 => 'bool', + 'stmt' => 'resource', + ), + 'sqlsrv_server_info' => + array ( + 0 => 'array', + 'conn' => 'resource', + ), + 'sqrt' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'srand' => + array ( + 0 => 'void', + 'seed=' => 'int', + 'mode=' => 'int', + ), + 'sscanf' => + array ( + 0 => 'int|list|null', + 'string' => 'string', + 'format' => 'string', + '&...w_vars=' => 'float|int|null|string', + ), + 'ssdeep_fuzzy_compare' => + array ( + 0 => 'int', + 'signature1' => 'string', + 'signature2' => 'string', + ), + 'ssdeep_fuzzy_hash' => + array ( + 0 => 'string', + 'to_hash' => 'string', + ), + 'ssdeep_fuzzy_hash_filename' => + array ( + 0 => 'string', + 'file_name' => 'string', + ), + 'ssh2_auth_agent' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + ), + 'ssh2_auth_hostbased_file' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'hostname' => 'string', + 'pubkeyfile' => 'string', + 'privkeyfile' => 'string', + 'passphrase=' => 'string', + 'local_username=' => 'string', + ), + 'ssh2_auth_none' => + array ( + 0 => 'array|bool', + 'session' => 'resource', + 'username' => 'string', + ), + 'ssh2_auth_password' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'password' => 'string', + ), + 'ssh2_auth_pubkey_file' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'username' => 'string', + 'pubkeyfile' => 'string', + 'privkeyfile' => 'string', + 'passphrase=' => 'string', + ), + 'ssh2_connect' => + array ( + 0 => 'false|resource', + 'host' => 'string', + 'port=' => 'int', + 'methods=' => 'array', + 'callbacks=' => 'array', + ), + 'ssh2_disconnect' => + array ( + 0 => 'bool', + 'session' => 'resource', + ), + 'ssh2_exec' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'command' => 'string', + 'pty=' => 'string', + 'env=' => 'array', + 'width=' => 'int', + 'height=' => 'int', + 'width_height_type=' => 'int', + ), + 'ssh2_fetch_stream' => + array ( + 0 => 'false|resource', + 'channel' => 'resource', + 'streamid' => 'int', + ), + 'ssh2_fingerprint' => + array ( + 0 => 'false|string', + 'session' => 'resource', + 'flags=' => 'int', + ), + 'ssh2_forward_accept' => + array ( + 0 => 'false|resource', + 'listener' => 'resource', + ), + 'ssh2_forward_listen' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'port' => 'int', + 'host=' => 'string', + 'max_connections=' => 'string', + ), + 'ssh2_methods_negotiated' => + array ( + 0 => 'array|false', + 'session' => 'resource', + ), + 'ssh2_poll' => + array ( + 0 => 'int', + '&polldes' => 'array', + 'timeout=' => 'int', + ), + 'ssh2_publickey_add' => + array ( + 0 => 'bool', + 'pkey' => 'resource', + 'algoname' => 'string', + 'blob' => 'string', + 'overwrite=' => 'bool', + 'attributes=' => 'array', + ), + 'ssh2_publickey_init' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + ), + 'ssh2_publickey_list' => + array ( + 0 => 'array|false', + 'pkey' => 'resource', + ), + 'ssh2_publickey_remove' => + array ( + 0 => 'bool', + 'pkey' => 'resource', + 'algoname' => 'string', + 'blob' => 'string', + ), + 'ssh2_scp_recv' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'remote_file' => 'string', + 'local_file' => 'string', + ), + 'ssh2_scp_send' => + array ( + 0 => 'bool', + 'session' => 'resource', + 'local_file' => 'string', + 'remote_file' => 'string', + 'create_mode=' => 'int', + ), + 'ssh2_sftp' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + ), + 'ssh2_sftp_chmod' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'filename' => 'string', + 'mode' => 'int', + ), + 'ssh2_sftp_lstat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'sftp' => 'resource', + 'path' => 'string', + ), + 'ssh2_sftp_mkdir' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'dirname' => 'string', + 'mode=' => 'int', + 'recursive=' => 'bool', + ), + 'ssh2_sftp_readlink' => + array ( + 0 => 'false|non-falsy-string', + 'sftp' => 'resource', + 'link' => 'string', + ), + 'ssh2_sftp_realpath' => + array ( + 0 => 'false|non-falsy-string', + 'sftp' => 'resource', + 'filename' => 'string', + ), + 'ssh2_sftp_rename' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'from' => 'string', + 'to' => 'string', + ), + 'ssh2_sftp_rmdir' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'dirname' => 'string', + ), + 'ssh2_sftp_stat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'sftp' => 'resource', + 'path' => 'string', + ), + 'ssh2_sftp_symlink' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'target' => 'string', + 'link' => 'string', + ), + 'ssh2_sftp_unlink' => + array ( + 0 => 'bool', + 'sftp' => 'resource', + 'filename' => 'string', + ), + 'ssh2_shell' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'termtype=' => 'string', + 'env=' => 'array', + 'width=' => 'int', + 'height=' => 'int', + 'width_height_type=' => 'int', + ), + 'ssh2_tunnel' => + array ( + 0 => 'false|resource', + 'session' => 'resource', + 'host' => 'string', + 'port' => 'int', + ), + 'stat' => + array ( + 0 => 'array{0: int, 10: int, 11: int, 12: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int, 9: int, atime: int, blksize: int, blocks: int, ctime: int, dev: int, gid: int, ino: int, mode: int, mtime: int, nlink: int, rdev: int, size: int, uid: int}|false', + 'filename' => 'string', + ), + 'stats_absolute_deviation' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_cdf_beta' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_binomial' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_cauchy' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_chisquare' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_exponential' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_f' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_gamma' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_laplace' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_logistic' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_negative_binomial' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_chisquare' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_f' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'par4' => 'float', + 'which' => 'int', + ), + 'stats_cdf_noncentral_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_normal' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_poisson' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'which' => 'int', + ), + 'stats_cdf_uniform' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_cdf_weibull' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_covariance' => + array ( + 0 => 'float', + 'a' => 'array', + 'b' => 'array', + ), + 'stats_den_uniform' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_beta' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_cauchy' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_chisquare' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr' => 'float', + ), + 'stats_dens_exponential' => + array ( + 0 => 'float', + 'x' => 'float', + 'scale' => 'float', + ), + 'stats_dens_f' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr1' => 'float', + 'dfr2' => 'float', + ), + 'stats_dens_gamma' => + array ( + 0 => 'float', + 'x' => 'float', + 'shape' => 'float', + 'scale' => 'float', + ), + 'stats_dens_laplace' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_logistic' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_negative_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_normal' => + array ( + 0 => 'float', + 'x' => 'float', + 'ave' => 'float', + 'stdev' => 'float', + ), + 'stats_dens_pmf_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_pmf_hypergeometric' => + array ( + 0 => 'float', + 'n1' => 'float', + 'n2' => 'float', + 'N1' => 'float', + 'N2' => 'float', + ), + 'stats_dens_pmf_negative_binomial' => + array ( + 0 => 'float', + 'x' => 'float', + 'n' => 'float', + 'pi' => 'float', + ), + 'stats_dens_pmf_poisson' => + array ( + 0 => 'float', + 'x' => 'float', + 'lb' => 'float', + ), + 'stats_dens_t' => + array ( + 0 => 'float', + 'x' => 'float', + 'dfr' => 'float', + ), + 'stats_dens_uniform' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_dens_weibull' => + array ( + 0 => 'float', + 'x' => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_harmonic_mean' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_kurtosis' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_rand_gen_beta' => + array ( + 0 => 'float', + 'a' => 'float', + 'b' => 'float', + ), + 'stats_rand_gen_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + ), + 'stats_rand_gen_exponential' => + array ( + 0 => 'float', + 'av' => 'float', + ), + 'stats_rand_gen_f' => + array ( + 0 => 'float', + 'dfn' => 'float', + 'dfd' => 'float', + ), + 'stats_rand_gen_funiform' => + array ( + 0 => 'float', + 'low' => 'float', + 'high' => 'float', + ), + 'stats_rand_gen_gamma' => + array ( + 0 => 'float', + 'a' => 'float', + 'r' => 'float', + ), + 'stats_rand_gen_ibinomial' => + array ( + 0 => 'int', + 'n' => 'int', + 'pp' => 'float', + ), + 'stats_rand_gen_ibinomial_negative' => + array ( + 0 => 'int', + 'n' => 'int', + 'p' => 'float', + ), + 'stats_rand_gen_int' => + array ( + 0 => 'int', + ), + 'stats_rand_gen_ipoisson' => + array ( + 0 => 'int', + 'mu' => 'float', + ), + 'stats_rand_gen_iuniform' => + array ( + 0 => 'int', + 'low' => 'int', + 'high' => 'int', + ), + 'stats_rand_gen_noncenral_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_chisquare' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_f' => + array ( + 0 => 'float', + 'dfn' => 'float', + 'dfd' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_noncentral_t' => + array ( + 0 => 'float', + 'df' => 'float', + 'xnonc' => 'float', + ), + 'stats_rand_gen_normal' => + array ( + 0 => 'float', + 'av' => 'float', + 'sd' => 'float', + ), + 'stats_rand_gen_t' => + array ( + 0 => 'float', + 'df' => 'float', + ), + 'stats_rand_get_seeds' => + array ( + 0 => 'array', + ), + 'stats_rand_phrase_to_seeds' => + array ( + 0 => 'array', + 'phrase' => 'string', + ), + 'stats_rand_ranf' => + array ( + 0 => 'float', + ), + 'stats_rand_setall' => + array ( + 0 => 'void', + 'iseed1' => 'int', + 'iseed2' => 'int', + ), + 'stats_skew' => + array ( + 0 => 'float', + 'a' => 'array', + ), + 'stats_standard_deviation' => + array ( + 0 => 'float', + 'a' => 'array', + 'sample=' => 'bool', + ), + 'stats_stat_binomial_coef' => + array ( + 0 => 'float', + 'x' => 'int', + 'n' => 'int', + ), + 'stats_stat_correlation' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_factorial' => + array ( + 0 => 'float', + 'n' => 'int', + ), + 'stats_stat_gennch' => + array ( + 0 => 'float', + 'n' => 'int', + ), + 'stats_stat_independent_t' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_innerproduct' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_noncentral_t' => + array ( + 0 => 'float', + 'par1' => 'float', + 'par2' => 'float', + 'par3' => 'float', + 'which' => 'int', + ), + 'stats_stat_paired_t' => + array ( + 0 => 'float', + 'array1' => 'array', + 'array2' => 'array', + ), + 'stats_stat_percentile' => + array ( + 0 => 'float', + 'arr' => 'array', + 'perc' => 'float', + ), + 'stats_stat_powersum' => + array ( + 0 => 'float', + 'arr' => 'array', + 'power' => 'float', + ), + 'stats_variance' => + array ( + 0 => 'float', + 'a' => 'array', + 'sample=' => 'bool', + ), + 'stomp_abort' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_ack' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'stomp_begin' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_close' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'stomp_commit' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'transaction_id' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_connect' => + array ( + 0 => 'resource', + 'link' => 'resource', + 'broker=' => 'string', + 'username=' => 'string', + 'password=' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_connect_error' => + array ( + 0 => 'string', + ), + 'stomp_error' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'stomp_get_read_timeout' => + array ( + 0 => 'array', + 'link' => 'resource', + ), + 'stomp_get_session_id' => + array ( + 0 => 'string', + 'link' => 'resource', + ), + 'stomp_has_frame' => + array ( + 0 => 'bool', + 'link' => 'resource', + ), + 'stomp_read_frame' => + array ( + 0 => 'array', + 'link' => 'resource', + 'class_name=' => 'string', + ), + 'stomp_send' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'msg' => 'mixed', + 'headers=' => 'array|null', + ), + 'stomp_set_read_timeout' => + array ( + 0 => 'void', + 'link' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int|null', + ), + 'stomp_subscribe' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_unsubscribe' => + array ( + 0 => 'bool', + 'link' => 'resource', + 'destination' => 'string', + 'headers=' => 'array|null', + ), + 'stomp_version' => + array ( + 0 => 'string', + ), + 'str_getcsv' => + array ( + 0 => 'non-empty-list', + 'string' => 'string', + 'separator=' => 'string', + 'enclosure=' => 'string', + 'escape=' => 'string', + ), + 'str_ireplace' => + array ( + 0 => 'string', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_ireplace\'1' => + array ( + 0 => 'array', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_ireplace\'2' => + array ( + 0 => 'string', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_ireplace\'3' => + array ( + 0 => 'array', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_pad' => + array ( + 0 => 'string', + 'string' => 'string', + 'length' => 'int', + 'pad_string=' => 'string', + 'pad_type=' => 'int', + ), + 'str_repeat' => + array ( + 0 => 'string', + 'string' => 'string', + 'times' => 'int', + ), + 'str_replace' => + array ( + 0 => 'string', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_replace\'1' => + array ( + 0 => 'array', + 'search' => 'string', + 'replace' => 'string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_replace\'2' => + array ( + 0 => 'string', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'string', + '&w_count=' => 'int', + ), + 'str_replace\'3' => + array ( + 0 => 'array', + 'search' => 'array', + 'replace' => 'array|string', + 'subject' => 'array', + '&w_count=' => 'int', + ), + 'str_rot13' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'str_shuffle' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'str_split' => + array ( + 0 => 'non-empty-list', + 'string' => 'string', + 'length=' => 'int<1, max>', + ), + 'str_word_count' => + array ( + 0 => 'array|int', + 'string' => 'string', + 'format=' => 'int', + 'characters=' => 'string', + ), + 'strcasecmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'strcmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strcoll' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strcspn' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'streamWrapper::__construct' => + array ( + 0 => 'void', + ), + 'streamWrapper::__destruct' => + array ( + 0 => 'void', + ), + 'streamWrapper::dir_closedir' => + array ( + 0 => 'bool', + ), + 'streamWrapper::dir_opendir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'options' => 'int', + ), + 'streamWrapper::dir_readdir' => + array ( + 0 => 'string', + ), + 'streamWrapper::dir_rewinddir' => + array ( + 0 => 'bool', + ), + 'streamWrapper::mkdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'mode' => 'int', + 'options' => 'int', + ), + 'streamWrapper::rename' => + array ( + 0 => 'bool', + 'path_from' => 'string', + 'path_to' => 'string', + ), + 'streamWrapper::rmdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'options' => 'int', + ), + 'streamWrapper::stream_cast' => + array ( + 0 => 'resource', + 'cast_as' => 'int', + ), + 'streamWrapper::stream_close' => + array ( + 0 => 'void', + ), + 'streamWrapper::stream_eof' => + array ( + 0 => 'bool', + ), + 'streamWrapper::stream_flush' => + array ( + 0 => 'bool', + ), + 'streamWrapper::stream_lock' => + array ( + 0 => 'bool', + 'operation' => 'mode', + ), + 'streamWrapper::stream_metadata' => + array ( + 0 => 'bool', + 'path' => 'string', + 'option' => 'int', + 'value' => 'mixed', + ), + 'streamWrapper::stream_open' => + array ( + 0 => 'bool', + 'path' => 'string', + 'mode' => 'string', + 'options' => 'int', + 'opened_path' => 'string', + ), + 'streamWrapper::stream_read' => + array ( + 0 => 'string', + 'count' => 'int', + ), + 'streamWrapper::stream_seek' => + array ( + 0 => 'bool', + 'offset' => 'int', + 'whence' => 'int', + ), + 'streamWrapper::stream_set_option' => + array ( + 0 => 'bool', + 'option' => 'int', + 'arg1' => 'int', + 'arg2' => 'int', + ), + 'streamWrapper::stream_stat' => + array ( + 0 => 'array', + ), + 'streamWrapper::stream_tell' => + array ( + 0 => 'int', + ), + 'streamWrapper::stream_truncate' => + array ( + 0 => 'bool', + 'new_size' => 'int', + ), + 'streamWrapper::stream_write' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'streamWrapper::unlink' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'streamWrapper::url_stat' => + array ( + 0 => 'array', + 'path' => 'string', + 'flags' => 'int', + ), + 'stream_bucket_append' => + array ( + 0 => 'void', + 'brigade' => 'resource', + 'bucket' => 'object', + ), + 'stream_bucket_make_writeable' => + array ( + 0 => 'null|object', + 'brigade' => 'resource', + ), + 'stream_bucket_new' => + array ( + 0 => 'object', + 'stream' => 'resource', + 'buffer' => 'string', + ), + 'stream_bucket_prepend' => + array ( + 0 => 'void', + 'brigade' => 'resource', + 'bucket' => 'object', + ), + 'stream_context_create' => + array ( + 0 => 'resource', + 'options=' => 'array', + 'params=' => 'array', + ), + 'stream_context_get_default' => + array ( + 0 => 'resource', + 'options=' => 'array', + ), + 'stream_context_get_options' => + array ( + 0 => 'array', + 'stream_or_context' => 'resource', + ), + 'stream_context_get_params' => + array ( + 0 => 'array{notification: string, options: array}', + 'context' => 'resource', + ), + 'stream_context_set_default' => + array ( + 0 => 'resource', + 'options' => 'array', + ), + 'stream_context_set_option' => + array ( + 0 => 'bool', + 'context' => 'mixed', + 'wrapper_or_options' => 'string', + 'option_name' => 'string', + 'value' => 'mixed', + ), + 'stream_context_set_option\'1' => + array ( + 0 => 'bool', + 'context' => 'mixed', + 'wrapper_or_options' => 'array', + ), + 'stream_context_set_params' => + array ( + 0 => 'bool', + 'context' => 'resource', + 'params' => 'array', + ), + 'stream_copy_to_stream' => + array ( + 0 => 'false|int', + 'from' => 'resource', + 'to' => 'resource', + 'length=' => 'int', + 'offset=' => 'int', + ), + 'stream_encoding' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'encoding=' => 'string', + ), + 'stream_filter_append' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'filter_name' => 'string', + 'mode=' => 'int', + 'params=' => 'mixed', + ), + 'stream_filter_prepend' => + array ( + 0 => 'false|resource', + 'stream' => 'resource', + 'filter_name' => 'string', + 'mode=' => 'int', + 'params=' => 'mixed', + ), + 'stream_filter_register' => + array ( + 0 => 'bool', + 'filter_name' => 'string', + 'class' => 'string', + ), + 'stream_filter_remove' => + array ( + 0 => 'bool', + 'stream_filter' => 'resource', + ), + 'stream_get_contents' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length=' => 'int', + 'offset=' => 'int', + ), + 'stream_get_filters' => + array ( + 0 => 'array', + ), + 'stream_get_line' => + array ( + 0 => 'false|string', + 'stream' => 'resource', + 'length' => 'int', + 'ending=' => 'string', + ), + 'stream_get_meta_data' => + array ( + 0 => 'array{blocked: bool, crypto?: array{cipher_bits: int, cipher_name: string, cipher_version: string, protocol: string}, eof: bool, mediatype: string, mode: string, seekable: bool, stream_type: string, timed_out: bool, unread_bytes: int, uri: string, wrapper_data: mixed, wrapper_type: string}', + 'stream' => 'resource', + ), + 'stream_get_transports' => + array ( + 0 => 'list', + ), + 'stream_get_wrappers' => + array ( + 0 => 'list', + ), + 'stream_is_local' => + array ( + 0 => 'bool', + 'stream' => 'resource|string', + ), + 'stream_notification_callback' => + array ( + 0 => 'callback', + 'notification_code' => 'int', + 'severity' => 'int', + 'message' => 'string', + 'message_code' => 'int', + 'bytes_transferred' => 'int', + 'bytes_max' => 'int', + ), + 'stream_register_wrapper' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'class' => 'string', + 'flags=' => 'int', + ), + 'stream_resolve_include_path' => + array ( + 0 => 'false|string', + 'filename' => 'string', + ), + 'stream_select' => + array ( + 0 => 'false|int', + '&rw_read' => 'array|null', + '&rw_write' => 'array|null', + '&rw_except' => 'array|null', + 'seconds' => 'int|null', + 'microseconds=' => 'int', + ), + 'stream_set_blocking' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'enable' => 'bool', + ), + 'stream_set_chunk_size' => + array ( + 0 => 'false|int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_set_read_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_set_timeout' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'seconds' => 'int', + 'microseconds=' => 'int', + ), + 'stream_set_write_buffer' => + array ( + 0 => 'int', + 'stream' => 'resource', + 'size' => 'int', + ), + 'stream_socket_accept' => + array ( + 0 => 'false|resource', + 'socket' => 'resource', + 'timeout=' => 'float', + '&w_peer_name=' => 'string', + ), + 'stream_socket_client' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'timeout=' => 'float', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'stream_socket_enable_crypto' => + array ( + 0 => 'bool|int', + 'stream' => 'resource', + 'enable' => 'bool', + 'crypto_method=' => 'int|null', + 'session_stream=' => 'resource', + ), + 'stream_socket_get_name' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'remote' => 'bool', + ), + 'stream_socket_pair' => + array ( + 0 => 'array|false', + 'domain' => 'int', + 'type' => 'int', + 'protocol' => 'int', + ), + 'stream_socket_recvfrom' => + array ( + 0 => 'false|string', + 'socket' => 'resource', + 'length' => 'int', + 'flags=' => 'int', + '&w_address=' => 'string', + ), + 'stream_socket_sendto' => + array ( + 0 => 'false|int', + 'socket' => 'resource', + 'data' => 'string', + 'flags=' => 'int', + 'address=' => 'string', + ), + 'stream_socket_server' => + array ( + 0 => 'false|resource', + 'address' => 'string', + '&w_error_code=' => 'int', + '&w_error_message=' => 'string', + 'flags=' => 'int', + 'context=' => 'resource', + ), + 'stream_socket_shutdown' => + array ( + 0 => 'bool', + 'stream' => 'resource', + 'mode' => 'int', + ), + 'stream_supports_lock' => + array ( + 0 => 'bool', + 'stream' => 'resource', + ), + 'stream_wrapper_register' => + array ( + 0 => 'bool', + 'protocol' => 'string', + 'class' => 'string', + 'flags=' => 'int', + ), + 'stream_wrapper_restore' => + array ( + 0 => 'bool', + 'protocol' => 'string', + ), + 'stream_wrapper_unregister' => + array ( + 0 => 'bool', + 'protocol' => 'string', + ), + 'strftime' => + array ( + 0 => 'false|string', + 'format' => 'string', + 'timestamp=' => 'int', + ), + 'strip_tags' => + array ( + 0 => 'string', + 'string' => 'string', + 'allowed_tags=' => 'string', + ), + 'stripcslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'stripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'stripslashes' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'stristr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'strlen' => + array ( + 0 => 'int<0, max>', + 'string' => 'string', + ), + 'strnatcasecmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strnatcmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + ), + 'strncasecmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int', + ), + 'strncmp' => + array ( + 0 => 'int', + 'string1' => 'string', + 'string2' => 'string', + 'length' => 'int', + ), + 'strpbrk' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'characters' => 'string', + ), + 'strpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'strptime' => + array ( + 0 => 'array|false', + 'timestamp' => 'string', + 'format' => 'string', + ), + 'strrchr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + ), + 'strrev' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'strripos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'strrpos' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'int|string', + 'offset=' => 'int', + ), + 'strspn' => + array ( + 0 => 'int', + 'string' => 'string', + 'characters' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'strstr' => + array ( + 0 => 'false|string', + 'haystack' => 'string', + 'needle' => 'int|string', + 'before_needle=' => 'bool', + ), + 'strtok' => + array ( + 0 => 'false|non-empty-string', + 'string' => 'string', + 'token' => 'string', + ), + 'strtok\'1' => + array ( + 0 => 'false|non-empty-string', + 'string' => 'string', + ), + 'strtolower' => + array ( + 0 => 'lowercase-string', + 'string' => 'string', + ), + 'strtotime' => + array ( + 0 => 'false|int', + 'datetime' => 'string', + 'baseTimestamp=' => 'int', + ), + 'strtoupper' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'strtr' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'string', + 'to' => 'string', + ), + 'strtr\'1' => + array ( + 0 => 'string', + 'string' => 'string', + 'from' => 'array', + ), + 'strval' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'styleObj::__construct' => + array ( + 0 => 'void', + 'label' => 'labelObj', + 'style' => 'styleObj', + ), + 'styleObj::convertToString' => + array ( + 0 => 'string', + ), + 'styleObj::free' => + array ( + 0 => 'void', + ), + 'styleObj::getBinding' => + array ( + 0 => 'string', + 'stylebinding' => 'mixed', + ), + 'styleObj::getGeomTransform' => + array ( + 0 => 'string', + ), + 'styleObj::ms_newStyleObj' => + array ( + 0 => 'styleObj', + 'class' => 'classObj', + 'style' => 'styleObj', + ), + 'styleObj::removeBinding' => + array ( + 0 => 'int', + 'stylebinding' => 'mixed', + ), + 'styleObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'styleObj::setBinding' => + array ( + 0 => 'int', + 'stylebinding' => 'mixed', + 'value' => 'string', + ), + 'styleObj::setGeomTransform' => + array ( + 0 => 'int', + 'value' => 'string', + ), + 'styleObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'substr' => + array ( + 0 => 'false|string', + 'string' => 'string', + 'offset' => 'int', + 'length=' => 'int', + ), + 'substr_compare' => + array ( + 0 => 'false|int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'case_insensitive=' => 'bool', + ), + 'substr_count' => + array ( + 0 => 'int', + 'haystack' => 'string', + 'needle' => 'string', + 'offset=' => 'int', + 'length=' => 'int', + ), + 'substr_replace' => + array ( + 0 => 'string', + 'string' => 'string', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int', + ), + 'substr_replace\'1' => + array ( + 0 => 'array', + 'string' => 'array', + 'replace' => 'array|string', + 'offset' => 'array|int', + 'length=' => 'array|int', + ), + 'suhosin_encrypt_cookie' => + array ( + 0 => 'false|string', + 'name' => 'string', + 'value' => 'string', + ), + 'suhosin_get_raw_cookies' => + array ( + 0 => 'array', + ), + 'svm::crossvalidate' => + array ( + 0 => 'float', + 'problem' => 'array', + 'number_of_folds' => 'int', + ), + 'svm::train' => + array ( + 0 => 'SVMModel', + 'problem' => 'array', + 'weights=' => 'array', + ), + 'svn_add' => + array ( + 0 => 'bool', + 'path' => 'string', + 'recursive=' => 'bool', + 'force=' => 'bool', + ), + 'svn_auth_get_parameter' => + array ( + 0 => 'null|string', + 'key' => 'string', + ), + 'svn_auth_set_parameter' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + ), + 'svn_blame' => + array ( + 0 => 'array', + 'repository_url' => 'string', + 'revision_no=' => 'int', + ), + 'svn_cat' => + array ( + 0 => 'string', + 'repos_url' => 'string', + 'revision_no=' => 'int', + ), + 'svn_checkout' => + array ( + 0 => 'bool', + 'repos' => 'string', + 'targetpath' => 'string', + 'revision=' => 'int', + 'flags=' => 'int', + ), + 'svn_cleanup' => + array ( + 0 => 'bool', + 'workingdir' => 'string', + ), + 'svn_client_version' => + array ( + 0 => 'string', + ), + 'svn_commit' => + array ( + 0 => 'array', + 'log' => 'string', + 'targets' => 'array', + 'dontrecurse=' => 'bool', + ), + 'svn_delete' => + array ( + 0 => 'bool', + 'path' => 'string', + 'force=' => 'bool', + ), + 'svn_diff' => + array ( + 0 => 'array', + 'path1' => 'string', + 'rev1' => 'int', + 'path2' => 'string', + 'rev2' => 'int', + ), + 'svn_export' => + array ( + 0 => 'bool', + 'frompath' => 'string', + 'topath' => 'string', + 'working_copy=' => 'bool', + 'revision_no=' => 'int', + ), + 'svn_fs_abort_txn' => + array ( + 0 => 'bool', + 'txn' => 'resource', + ), + 'svn_fs_apply_text' => + array ( + 0 => 'resource', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_begin_txn2' => + array ( + 0 => 'resource', + 'repos' => 'resource', + 'rev' => 'int', + ), + 'svn_fs_change_node_prop' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + 'name' => 'string', + 'value' => 'string', + ), + 'svn_fs_check_path' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_contents_changed' => + array ( + 0 => 'bool', + 'root1' => 'resource', + 'path1' => 'string', + 'root2' => 'resource', + 'path2' => 'string', + ), + 'svn_fs_copy' => + array ( + 0 => 'bool', + 'from_root' => 'resource', + 'from_path' => 'string', + 'to_root' => 'resource', + 'to_path' => 'string', + ), + 'svn_fs_delete' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_dir_entries' => + array ( + 0 => 'array', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_file_contents' => + array ( + 0 => 'resource', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_file_length' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_is_dir' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_is_file' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_make_dir' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_make_file' => + array ( + 0 => 'bool', + 'root' => 'resource', + 'path' => 'string', + ), + 'svn_fs_node_created_rev' => + array ( + 0 => 'int', + 'fsroot' => 'resource', + 'path' => 'string', + ), + 'svn_fs_node_prop' => + array ( + 0 => 'string', + 'fsroot' => 'resource', + 'path' => 'string', + 'propname' => 'string', + ), + 'svn_fs_props_changed' => + array ( + 0 => 'bool', + 'root1' => 'resource', + 'path1' => 'string', + 'root2' => 'resource', + 'path2' => 'string', + ), + 'svn_fs_revision_prop' => + array ( + 0 => 'string', + 'fs' => 'resource', + 'revnum' => 'int', + 'propname' => 'string', + ), + 'svn_fs_revision_root' => + array ( + 0 => 'resource', + 'fs' => 'resource', + 'revnum' => 'int', + ), + 'svn_fs_txn_root' => + array ( + 0 => 'resource', + 'txn' => 'resource', + ), + 'svn_fs_youngest_rev' => + array ( + 0 => 'int', + 'fs' => 'resource', + ), + 'svn_import' => + array ( + 0 => 'bool', + 'path' => 'string', + 'url' => 'string', + 'nonrecursive' => 'bool', + ), + 'svn_log' => + array ( + 0 => 'array', + 'repos_url' => 'string', + 'start_revision=' => 'int', + 'end_revision=' => 'int', + 'limit=' => 'int', + 'flags=' => 'int', + ), + 'svn_ls' => + array ( + 0 => 'array', + 'repos_url' => 'string', + 'revision_no=' => 'int', + 'recurse=' => 'bool', + 'peg=' => 'bool', + ), + 'svn_mkdir' => + array ( + 0 => 'bool', + 'path' => 'string', + 'log_message=' => 'string', + ), + 'svn_move' => + array ( + 0 => 'mixed', + 'src_path' => 'string', + 'dst_path' => 'string', + 'force=' => 'bool', + ), + 'svn_propget' => + array ( + 0 => 'mixed', + 'path' => 'string', + 'property_name' => 'string', + 'recurse=' => 'bool', + 'revision' => 'int', + ), + 'svn_proplist' => + array ( + 0 => 'mixed', + 'path' => 'string', + 'recurse=' => 'bool', + 'revision' => 'int', + ), + 'svn_repos_create' => + array ( + 0 => 'resource', + 'path' => 'string', + 'config=' => 'array', + 'fsconfig=' => 'array', + ), + 'svn_repos_fs' => + array ( + 0 => 'resource', + 'repos' => 'resource', + ), + 'svn_repos_fs_begin_txn_for_commit' => + array ( + 0 => 'resource', + 'repos' => 'resource', + 'rev' => 'int', + 'author' => 'string', + 'log_msg' => 'string', + ), + 'svn_repos_fs_commit_txn' => + array ( + 0 => 'int', + 'txn' => 'resource', + ), + 'svn_repos_hotcopy' => + array ( + 0 => 'bool', + 'repospath' => 'string', + 'destpath' => 'string', + 'cleanlogs' => 'bool', + ), + 'svn_repos_open' => + array ( + 0 => 'resource', + 'path' => 'string', + ), + 'svn_repos_recover' => + array ( + 0 => 'bool', + 'path' => 'string', + ), + 'svn_revert' => + array ( + 0 => 'bool', + 'path' => 'string', + 'recursive=' => 'bool', + ), + 'svn_status' => + array ( + 0 => 'array', + 'path' => 'string', + 'flags=' => 'int', + ), + 'svn_update' => + array ( + 0 => 'false|int', + 'path' => 'string', + 'revno=' => 'int', + 'recurse=' => 'bool', + ), + 'swf_actiongeturl' => + array ( + 0 => 'mixed', + 'url' => 'string', + 'target' => 'string', + ), + 'swf_actiongotoframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + ), + 'swf_actiongotolabel' => + array ( + 0 => 'mixed', + 'label' => 'string', + ), + 'swf_actionnextframe' => + array ( + 0 => 'mixed', + ), + 'swf_actionplay' => + array ( + 0 => 'mixed', + ), + 'swf_actionprevframe' => + array ( + 0 => 'mixed', + ), + 'swf_actionsettarget' => + array ( + 0 => 'mixed', + 'target' => 'string', + ), + 'swf_actionstop' => + array ( + 0 => 'mixed', + ), + 'swf_actiontogglequality' => + array ( + 0 => 'mixed', + ), + 'swf_actionwaitforframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + 'skipcount' => 'int', + ), + 'swf_addbuttonrecord' => + array ( + 0 => 'mixed', + 'states' => 'int', + 'shapeid' => 'int', + 'depth' => 'int', + ), + 'swf_addcolor' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_closefile' => + array ( + 0 => 'mixed', + 'return_file=' => 'int', + ), + 'swf_definebitmap' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'image_name' => 'string', + ), + 'swf_definefont' => + array ( + 0 => 'mixed', + 'fontid' => 'int', + 'fontname' => 'string', + ), + 'swf_defineline' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'width' => 'float', + ), + 'swf_definepoly' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'coords' => 'array', + 'npoints' => 'int', + 'width' => 'float', + ), + 'swf_definerect' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'width' => 'float', + ), + 'swf_definetext' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'string' => 'string', + 'docenter' => 'int', + ), + 'swf_endbutton' => + array ( + 0 => 'mixed', + ), + 'swf_enddoaction' => + array ( + 0 => 'mixed', + ), + 'swf_endshape' => + array ( + 0 => 'mixed', + ), + 'swf_endsymbol' => + array ( + 0 => 'mixed', + ), + 'swf_fontsize' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'swf_fontslant' => + array ( + 0 => 'mixed', + 'slant' => 'float', + ), + 'swf_fonttracking' => + array ( + 0 => 'mixed', + 'tracking' => 'float', + ), + 'swf_getbitmapinfo' => + array ( + 0 => 'array', + 'bitmapid' => 'int', + ), + 'swf_getfontinfo' => + array ( + 0 => 'array', + ), + 'swf_getframe' => + array ( + 0 => 'int', + ), + 'swf_labelframe' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'swf_lookat' => + array ( + 0 => 'mixed', + 'view_x' => 'float', + 'view_y' => 'float', + 'view_z' => 'float', + 'reference_x' => 'float', + 'reference_y' => 'float', + 'reference_z' => 'float', + 'twist' => 'float', + ), + 'swf_modifyobject' => + array ( + 0 => 'mixed', + 'depth' => 'int', + 'how' => 'int', + ), + 'swf_mulcolor' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_nextid' => + array ( + 0 => 'int', + ), + 'swf_oncondition' => + array ( + 0 => 'mixed', + 'transition' => 'int', + ), + 'swf_openfile' => + array ( + 0 => 'mixed', + 'filename' => 'string', + 'width' => 'float', + 'height' => 'float', + 'framerate' => 'float', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + ), + 'swf_ortho' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + 'zmin' => 'float', + 'zmax' => 'float', + ), + 'swf_ortho2' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + ), + 'swf_perspective' => + array ( + 0 => 'mixed', + 'fovy' => 'float', + 'aspect' => 'float', + 'near' => 'float', + 'far' => 'float', + ), + 'swf_placeobject' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'depth' => 'int', + ), + 'swf_polarview' => + array ( + 0 => 'mixed', + 'dist' => 'float', + 'azimuth' => 'float', + 'incidence' => 'float', + 'twist' => 'float', + ), + 'swf_popmatrix' => + array ( + 0 => 'mixed', + ), + 'swf_posround' => + array ( + 0 => 'mixed', + 'round' => 'int', + ), + 'swf_pushmatrix' => + array ( + 0 => 'mixed', + ), + 'swf_removeobject' => + array ( + 0 => 'mixed', + 'depth' => 'int', + ), + 'swf_rotate' => + array ( + 0 => 'mixed', + 'angle' => 'float', + 'axis' => 'string', + ), + 'swf_scale' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + ), + 'swf_setfont' => + array ( + 0 => 'mixed', + 'fontid' => 'int', + ), + 'swf_setframe' => + array ( + 0 => 'mixed', + 'framenumber' => 'int', + ), + 'swf_shapearc' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'r' => 'float', + 'ang1' => 'float', + 'ang2' => 'float', + ), + 'swf_shapecurveto' => + array ( + 0 => 'mixed', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + ), + 'swf_shapecurveto3' => + array ( + 0 => 'mixed', + 'x1' => 'float', + 'y1' => 'float', + 'x2' => 'float', + 'y2' => 'float', + 'x3' => 'float', + 'y3' => 'float', + ), + 'swf_shapefillbitmapclip' => + array ( + 0 => 'mixed', + 'bitmapid' => 'int', + ), + 'swf_shapefillbitmaptile' => + array ( + 0 => 'mixed', + 'bitmapid' => 'int', + ), + 'swf_shapefilloff' => + array ( + 0 => 'mixed', + ), + 'swf_shapefillsolid' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + ), + 'swf_shapelinesolid' => + array ( + 0 => 'mixed', + 'r' => 'float', + 'g' => 'float', + 'b' => 'float', + 'a' => 'float', + 'width' => 'float', + ), + 'swf_shapelineto' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + ), + 'swf_shapemoveto' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + ), + 'swf_showframe' => + array ( + 0 => 'mixed', + ), + 'swf_startbutton' => + array ( + 0 => 'mixed', + 'objid' => 'int', + 'type' => 'int', + ), + 'swf_startdoaction' => + array ( + 0 => 'mixed', + ), + 'swf_startshape' => + array ( + 0 => 'mixed', + 'objid' => 'int', + ), + 'swf_startsymbol' => + array ( + 0 => 'mixed', + 'objid' => 'int', + ), + 'swf_textwidth' => + array ( + 0 => 'float', + 'string' => 'string', + ), + 'swf_translate' => + array ( + 0 => 'mixed', + 'x' => 'float', + 'y' => 'float', + 'z' => 'float', + ), + 'swf_viewport' => + array ( + 0 => 'mixed', + 'xmin' => 'float', + 'xmax' => 'float', + 'ymin' => 'float', + 'ymax' => 'float', + ), + 'swoole\\async::dnsLookup' => + array ( + 0 => 'void', + 'hostname' => 'string', + 'callback' => 'callable', + ), + 'swoole\\async::read' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'callable', + 'chunk_size=' => 'int', + 'offset=' => 'int', + ), + 'swoole\\async::readFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'callback' => 'callable', + ), + 'swoole\\async::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\async::write' => + array ( + 0 => 'void', + 'filename' => 'string', + 'content' => 'string', + 'offset=' => 'int', + 'callback=' => 'callable', + ), + 'swoole\\async::writeFile' => + array ( + 0 => 'void', + 'filename' => 'string', + 'content' => 'string', + 'callback=' => 'callable', + 'flags=' => 'string', + ), + 'swoole\\atomic::add' => + array ( + 0 => 'int', + 'add_value=' => 'int', + ), + 'swoole\\atomic::cmpset' => + array ( + 0 => 'int', + 'cmp_value' => 'int', + 'new_value' => 'int', + ), + 'swoole\\atomic::get' => + array ( + 0 => 'int', + ), + 'swoole\\atomic::set' => + array ( + 0 => 'int', + 'value' => 'int', + ), + 'swoole\\atomic::sub' => + array ( + 0 => 'int', + 'sub_value=' => 'int', + ), + 'swoole\\buffer::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::__toString' => + array ( + 0 => 'string', + ), + 'swoole\\buffer::append' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'swoole\\buffer::clear' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::expand' => + array ( + 0 => 'int', + 'size' => 'int', + ), + 'swoole\\buffer::read' => + array ( + 0 => 'string', + 'offset' => 'int', + 'length' => 'int', + ), + 'swoole\\buffer::recycle' => + array ( + 0 => 'void', + ), + 'swoole\\buffer::substr' => + array ( + 0 => 'string', + 'offset' => 'int', + 'length=' => 'int', + 'remove=' => 'bool', + ), + 'swoole\\buffer::write' => + array ( + 0 => 'void', + 'offset' => 'int', + 'data' => 'string', + ), + 'swoole\\channel::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\channel::pop' => + array ( + 0 => 'mixed', + ), + 'swoole\\channel::push' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'swoole\\channel::stats' => + array ( + 0 => 'array', + ), + 'swoole\\client::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\client::close' => + array ( + 0 => 'bool', + 'force=' => 'bool', + ), + 'swoole\\client::connect' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port=' => 'int', + 'timeout=' => 'int', + 'flag=' => 'int', + ), + 'swoole\\client::getpeername' => + array ( + 0 => 'array', + ), + 'swoole\\client::getsockname' => + array ( + 0 => 'array', + ), + 'swoole\\client::isConnected' => + array ( + 0 => 'bool', + ), + 'swoole\\client::on' => + array ( + 0 => 'void', + 'event' => 'string', + 'callback' => 'callable', + ), + 'swoole\\client::pause' => + array ( + 0 => 'void', + ), + 'swoole\\client::pipe' => + array ( + 0 => 'void', + 'socket' => 'string', + ), + 'swoole\\client::recv' => + array ( + 0 => 'void', + 'size=' => 'string', + 'flag=' => 'string', + ), + 'swoole\\client::resume' => + array ( + 0 => 'void', + ), + 'swoole\\client::send' => + array ( + 0 => 'int', + 'data' => 'string', + 'flag=' => 'string', + ), + 'swoole\\client::sendfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\client::sendto' => + array ( + 0 => 'bool', + 'ip' => 'string', + 'port' => 'int', + 'data' => 'string', + ), + 'swoole\\client::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\client::sleep' => + array ( + 0 => 'void', + ), + 'swoole\\client::wakeup' => + array ( + 0 => 'void', + ), + 'swoole\\connection\\iterator::count' => + array ( + 0 => 'int', + ), + 'swoole\\connection\\iterator::current' => + array ( + 0 => 'Connection', + ), + 'swoole\\connection\\iterator::key' => + array ( + 0 => 'int', + ), + 'swoole\\connection\\iterator::next' => + array ( + 0 => 'Connection', + ), + 'swoole\\connection\\iterator::offsetExists' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'swoole\\connection\\iterator::offsetGet' => + array ( + 0 => 'Connection', + 'index' => 'string', + ), + 'swoole\\connection\\iterator::offsetSet' => + array ( + 0 => 'void', + 'offset' => 'int', + 'connection' => 'mixed', + ), + 'swoole\\connection\\iterator::offsetUnset' => + array ( + 0 => 'void', + 'offset' => 'int', + ), + 'swoole\\connection\\iterator::rewind' => + array ( + 0 => 'void', + ), + 'swoole\\connection\\iterator::valid' => + array ( + 0 => 'bool', + ), + 'swoole\\coroutine::call_user_func' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'parameter=' => 'mixed', + '...args=' => 'mixed', + ), + 'swoole\\coroutine::call_user_func_array' => + array ( + 0 => 'mixed', + 'callback' => 'callable', + 'param_array' => 'array', + ), + 'swoole\\coroutine::cli_wait' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::create' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::getuid' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::resume' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine::suspend' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::connect' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::getpeername' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::getsockname' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::isConnected' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::send' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::sendfile' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::sendto' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\client::set' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::addFile' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::execute' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::get' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::getDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::isConnected' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::post' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::set' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setCookies' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setData' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setHeaders' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\http\\client::setMethod' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::__destruct' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::close' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::connect' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::getDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::query' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::recv' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\coroutine\\mysql::setDefer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\event::add' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'string', + ), + 'swoole\\event::defer' => + array ( + 0 => 'void', + 'callback' => 'mixed', + ), + 'swoole\\event::del' => + array ( + 0 => 'bool', + 'fd' => 'string', + ), + 'swoole\\event::exit' => + array ( + 0 => 'void', + ), + 'swoole\\event::set' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback=' => 'string', + 'write_callback=' => 'string', + 'events=' => 'string', + ), + 'swoole\\event::wait' => + array ( + 0 => 'void', + ), + 'swoole\\event::write' => + array ( + 0 => 'void', + 'fd' => 'string', + 'data' => 'string', + ), + 'swoole\\http\\client::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\client::addFile' => + array ( + 0 => 'void', + 'path' => 'string', + 'name' => 'string', + 'type=' => 'string', + 'filename=' => 'string', + 'offset=' => 'string', + ), + 'swoole\\http\\client::close' => + array ( + 0 => 'void', + ), + 'swoole\\http\\client::download' => + array ( + 0 => 'void', + 'path' => 'string', + 'file' => 'string', + 'callback' => 'callable', + 'offset=' => 'int', + ), + 'swoole\\http\\client::execute' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'string', + ), + 'swoole\\http\\client::get' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::isConnected' => + array ( + 0 => 'bool', + ), + 'swoole\\http\\client::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::post' => + array ( + 0 => 'void', + 'path' => 'string', + 'data' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\client::push' => + array ( + 0 => 'void', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + ), + 'swoole\\http\\client::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\http\\client::setCookies' => + array ( + 0 => 'void', + 'cookies' => 'array', + ), + 'swoole\\http\\client::setData' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + ), + 'swoole\\http\\client::setHeaders' => + array ( + 0 => 'void', + 'headers' => 'array', + ), + 'swoole\\http\\client::setMethod' => + array ( + 0 => 'void', + 'method' => 'string', + ), + 'swoole\\http\\client::upgrade' => + array ( + 0 => 'void', + 'path' => 'string', + 'callback' => 'string', + ), + 'swoole\\http\\request::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\request::rawcontent' => + array ( + 0 => 'string', + ), + 'swoole\\http\\response::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\http\\response::cookie' => + array ( + 0 => 'string', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'string', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'string', + 'httponly=' => 'string', + ), + 'swoole\\http\\response::end' => + array ( + 0 => 'void', + 'content=' => 'string', + ), + 'swoole\\http\\response::gzip' => + array ( + 0 => 'ReturnType', + 'compress_level=' => 'string', + ), + 'swoole\\http\\response::header' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'string', + 'ucwords=' => 'string', + ), + 'swoole\\http\\response::initHeader' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\http\\response::rawcookie' => + array ( + 0 => 'ReturnType', + 'name' => 'string', + 'value=' => 'string', + 'expires=' => 'string', + 'path=' => 'string', + 'domain=' => 'string', + 'secure=' => 'string', + 'httponly=' => 'string', + ), + 'swoole\\http\\response::sendfile' => + array ( + 0 => 'ReturnType', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\http\\response::status' => + array ( + 0 => 'ReturnType', + 'http_code' => 'string', + ), + 'swoole\\http\\response::write' => + array ( + 0 => 'void', + 'content' => 'string', + ), + 'swoole\\http\\server::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\http\\server::start' => + array ( + 0 => 'void', + ), + 'swoole\\lock::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\lock::lock' => + array ( + 0 => 'void', + ), + 'swoole\\lock::lock_read' => + array ( + 0 => 'void', + ), + 'swoole\\lock::trylock' => + array ( + 0 => 'void', + ), + 'swoole\\lock::trylock_read' => + array ( + 0 => 'void', + ), + 'swoole\\lock::unlock' => + array ( + 0 => 'void', + ), + 'swoole\\mmap::open' => + array ( + 0 => 'ReturnType', + 'filename' => 'string', + 'size=' => 'string', + 'offset=' => 'string', + ), + 'swoole\\mysql::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\mysql::close' => + array ( + 0 => 'void', + ), + 'swoole\\mysql::connect' => + array ( + 0 => 'void', + 'server_config' => 'array', + 'callback' => 'callable', + ), + 'swoole\\mysql::getBuffer' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\mysql::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\mysql::query' => + array ( + 0 => 'ReturnType', + 'sql' => 'string', + 'callback' => 'callable', + ), + 'swoole\\process::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\process::alarm' => + array ( + 0 => 'void', + 'interval_usec' => 'int', + ), + 'swoole\\process::close' => + array ( + 0 => 'void', + ), + 'swoole\\process::daemon' => + array ( + 0 => 'void', + 'nochdir=' => 'bool', + 'noclose=' => 'bool', + ), + 'swoole\\process::exec' => + array ( + 0 => 'ReturnType', + 'exec_file' => 'string', + 'args' => 'string', + ), + 'swoole\\process::exit' => + array ( + 0 => 'void', + 'exit_code=' => 'string', + ), + 'swoole\\process::freeQueue' => + array ( + 0 => 'void', + ), + 'swoole\\process::kill' => + array ( + 0 => 'void', + 'pid' => 'int', + 'signal_no=' => 'string', + ), + 'swoole\\process::name' => + array ( + 0 => 'void', + 'process_name' => 'string', + ), + 'swoole\\process::pop' => + array ( + 0 => 'mixed', + 'maxsize=' => 'int', + ), + 'swoole\\process::push' => + array ( + 0 => 'bool', + 'data' => 'string', + ), + 'swoole\\process::read' => + array ( + 0 => 'string', + 'maxsize=' => 'int', + ), + 'swoole\\process::signal' => + array ( + 0 => 'void', + 'signal_no' => 'string', + 'callback' => 'callable', + ), + 'swoole\\process::start' => + array ( + 0 => 'void', + ), + 'swoole\\process::statQueue' => + array ( + 0 => 'array', + ), + 'swoole\\process::useQueue' => + array ( + 0 => 'bool', + 'key' => 'int', + 'mode=' => 'int', + ), + 'swoole\\process::wait' => + array ( + 0 => 'array', + 'blocking=' => 'bool', + ), + 'swoole\\process::write' => + array ( + 0 => 'int', + 'data' => 'string', + ), + 'swoole\\redis\\server::format' => + array ( + 0 => 'ReturnType', + 'type' => 'string', + 'value=' => 'string', + ), + 'swoole\\redis\\server::setHandler' => + array ( + 0 => 'ReturnType', + 'command' => 'string', + 'callback' => 'string', + 'number_of_string_param=' => 'string', + 'type_of_array_param=' => 'string', + ), + 'swoole\\redis\\server::start' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\serialize::pack' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + 'is_fast=' => 'int', + ), + 'swoole\\serialize::unpack' => + array ( + 0 => 'ReturnType', + 'data' => 'string', + 'args=' => 'string', + ), + 'swoole\\server::addProcess' => + array ( + 0 => 'bool', + 'process' => 'swoole_process', + ), + 'swoole\\server::addlistener' => + array ( + 0 => 'void', + 'host' => 'string', + 'port' => 'int', + 'socket_type' => 'string', + ), + 'swoole\\server::after' => + array ( + 0 => 'ReturnType', + 'after_time_ms' => 'int', + 'callback' => 'callable', + 'param=' => 'string', + ), + 'swoole\\server::bind' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'uid' => 'int', + ), + 'swoole\\server::close' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'reset=' => 'bool', + ), + 'swoole\\server::confirm' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\server::connection_info' => + array ( + 0 => 'array', + 'fd' => 'int', + 'reactor_id=' => 'int', + ), + 'swoole\\server::connection_list' => + array ( + 0 => 'array', + 'start_fd' => 'int', + 'pagesize=' => 'int', + ), + 'swoole\\server::defer' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'swoole\\server::exist' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\server::finish' => + array ( + 0 => 'void', + 'data' => 'string', + ), + 'swoole\\server::getClientInfo' => + array ( + 0 => 'ReturnType', + 'fd' => 'int', + 'reactor_id=' => 'int', + ), + 'swoole\\server::getClientList' => + array ( + 0 => 'array', + 'start_fd' => 'int', + 'pagesize=' => 'int', + ), + 'swoole\\server::getLastError' => + array ( + 0 => 'int', + ), + 'swoole\\server::heartbeat' => + array ( + 0 => 'mixed', + 'if_close_connection' => 'bool', + ), + 'swoole\\server::listen' => + array ( + 0 => 'bool', + 'host' => 'string', + 'port' => 'int', + 'socket_type' => 'string', + ), + 'swoole\\server::on' => + array ( + 0 => 'void', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\server::pause' => + array ( + 0 => 'void', + 'fd' => 'int', + ), + 'swoole\\server::protect' => + array ( + 0 => 'void', + 'fd' => 'int', + 'is_protected=' => 'bool', + ), + 'swoole\\server::reload' => + array ( + 0 => 'bool', + ), + 'swoole\\server::resume' => + array ( + 0 => 'void', + 'fd' => 'int', + ), + 'swoole\\server::send' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + 'reactor_id=' => 'int', + ), + 'swoole\\server::sendMessage' => + array ( + 0 => 'bool', + 'worker_id' => 'int', + 'data' => 'string', + ), + 'swoole\\server::sendfile' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'filename' => 'string', + 'offset=' => 'int', + ), + 'swoole\\server::sendto' => + array ( + 0 => 'bool', + 'ip' => 'string', + 'port' => 'int', + 'data' => 'string', + 'server_socket=' => 'string', + ), + 'swoole\\server::sendwait' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + ), + 'swoole\\server::set' => + array ( + 0 => 'ReturnType', + 'settings' => 'array', + ), + 'swoole\\server::shutdown' => + array ( + 0 => 'void', + ), + 'swoole\\server::start' => + array ( + 0 => 'void', + ), + 'swoole\\server::stats' => + array ( + 0 => 'array', + ), + 'swoole\\server::stop' => + array ( + 0 => 'bool', + 'worker_id=' => 'int', + ), + 'swoole\\server::task' => + array ( + 0 => 'mixed', + 'data' => 'string', + 'dst_worker_id=' => 'int', + 'callback=' => 'callable', + ), + 'swoole\\server::taskWaitMulti' => + array ( + 0 => 'void', + 'tasks' => 'array', + 'timeout_ms=' => 'float', + ), + 'swoole\\server::taskwait' => + array ( + 0 => 'void', + 'data' => 'string', + 'timeout=' => 'float', + 'worker_id=' => 'int', + ), + 'swoole\\server::tick' => + array ( + 0 => 'void', + 'interval_ms' => 'int', + 'callback' => 'callable', + ), + 'swoole\\server\\port::__destruct' => + array ( + 0 => 'void', + ), + 'swoole\\server\\port::on' => + array ( + 0 => 'ReturnType', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\server\\port::set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole\\table::column' => + array ( + 0 => 'ReturnType', + 'name' => 'string', + 'type' => 'string', + 'size=' => 'int', + ), + 'swoole\\table::count' => + array ( + 0 => 'int', + ), + 'swoole\\table::create' => + array ( + 0 => 'void', + ), + 'swoole\\table::current' => + array ( + 0 => 'array', + ), + 'swoole\\table::decr' => + array ( + 0 => 'ReturnType', + 'key' => 'string', + 'column' => 'string', + 'decrby=' => 'int', + ), + 'swoole\\table::del' => + array ( + 0 => 'void', + 'key' => 'string', + ), + 'swoole\\table::destroy' => + array ( + 0 => 'void', + ), + 'swoole\\table::exist' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'swoole\\table::get' => + array ( + 0 => 'int', + 'row_key' => 'string', + 'column_key' => 'string', + ), + 'swoole\\table::incr' => + array ( + 0 => 'void', + 'key' => 'string', + 'column' => 'string', + 'incrby=' => 'int', + ), + 'swoole\\table::key' => + array ( + 0 => 'string', + ), + 'swoole\\table::next' => + array ( + 0 => 'ReturnType', + ), + 'swoole\\table::rewind' => + array ( + 0 => 'void', + ), + 'swoole\\table::set' => + array ( + 0 => 'void', + 'key' => 'string', + 'value' => 'array', + ), + 'swoole\\table::valid' => + array ( + 0 => 'bool', + ), + 'swoole\\timer::after' => + array ( + 0 => 'void', + 'after_time_ms' => 'int', + 'callback' => 'callable', + ), + 'swoole\\timer::clear' => + array ( + 0 => 'void', + 'timer_id' => 'int', + ), + 'swoole\\timer::exists' => + array ( + 0 => 'bool', + 'timer_id' => 'int', + ), + 'swoole\\timer::tick' => + array ( + 0 => 'void', + 'interval_ms' => 'int', + 'callback' => 'callable', + 'param=' => 'string', + ), + 'swoole\\websocket\\server::exist' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole\\websocket\\server::on' => + array ( + 0 => 'ReturnType', + 'event_name' => 'string', + 'callback' => 'callable', + ), + 'swoole\\websocket\\server::pack' => + array ( + 0 => 'binary', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + 'mask=' => 'string', + ), + 'swoole\\websocket\\server::push' => + array ( + 0 => 'void', + 'fd' => 'string', + 'data' => 'string', + 'opcode=' => 'string', + 'finish=' => 'string', + ), + 'swoole\\websocket\\server::unpack' => + array ( + 0 => 'string', + 'data' => 'binary', + ), + 'swoole_async_dns_lookup' => + array ( + 0 => 'bool', + 'hostname' => 'string', + 'callback' => 'callable', + ), + 'swoole_async_read' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'callable', + 'chunk_size=' => 'int', + 'offset=' => 'int', + ), + 'swoole_async_readfile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'callback' => 'string', + ), + 'swoole_async_set' => + array ( + 0 => 'void', + 'settings' => 'array', + ), + 'swoole_async_write' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'content' => 'string', + 'offset=' => 'int', + 'callback=' => 'callable', + ), + 'swoole_async_writefile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'content' => 'string', + 'callback=' => 'callable', + 'flags=' => 'int', + ), + 'swoole_client_select' => + array ( + 0 => 'int', + 'read_array' => 'array', + 'write_array' => 'array', + 'error_array' => 'array', + 'timeout=' => 'float', + ), + 'swoole_cpu_num' => + array ( + 0 => 'int', + ), + 'swoole_errno' => + array ( + 0 => 'int', + ), + 'swoole_event_add' => + array ( + 0 => 'int', + 'fd' => 'int', + 'read_callback=' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'int', + ), + 'swoole_event_defer' => + array ( + 0 => 'bool', + 'callback' => 'callable', + ), + 'swoole_event_del' => + array ( + 0 => 'bool', + 'fd' => 'int', + ), + 'swoole_event_exit' => + array ( + 0 => 'void', + ), + 'swoole_event_set' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'read_callback=' => 'callable', + 'write_callback=' => 'callable', + 'events=' => 'int', + ), + 'swoole_event_wait' => + array ( + 0 => 'void', + ), + 'swoole_event_write' => + array ( + 0 => 'bool', + 'fd' => 'int', + 'data' => 'string', + ), + 'swoole_get_local_ip' => + array ( + 0 => 'array', + ), + 'swoole_last_error' => + array ( + 0 => 'int', + ), + 'swoole_load_module' => + array ( + 0 => 'mixed', + 'filename' => 'string', + ), + 'swoole_select' => + array ( + 0 => 'int', + 'read_array' => 'array', + 'write_array' => 'array', + 'error_array' => 'array', + 'timeout=' => 'float', + ), + 'swoole_set_process_name' => + array ( + 0 => 'void', + 'process_name' => 'string', + 'size=' => 'int', + ), + 'swoole_strerror' => + array ( + 0 => 'string', + 'errno' => 'int', + 'error_type=' => 'int', + ), + 'swoole_timer_after' => + array ( + 0 => 'int', + 'ms' => 'int', + 'callback' => 'callable', + 'param=' => 'mixed', + ), + 'swoole_timer_exists' => + array ( + 0 => 'bool', + 'timer_id' => 'int', + ), + 'swoole_timer_tick' => + array ( + 0 => 'int', + 'ms' => 'int', + 'callback' => 'callable', + 'param=' => 'mixed', + ), + 'swoole_version' => + array ( + 0 => 'string', + ), + 'symbolObj::__construct' => + array ( + 0 => 'void', + 'map' => 'mapObj', + 'symbolname' => 'string', + ), + 'symbolObj::free' => + array ( + 0 => 'void', + ), + 'symbolObj::getPatternArray' => + array ( + 0 => 'array', + ), + 'symbolObj::getPointsArray' => + array ( + 0 => 'array', + ), + 'symbolObj::ms_newSymbolObj' => + array ( + 0 => 'int', + 'map' => 'mapObj', + 'symbolname' => 'string', + ), + 'symbolObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'symbolObj::setImagePath' => + array ( + 0 => 'int', + 'filename' => 'string', + ), + 'symbolObj::setPattern' => + array ( + 0 => 'int', + 'int' => 'array', + ), + 'symbolObj::setPoints' => + array ( + 0 => 'int', + 'double' => 'array', + ), + 'symlink' => + array ( + 0 => 'bool', + 'target' => 'string', + 'link' => 'string', + ), + 'sys_get_temp_dir' => + array ( + 0 => 'string', + ), + 'sys_getloadavg' => + array ( + 0 => 'array|false', + ), + 'syslog' => + array ( + 0 => 'true', + 'priority' => 'int', + 'message' => 'string', + ), + 'system' => + array ( + 0 => 'false|string', + 'command' => 'string', + '&w_result_code=' => 'int', + ), + 'taint' => + array ( + 0 => 'bool', + '&rw_string' => 'string', + '&...w_other_strings=' => 'string', + ), + 'tan' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'tanh' => + array ( + 0 => 'float', + 'num' => 'float', + ), + 'tcpwrap_check' => + array ( + 0 => 'bool', + 'daemon' => 'string', + 'address' => 'string', + 'user=' => 'string', + 'nodns=' => 'bool', + ), + 'tempnam' => + array ( + 0 => 'false|string', + 'directory' => 'string', + 'prefix' => 'string', + ), + 'textdomain' => + array ( + 0 => 'string', + 'domain' => 'null|string', + ), + 'tidy::__construct' => + array ( + 0 => 'void', + 'filename=' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'tidy::body' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::cleanRepair' => + array ( + 0 => 'bool', + ), + 'tidy::diagnose' => + array ( + 0 => 'bool', + ), + 'tidy::getConfig' => + array ( + 0 => 'array', + ), + 'tidy::getHtmlVer' => + array ( + 0 => 'int', + ), + 'tidy::getOpt' => + array ( + 0 => 'bool|int|string', + 'option' => 'string', + ), + 'tidy::getOptDoc' => + array ( + 0 => 'string', + 'option' => 'string', + ), + 'tidy::getRelease' => + array ( + 0 => 'string', + ), + 'tidy::getStatus' => + array ( + 0 => 'int', + ), + 'tidy::head' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::html' => + array ( + 0 => 'null|tidyNode', + ), + 'tidy::isXhtml' => + array ( + 0 => 'bool', + ), + 'tidy::isXml' => + array ( + 0 => 'bool', + ), + 'tidy::parseFile' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'tidy::parseString' => + array ( + 0 => 'bool', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'tidy::repairFile' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'tidy::repairString' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'tidy::root' => + array ( + 0 => 'null|tidyNode', + ), + 'tidyNode::__construct' => + array ( + 0 => 'void', + ), + 'tidyNode::getParent' => + array ( + 0 => 'null|tidyNode', + ), + 'tidyNode::hasChildren' => + array ( + 0 => 'bool', + ), + 'tidyNode::hasSiblings' => + array ( + 0 => 'bool', + ), + 'tidyNode::isAsp' => + array ( + 0 => 'bool', + ), + 'tidyNode::isComment' => + array ( + 0 => 'bool', + ), + 'tidyNode::isHtml' => + array ( + 0 => 'bool', + ), + 'tidyNode::isJste' => + array ( + 0 => 'bool', + ), + 'tidyNode::isPhp' => + array ( + 0 => 'bool', + ), + 'tidyNode::isText' => + array ( + 0 => 'bool', + ), + 'tidy_access_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_clean_repair' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_config_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_diagnose' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_error_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_get_body' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_config' => + array ( + 0 => 'array', + 'tidy' => 'tidy', + ), + 'tidy_get_error_buffer' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + ), + 'tidy_get_head' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_html' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_html_ver' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_get_opt_doc' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + 'option' => 'string', + ), + 'tidy_get_output' => + array ( + 0 => 'string', + 'tidy' => 'tidy', + ), + 'tidy_get_release' => + array ( + 0 => 'string', + ), + 'tidy_get_root' => + array ( + 0 => 'null|tidyNode', + 'tidy' => 'tidy', + ), + 'tidy_get_status' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'tidy_getopt' => + array ( + 0 => 'bool|int|string', + 'tidy' => 'tidy', + 'option' => 'string', + ), + 'tidy_is_xhtml' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_is_xml' => + array ( + 0 => 'bool', + 'tidy' => 'tidy', + ), + 'tidy_load_config' => + array ( + 0 => 'void', + 'filename' => 'string', + 'encoding' => 'string', + ), + 'tidy_parse_file' => + array ( + 0 => 'tidy', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'tidy_parse_string' => + array ( + 0 => 'tidy', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'tidy_repair_file' => + array ( + 0 => 'string', + 'filename' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + 'useIncludePath=' => 'bool', + ), + 'tidy_repair_string' => + array ( + 0 => 'string', + 'string' => 'string', + 'config=' => 'array|string', + 'encoding=' => 'string', + ), + 'tidy_reset_config' => + array ( + 0 => 'bool', + ), + 'tidy_save_config' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'tidy_set_encoding' => + array ( + 0 => 'bool', + 'encoding' => 'string', + ), + 'tidy_setopt' => + array ( + 0 => 'bool', + 'option' => 'string', + 'value' => 'mixed', + ), + 'tidy_warning_count' => + array ( + 0 => 'int', + 'tidy' => 'tidy', + ), + 'time' => + array ( + 0 => 'int<1, max>', + ), + 'time_nanosleep' => + array ( + 0 => 'array{0: int<0, max>, 1: int<0, max>}|bool', + 'seconds' => 'int<1, max>', + 'nanoseconds' => 'int<1, max>', + ), + 'time_sleep_until' => + array ( + 0 => 'bool', + 'timestamp' => 'float', + ), + 'timezone_abbreviations_list' => + array ( + 0 => 'array>', + ), + 'timezone_identifiers_list' => + array ( + 0 => 'false|list', + 'timezoneGroup=' => 'int', + 'countryCode=' => 'string', + ), + 'timezone_location_get' => + array ( + 0 => 'array|false', + 'object' => 'DateTimeZone', + ), + 'timezone_name_from_abbr' => + array ( + 0 => 'false|string', + 'abbr' => 'string', + 'utcOffset=' => 'int', + 'isDST=' => 'int', + ), + 'timezone_name_get' => + array ( + 0 => 'string', + 'object' => 'DateTimeZone', + ), + 'timezone_offset_get' => + array ( + 0 => 'false|int', + 'object' => 'DateTimeZone', + 'datetime' => 'DateTimeInterface', + ), + 'timezone_open' => + array ( + 0 => 'DateTimeZone|false', + 'timezone' => 'string', + ), + 'timezone_transitions_get' => + array ( + 0 => 'false|list', + 'object' => 'DateTimeZone', + 'timestampBegin=' => 'int', + 'timestampEnd=' => 'int', + ), + 'timezone_version_get' => + array ( + 0 => 'string', + ), + 'tmpfile' => + array ( + 0 => 'false|resource', + ), + 'token_get_all' => + array ( + 0 => 'list', + 'code' => 'string', + 'flags=' => 'int', + ), + 'token_name' => + array ( + 0 => 'string', + 'id' => 'int', + ), + 'touch' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'mtime=' => 'int', + 'atime=' => 'int', + ), + 'trader_acos' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ad' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + ), + 'trader_add' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_adosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + ), + 'trader_adx' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_adxr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_apo' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_aroon' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_aroonosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_asin' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_atan' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_atr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_avgprice' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_bbands' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDevUp=' => 'float', + 'nbDevDn=' => 'float', + 'mAType=' => 'int', + ), + 'trader_beta' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_bop' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cci' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_cdl2crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3blackcrows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3inside' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3linestrike' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3outside' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3starsinsouth' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdl3whitesoldiers' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlabandonedbaby' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdladvanceblock' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlbelthold' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlbreakaway' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlclosingmarubozu' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlconcealbabyswall' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlcounterattack' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldarkcloudcover' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdldoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdldragonflydoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlengulfing' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdleveningdojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdleveningstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlgapsidesidewhite' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlgravestonedoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhammer' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhangingman' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlharami' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlharamicross' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhighwave' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhikkake' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhikkakemod' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlhomingpigeon' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlidentical3crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlinneck' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlinvertedhammer' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlkicking' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlkickingbylength' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlladderbottom' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdllongleggeddoji' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdllongline' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmarubozu' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmatchinglow' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlmathold' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlmorningdojistar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlmorningstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'penetration=' => 'float', + ), + 'trader_cdlonneck' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlpiercing' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlrickshawman' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlrisefall3methods' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlseparatinglines' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlshootingstar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlshortline' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlspinningtop' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlstalledpattern' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlsticksandwich' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltakuri' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltasukigap' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlthrusting' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdltristar' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlunique3river' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlupsidegap2crows' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_cdlxsidegap3methods' => + array ( + 0 => 'array', + 'open' => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_ceil' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_cmo' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_correl' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_cos' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_cosh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_dema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_div' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_dx' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_errno' => + array ( + 0 => 'int', + ), + 'trader_exp' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_floor' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_get_compat' => + array ( + 0 => 'int', + ), + 'trader_get_unstable_period' => + array ( + 0 => 'int', + 'functionId' => 'int', + ), + 'trader_ht_dcperiod' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_dcphase' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_phasor' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_sine' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_trendline' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ht_trendmode' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_kama' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_angle' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_intercept' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_linearreg_slope' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ln' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_log10' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_ma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_macd' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'signalPeriod=' => 'int', + ), + 'trader_macdext' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'fastMAType=' => 'int', + 'slowPeriod=' => 'int', + 'slowMAType=' => 'int', + 'signalPeriod=' => 'int', + 'signalMAType=' => 'int', + ), + 'trader_macdfix' => + array ( + 0 => 'array', + 'real' => 'array', + 'signalPeriod=' => 'int', + ), + 'trader_mama' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastLimit=' => 'float', + 'slowLimit=' => 'float', + ), + 'trader_mavp' => + array ( + 0 => 'array', + 'real' => 'array', + 'periods' => 'array', + 'minPeriod=' => 'int', + 'maxPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_max' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_maxindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_medprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + ), + 'trader_mfi' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'volume' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_midpoint' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_midprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_min' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minmax' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minmaxindex' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minus_di' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_minus_dm' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_mom' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_mult' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_natr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_obv' => + array ( + 0 => 'array', + 'real' => 'array', + 'volume' => 'array', + ), + 'trader_plus_di' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_plus_dm' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_ppo' => + array ( + 0 => 'array', + 'real' => 'array', + 'fastPeriod=' => 'int', + 'slowPeriod=' => 'int', + 'mAType=' => 'int', + ), + 'trader_roc' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocp' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocr' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rocr100' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_rsi' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_sar' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'acceleration=' => 'float', + 'maximum=' => 'float', + ), + 'trader_sarext' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'startValue=' => 'float', + 'offsetOnReverse=' => 'float', + 'accelerationInitLong=' => 'float', + 'accelerationLong=' => 'float', + 'accelerationMaxLong=' => 'float', + 'accelerationInitShort=' => 'float', + 'accelerationShort=' => 'float', + 'accelerationMaxShort=' => 'float', + ), + 'trader_set_compat' => + array ( + 0 => 'void', + 'compatId' => 'int', + ), + 'trader_set_unstable_period' => + array ( + 0 => 'void', + 'functionId' => 'int', + 'timePeriod' => 'int', + ), + 'trader_sin' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_sinh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_sma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_sqrt' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_stddev' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDev=' => 'float', + ), + 'trader_stoch' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'fastK_Period=' => 'int', + 'slowK_Period=' => 'int', + 'slowK_MAType=' => 'int', + 'slowD_Period=' => 'int', + 'slowD_MAType=' => 'int', + ), + 'trader_stochf' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'fastK_Period=' => 'int', + 'fastD_Period=' => 'int', + 'fastD_MAType=' => 'int', + ), + 'trader_stochrsi' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'fastK_Period=' => 'int', + 'fastD_Period=' => 'int', + 'fastD_MAType=' => 'int', + ), + 'trader_sub' => + array ( + 0 => 'array', + 'real0' => 'array', + 'real1' => 'array', + ), + 'trader_sum' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_t3' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'vFactor=' => 'float', + ), + 'trader_tan' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_tanh' => + array ( + 0 => 'array', + 'real' => 'array', + ), + 'trader_tema' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_trange' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_trima' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_trix' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_tsf' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_typprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_ultosc' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod1=' => 'int', + 'timePeriod2=' => 'int', + 'timePeriod3=' => 'int', + ), + 'trader_var' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + 'nbDev=' => 'float', + ), + 'trader_wclprice' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + ), + 'trader_willr' => + array ( + 0 => 'array', + 'high' => 'array', + 'low' => 'array', + 'close' => 'array', + 'timePeriod=' => 'int', + ), + 'trader_wma' => + array ( + 0 => 'array', + 'real' => 'array', + 'timePeriod=' => 'int', + ), + 'trait_exists' => + array ( + 0 => 'bool', + 'trait' => 'string', + 'autoload=' => 'bool', + ), + 'transliterator_create' => + array ( + 0 => 'Transliterator|null', + 'id' => 'string', + 'direction=' => 'int', + ), + 'transliterator_create_from_rules' => + array ( + 0 => 'Transliterator|null', + 'rules' => 'string', + 'direction=' => 'int', + ), + 'transliterator_create_inverse' => + array ( + 0 => 'Transliterator|null', + 'transliterator' => 'Transliterator', + ), + 'transliterator_get_error_code' => + array ( + 0 => 'int', + 'transliterator' => 'Transliterator', + ), + 'transliterator_get_error_message' => + array ( + 0 => 'string', + 'transliterator' => 'Transliterator', + ), + 'transliterator_list_ids' => + array ( + 0 => 'array', + ), + 'transliterator_transliterate' => + array ( + 0 => 'false|string', + 'transliterator' => 'Transliterator|string', + 'string' => 'string', + 'start=' => 'int', + 'end=' => 'int', + ), + 'trigger_error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'error_level=' => '256|512|1024|16384', + ), + 'trim' => + array ( + 0 => 'string', + 'string' => 'string', + 'characters=' => 'string', + ), + 'uasort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'ucfirst' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'ucwords' => + array ( + 0 => 'string', + 'string' => 'string', + 'separators=' => 'string', + ), + 'udm_add_search_limit' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'value' => 'string', + ), + 'udm_alloc_agent' => + array ( + 0 => 'resource', + 'dbaddr' => 'string', + 'dbmode=' => 'string', + ), + 'udm_alloc_agent_array' => + array ( + 0 => 'resource', + 'databases' => 'array', + ), + 'udm_api_version' => + array ( + 0 => 'int', + ), + 'udm_cat_list' => + array ( + 0 => 'array', + 'agent' => 'resource', + 'category' => 'string', + ), + 'udm_cat_path' => + array ( + 0 => 'array', + 'agent' => 'resource', + 'category' => 'string', + ), + 'udm_check_charset' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'charset' => 'string', + ), + 'udm_check_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'link' => 'int', + 'doc_id' => 'string', + ), + 'udm_clear_search_limits' => + array ( + 0 => 'bool', + 'agent' => 'resource', + ), + 'udm_close_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'link' => 'int', + ), + 'udm_crc32' => + array ( + 0 => 'int', + 'agent' => 'resource', + 'string' => 'string', + ), + 'udm_errno' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_error' => + array ( + 0 => 'string', + 'agent' => 'resource', + ), + 'udm_find' => + array ( + 0 => 'resource', + 'agent' => 'resource', + 'query' => 'string', + ), + 'udm_free_agent' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_free_ispell_data' => + array ( + 0 => 'bool', + 'agent' => 'int', + ), + 'udm_free_res' => + array ( + 0 => 'bool', + 'res' => 'resource', + ), + 'udm_get_doc_count' => + array ( + 0 => 'int', + 'agent' => 'resource', + ), + 'udm_get_res_field' => + array ( + 0 => 'string', + 'res' => 'resource', + 'row' => 'int', + 'field' => 'int', + ), + 'udm_get_res_param' => + array ( + 0 => 'string', + 'res' => 'resource', + 'param' => 'int', + ), + 'udm_hash32' => + array ( + 0 => 'int', + 'agent' => 'resource', + 'string' => 'string', + ), + 'udm_load_ispell_data' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'val1' => 'string', + 'val2' => 'string', + 'flag' => 'int', + ), + 'udm_open_stored' => + array ( + 0 => 'int', + 'agent' => 'mixed', + 'storedaddr' => 'string', + ), + 'udm_set_agent_param' => + array ( + 0 => 'bool', + 'agent' => 'resource', + 'var' => 'int', + 'val' => 'string', + ), + 'ui\\area::onDraw' => + array ( + 0 => 'mixed', + 'pen' => 'UI\\Draw\\Pen', + 'areaSize' => 'UI\\Size', + 'clipPoint' => 'UI\\Point', + 'clipSize' => 'UI\\Size', + ), + 'ui\\area::onKey' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'ext' => 'int', + 'flags' => 'int', + ), + 'ui\\area::onMouse' => + array ( + 0 => 'mixed', + 'areaPoint' => 'UI\\Point', + 'areaSize' => 'UI\\Size', + 'flags' => 'int', + ), + 'ui\\area::redraw' => + array ( + 0 => 'mixed', + ), + 'ui\\area::scrollTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'size' => 'UI\\Size', + ), + 'ui\\area::setSize' => + array ( + 0 => 'mixed', + 'size' => 'UI\\Size', + ), + 'ui\\control::destroy' => + array ( + 0 => 'mixed', + ), + 'ui\\control::disable' => + array ( + 0 => 'mixed', + ), + 'ui\\control::enable' => + array ( + 0 => 'mixed', + ), + 'ui\\control::getParent' => + array ( + 0 => 'UI\\Control', + ), + 'ui\\control::getTopLevel' => + array ( + 0 => 'int', + ), + 'ui\\control::hide' => + array ( + 0 => 'mixed', + ), + 'ui\\control::isEnabled' => + array ( + 0 => 'bool', + ), + 'ui\\control::isVisible' => + array ( + 0 => 'bool', + ), + 'ui\\control::setParent' => + array ( + 0 => 'mixed', + 'parent' => 'UI\\Control', + ), + 'ui\\control::show' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\box::append' => + array ( + 0 => 'int', + 'control' => 'Control', + 'stretchy=' => 'bool', + ), + 'ui\\controls\\box::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\box::getOrientation' => + array ( + 0 => 'int', + ), + 'ui\\controls\\box::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\box::setPadded' => + array ( + 0 => 'mixed', + 'padded' => 'bool', + ), + 'ui\\controls\\button::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\button::onClick' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\button::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\check::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\check::isChecked' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\check::onToggle' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\check::setChecked' => + array ( + 0 => 'mixed', + 'checked' => 'bool', + ), + 'ui\\controls\\check::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\colorbutton::getColor' => + array ( + 0 => 'UI\\Color', + ), + 'ui\\controls\\colorbutton::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\combo::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\combo::getSelected' => + array ( + 0 => 'int', + ), + 'ui\\controls\\combo::onSelected' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\combo::setSelected' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'ui\\controls\\editablecombo::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\editablecombo::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\editablecombo::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\editablecombo::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\entry::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\entry::isReadOnly' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\entry::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\entry::setReadOnly' => + array ( + 0 => 'mixed', + 'readOnly' => 'bool', + ), + 'ui\\controls\\entry::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\form::append' => + array ( + 0 => 'int', + 'label' => 'string', + 'control' => 'UI\\Control', + 'stretchy=' => 'bool', + ), + 'ui\\controls\\form::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\form::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\form::setPadded' => + array ( + 0 => 'mixed', + 'padded' => 'bool', + ), + 'ui\\controls\\grid::append' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + 'left' => 'int', + 'top' => 'int', + 'xspan' => 'int', + 'yspan' => 'int', + 'hexpand' => 'bool', + 'halign' => 'int', + 'vexpand' => 'bool', + 'valign' => 'int', + ), + 'ui\\controls\\grid::isPadded' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\grid::setPadded' => + array ( + 0 => 'mixed', + 'padding' => 'bool', + ), + 'ui\\controls\\group::append' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\group::getTitle' => + array ( + 0 => 'string', + ), + 'ui\\controls\\group::hasMargin' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\group::setMargin' => + array ( + 0 => 'mixed', + 'margin' => 'bool', + ), + 'ui\\controls\\group::setTitle' => + array ( + 0 => 'mixed', + 'title' => 'string', + ), + 'ui\\controls\\label::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\label::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\multilineentry::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\multilineentry::getText' => + array ( + 0 => 'string', + ), + 'ui\\controls\\multilineentry::isReadOnly' => + array ( + 0 => 'bool', + ), + 'ui\\controls\\multilineentry::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\multilineentry::setReadOnly' => + array ( + 0 => 'mixed', + 'readOnly' => 'bool', + ), + 'ui\\controls\\multilineentry::setText' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\progress::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\progress::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\radio::append' => + array ( + 0 => 'mixed', + 'text' => 'string', + ), + 'ui\\controls\\radio::getSelected' => + array ( + 0 => 'int', + ), + 'ui\\controls\\radio::onSelected' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\radio::setSelected' => + array ( + 0 => 'mixed', + 'index' => 'int', + ), + 'ui\\controls\\slider::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\slider::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\slider::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\spin::getValue' => + array ( + 0 => 'int', + ), + 'ui\\controls\\spin::onChange' => + array ( + 0 => 'mixed', + ), + 'ui\\controls\\spin::setValue' => + array ( + 0 => 'mixed', + 'value' => 'int', + ), + 'ui\\controls\\tab::append' => + array ( + 0 => 'int', + 'name' => 'string', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\tab::delete' => + array ( + 0 => 'bool', + 'index' => 'int', + ), + 'ui\\controls\\tab::hasMargin' => + array ( + 0 => 'bool', + 'page' => 'int', + ), + 'ui\\controls\\tab::insertAt' => + array ( + 0 => 'mixed', + 'name' => 'string', + 'page' => 'int', + 'control' => 'UI\\Control', + ), + 'ui\\controls\\tab::pages' => + array ( + 0 => 'int', + ), + 'ui\\controls\\tab::setMargin' => + array ( + 0 => 'mixed', + 'page' => 'int', + 'margin' => 'bool', + ), + 'ui\\draw\\brush::getColor' => + array ( + 0 => 'UI\\Draw\\Color', + ), + 'ui\\draw\\brush\\gradient::delStop' => + array ( + 0 => 'int', + 'index' => 'int', + ), + 'ui\\draw\\color::getChannel' => + array ( + 0 => 'float', + 'channel' => 'int', + ), + 'ui\\draw\\color::setChannel' => + array ( + 0 => 'void', + 'channel' => 'int', + 'value' => 'float', + ), + 'ui\\draw\\matrix::invert' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\matrix::isInvertible' => + array ( + 0 => 'bool', + ), + 'ui\\draw\\matrix::multiply' => + array ( + 0 => 'UI\\Draw\\Matrix', + 'matrix' => 'UI\\Draw\\Matrix', + ), + 'ui\\draw\\matrix::rotate' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'amount' => 'float', + ), + 'ui\\draw\\matrix::scale' => + array ( + 0 => 'mixed', + 'center' => 'UI\\Point', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\matrix::skew' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'amount' => 'UI\\Point', + ), + 'ui\\draw\\matrix::translate' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\path::addRectangle' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'size' => 'UI\\Size', + ), + 'ui\\draw\\path::arcTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::bezierTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::closeFigure' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\path::end' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\path::lineTo' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\path::newFigure' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + ), + 'ui\\draw\\path::newFigureWithArc' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'radius' => 'float', + 'angle' => 'float', + 'sweep' => 'float', + 'negative' => 'float', + ), + 'ui\\draw\\pen::clip' => + array ( + 0 => 'mixed', + 'path' => 'UI\\Draw\\Path', + ), + 'ui\\draw\\pen::restore' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\pen::save' => + array ( + 0 => 'mixed', + ), + 'ui\\draw\\pen::transform' => + array ( + 0 => 'mixed', + 'matrix' => 'UI\\Draw\\Matrix', + ), + 'ui\\draw\\pen::write' => + array ( + 0 => 'mixed', + 'point' => 'UI\\Point', + 'layout' => 'UI\\Draw\\Text\\Layout', + ), + 'ui\\draw\\stroke::getCap' => + array ( + 0 => 'int', + ), + 'ui\\draw\\stroke::getJoin' => + array ( + 0 => 'int', + ), + 'ui\\draw\\stroke::getMiterLimit' => + array ( + 0 => 'float', + ), + 'ui\\draw\\stroke::getThickness' => + array ( + 0 => 'float', + ), + 'ui\\draw\\stroke::setCap' => + array ( + 0 => 'mixed', + 'cap' => 'int', + ), + 'ui\\draw\\stroke::setJoin' => + array ( + 0 => 'mixed', + 'join' => 'int', + ), + 'ui\\draw\\stroke::setMiterLimit' => + array ( + 0 => 'mixed', + 'limit' => 'float', + ), + 'ui\\draw\\stroke::setThickness' => + array ( + 0 => 'mixed', + 'thickness' => 'float', + ), + 'ui\\draw\\text\\font::getAscent' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getDescent' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getLeading' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getUnderlinePosition' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font::getUnderlineThickness' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font\\descriptor::getFamily' => + array ( + 0 => 'string', + ), + 'ui\\draw\\text\\font\\descriptor::getItalic' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\descriptor::getSize' => + array ( + 0 => 'float', + ), + 'ui\\draw\\text\\font\\descriptor::getStretch' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\descriptor::getWeight' => + array ( + 0 => 'int', + ), + 'ui\\draw\\text\\font\\fontfamilies' => + array ( + 0 => 'array', + ), + 'ui\\draw\\text\\layout::setWidth' => + array ( + 0 => 'mixed', + 'width' => 'float', + ), + 'ui\\executor::kill' => + array ( + 0 => 'void', + ), + 'ui\\executor::onExecute' => + array ( + 0 => 'void', + ), + 'ui\\menu::append' => + array ( + 0 => 'UI\\MenuItem', + 'name' => 'string', + 'type=' => 'string', + ), + 'ui\\menu::appendAbout' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendCheck' => + array ( + 0 => 'UI\\MenuItem', + 'name' => 'string', + 'type=' => 'string', + ), + 'ui\\menu::appendPreferences' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendQuit' => + array ( + 0 => 'UI\\MenuItem', + 'type=' => 'string', + ), + 'ui\\menu::appendSeparator' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::disable' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::enable' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::isChecked' => + array ( + 0 => 'bool', + ), + 'ui\\menuitem::onClick' => + array ( + 0 => 'mixed', + ), + 'ui\\menuitem::setChecked' => + array ( + 0 => 'mixed', + 'checked' => 'bool', + ), + 'ui\\point::getX' => + array ( + 0 => 'float', + ), + 'ui\\point::getY' => + array ( + 0 => 'float', + ), + 'ui\\point::setX' => + array ( + 0 => 'mixed', + 'point' => 'float', + ), + 'ui\\point::setY' => + array ( + 0 => 'mixed', + 'point' => 'float', + ), + 'ui\\quit' => + array ( + 0 => 'void', + ), + 'ui\\run' => + array ( + 0 => 'void', + 'flags=' => 'int', + ), + 'ui\\size::getHeight' => + array ( + 0 => 'float', + ), + 'ui\\size::getWidth' => + array ( + 0 => 'float', + ), + 'ui\\size::setHeight' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'ui\\size::setWidth' => + array ( + 0 => 'mixed', + 'size' => 'float', + ), + 'ui\\window::add' => + array ( + 0 => 'mixed', + 'control' => 'UI\\Control', + ), + 'ui\\window::error' => + array ( + 0 => 'mixed', + 'title' => 'string', + 'msg' => 'string', + ), + 'ui\\window::getSize' => + array ( + 0 => 'UI\\Size', + ), + 'ui\\window::getTitle' => + array ( + 0 => 'string', + ), + 'ui\\window::hasBorders' => + array ( + 0 => 'bool', + ), + 'ui\\window::hasMargin' => + array ( + 0 => 'bool', + ), + 'ui\\window::isFullScreen' => + array ( + 0 => 'bool', + ), + 'ui\\window::msg' => + array ( + 0 => 'mixed', + 'title' => 'string', + 'msg' => 'string', + ), + 'ui\\window::onClosing' => + array ( + 0 => 'int', + ), + 'ui\\window::open' => + array ( + 0 => 'string', + ), + 'ui\\window::save' => + array ( + 0 => 'string', + ), + 'ui\\window::setBorders' => + array ( + 0 => 'mixed', + 'borders' => 'bool', + ), + 'ui\\window::setFullScreen' => + array ( + 0 => 'mixed', + 'full' => 'bool', + ), + 'ui\\window::setMargin' => + array ( + 0 => 'mixed', + 'margin' => 'bool', + ), + 'ui\\window::setSize' => + array ( + 0 => 'mixed', + 'size' => 'UI\\Size', + ), + 'ui\\window::setTitle' => + array ( + 0 => 'mixed', + 'title' => 'string', + ), + 'uksort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'umask' => + array ( + 0 => 'int', + 'mask=' => 'int', + ), + 'uniqid' => + array ( + 0 => 'non-empty-string', + 'prefix=' => 'string', + 'more_entropy=' => 'bool', + ), + 'unixtojd' => + array ( + 0 => 'false|int', + 'timestamp=' => 'int', + ), + 'unlink' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'context=' => 'resource', + ), + 'unpack' => + array ( + 0 => 'array', + 'format' => 'string', + 'string' => 'string', + ), + 'unregister_tick_function' => + array ( + 0 => 'void', + 'callback' => 'callable', + ), + 'unserialize' => + array ( + 0 => 'mixed', + 'data' => 'string', + 'options=' => 'array{allowed_classes?: array|bool}', + ), + 'unset' => + array ( + 0 => 'void', + 'var=' => 'mixed', + '...args=' => 'mixed', + ), + 'untaint' => + array ( + 0 => 'bool', + '&rw_string' => 'string', + '&...rw_strings=' => 'string', + ), + 'uopz_allow_exit' => + array ( + 0 => 'void', + 'allow' => 'bool', + ), + 'uopz_backup' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_backup\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_compose' => + array ( + 0 => 'void', + 'name' => 'string', + 'classes' => 'array', + 'methods=' => 'array', + 'properties=' => 'array', + 'flags=' => 'int', + ), + 'uopz_copy' => + array ( + 0 => 'Closure', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_copy\'1' => + array ( + 0 => 'Closure', + 'function' => 'string', + ), + 'uopz_delete' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_delete\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_extend' => + array ( + 0 => 'bool', + 'class' => 'string', + 'parent' => 'string', + ), + 'uopz_flags' => + array ( + 0 => 'int', + 'class' => 'string', + 'function' => 'string', + 'flags' => 'int', + ), + 'uopz_flags\'1' => + array ( + 0 => 'int', + 'function' => 'string', + 'flags' => 'int', + ), + 'uopz_function' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'handler' => 'Closure', + 'modifiers=' => 'int', + ), + 'uopz_function\'1' => + array ( + 0 => 'void', + 'function' => 'string', + 'handler' => 'Closure', + 'modifiers=' => 'int', + ), + 'uopz_get_exit_status' => + array ( + 0 => 'int|null', + ), + 'uopz_get_hook' => + array ( + 0 => 'Closure|null', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_get_hook\'1' => + array ( + 0 => 'Closure|null', + 'function' => 'string', + ), + 'uopz_get_mock' => + array ( + 0 => 'null|object|string', + 'class' => 'string', + ), + 'uopz_get_property' => + array ( + 0 => 'mixed', + 'class' => 'object|string', + 'property' => 'string', + ), + 'uopz_get_return' => + array ( + 0 => 'mixed', + 'class=' => 'class-string', + 'function=' => 'string', + ), + 'uopz_get_static' => + array ( + 0 => 'array|null', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_implement' => + array ( + 0 => 'bool', + 'class' => 'string', + 'interface' => 'string', + ), + 'uopz_overload' => + array ( + 0 => 'void', + 'opcode' => 'int', + 'callable' => 'callable', + ), + 'uopz_redefine' => + array ( + 0 => 'bool', + 'class' => 'string', + 'constant' => 'string', + 'value' => 'mixed', + ), + 'uopz_redefine\'1' => + array ( + 0 => 'bool', + 'constant' => 'string', + 'value' => 'mixed', + ), + 'uopz_rename' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'rename' => 'string', + ), + 'uopz_rename\'1' => + array ( + 0 => 'void', + 'function' => 'string', + 'rename' => 'string', + ), + 'uopz_restore' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_restore\'1' => + array ( + 0 => 'void', + 'function' => 'string', + ), + 'uopz_set_hook' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + 'hook' => 'Closure', + ), + 'uopz_set_hook\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + 'hook' => 'Closure', + ), + 'uopz_set_mock' => + array ( + 0 => 'void', + 'class' => 'string', + 'mock' => 'object|string', + ), + 'uopz_set_property' => + array ( + 0 => 'void', + 'class' => 'object|string', + 'property' => 'string', + 'value' => 'mixed', + ), + 'uopz_set_return' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + 'value' => 'mixed', + 'execute=' => 'bool', + ), + 'uopz_set_return\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + 'value' => 'mixed', + 'execute=' => 'bool', + ), + 'uopz_set_static' => + array ( + 0 => 'void', + 'class' => 'string', + 'function' => 'string', + 'static' => 'array', + ), + 'uopz_undefine' => + array ( + 0 => 'bool', + 'class' => 'string', + 'constant' => 'string', + ), + 'uopz_undefine\'1' => + array ( + 0 => 'bool', + 'constant' => 'string', + ), + 'uopz_unset_hook' => + array ( + 0 => 'bool', + 'class' => 'string', + 'function' => 'string', + ), + 'uopz_unset_hook\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'uopz_unset_mock' => + array ( + 0 => 'void', + 'class' => 'string', + ), + 'uopz_unset_return' => + array ( + 0 => 'bool', + 'class=' => 'class-string', + 'function=' => 'string', + ), + 'uopz_unset_return\'1' => + array ( + 0 => 'bool', + 'function' => 'string', + ), + 'urldecode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'urlencode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'use_soap_error_handler' => + array ( + 0 => 'bool', + 'enable=' => 'bool', + ), + 'user_error' => + array ( + 0 => 'bool', + 'message' => 'string', + 'error_level=' => 'int', + ), + 'usleep' => + array ( + 0 => 'void', + 'microseconds' => 'int<0, max>', + ), + 'usort' => + array ( + 0 => 'true', + '&rw_array' => 'array', + 'callback' => 'callable(mixed, mixed):int', + ), + 'utf8_decode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'utf8_encode' => + array ( + 0 => 'string', + 'string' => 'string', + ), + 'var_dump' => + array ( + 0 => 'void', + 'value' => 'mixed', + '...values=' => 'mixed', + ), + 'var_export' => + array ( + 0 => 'null|string', + 'value' => 'mixed', + 'return=' => 'bool', + ), + 'variant_abs' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_add' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_and' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_cast' => + array ( + 0 => 'VARIANT', + 'variant' => 'VARIANT', + 'type' => 'int', + ), + 'variant_cat' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_cmp' => + array ( + 0 => 'int', + 'left' => 'mixed', + 'right' => 'mixed', + 'locale_id=' => 'int', + 'flags=' => 'int', + ), + 'variant_date_from_timestamp' => + array ( + 0 => 'VARIANT', + 'timestamp' => 'int', + ), + 'variant_date_to_timestamp' => + array ( + 0 => 'int', + 'variant' => 'VARIANT', + ), + 'variant_div' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_eqv' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_fix' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_get_type' => + array ( + 0 => 'int', + 'variant' => 'VARIANT', + ), + 'variant_idiv' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_imp' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_int' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_mod' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_mul' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_neg' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_not' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + ), + 'variant_or' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_pow' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_round' => + array ( + 0 => 'mixed', + 'value' => 'mixed', + 'decimals' => 'int', + ), + 'variant_set' => + array ( + 0 => 'void', + 'variant' => 'object', + 'value' => 'mixed', + ), + 'variant_set_type' => + array ( + 0 => 'void', + 'variant' => 'object', + 'type' => 'int', + ), + 'variant_sub' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'variant_xor' => + array ( + 0 => 'mixed', + 'left' => 'mixed', + 'right' => 'mixed', + ), + 'version_compare' => + array ( + 0 => 'bool', + 'version1' => 'string', + 'version2' => 'string', + 'operator' => '\'!=\'|\'<\'|\'<=\'|\'<>\'|\'=\'|\'==\'|\'>\'|\'>=\'|\'eq\'|\'ge\'|\'gt\'|\'le\'|\'lt\'|\'ne\'', + ), + 'version_compare\'1' => + array ( + 0 => 'int', + 'version1' => 'string', + 'version2' => 'string', + ), + 'vfprintf' => + array ( + 0 => 'int<0, max>', + 'stream' => 'resource', + 'format' => 'string', + 'values' => 'array', + ), + 'virtual' => + array ( + 0 => 'bool', + 'uri' => 'string', + ), + 'vpopmail_add_alias_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'aliasdomain' => 'string', + ), + 'vpopmail_add_alias_domain_ex' => + array ( + 0 => 'bool', + 'olddomain' => 'string', + 'newdomain' => 'string', + ), + 'vpopmail_add_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'dir' => 'string', + 'uid' => 'int', + 'gid' => 'int', + ), + 'vpopmail_add_domain_ex' => + array ( + 0 => 'bool', + 'domain' => 'string', + 'passwd' => 'string', + 'quota=' => 'string', + 'bounce=' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_add_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'gecos=' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_alias_add' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'alias' => 'string', + ), + 'vpopmail_alias_del' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + ), + 'vpopmail_alias_del_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_alias_get' => + array ( + 0 => 'array', + 'alias' => 'string', + 'domain' => 'string', + ), + 'vpopmail_alias_get_all' => + array ( + 0 => 'array', + 'domain' => 'string', + ), + 'vpopmail_auth_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'apop=' => 'string', + ), + 'vpopmail_del_domain' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_del_domain_ex' => + array ( + 0 => 'bool', + 'domain' => 'string', + ), + 'vpopmail_del_user' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + ), + 'vpopmail_error' => + array ( + 0 => 'string', + ), + 'vpopmail_passwd' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'password' => 'string', + 'apop=' => 'bool', + ), + 'vpopmail_set_user_quota' => + array ( + 0 => 'bool', + 'user' => 'string', + 'domain' => 'string', + 'quota' => 'string', + ), + 'vprintf' => + array ( + 0 => 'int<0, max>', + 'format' => 'string', + 'values' => 'array', + ), + 'vsprintf' => + array ( + 0 => 'string', + 'format' => 'string', + 'values' => 'array', + ), + 'w32api_deftype' => + array ( + 0 => 'bool', + 'typename' => 'string', + 'member1_type' => 'string', + 'member1_name' => 'string', + '...args=' => 'string', + ), + 'w32api_init_dtype' => + array ( + 0 => 'resource', + 'typename' => 'string', + 'value' => 'mixed', + '...args=' => 'mixed', + ), + 'w32api_invoke_function' => + array ( + 0 => 'mixed', + 'funcname' => 'string', + 'argument' => 'mixed', + '...args=' => 'mixed', + ), + 'w32api_register_function' => + array ( + 0 => 'bool', + 'library' => 'string', + 'function_name' => 'string', + 'return_type' => 'string', + ), + 'w32api_set_call_method' => + array ( + 0 => 'mixed', + 'method' => 'int', + ), + 'wddx_add_vars' => + array ( + 0 => 'bool', + 'packet_id' => 'resource', + 'var_names' => 'mixed', + '...vars=' => 'mixed', + ), + 'wddx_deserialize' => + array ( + 0 => 'mixed', + 'packet' => 'string', + ), + 'wddx_packet_end' => + array ( + 0 => 'string', + 'packet_id' => 'resource', + ), + 'wddx_packet_start' => + array ( + 0 => 'false|resource', + 'comment=' => 'string', + ), + 'wddx_serialize_value' => + array ( + 0 => 'false|string', + 'value' => 'mixed', + 'comment=' => 'string', + ), + 'wddx_serialize_vars' => + array ( + 0 => 'false|string', + 'var_name' => 'mixed', + '...vars=' => 'mixed', + ), + 'webObj::convertToString' => + array ( + 0 => 'string', + ), + 'webObj::free' => + array ( + 0 => 'void', + ), + 'webObj::set' => + array ( + 0 => 'int', + 'property_name' => 'string', + 'new_value' => 'mixed', + ), + 'webObj::updateFromString' => + array ( + 0 => 'int', + 'snippet' => 'string', + ), + 'win32_continue_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_create_service' => + array ( + 0 => 'false|int', + 'details' => 'array', + 'machine=' => 'string', + ), + 'win32_delete_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_get_last_control_message' => + array ( + 0 => 'int', + ), + 'win32_pause_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_ps_list_procs' => + array ( + 0 => 'array', + ), + 'win32_ps_stat_mem' => + array ( + 0 => 'array', + ), + 'win32_ps_stat_proc' => + array ( + 0 => 'array', + 'pid=' => 'int', + ), + 'win32_query_service_status' => + array ( + 0 => 'array|false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_send_custom_control' => + array ( + 0 => 'int', + 'servicename' => 'string', + 'control' => 'int', + 'machine=' => 'string', + ), + 'win32_set_service_exit_code' => + array ( + 0 => 'int', + 'exitCode=' => 'int', + ), + 'win32_set_service_exit_mode' => + array ( + 0 => 'bool', + 'gracefulMode=' => 'bool', + ), + 'win32_set_service_status' => + array ( + 0 => 'bool|int', + 'status' => 'int', + 'checkpoint=' => 'int', + ), + 'win32_start_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'win32_start_service_ctrl_dispatcher' => + array ( + 0 => 'bool|int', + 'name' => 'string', + ), + 'win32_stop_service' => + array ( + 0 => 'false|int', + 'servicename' => 'string', + 'machine=' => 'string', + ), + 'wincache_fcache_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_fcache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_lock' => + array ( + 0 => 'bool', + 'key' => 'string', + 'isglobal=' => 'bool', + ), + 'wincache_ocache_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_ocache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_refresh_if_changed' => + array ( + 0 => 'bool', + 'files=' => 'array', + ), + 'wincache_rplist_fileinfo' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_rplist_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_scache_info' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + ), + 'wincache_scache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_ucache_add' => + array ( + 0 => 'bool', + 'key' => 'string', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_add\'1' => + array ( + 0 => 'bool', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_cas' => + array ( + 0 => 'bool', + 'key' => 'string', + 'old_value' => 'int', + 'new_value' => 'int', + ), + 'wincache_ucache_clear' => + array ( + 0 => 'bool', + ), + 'wincache_ucache_dec' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'dec_by=' => 'int', + 'success=' => 'bool', + ), + 'wincache_ucache_delete' => + array ( + 0 => 'bool', + 'key' => 'mixed', + ), + 'wincache_ucache_exists' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'wincache_ucache_get' => + array ( + 0 => 'mixed', + 'key' => 'mixed', + '&w_success=' => 'bool', + ), + 'wincache_ucache_inc' => + array ( + 0 => 'false|int', + 'key' => 'string', + 'inc_by=' => 'int', + 'success=' => 'bool', + ), + 'wincache_ucache_info' => + array ( + 0 => 'array|false', + 'summaryonly=' => 'bool', + 'key=' => 'string', + ), + 'wincache_ucache_meminfo' => + array ( + 0 => 'array|false', + ), + 'wincache_ucache_set' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_ucache_set\'1' => + array ( + 0 => 'bool', + 'values' => 'array', + 'unused=' => 'mixed', + 'ttl=' => 'int', + ), + 'wincache_unlock' => + array ( + 0 => 'bool', + 'key' => 'string', + ), + 'wkhtmltox\\image\\converter::convert' => + array ( + 0 => 'null|string', + ), + 'wkhtmltox\\image\\converter::getVersion' => + array ( + 0 => 'string', + ), + 'wkhtmltox\\pdf\\converter::add' => + array ( + 0 => 'void', + 'object' => 'wkhtmltox\\PDF\\Object', + ), + 'wkhtmltox\\pdf\\converter::convert' => + array ( + 0 => 'null|string', + ), + 'wkhtmltox\\pdf\\converter::getVersion' => + array ( + 0 => 'string', + ), + 'wordwrap' => + array ( + 0 => 'string', + 'string' => 'string', + 'width=' => 'int', + 'break=' => 'string', + 'cut_long_words=' => 'bool', + ), + 'xattr_get' => + array ( + 0 => 'string', + 'filename' => 'string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'xattr_list' => + array ( + 0 => 'array', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'xattr_remove' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'name' => 'string', + 'flags=' => 'int', + ), + 'xattr_set' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'name' => 'string', + 'value' => 'string', + 'flags=' => 'int', + ), + 'xattr_supported' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'flags=' => 'int', + ), + 'xcache_asm' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_clear_cache' => + array ( + 0 => 'void', + 'type' => 'int', + 'id=' => 'int', + ), + 'xcache_coredump' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_count' => + array ( + 0 => 'int', + 'type' => 'int', + ), + 'xcache_coverager_decode' => + array ( + 0 => 'array', + 'data' => 'string', + ), + 'xcache_coverager_get' => + array ( + 0 => 'array', + 'clean=' => 'bool', + ), + 'xcache_coverager_start' => + array ( + 0 => 'void', + 'clean=' => 'bool', + ), + 'xcache_coverager_stop' => + array ( + 0 => 'void', + 'clean=' => 'bool', + ), + 'xcache_dasm_file' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_dasm_string' => + array ( + 0 => 'string', + 'code' => 'string', + ), + 'xcache_dec' => + array ( + 0 => 'int', + 'name' => 'string', + 'value=' => 'int|mixed', + 'ttl=' => 'int', + ), + 'xcache_decode' => + array ( + 0 => 'bool', + 'filename' => 'string', + ), + 'xcache_encode' => + array ( + 0 => 'string', + 'filename' => 'string', + ), + 'xcache_get' => + array ( + 0 => 'mixed', + 'name' => 'string', + ), + 'xcache_get_data_type' => + array ( + 0 => 'string', + 'type' => 'int', + ), + 'xcache_get_op_spec' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_get_op_type' => + array ( + 0 => 'string', + 'op_type' => 'int', + ), + 'xcache_get_opcode' => + array ( + 0 => 'string', + 'opcode' => 'int', + ), + 'xcache_get_opcode_spec' => + array ( + 0 => 'string', + 'opcode' => 'int', + ), + 'xcache_inc' => + array ( + 0 => 'int', + 'name' => 'string', + 'value=' => 'int|mixed', + 'ttl=' => 'int', + ), + 'xcache_info' => + array ( + 0 => 'array', + 'type' => 'int', + 'id' => 'int', + ), + 'xcache_is_autoglobal' => + array ( + 0 => 'string', + 'name' => 'string', + ), + 'xcache_isset' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'xcache_list' => + array ( + 0 => 'array', + 'type' => 'int', + 'id' => 'int', + ), + 'xcache_set' => + array ( + 0 => 'bool', + 'name' => 'string', + 'value' => 'mixed', + 'ttl=' => 'int', + ), + 'xcache_unset' => + array ( + 0 => 'bool', + 'name' => 'string', + ), + 'xcache_unset_by_prefix' => + array ( + 0 => 'bool', + 'prefix' => 'string', + ), + 'xdebug_break' => + array ( + 0 => 'bool', + ), + 'xdebug_call_class' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_file' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_function' => + array ( + 0 => 'string', + 'depth=' => 'int', + ), + 'xdebug_call_line' => + array ( + 0 => 'int', + 'depth=' => 'int', + ), + 'xdebug_clear_aggr_profiling_data' => + array ( + 0 => 'bool', + ), + 'xdebug_code_coverage_started' => + array ( + 0 => 'bool', + ), + 'xdebug_debug_zval' => + array ( + 0 => 'void', + '...varName' => 'string', + ), + 'xdebug_debug_zval_stdout' => + array ( + 0 => 'void', + '...varName' => 'string', + ), + 'xdebug_disable' => + array ( + 0 => 'void', + ), + 'xdebug_dump_aggr_profiling_data' => + array ( + 0 => 'bool', + ), + 'xdebug_dump_superglobals' => + array ( + 0 => 'void', + ), + 'xdebug_enable' => + array ( + 0 => 'void', + ), + 'xdebug_get_code_coverage' => + array ( + 0 => 'array', + ), + 'xdebug_get_collected_errors' => + array ( + 0 => 'string', + 'clean=' => 'bool', + ), + 'xdebug_get_declared_vars' => + array ( + 0 => 'array', + ), + 'xdebug_get_formatted_function_stack' => + array ( + 0 => 'mixed', + ), + 'xdebug_get_function_count' => + array ( + 0 => 'int', + ), + 'xdebug_get_function_stack' => + array ( + 0 => 'array', + 'message=' => 'string', + 'options=' => 'int', + ), + 'xdebug_get_headers' => + array ( + 0 => 'array', + ), + 'xdebug_get_monitored_functions' => + array ( + 0 => 'array', + ), + 'xdebug_get_profiler_filename' => + array ( + 0 => 'false|string', + ), + 'xdebug_get_stack_depth' => + array ( + 0 => 'int', + ), + 'xdebug_get_tracefile_name' => + array ( + 0 => 'string', + ), + 'xdebug_is_debugger_active' => + array ( + 0 => 'bool', + ), + 'xdebug_is_enabled' => + array ( + 0 => 'bool', + ), + 'xdebug_memory_usage' => + array ( + 0 => 'int', + ), + 'xdebug_peak_memory_usage' => + array ( + 0 => 'int', + ), + 'xdebug_print_function_stack' => + array ( + 0 => 'array', + 'message=' => 'string', + 'options=' => 'int', + ), + 'xdebug_set_filter' => + array ( + 0 => 'void', + 'group' => 'int', + 'list_type' => 'int', + 'configuration' => 'array', + ), + 'xdebug_start_code_coverage' => + array ( + 0 => 'void', + 'options=' => 'int', + ), + 'xdebug_start_error_collection' => + array ( + 0 => 'void', + ), + 'xdebug_start_function_monitor' => + array ( + 0 => 'void', + 'list_of_functions_to_monitor' => 'array', + ), + 'xdebug_start_trace' => + array ( + 0 => 'void', + 'trace_file' => 'mixed', + 'options=' => 'int|mixed', + ), + 'xdebug_stop_code_coverage' => + array ( + 0 => 'void', + 'cleanup=' => 'bool', + ), + 'xdebug_stop_error_collection' => + array ( + 0 => 'void', + ), + 'xdebug_stop_function_monitor' => + array ( + 0 => 'void', + ), + 'xdebug_stop_trace' => + array ( + 0 => 'void', + ), + 'xdebug_time_index' => + array ( + 0 => 'float', + ), + 'xdebug_var_dump' => + array ( + 0 => 'void', + '...var' => 'mixed', + ), + 'xdiff_file_bdiff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_bdiff_size' => + array ( + 0 => 'int', + 'file' => 'string', + ), + 'xdiff_file_bpatch' => + array ( + 0 => 'bool', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_diff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + 'context=' => 'int', + 'minimal=' => 'bool', + ), + 'xdiff_file_diff_binary' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_merge3' => + array ( + 0 => 'mixed', + 'old_file' => 'string', + 'new_file1' => 'string', + 'new_file2' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_patch' => + array ( + 0 => 'mixed', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + 'flags=' => 'int', + ), + 'xdiff_file_patch_binary' => + array ( + 0 => 'bool', + 'file' => 'string', + 'patch' => 'string', + 'dest' => 'string', + ), + 'xdiff_file_rabdiff' => + array ( + 0 => 'bool', + 'old_file' => 'string', + 'new_file' => 'string', + 'dest' => 'string', + ), + 'xdiff_string_bdiff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xdiff_string_bdiff_size' => + array ( + 0 => 'int', + 'patch' => 'string', + ), + 'xdiff_string_bpatch' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + ), + 'xdiff_string_diff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + 'context=' => 'int', + 'minimal=' => 'bool', + ), + 'xdiff_string_diff_binary' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xdiff_string_merge3' => + array ( + 0 => 'mixed', + 'old_data' => 'string', + 'new_data1' => 'string', + 'new_data2' => 'string', + 'error=' => 'string', + ), + 'xdiff_string_patch' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + 'flags=' => 'int', + '&w_error=' => 'string', + ), + 'xdiff_string_patch_binary' => + array ( + 0 => 'string', + 'string' => 'string', + 'patch' => 'string', + ), + 'xdiff_string_rabdiff' => + array ( + 0 => 'string', + 'old_data' => 'string', + 'new_data' => 'string', + ), + 'xhprof_disable' => + array ( + 0 => 'array', + ), + 'xhprof_enable' => + array ( + 0 => 'void', + 'flags=' => 'int', + 'options=' => 'array', + ), + 'xhprof_sample_disable' => + array ( + 0 => 'array', + ), + 'xhprof_sample_enable' => + array ( + 0 => 'void', + ), + 'xlswriter_get_author' => + array ( + 0 => 'string', + ), + 'xlswriter_get_version' => + array ( + 0 => 'string', + ), + 'xml_error_string' => + array ( + 0 => 'null|string', + 'error_code' => 'int', + ), + 'xml_get_current_byte_index' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'xml_get_current_column_number' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'xml_get_current_line_number' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'xml_get_error_code' => + array ( + 0 => 'false|int', + 'parser' => 'resource', + ), + 'xml_parse' => + array ( + 0 => 'int', + 'parser' => 'resource', + 'data' => 'string', + 'is_final=' => 'bool', + ), + 'xml_parse_into_struct' => + array ( + 0 => 'int', + 'parser' => 'resource', + 'data' => 'string', + '&w_values' => 'array', + '&w_index=' => 'array', + ), + 'xml_parser_create' => + array ( + 0 => 'resource', + 'encoding=' => 'string', + ), + 'xml_parser_create_ns' => + array ( + 0 => 'resource', + 'encoding=' => 'string', + 'separator=' => 'string', + ), + 'xml_parser_free' => + array ( + 0 => 'bool', + 'parser' => 'resource', + ), + 'xml_parser_get_option' => + array ( + 0 => 'int|string', + 'parser' => 'resource', + 'option' => 'int', + ), + 'xml_parser_set_option' => + array ( + 0 => 'bool', + 'parser' => 'resource', + 'option' => 'int', + 'value' => 'mixed', + ), + 'xml_set_character_data_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_default_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_element_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'start_handler' => 'callable', + 'end_handler' => 'callable', + ), + 'xml_set_end_namespace_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_external_entity_ref_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_notation_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_object' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'object' => 'object', + ), + 'xml_set_processing_instruction_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_start_namespace_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xml_set_unparsed_entity_decl_handler' => + array ( + 0 => 'true', + 'parser' => 'resource', + 'handler' => 'callable', + ), + 'xmlrpc_decode' => + array ( + 0 => 'mixed', + 'xml' => 'string', + 'encoding=' => 'string', + ), + 'xmlrpc_decode_request' => + array ( + 0 => 'array|null', + 'xml' => 'string', + '&w_method' => 'string', + 'encoding=' => 'string', + ), + 'xmlrpc_encode' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'xmlrpc_encode_request' => + array ( + 0 => 'string', + 'method' => 'string', + 'params' => 'mixed', + 'output_options=' => 'array', + ), + 'xmlrpc_get_type' => + array ( + 0 => 'string', + 'value' => 'mixed', + ), + 'xmlrpc_is_fault' => + array ( + 0 => 'bool', + 'arg' => 'array', + ), + 'xmlrpc_parse_method_descriptions' => + array ( + 0 => 'array', + 'xml' => 'string', + ), + 'xmlrpc_server_add_introspection_data' => + array ( + 0 => 'int', + 'server' => 'resource', + 'desc' => 'array', + ), + 'xmlrpc_server_call_method' => + array ( + 0 => 'string', + 'server' => 'resource', + 'xml' => 'string', + 'user_data' => 'mixed', + 'output_options=' => 'array', + ), + 'xmlrpc_server_create' => + array ( + 0 => 'resource', + ), + 'xmlrpc_server_destroy' => + array ( + 0 => 'int', + 'server' => 'resource', + ), + 'xmlrpc_server_register_introspection_callback' => + array ( + 0 => 'bool', + 'server' => 'resource', + 'function' => 'string', + ), + 'xmlrpc_server_register_method' => + array ( + 0 => 'bool', + 'server' => 'resource', + 'method_name' => 'string', + 'function' => 'string', + ), + 'xmlrpc_set_type' => + array ( + 0 => 'bool', + '&rw_value' => 'DateTime|string', + 'type' => 'string', + ), + 'xmlwriter_end_attribute' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_cdata' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_comment' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_document' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_dtd' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_end_pi' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_flush' => + array ( + 0 => 'false|int|string', + 'writer' => 'resource', + 'empty=' => 'bool', + ), + 'xmlwriter_full_end_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_open_memory' => + array ( + 0 => 'false|resource', + ), + 'xmlwriter_open_uri' => + array ( + 0 => 'false|resource', + 'uri' => 'string', + ), + 'xmlwriter_output_memory' => + array ( + 0 => 'string', + 'writer' => 'resource', + 'flush=' => 'bool', + ), + 'xmlwriter_set_indent' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'enable' => 'bool', + ), + 'xmlwriter_set_indent_string' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'indentation' => 'string', + ), + 'xmlwriter_start_attribute' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'xmlwriter_start_attribute_ns' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'xmlwriter_start_cdata' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_start_comment' => + array ( + 0 => 'bool', + 'writer' => 'resource', + ), + 'xmlwriter_start_document' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'version=' => 'null|string', + 'encoding=' => 'null|string', + 'standalone=' => 'null|string', + ), + 'xmlwriter_start_dtd' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'qualifiedName' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + ), + 'xmlwriter_start_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'xmlwriter_start_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'qualifiedName' => 'string', + ), + 'xmlwriter_start_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'isParam' => 'bool', + ), + 'xmlwriter_start_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + ), + 'xmlwriter_start_element_ns' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'null|string', + ), + 'xmlwriter_start_pi' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'target' => 'string', + ), + 'xmlwriter_text' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'xmlwriter_write_attribute' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'value' => 'string', + ), + 'xmlwriter_write_attribute_ns' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'string', + 'name' => 'string', + 'namespace' => 'null|string', + 'value' => 'string', + ), + 'xmlwriter_write_cdata' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'xmlwriter_write_comment' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'xmlwriter_write_dtd' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'publicId=' => 'null|string', + 'systemId=' => 'null|string', + 'content=' => 'null|string', + ), + 'xmlwriter_write_dtd_attlist' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_dtd_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_dtd_entity' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'string', + 'isParam' => 'bool', + 'publicId' => 'string', + 'systemId' => 'string', + 'notationData' => 'string', + ), + 'xmlwriter_write_element' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'name' => 'string', + 'content' => 'null|string', + ), + 'xmlwriter_write_element_ns' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'prefix' => 'null|string', + 'name' => 'string', + 'namespace' => 'string', + 'content' => 'null|string', + ), + 'xmlwriter_write_pi' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'target' => 'string', + 'content' => 'string', + ), + 'xmlwriter_write_raw' => + array ( + 0 => 'bool', + 'writer' => 'resource', + 'content' => 'string', + ), + 'xpath_new_context' => + array ( + 0 => 'XPathContext', + 'dom_document' => 'DOMDocument', + ), + 'xpath_register_ns' => + array ( + 0 => 'bool', + 'xpath_context' => 'xpathcontext', + 'prefix' => 'string', + 'uri' => 'string', + ), + 'xpath_register_ns_auto' => + array ( + 0 => 'bool', + 'xpath_context' => 'xpathcontext', + 'context_node=' => 'object', + ), + 'xptr_new_context' => + array ( + 0 => 'XPathContext', + ), + 'yac::__construct' => + array ( + 0 => 'void', + 'prefix=' => 'string', + ), + 'yac::__get' => + array ( + 0 => 'mixed', + 'key' => 'string', + ), + 'yac::__set' => + array ( + 0 => 'mixed', + 'key' => 'string', + 'value' => 'mixed', + ), + 'yac::delete' => + array ( + 0 => 'bool', + 'keys' => 'array|string', + 'ttl=' => 'int', + ), + 'yac::dump' => + array ( + 0 => 'mixed', + 'num' => 'int', + ), + 'yac::flush' => + array ( + 0 => 'bool', + ), + 'yac::get' => + array ( + 0 => 'mixed', + 'key' => 'array|string', + 'cas=' => 'int', + ), + 'yac::info' => + array ( + 0 => 'array', + ), + 'yaml_emit' => + array ( + 0 => 'string', + 'data' => 'mixed', + 'encoding=' => 'int', + 'linebreak=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_emit_file' => + array ( + 0 => 'bool', + 'filename' => 'string', + 'data' => 'mixed', + 'encoding=' => 'int', + 'linebreak=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse' => + array ( + 0 => 'false|mixed', + 'input' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse_file' => + array ( + 0 => 'false|mixed', + 'filename' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'yaml_parse_url' => + array ( + 0 => 'false|mixed', + 'url' => 'string', + 'pos=' => 'int', + '&w_ndocs=' => 'int', + 'callbacks=' => 'array', + ), + 'yaz_addinfo' => + array ( + 0 => 'string', + 'id' => 'resource', + ), + 'yaz_ccl_conf' => + array ( + 0 => 'void', + 'id' => 'resource', + 'config' => 'array', + ), + 'yaz_ccl_parse' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'query' => 'string', + '&w_result' => 'array', + ), + 'yaz_close' => + array ( + 0 => 'bool', + 'id' => 'resource', + ), + 'yaz_connect' => + array ( + 0 => 'mixed', + 'zurl' => 'string', + 'options=' => 'mixed', + ), + 'yaz_database' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'databases' => 'string', + ), + 'yaz_element' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'elementset' => 'string', + ), + 'yaz_errno' => + array ( + 0 => 'int', + 'id' => 'resource', + ), + 'yaz_error' => + array ( + 0 => 'string', + 'id' => 'resource', + ), + 'yaz_es' => + array ( + 0 => 'void', + 'id' => 'resource', + 'type' => 'string', + 'args' => 'array', + ), + 'yaz_es_result' => + array ( + 0 => 'array', + 'id' => 'resource', + ), + 'yaz_get_option' => + array ( + 0 => 'string', + 'id' => 'resource', + 'name' => 'string', + ), + 'yaz_hits' => + array ( + 0 => 'int', + 'id' => 'resource', + 'searchresult=' => 'array', + ), + 'yaz_itemorder' => + array ( + 0 => 'void', + 'id' => 'resource', + 'args' => 'array', + ), + 'yaz_present' => + array ( + 0 => 'bool', + 'id' => 'resource', + ), + 'yaz_range' => + array ( + 0 => 'void', + 'id' => 'resource', + 'start' => 'int', + 'number' => 'int', + ), + 'yaz_record' => + array ( + 0 => 'string', + 'id' => 'resource', + 'pos' => 'int', + 'type' => 'string', + ), + 'yaz_scan' => + array ( + 0 => 'void', + 'id' => 'resource', + 'type' => 'string', + 'startterm' => 'string', + 'flags=' => 'array', + ), + 'yaz_scan_result' => + array ( + 0 => 'array', + 'id' => 'resource', + 'result=' => 'array', + ), + 'yaz_schema' => + array ( + 0 => 'void', + 'id' => 'resource', + 'schema' => 'string', + ), + 'yaz_search' => + array ( + 0 => 'bool', + 'id' => 'resource', + 'type' => 'string', + 'query' => 'string', + ), + 'yaz_set_option' => + array ( + 0 => 'mixed', + 'id' => 'mixed', + 'name' => 'string', + 'value' => 'string', + 'options' => 'array', + ), + 'yaz_sort' => + array ( + 0 => 'void', + 'id' => 'resource', + 'criteria' => 'string', + ), + 'yaz_syntax' => + array ( + 0 => 'void', + 'id' => 'resource', + 'syntax' => 'string', + ), + 'yaz_wait' => + array ( + 0 => 'mixed', + '&rw_options=' => 'array', + ), + 'yp_all' => + array ( + 0 => 'void', + 'domain' => 'string', + 'map' => 'string', + 'callback' => 'string', + ), + 'yp_cat' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_err_string' => + array ( + 0 => 'string', + 'errorcode' => 'int', + ), + 'yp_errno' => + array ( + 0 => 'int', + ), + 'yp_first' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_get_default_domain' => + array ( + 0 => 'string', + ), + 'yp_master' => + array ( + 0 => 'string', + 'domain' => 'string', + 'map' => 'string', + ), + 'yp_match' => + array ( + 0 => 'string', + 'domain' => 'string', + 'map' => 'string', + 'key' => 'string', + ), + 'yp_next' => + array ( + 0 => 'array', + 'domain' => 'string', + 'map' => 'string', + 'key' => 'string', + ), + 'yp_order' => + array ( + 0 => 'int', + 'domain' => 'string', + 'map' => 'string', + ), + 'zem_get_extension_info_by_id' => + array ( + 0 => 'mixed', + ), + 'zem_get_extension_info_by_name' => + array ( + 0 => 'mixed', + ), + 'zem_get_extensions_info' => + array ( + 0 => 'mixed', + ), + 'zem_get_license_info' => + array ( + 0 => 'mixed', + ), + 'zend_current_obfuscation_level' => + array ( + 0 => 'int', + ), + 'zend_disk_cache_clear' => + array ( + 0 => 'bool', + 'namespace=' => 'mixed|string', + ), + 'zend_disk_cache_delete' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_disk_cache_fetch' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_disk_cache_store' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int|mixed', + ), + 'zend_get_id' => + array ( + 0 => 'array', + 'all_ids=' => 'all_ids|false', + ), + 'zend_is_configuration_changed' => + array ( + 0 => 'mixed', + ), + 'zend_loader_current_file' => + array ( + 0 => 'string', + ), + 'zend_loader_enabled' => + array ( + 0 => 'bool', + ), + 'zend_loader_file_encoded' => + array ( + 0 => 'bool', + ), + 'zend_loader_file_licensed' => + array ( + 0 => 'array', + ), + 'zend_loader_install_license' => + array ( + 0 => 'bool', + 'license_file' => 'string', + 'override' => 'bool', + ), + 'zend_logo_guid' => + array ( + 0 => 'string', + ), + 'zend_obfuscate_class_name' => + array ( + 0 => 'string', + 'class_name' => 'string', + ), + 'zend_obfuscate_function_name' => + array ( + 0 => 'string', + 'function_name' => 'string', + ), + 'zend_optimizer_version' => + array ( + 0 => 'string', + ), + 'zend_runtime_obfuscate' => + array ( + 0 => 'void', + ), + 'zend_send_buffer' => + array ( + 0 => 'false|null', + 'buffer' => 'string', + 'mime_type=' => 'string', + 'custom_headers=' => 'string', + ), + 'zend_send_file' => + array ( + 0 => 'false|null', + 'filename' => 'string', + 'mime_type=' => 'string', + 'custom_headers=' => 'string', + ), + 'zend_set_configuration_changed' => + array ( + 0 => 'mixed', + ), + 'zend_shm_cache_clear' => + array ( + 0 => 'bool', + 'namespace=' => 'mixed|string', + ), + 'zend_shm_cache_delete' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_shm_cache_fetch' => + array ( + 0 => 'mixed|null', + 'key' => 'string', + ), + 'zend_shm_cache_store' => + array ( + 0 => 'bool', + 'key' => 'mixed', + 'value' => 'mixed', + 'ttl=' => 'int|mixed', + ), + 'zend_thread_id' => + array ( + 0 => 'int', + ), + 'zend_version' => + array ( + 0 => 'string', + ), + 'zip_close' => + array ( + 0 => 'void', + 'zip' => 'resource', + ), + 'zip_entry_close' => + array ( + 0 => 'bool', + 'zip_entry' => 'resource', + ), + 'zip_entry_compressedsize' => + array ( + 0 => 'int', + 'zip_entry' => 'resource', + ), + 'zip_entry_compressionmethod' => + array ( + 0 => 'string', + 'zip_entry' => 'resource', + ), + 'zip_entry_filesize' => + array ( + 0 => 'int', + 'zip_entry' => 'resource', + ), + 'zip_entry_name' => + array ( + 0 => 'false|string', + 'zip_entry' => 'resource', + ), + 'zip_entry_open' => + array ( + 0 => 'bool', + 'zip_dp' => 'resource', + 'zip_entry' => 'resource', + 'mode=' => 'string', + ), + 'zip_entry_read' => + array ( + 0 => 'false|string', + 'zip_entry' => 'resource', + 'len=' => 'int', + ), + 'zip_open' => + array ( + 0 => 'false|int|resource', + 'filename' => 'string', + ), + 'zip_read' => + array ( + 0 => 'resource', + 'zip' => 'resource', + ), + 'zlib_decode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'max_length=' => 'int', + ), + 'zlib_encode' => + array ( + 0 => 'false|string', + 'data' => 'string', + 'encoding' => 'int', + 'level=' => 'int', + ), + 'zlib_get_coding_type' => + array ( + 0 => 'false|string', + ), + 'zookeeper_dispatch' => + array ( + 0 => 'void', + ), +); \ No newline at end of file From 95305a7615f811d8d1cfe8bd8964820e1402455a Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 30 Nov 2024 19:06:13 +0100 Subject: [PATCH 2/7] Normalize callmap --- bin/normalize-callmap.php | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 bin/normalize-callmap.php diff --git a/bin/normalize-callmap.php b/bin/normalize-callmap.php new file mode 100644 index 00000000000..0526847b3c2 --- /dev/null +++ b/bin/normalize-callmap.php @@ -0,0 +1,38 @@ +getCodebase(); + +chdir(__DIR__.'/../'); + +foreach (glob("dictionaries/CallMap*.php") as $file) { + $callMap = require $file; + + array_walk_recursive($callMap, function (string &$type): void { + $type = Type::parseString($type === '' ? 'mixed' : $type)->getId(true); + }); + + file_put_contents($file, ' Date: Sat, 30 Nov 2024 19:07:22 +0100 Subject: [PATCH 3/7] cs-fix --- bin/normalize-callmap.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bin/normalize-callmap.php b/bin/normalize-callmap.php index 0526847b3c2..10d16006d18 100644 --- a/bin/normalize-callmap.php +++ b/bin/normalize-callmap.php @@ -6,13 +6,10 @@ use DG\BypassFinals; use Psalm\Internal\Analyzer\ProjectAnalyzer; -use Psalm\Internal\Codebase\Reflection; use Psalm\Internal\Provider\FileProvider; use Psalm\Internal\Provider\Providers; -use Psalm\Internal\Type\Comparator\UnionTypeComparator; use Psalm\Tests\TestConfig; use Psalm\Type; -use Psalm\Type\Atomic\TNull; BypassFinals::enable(); @@ -32,7 +29,4 @@ file_put_contents($file, ' Date: Sat, 30 Nov 2024 19:13:40 +0100 Subject: [PATCH 4/7] fix --- dictionaries/CallMap.php | 2 +- dictionaries/CallMap_historical.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index a630d46218b..d1904000d14 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -43163,7 +43163,7 @@ 'NumberFormatter::format' => array ( 0 => 'false|string', - 'num' => 'mixed', + 'num' => 'int|float', 'type=' => 'int', ), 'NumberFormatter::formatCurrency' => diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index bfdc1c03b15..770f63267b6 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -21384,7 +21384,7 @@ 'NumberFormatter::format' => array ( 0 => 'false|string', - 'num' => 'mixed', + 'num' => 'int|float', 'type=' => 'int', ), 'NumberFormatter::formatCurrency' => From 79e3f938cea23de15a242216fff97375d7195965 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 30 Nov 2024 19:37:21 +0100 Subject: [PATCH 5/7] Fixes --- dictionaries/CallMap.php | 12 ++++++------ dictionaries/CallMap_80_delta.php | 20 ++++++++++---------- dictionaries/CallMap_historical.php | 12 ++++++------ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index d1904000d14..2448f9c2d44 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -2556,7 +2556,7 @@ array ( 0 => 'void', 'iterator' => 'Iterator', - 'flags=' => 'mixed', + 'flags=' => 'int', ), 'CachingIterator::__toString' => array ( @@ -6558,11 +6558,11 @@ 'date_time_set' => array ( 0 => 'DateTime', - 'object' => 'mixed', - 'hour' => 'mixed', - 'minute' => 'mixed', - 'second=' => 'mixed', - 'microsecond=' => 'mixed', + 'object' => 'int', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', ), 'date_timestamp_get' => array ( diff --git a/dictionaries/CallMap_80_delta.php b/dictionaries/CallMap_80_delta.php index 17a2267968c..730cd391f9f 100644 --- a/dictionaries/CallMap_80_delta.php +++ b/dictionaries/CallMap_80_delta.php @@ -3033,20 +3033,20 @@ 'old' => array ( 0 => 'DateTime|false', - 'object' => 'mixed', - 'hour' => 'mixed', - 'minute' => 'mixed', - 'second=' => 'mixed', - 'microsecond=' => 'mixed', + 'object' => 'int', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', ), 'new' => array ( 0 => 'DateTime', - 'object' => 'mixed', - 'hour' => 'mixed', - 'minute' => 'mixed', - 'second=' => 'mixed', - 'microsecond=' => 'mixed', + 'object' => 'int', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', ), ), 'date_timestamp_set' => diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index 770f63267b6..c86c5fd5c1a 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -1307,7 +1307,7 @@ array ( 0 => 'void', 'iterator' => 'Iterator', - 'flags=' => 'mixed', + 'flags=' => 'int', ), 'CachingIterator::__toString' => array ( @@ -49572,11 +49572,11 @@ 'date_time_set' => array ( 0 => 'DateTime|false', - 'object' => 'mixed', - 'hour' => 'mixed', - 'minute' => 'mixed', - 'second=' => 'mixed', - 'microsecond=' => 'mixed', + 'object' => 'int', + 'hour' => 'int', + 'minute' => 'int', + 'second=' => 'int', + 'microsecond=' => 'int', ), 'date_timestamp_get' => array ( From ad0baeed9eaa6e4411f7625fca064e4ac4ba9826 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 30 Nov 2024 19:41:59 +0100 Subject: [PATCH 6/7] fix --- dictionaries/CallMap.php | 2 +- dictionaries/CallMap_80_delta.php | 2 +- dictionaries/CallMap_historical.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index 2448f9c2d44..26c9d9cb7d8 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -6558,7 +6558,7 @@ 'date_time_set' => array ( 0 => 'DateTime', - 'object' => 'int', + 'object' => 'DateTime', 'hour' => 'int', 'minute' => 'int', 'second=' => 'int', diff --git a/dictionaries/CallMap_80_delta.php b/dictionaries/CallMap_80_delta.php index 730cd391f9f..1925fcca87b 100644 --- a/dictionaries/CallMap_80_delta.php +++ b/dictionaries/CallMap_80_delta.php @@ -3033,7 +3033,7 @@ 'old' => array ( 0 => 'DateTime|false', - 'object' => 'int', + 'object' => 'DateTime', 'hour' => 'int', 'minute' => 'int', 'second=' => 'int', diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index c86c5fd5c1a..c532545be81 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -49572,7 +49572,7 @@ 'date_time_set' => array ( 0 => 'DateTime|false', - 'object' => 'int', + 'object' => 'DateTime', 'hour' => 'int', 'minute' => 'int', 'second=' => 'int', From 09096057f5910a88e03c4cd373babda8d791623a Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 30 Nov 2024 19:45:18 +0100 Subject: [PATCH 7/7] fix --- dictionaries/CallMap_80_delta.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionaries/CallMap_80_delta.php b/dictionaries/CallMap_80_delta.php index 1925fcca87b..c3e3f23bf1a 100644 --- a/dictionaries/CallMap_80_delta.php +++ b/dictionaries/CallMap_80_delta.php @@ -3042,7 +3042,7 @@ 'new' => array ( 0 => 'DateTime', - 'object' => 'int', + 'object' => 'DateTime', 'hour' => 'int', 'minute' => 'int', 'second=' => 'int',